/* HERO */
.contact-hero {
  background: #2f437f;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-size: 52px;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* MAIN */
.contact-container {
  width: min(1200px, calc(100% - 24px));
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
}

.contact-form,
.contact-info {
  flex: 1;
  padding: 30px;
  border-radius: 10px;
}

.contact-form {
  background: #fff;
}

.contact-info {
  background: #f8f8f8;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #2f3f73;
  color: white;
  cursor: pointer;
}

.whatsapp-btn2 {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 15px;
  border-radius: 5px;
  background: #25d366;
  color: white;
  text-decoration: none;
}

.map iframe,
.map-box iframe {
  width: 100%;
  border: 0;
}

.map iframe {
  height: 250px;
  border-radius: 10px;
}

/* CONTACT CARDS */
.contact-section,
.location-section {
  background: #f5f5f5;
}

.contact-section {
  padding: 80px 20px;
}

.contact-box {
  width: min(1200px, 100%);
  max-width: 1200px;
  margin: auto;
  padding: 55px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-radius: 18px;
  background: #151515;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.contact-card {
  flex: 1;
  position: relative;
  padding: 10px 25px;
  text-align: center;
  color: white;
}

.contact-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 140px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
}

.contact-card i {
  font-size: 34px;
  color: #ff9800;
  margin-bottom: 20px;
}

.contact-card h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.contact-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #ddd;
  margin: 0;
}

/* LOCATION */
.location-section {
  padding: 90px 20px;
}

.location-header,
.map-box {
  max-width: 1200px;
  margin: auto;
}

.location-header {
  margin-bottom: 40px;
}

.location-header span {
  color: orange;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 15px;
}

.location-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #111;
}

.title-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.title-line div {
  width: 45px;
  height: 2px;
  background: #222;
}

.title-line span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: orange;
}

.map-box {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-box iframe {
  height: min(600px, 70vh);
}

/* CONTACT CONVERSION */
.contact-conversion {
  padding: 24px 20px 70px;
  background: #f5f5f5;
}

.conversion-wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

.conversion-copy,
.conversion-form-box {
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.conversion-kicker {
  margin: 0 0 8px;
  color: #ff9800;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.conversion-copy h2 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 34px;
  line-height: 1.15;
}

.conversion-copy p {
  margin: 0;
  color: #596273;
  line-height: 1.7;
  font-size: 16px;
}

.response-promise {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 152, 0, 0.28);
  border-radius: 12px;
  background: #fff9ef;
  color: #3d3a35;
  font-weight: 600;
}

.response-promise i {
  color: #ff9800;
}

.conversion-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.conversion-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.conversion-btn.whatsapp {
  background: #1fbf5d;
}

.conversion-btn.call {
  background: #24356f;
}

.conversion-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  color: #fff;
}

.conversion-form-box h3 {
  margin-bottom: 16px;
  color: #111827;
  font-size: 28px;
}

.callback-form input,
.callback-form select {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid #d3d8e2;
  border-radius: 10px;
  outline: none;
}

.callback-form button {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.callback-form button:hover {
  background: #1ebf5f;
}

.callback-note {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.callback-status {
  margin: 10px 0 0;
  color: #1f4d9a;
  font-size: 13px;
  font-weight: 600;
}

/* ENQUIRY */
.quick-enquiry-btn {
  display: block;
  margin: 0 auto;
  padding: 14px 35px;
  border: none;
  border-radius: 40px;
  background: orange;
  color: white;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.quick-enquiry-btn:hover {
  background: #e68900;
}

.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
}

.popup-box {
  position: relative;
  width: 95%;
  max-width: 500px;
  padding: 40px;
  border-radius: 18px;
  background: white;
  animation: popupAnim 0.3s ease;
}

.popup-box h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
  font-family: 'Oswald', sans-serif;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.popup-box input,
.popup-box textarea,
.popup-box select {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
}

.popup-box textarea {
  height: 120px;
  resize: none;
}

.popup-box button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #25D366;
  color: white;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

@keyframes popupAnim {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media(max-width: 991px) {
  .conversion-wrap {
    grid-template-columns: 1fr;
  }

  .conversion-copy h2 {
    font-size: 30px;
  }

  .contact-box {
    flex-direction: column;
    padding: 40px 25px;
  }

  .contact-card {
    width: 100%;
    padding: 25px 0;
  }

  .contact-card::after {
    display: none;
  }

  .contact-card:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media(max-width: 768px) {
  .page-title {
    font-size: 34px;
  }

  .section-heading {
    font-size: 22px;
  }

  .contact-section {
    padding: 45px 14px;
  }

  .contact-conversion {
    padding: 16px 14px 45px;
  }

  .conversion-copy,
  .conversion-form-box {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .conversion-copy h2 {
    font-size: 26px;
  }

  .conversion-actions {
    flex-direction: column;
  }

  .conversion-btn {
    width: 100%;
  }

  .contact-box {
    padding: 30px 20px;
    border-radius: 14px;
    gap: 0;
  }

  .contact-card i {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .contact-card h2 {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .contact-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .quick-enquiry-btn {
    width: calc(100% - 40px);
    max-width: 320px;
    padding: 13px 24px;
  }

  .location-section {
    padding: 55px 14px;
  }

  .location-header {
    margin-bottom: 25px;
  }

  .location-header span {
    font-size: 13px;
  }

  .location-header h2 {
    font-size: 42px;
  }

  .title-line div {
    width: 36px;
  }

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

  .popup-box {
    width: calc(100% - 24px);
    padding: 30px 18px;
    border-radius: 14px;
  }

  .popup-box h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .popup-box input,
  .popup-box textarea,
  .popup-box select {
    padding: 12px 14px;
    margin-bottom: 14px;
  }
}

@media(max-width: 480px) {
  .page-title {
    font-size: 30px;
  }

  .section-heading {
    font-size: 18px;
  }

  .contact-section {
    padding: 35px 10px;
  }

  .contact-conversion {
    padding: 14px 10px 35px;
  }

  .conversion-copy h2 {
    font-size: 22px;
  }

  .conversion-copy p,
  .response-promise {
    font-size: 14px;
  }

  .conversion-form-box h3 {
    font-size: 22px;
  }

  .contact-box {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .contact-card {
    padding: 22px 0;
  }

  .contact-card h2 {
    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .contact-card p {
    font-size: 14px;
  }

  .location-section {
    padding: 45px 10px;
  }

  .location-header h2 {
    font-size: 34px;
  }

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

  .popup-box button {
    padding: 13px;
    font-size: 15px;
  }
}

/* ================= CONSISTENCY PASS ================= */
.contact-box,
.contact-form,
.contact-info,
.popup-box,
.map-box {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.contact-card h2,
.contact-form h2,
.location-header h2,
.popup-box h2 {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.contact-card p,
.contact-info p,
.location-header p {
  color: #bab9b9;
  line-height: 1.65;
}
.location-header h2{
  color: #090909;
}
.location-header span {
  font-size: 20px;
}
.contact-form button,
.quick-enquiry-btn,
.popup-box button,
.whatsapp-btn2 {
  border-radius: 999px;
  font-weight: 700;
}

@media(max-width: 480px) {
  .contact-box,
  .popup-box {
    border-radius: 16px;
  }
}
