 /* ================= CONTACT HERO ================= */
.contact-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  /**background-image: url("../images/contact-hero-bg.jpg");**/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  /**background: linear-gradient(
      90deg,
      rgba(15,43,70,0.65),
      rgba(15,43,70,0.55)
    );**/
  background: radial-gradient(circle at right center, rgba(255, 255, 255, 0.08), transparent 45%), linear-gradient(135deg, #173357, #0f2b46);
  z-index: 1;
}

/* Content */
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #ffffff;
}


/* Pill */
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.contact-pill i {
  font-size: 15px;
}


/* Heading */
.contact-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Paragraph */
.contact-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d7e1eb;
  max-width: 640px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-hero {
    min-height: 480px;
  }

  .contact-hero h1 {
    font-size: 2.4rem;
  }
  
}

@media (max-width: 576px) {
  .contact-hero {
    min-height: 440px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 0.95rem;
  }
  
  .contact-card {
    padding: 20px !important;
  } 

}


/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 90px 0;
  background: #faf8f4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

/* Card */
.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e6e2dc;
  font-size: 14px;
}

.form-group.full {
  margin-top: 14px;
}

.btn-custom {
    padding: 10px 26px !important;
}

/* Info Boxes */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-box {
  display: flex;
  align-items: flex-start; /* 🔥 KEY FIX */
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: #f7f6f2;
  margin-bottom: 20px;
}


.info-box i {
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0; /* 🔥 IMPORTANT */
}


.info-box.green i { background: #2c8a57; }
.info-box.amber i { background: #d89b2a; }
.info-box.whatsapp i { background: #25D366; }
.info-box.navy i { background: #0f2b46; }

.info-box strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5b6b7a;
}


/* Quote */
.quote-card {
  background: #fff;
}

.quote-card i {
  font-size: 26px;
  color: #2c8a57;
}

.quote-card p {
  font-style: italic;
  margin: 14px 0 18px;
}

.author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.author span {
  width: 40px;
  height: 40px;
  background: #0f2b46;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}