/* :root {
  --primary: #2a7dbf;
  --primary-soft: #e9f3fb;
  --primary-dark: #1f5f93;
  --bg-light: #f7f9fc;
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border-light: #e5e9f0;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--bg-white);
  color: var(--text-dark);
} */


:root {
  --primary: #2a7dbf;
  --primary-soft: #e9f3fb;
  --primary-dark: #1f5f93;
  --bg-light: #f7f9fc;
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border-light: #e5e9f0;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: var(--bg-white);
  color: var(--text-dark);
}

/* =======================
   CONTACT BANNER
======================= */
.contact-banner {
  width: 100%;
  /* height: 400px; */
  position: relative;
  overflow: hidden;
  padding: 0%;
}

.contact-banner img {
  display: block;          /* removes inline gap */
  width: 100%;
  height: 100%;
  object-fit:fill;
}

.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 10px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}


/* =======================
   CONTACT SECTION
======================= */
.contact-section {
  display: flex;
  gap: 80px;
  padding: 40px 8%;
  max-width: 1500px;
  margin: auto;
  margin-top: 0;

}

/* LEFT PANEL */
.contact-left {
  flex: 1;
  padding: 70px 60px;
  background: var(--bg-light);
  border-radius: 32px;
  border: 1px solid var(--border-light);
}

.contact-left h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
}

.contact-left p {
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.company {
  font-weight: 700;
  color: var(--primary-dark);
}

.call-title {
  margin-top: 55px;
}

.phone {
  /* font-size: 28px; */
  font-weight: 700;
  padding: 10px 16px;     /* was 14px 22px */
  font-size: 24px;        /* was 30px */
  gap: 10px;
  color: var(--primary);
}

/* =======================
   PHONE – HERO ELEMENT
======================= */
.phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  padding: 14px 22px;
  background: linear-gradient(135deg, #e9f3fb, #ffffff);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 30px rgba(42,125,191,0.18);
  margin-top: 14px;
  transition: var(--transition);
}

.phone::before {
  content: "📞";
  font-size: 18px;
}

.phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(42,125,191,0.35);
}

/* =======================
   CONTACT FORM CARD
======================= */
/* .contact-form-card {
  flex: 1.3;
  background: var(--bg-white);
  padding: 70px;
  border-radius: 32px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.contact-form-card h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 35px;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 18px 22px;
  background: #fafbfd;
  border: 1.8px solid var(--border-light);
  border-radius: 12px;
  font-size: 15.5px;
  transition: var(--transition);
}

.contact-form-card textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
} */


.contact-form-card {
  flex: 1.3;
  background: var(--bg-white);
  padding: 70px;
  border-radius: 32px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.contact-form-card h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 35px;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 18px 22px;
  background: #fafbfd;
  border: 1.8px solid var(--border-light);
  border-radius: 12px;
  font-size: 15.5px;
  transition: var(--transition);
}

.contact-form-card textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.contact-form-card button {
  margin-top: 10px;
  padding: 18px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.contact-form-card button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
/* BUTTON */
.contact-form-card button {
  margin-top: 10px;
  padding: 18px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.contact-form-card button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* =======================
   CTA SECTION
======================= */
.cta-section {
  padding: 90px 10%;
  background: var(--bg-light);
}

.cta-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 70px;
  align-items: center;
  background: var(--bg-white);
  padding: 55px;
  border-radius: 40px;
  border: 1px solid var(--border-light);
}

.cta-image img {
  width: 100%;
  border-radius: 24px;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 16px 44px;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-btn:hover {
  background: var(--primary-dark);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 1200px) {
  .contact-section {
    flex-direction: column;
    gap: 55px;
    padding: 80px 6%;
    margin-top: 0;
  }

  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .phone {
    font-size: 20px;
    padding: 10px 14px;
    gap: 8px;
  }

  .phone::before {
    font-size: 16px;
  }
  .contact-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
  }

  .contact-banner {
    /* height: 260px; */
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;

  }

  .contact-banner::after {
    font-size: 2.1rem;
    letter-spacing: 6px;
  }

  .contact-left,
  .contact-form-card {
    padding: 40px 30px;
  }

  .contact-left h3 {
    font-size: 30px;
  }

  .contact-form-card h2,
  .cta-content h2 {
    font-size: 28px;
  }
  .contact-section,
  .contact-wrapper,
  .contact-left {
    margin-top: 10px;
    padding-top: 10px;
  }

  .contact-container {
    margin-top: 0;
    padding-top: 20px; /* small controlled spacing */
  }
}

/* OTP widget (contact page) */
.otp-container {
    margin-top: 10px;
}
.otp-container .send-otp-btn,
.otp-container .verify-otp-btn,
.otp-container .resend-otp-btn {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 6px;
    transition: background 0.2s;
}
.otp-container .send-otp-btn:hover,
.otp-container .verify-otp-btn:hover {
    background: #005a8a;
}
.otp-container .resend-otp-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 12px;
    padding: 6px 12px;
}
.otp-container .resend-otp-btn:hover {
    background: #f0f8ff;
}
.otp-container .send-otp-btn:disabled,
.otp-container .verify-otp-btn:disabled,
.otp-container .resend-otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.otp-container .otp-section {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.otp-container .otp-input {
    width: 120px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    margin-right: 6px;
}
.otp-container .otp-status {
    font-size: 13px;
    color: #555;
    margin-left: 4px;
    display: block;
    margin-top: 4px;
