/* ==============================================
Enquiry + Location Section
================================================*/

.contact-section {
  padding: 35px 90px;
  background: #fff !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
}

.enquiry-box {
  background: #fff;
  border: 1px solid #4caf50;
  border-radius: 20px;
  padding: 30px;
}

.enquiry-box h2 {
  color: #43a047;
  font-size: 42px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #4caf50;
  border-radius: 6px;
  padding: 12px;
  outline: none;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.enquiry-box button {
  width: 100%;
  background: #43a047;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
}

/* .location-box{
    padding-top:20px;
} */

.footer-logo {
  max-width: 130px;
  /* margin-bottom:15px; */
}

.location-box p {
  margin-bottom: 25px;
  line-height: 1.8;
}

.location-box h3 {
  color: #43a047;
  font-size: 32px;
  margin-bottom: 15px;
}

.location-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.location-tabs button {
  padding: 10px 18px;
  border: 1px solid #43a047;
  background: #fff;
  color: #43a047;
  border-radius: 6px;
}

.location-tabs .active {
  background: #43a047;
  color: #fff;
}

.map-box iframe {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 10px;
}

.call-btn {
  display: inline-block;
  margin-top: 20px;
  background: #43a047;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
}

.location-content {
  display: none;
  margin-top: 20px;
}

.location-content.active {
  display: block;
}

.tab-btn {
  padding: 12px 25px;
  border: 1px solid #43a047;
  background: #fff;
  color: #43a047;
  border-radius: 6px;
  cursor: pointer;
}

.tab-btn.active {
  background: #43a047;
  color: #fff;
}

/* =================================
LARGE LAPTOP (1200px)
================================= */
@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }

  .enquiry-box h2 {
    font-size: 36px;
  }

  .location-box h3 {
    font-size: 28px;
  }

  .map-box iframe {
    height: 260px;
  }
}

/* =================================
TABLET (992px)
================================= */
@media (max-width: 992px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .enquiry-box {
    width: 100%;
    padding: 25px;
  }

  .enquiry-box h2 {
    font-size: 34px;
  }

  .location-box {
    padding-top: 0;
  }

  .footer-logo {
    max-width: 170px;
  }

  .location-box h3 {
    font-size: 26px;
  }

  .map-box iframe {
    height: 300px;
  }

  .call-btn {
    padding: 12px 30px;
  }
}

/* =================================
MOBILE (768px)
================================= */
@media (max-width: 768px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-grid {
    gap: 30px;
  }

  .enquiry-box {
    padding: 20px;
    border-radius: 15px;
  }

  .enquiry-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 14px;
  }

  .form-group textarea {
    height: 100px;
  }

  .enquiry-box button {
    padding: 12px;
    font-size: 16px;
  }

  .footer-logo {
    max-width: 120px;
  }

  .location-box p {
    font-size: 14px;
    line-height: 1.8;
  }

  .location-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .location-tabs {
    /* flex-wrap:wrap; */
    gap: 8px;
  }

  .location-tabs button {
    padding: 8px 14px;
    font-size: 14px;
  }

  .map-box iframe {
    height: 220px;
    border-radius: 8px;
  }

  .call-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-top: 15px;
  }
}

/* =================================
SMALL MOBILE (480px)
================================= */
@media (max-width: 480px) {
  .contact-section {
    padding: 30px 20px;
  }

  .enquiry-box {
    padding: 18px;
  }

  .enquiry-box h2 {
    font-size: 24px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 13px;
  }

  .location-box h3 {
    font-size: 20px;
  }

  .location-box p {
    font-size: 13px;
  }

  .location-tabs button {
    width: 100%;
    text-align: center;
  }

  .map-box iframe {
    height: 200px;
  }

  .call-btn {
    font-size: 14px;
  }
}
