/* ===================================
   CONTACT PAGE STYLES
   ================================== */

/* Contact Container */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

/* Page Heading */
h1 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

/* Left Form Section */
.contact-form {
  display: flex;
  flex-direction: column;
}

.form-section {
  width: 100%;
}

.form-description {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Form Styling - Using existing global classes */
.contact-form .form-group {
  gap: 1rem;
}

.contact-form label {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  display: block;
}

.contact-form .form-control {
  background-color: var(--secondary-color);
  color: var(--text-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  border: 2px solid var(--primary-light);
  /* Remove border-radius, box-shadow as requested */
  box-shadow: none;
  transition: border-color var(--transition-base);
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  /* Remove box-shadow on focus */
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  color: var(--light-grey);
  font-weight: var(--fw-regular);
}

/* Textarea specific styling */
.contact-form textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-secondary);
  line-height: 1.5;
}

/* Right Map Section */
.contact-map {
  width: 100%;
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  .heading h1 {
    font-size: var(--fs-xl);
  }

  .subheading p {
    font-size: var(--fs-sm);
    margin-bottom: 1.5rem;
  }

  .form-description {
    font-size: var(--fs-sm);
    margin-bottom: 1.5rem;
  }

  .contact-form label {
    font-size: var(--fs-sm);
  }

  .contact-form .form-control {
    font-size: var(--fs-sm);
    padding: 0.625rem;
  }

  .contact-map {
    min-height: 400px;
  }

  .contact-map iframe {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    margin: 1rem 0;
  }

  .heading h1 {
    font-size: var(--fs-lg);
  }

  .subheading p {
    margin-bottom: 1rem;
  }

  .form-description {
    margin-bottom: 1rem;
  }

  .contact-form .form-group {
    gap: 0.75rem;
  }

  .contact-btn {
    margin-top: 1rem;
    padding: 0.625rem;
    font-size: var(--fs-sm);
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}
