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

/* Page Hero */
.contact-hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(27, 42, 107, 0.7), rgba(27, 42, 107, 0.7)),
    url(../images/9.jpg);
  margin-top: 72px;
  padding: 100px 0 80px;
  color: #fff;
  text-align: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.page-hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-weight: 500;
}

/* Main Contact Section */
.contact-main {
  padding: 80px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Column - Contact Info */
.contact-info {
  padding-right: 20px;
}
.info-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 20px 0 40px;
}
.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}
.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.info-icon {
  width: 50px;
  height: 50px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition:
    background 0.3s,
    color 0.3s;
}
.info-item:hover .info-icon {
  background: var(--navy);
  color: #fff;
}
.info-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}
.info-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Map */
.contact-map {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Right Column - Form */
.contact-form-wrapper {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.form-container h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-container > p {
  color: var(--text-light);
  margin-bottom: 30px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.btn-submit {
  background: var(--navy);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-submit:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* CTA Banner (reuse from other pages) */
.cta-banner {
  background: var(--navy);
  padding: 70px 0;
  color: #fff;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 15px;
}
.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}
.btn-cta {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s;
  border: 2px solid transparent;
}
.btn-cta:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-cta i {
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 60px;
  }
  .page-hero-content h1 {
    font-size: 2rem;
  }
  .page-hero-content p {
    font-size: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-map {
    height: 220px;
  }
  .cta-banner {
    padding: 50px 0;
  }
}
