/* Contact Page Specific Styles */

/* Navigation active state */
.nav-link-active {
  color: var(--text-primary) !important;
  font-weight: 500;
}

/* Hero Section with Contact Form */
.hero-contact-section {
  position: relative;
  height: 1200px;
  overflow: hidden;
}

.hero-contact-bg {
  position: absolute;
  inset: 0;
}

.hero-contact-image {
  width: 100%;
  height: 146%;
  object-fit: cover;
  display: block;
  margin-bottom: 200px;
  min-height: 67px;
  transform: scale(1.03);
}

.hero-contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 94px 32px;
}

.contact-form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 672px;
  padding: 48px;
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-title {
  color: #000;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -1.2px;
  margin: 0 0 16px;
}

.contact-form-subtitle {
  color: #4B5563;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.45px;
  margin: 0;
}

/* Form Styles */
.contact-form-wrapper {
  width: 100%;
}

.form-field {
  margin-bottom: 24px;
}

.form-field:first-child {
  margin-bottom: 27px;
}

.form-label {
  display: block;
  color: #111827;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.45px;
  margin-bottom: 12px;
}

.form-input-wrapper,
.form-textarea-wrapper {
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid #BFDBFE;
  border-radius: 16px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input {
  height: 64px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 20px;
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-textarea {
  min-height: 160px;
  padding: 20px 16px;
  font-size: 18px;
  line-height: 28px;
  resize: vertical;
}

.form-textarea::placeholder {
  color: #9CA3AF;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-helper-right {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #6B7280;
  font-size: 12px;
  line-height: 16px;
  padding: 0 8px;
}

.textarea-counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  background: #fff;
  color: #6B7280;
  font-size: 11px;
  line-height: 16px;
  padding: 2px 8px;
}

.form-helper-text {
  margin-top: 4px;
  color: #6B7280;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.form-submit-section {
  margin-top: 48px;
  text-align: center;
}

.form-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 19px 32px 20px;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.form-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px -6px rgba(0,0,0,0.15);
}

.form-note {
  margin-top: 12px;
  color: #6B7280;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 61px 0 80px;
}

.faq-container {
  max-width: 1568px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 240px;
  align-items: start;
}

.faq-intro {
  max-width: 451px;
}

.faq-title {
  color: #000;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
}

.faq-subtitle {
  color: #4B5563;
  font-family: 'Inter', sans-serif;
  font-size: 16.734px;
  font-weight: 400;
  line-height: 29.25px;
  margin: 0;
}

.faq-list {
  max-width: 663px;
}

.faq-item {
  border-top: 2px solid #C3D5F1;
  border-bottom: 1px solid #C3D5F1;
}

.faq-item-last {
  border-bottom: 2px solid #C3D5F1;
}

.faq-question-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 31px 0 32px;
}

.faq-question {
  color: #222;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.675px;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #131313;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-toggle:hover {
  transform: scale(1.05);
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
}

/* Experience Section */
.experience-section {
  background: #fff;
  padding: 122px 0 133px;
  text-align: center;
}

.experience-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.experience-title {
  color: #000;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 54px;
  letter-spacing: -1.6px;
  text-align: center;
  max-width: 811px;
  margin: 0 auto 23px;
}

.experience-subtitle {
  color: #5D5D5D;
  font-family: 'Inter', sans-serif;
  font-size: 16.594px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.36px;
  text-align: center;
  max-width: 584px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .faq-content {
    gap: 120px;
  }
}

@media (max-width: 1200px) {
  .hero-contact-content {
    padding: 60px 24px;
  }
  
  .contact-form-card {
    padding: 32px;
  }
  
  .faq-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .faq-intro {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 968px) {
  .hero-contact-section {
    height: auto;
    min-height: 800px;
  }
  
  .hero-contact-content {
    padding: 40px 16px;
  }
  
  .contact-form-title {
    font-size: 40px;
    line-height: 44px;
  }
  
  .faq-title {
    font-size: 48px;
    line-height: 52px;
  }
  
  .experience-title {
    font-size: 40px;
    line-height: 44px;
  }
  
  .faq-question {
    font-size: 24px;
    line-height: 28px;
  }
}

@media (max-width: 768px) {
  .hero-contact-section {
    min-height: 700px;
  }
  
  .contact-form-card {
    padding: 24px;
  }
  
  .contact-form-title {
    font-size: 32px;
    line-height: 36px;
  }
  
  .contact-form-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  
  .faq-title {
    font-size: 36px;
    line-height: 40px;
  }
  
  .experience-title {
    font-size: 32px;
    line-height: 36px;
  }
  
  .faq-question {
    font-size: 20px;
    line-height: 24px;
  }
  
  .faq-question-container {
    padding: 24px 0;
    gap: 16px;
  }
  
  .faq-toggle {
    width: 36px;
    height: 36px;
  }
  
  .faq-toggle svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .hero-contact-section {
    min-height: 600px;
  }
  
  .hero-contact-content {
    padding: 20px 16px;
  }
  
  .contact-form-card {
    padding: 20px;
  }
  
  .contact-form-title {
    font-size: 28px;
    line-height: 32px;
  }
  
  .form-label {
    font-size: 16px;
  }
  
  .form-input {
    height: 56px;
    font-size: 16px;
  }
  
  .form-textarea {
    min-height: 120px;
    font-size: 16px;
  }
  
  .faq-title {
    font-size: 28px;
    line-height: 32px;
  }
  
  .experience-title {
    font-size: 24px;
    line-height: 28px;
  }
  
  .faq-question {
    font-size: 18px;
    line-height: 22px;
  }
}
