/* ---------- Hero Section ---------- */
.contactus-section {
  height: 680px;
  background: url('/images/contactus-hero.png') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 120px 64px;
  color: #FFF;
  text-align: left;
  font-family: 'Lato';
  box-sizing: border-box;
  margin-top: 84px;
}

.contactus-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF;
}

.contactus-content p {
  font-family: 'Lato';
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  color: #FFF;
  margin-bottom: 40px;
}

/* ---------- Button ---------- */
.btn-about {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #FBBA2C;
  color: #000;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background: #e6a800;
}

/* ---------- Tablet ---------- */
@media (max-width: 992px) {
  .contactus-section {
    height: auto;
    padding: 100px 40px;
    align-items: center;
    text-align: center;

    margin: 0;
  }

  .contactus-content h1 {
    font-size: 2.5rem;
    
  }

  .contactus-content p {
    font-size: 20px;
    line-height: 30px;
    max-width: 700px;
  }

  .about-buttons {
    display: flex;
    justify-content: center;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 576px) {
  .contactus-section {
    padding: 80px 20px;
    height: auto;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .contactus-content h1 {
    font-size: 1.8rem;
    /* ~29px */
    line-height: 1.3;
  }

  .contactus-content p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 24px;
  }

  .btn-about {
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 8px;
  }
}

/*end contacthero secton */
/* ---------- Section Container ---------- */
.contactcard-section {
  display: flex;
  width: 100%;
  max-width: 1440px;
  padding: 80px 64px;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  box-sizing: border-box;
}

.contactcard-container {
  width: 100%;
  text-align: center;
}

.contact-title {
  font-size: 24px;
  font-weight: 700;
  font-family: Poppins;
  color: #fbba2c;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 20px;
  line-height: 28px;
  font-family: Lato;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #fff;
}

/* ---------- Cards Layout ---------- */
.contact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1 1 22%;
  /* 4 cards in a row */
  min-width: 250px;
  border-radius: 24px;
  border: 1px solid #fbba2c;
  background: #000;
  box-shadow: 0 0 8px 2px #fbba2c;
  padding: 24px 16px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  color: #fff;
}

.contact-card svg {
  width: 52px;
  height: 52px;

}

.contact-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fbba2c;
}

.contact-card p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  max-width: 300px;
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .contactcard-section {
    padding: 60px 40px;
    gap: 40px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-subtitle {
    font-size: 16px;
    line-height: 26px;
  }

  .contact-cards {
    gap: 28px;
  }

  .contact-card {
    flex: 1 1 45%;
    /* 2 cards per row */
    min-width: 260px;
  }
}

/* Mobile (below 767px) */
@media (max-width: 767px) {
  .contactcard-section {
    padding: 40px 20px;
    gap: 32px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-subtitle {
    font-size: 15px;
    line-height: 24px;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .contact-card {
    width: 100%;
    max-width: 360px;
  }

  .contact-card p {
    font-size: 14px;
    line-height: 22px;
  }
}

/*contact card section end*/

/* ---------- Contact Form Section ------ */

.contactform-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #000;
  color: #FFF;
  padding: 80px 64px;
  gap: 60px;
  font-family: 'Lato', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

/* ---------- Container Layout ---------- */
.contactform-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
  gap: 48px;
}

/* ---------- Left Column ---------- */
.contactform-left {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contactform-left h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 16px;
}

.contactform-left p {
  font-size: 20px;
  line-height: 28px;
  color: #FFF;
  margin-bottom: 20px;
}

.contactform-left h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px;
}

/* ---------- Right Column (Form + Map) ---------- */
.contactform-right {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ---------- Contact Form ---------- */
.contactform-right form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(4px);
  padding: 30px;
}

.contactform-right input,
.contactform-right select,
.contactform-right textarea {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 15px;
}

.contactform-right textarea {
  height: 100px;
  resize: none;
}

.contactform-right button {
  background: #FBBA2C;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contactform-right button:hover {
  background: #e6a800;
}

/* ---------- Map Container Inside Form Section ---------- */
.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* ---------- View Map Button ---------- */
.view-map-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #000;
  font-size: 16px;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-map-btn:hover {
  background: #FBBA2C;
}

/* ---------- Zoom Controls ---------- */
.map-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.zoom-btn {
  width: 40px;
  height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 5px 12px 5px;
  cursor: pointer;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0.6;
}

/* Tablet (≤992px) */
@media (max-width: 992px) {
  .contactform-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contactform-left,
  .contactform-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .contactform-left h1 {
    font-size: 32px;
  }

  .contactform-left p {
    font-size: 18px;
  }

  .contactform-right form {
    width: 100%;
    padding: 24px;
  }

  .map-container {
    height: 380px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .contactform-section {
    padding: 40px 24px;
    gap: 40px;
  }

  .contactform-left h1 {
    font-size: 26px;
  }

  .contactform-left p {
    font-size: 16px;
    line-height: 24px;
  }

  .social-icons {
    justify-content: center;
  }

  .map-container {
    height: 300px;
  }

  .view-map-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}