

.contact-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 110px 32px 80px; 
}


.contact-header {
  text-align: center;
  margin-bottom: 52px;
}

.contact-header .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--pink-mid);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.contact-header h1 {
  font-family: 'Satisfy', cursive;
  font-size: clamp(36px, 5vw, 58px);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-header .retro-rule {
  justify-content: center;
  margin-bottom: 20px;
}

.contact-intro {
  font-size: 15px;
  color: var(--charcoal-light);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}



.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px rgba(44, 44, 52, 0.09);
  border: 1px solid rgba(139, 190, 221, 0.20);
  margin-bottom: 52px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.optional {
  font-weight: 400;
  text-transform: none;
  color: var(--charcoal-light);
  letter-spacing: 0;
  font-size: 12px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--ice-blue-light);
  border: 1.5px solid rgba(139, 190, 221, 0.40);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ice-blue-mid);
  box-shadow: 0 0 0 3px rgba(139, 190, 221, 0.20);
  background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--charcoal-light);
  opacity: 0.7;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a8fa0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-submit {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}



.social-section {
  text-align: center;
  margin-bottom: 20px;
}

.social-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.social-divider::before,
.social-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ice-blue-mid);
  opacity: 0.45;
}

.social-divider span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--charcoal-light);
  letter-spacing: 1px;
  white-space: nowrap;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 13px 28px;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: 0 4px 16px rgba(44, 44, 52, 0.10);
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(44, 44, 52, 0.16);
}



.social-btn.linkedin {
  background: var(--ice-blue);
  color: var(--charcoal);
  border: 1.5px solid rgba(139, 190, 221, 0.40);
}

.social-btn.linkedin:hover {
  background: var(--ice-blue-deep);
  color: var(--white);
  border-color: var(--ice-blue-deep);
}

.social-btn.instagram {
  background: var(--blush);
  color: var(--charcoal);
  border: 1.5px solid rgba(240, 168, 176, 0.40);
}

.social-btn.instagram:hover {
  background: var(--pink-mid);
  color: var(--white);
  border-color: var(--pink-mid);
}


@media (max-width: 1024px) {
  .contact-page {
    max-width: 640px;
    padding: 100px 28px 70px;
  }

  .contact-form {
    padding: 40px 36px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 96px 24px 60px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form {
    padding: 36px 28px;
  }

  .contact-header h1 {
    font-size: clamp(32px, 8vw, 48px);
  }
}

@media (max-width: 480px) {
  .contact-page {
    padding: 88px 16px 52px;
  }

  .contact-form {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .contact-header h1 {
    font-size: 32px;
  }

  .contact-intro {
    font-size: 14px;
  }

  .form-group label {
    font-size: 12px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select,
  .contact-form textarea {
    font-size: 14px;
    padding: 11px 14px;
  }

  .social-btn {
    padding: 11px 22px;
    font-size: 13px;
  }

  .form-submit {
    justify-content: center;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .contact-form {
    padding: 24px 16px;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-btn {
    width: 100%;
    justify-content: center;
  }
}