/* ===== CONTACT PAGE STYLES ===== */

.contact-page {
  padding: calc(var(--header-height) + 2.5rem) 0 4rem;
  background-color: var(--background-light);
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.contact-hero {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--background-light) 100%);
  margin-bottom: 3rem;
  border-radius: 1rem;
}

.contact-hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-hero__title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-hero__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.contact-hero__description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form {
  margin-bottom: 4rem;
}

.contact-form__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form__content {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.contact-form__header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--background-light);
}

.contact-form__header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.contact-form__header p {
  color: var(--text-light);
  font-size: 1.125rem;
  margin: 0;
}

/* ===== FORM STYLES ===== */
.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form__input,
.form__textarea {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  background-color: var(--white);
  color: var(--text-color);
  font-family: var(--font-body);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 150px;
  font-family: var(--font-body);
}

/* ===== SUBMIT SECTION ===== */
.form__submit {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--background-light);
}

.form__submit .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.form__submit-note {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== CONTACT INFO SIDEBAR ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info__card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.contact-info__card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ===== CONTACT DETAILS ===== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-content strong {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1rem;
}

.contact-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-content a:hover {
  text-decoration: underline;
}

.contact-content span {
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== BENEFITS LIST ===== */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  color: var(--text-color);
  font-weight: 500;
  border-bottom: 1px solid var(--background-light);
}

.benefits-list li:last-child {
  border-bottom: none;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition-fast);
  background-color: var(--white);
}

.social-link-card:hover {
  border-color: var(--primary-color);
  background-color: rgba(16, 185, 129, 0.02);
  transform: translateY(-2px);
}

.social-link-card svg {
  color: var(--primary-color);
}

.social-link-card span {
  font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .contact-form__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form__content {
    padding: 2rem;
  }
  
  .contact-info__card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: calc(var(--header-height) + 1rem) 0 2rem;
  }
  
  .contact-hero {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  .contact-hero__title {
    font-size: 2.5rem;
  }
  
  .contact-hero__subtitle {
    font-size: 1.25rem;
  }
  
  .contact-form__content {
    padding: 1.5rem;
    margin: 0 -1rem;
    border-radius: 0;
  }
  
  .form__row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-info__card {
    padding: 1rem;
    margin: 0 -1rem;
    border-radius: 0;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .contact-content {
    text-align: center;
  }
  
  .social-link-card {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-hero__title {
    font-size: 2rem;
  }
  
  .contact-hero__subtitle {
    font-size: 1.125rem;
  }
  
  .contact-hero__description {
    font-size: 1rem;
  }
  
  .form__submit .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
