:root {
  --navy: #001C54;
  --deep: #0089C6;
  --gold: #F98600;
  --gold-lt: #ffad40;
  --offwhite: #f4f6fb;
  --white: #ffffff;
  --border: rgba(249, 134, 0, .22);
  --blue-grad: radial-gradient(128.59% 100% at 50% 0%, rgb(0, 137, 198) 0%, rgb(0, 28, 84) 76.54%);
  --text-dark: #001C54;
  --text-mid: #2a3a5c;
  --text-muted: #5a6a85;
  --fd: 'Inter', sans-serif;
  /* Gilroy fallback */
  --ease: .35s cubic-bezier(.4, 0, .2, 1);
  --radius: 10px;
}

/* ── Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fd);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--offwhite);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ═══════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════ */


#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    var(--blue-grad);
}

/* Decorative geometric shapes */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 134, 0, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 137, 198, .2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(249, 134, 0, .07));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* Floating dots pattern */
.hero-dots {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .08) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}

.hero-dots-2 {
  position: absolute;
  bottom: 12%;
  right: 3%;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, rgba(249, 134, 0, .18) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

.hero-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent 65%);
}

.hcontent {
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes fup {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fright {
  from {
    opacity: 0;
    transform: translateX(-28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ── Hero Left Column ── */
.h-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fup .7s .1s forwards;
}

.h-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: block;
}

.h-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: .5rem;
  opacity: 0;
  animation: fup .7s .25s forwards;
}

.h-title .gold {
  color: var(--gold);
}

.h-tagline {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 400;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fup .7s .4s forwards;
}

/* Stats row */
.h-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.2rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fup .7s .55s forwards;
}

.h-stat {
  display: flex;
  flex-direction: column;
  padding: .75rem 1.2rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  min-width: 90px;
  backdrop-filter: blur(8px);
}

.h-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.h-stat-lbl {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
}

/* Badges / highlights */
.h-highlights {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fup .7s .7s forwards;
}

.h-hl-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
}

.h-hl-item i {
  width: 28px;
  height: 28px;
  background: rgba(249, 134, 0, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .82rem;
  flex-shrink: 0;
}

/* Accreditation badges */
.h-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  opacity: 0;
  animation: fup .7s .85s forwards;
}

.h-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 4px;
  border: 1px solid rgba(249, 134, 0, .4);
  color: var(--gold-lt);
  background: rgba(249, 134, 0, .08);
  backdrop-filter: blur(4px);
}

/* ── Hero Right Column — Enquiry Form ── */
.enq-card {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 28, 84, .18),
    0 8px 24px rgba(0, 28, 84, .1);
  opacity: 0;
  animation: fright .8s .3s forwards;
}

/* Top accent bar */
.enq-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--deep) 50%, var(--gold) 100%);
}

.enq-card-head {
  background: #fff;
  padding: 1.4rem 1.8rem 0;
  border-bottom: 1px solid #f0f3f8;
}

.enq-card-head h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .3px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.enq-card-head h2 i {
  color: var(--gold);
  font-size: 1.1rem;
}

.enq-card-head p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.enq-card-head .enq-steps {
  display: flex;
  gap: .35rem;
  margin-bottom: 1rem;
}

.enq-step-dot {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: #e8ecf4;
}

.enq-step-dot.active {
  background: linear-gradient(90deg, var(--navy), var(--deep));
}

.enq-card-body {
  padding: 1.4rem 1.8rem 1.6rem;
}

/* Form labels */
.form-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .3rem;
}

/* Inputs */
.form-control,
.form-select {
  background: #f7f9fc !important;
  border: 1.5px solid #e3e8f0 !important;
  border-radius: 8px !important;
  color: var(--navy) !important;
  font-size: .88rem !important;
  font-family: var(--fd) !important;
  padding: .6rem .9rem !important;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease) !important;
}

.form-control::placeholder {
  color: #b0bac8 !important;
}

.form-control:focus,
.form-select:focus {
  background: #fff !important;
  border-color: var(--deep) !important;
  box-shadow: 0 0 0 3px rgba(0, 137, 198, .12) !important;
  outline: none !important;
}

.form-select option {
  background: #fff;
  color: var(--navy);
}

/* Checkbox */
.form-check-input {
  background-color: #f7f9fc !important;
  border-color: #c8d0de !important;
}

.form-check-input:checked {
  background-color: var(--navy) !important;
  border-color: var(--navy) !important;
}

.form-check-label {
  font-size: .82rem;
  color: var(--text-muted);
}

.form-check-label a {
  color: var(--deep);
  text-decoration: none;
  font-weight: 600;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/* Validation */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, .1) !important;
}

.invalid-feedback {
  font-size: .72rem !important;
  color: #e53935 !important;
  font-weight: 600;
  letter-spacing: .3px;
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: #4caf7d !important;
  box-shadow: 0 0 0 3px rgba(76, 175, 125, .1) !important;
}

/* Submit button */
.btn-submit {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .9rem 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: all var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.btn-submit:hover::after {
  opacity: 1;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 28, 84, .35);
}

.btn-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

/* Alert messages */
.form-alert {
  border-radius: 8px;
  padding: .8rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: .5rem;
  margin-top: .8rem;
}

.form-alert.show {
  display: flex;
}

.form-alert-success {
  background: #f0faf5;
  border: 1.5px solid #4caf7d;
  color: #2e7d52;
}

.form-alert-error {
  background: #fff5f5;
  border: 1.5px solid #e53935;
  color: #c62828;
}

/* Trust row */
.enq-trust {
  display: flex;
  align-items: center;
  gap: .4rem;
  justify-content: center;
  margin-top: .85rem;
  font-size: .72rem;
  color: #b0bac8;
  letter-spacing: .4px;
}

.enq-trust i {
  color: var(--deep);
  font-size: .82rem;
}


/* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
@media (max-width:991.98px) {
  #hero {
    padding-top: 3rem;
    align-items: flex-start;
  }
}

@media (max-width:767px) {
  .h-stats {
    gap: .4rem .7rem;
  }

  .h-stat {
    min-width: 78px;
    padding: .6rem .85rem;
  }

  .enq-card-body {
    padding: 1.2rem 1.2rem 1.5rem;
  }
}

@media (min-width:992px) {
  .enq-card {
    position: sticky;
    top: 40px;
  }
}



/* Captcha Styles */
.captcha-container {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.captcha-box {
  display: flex;
  gap: 12px;
  align-items: center;
}

.captcha-display {
  background: linear-gradient(135deg, #ffcb1e 0%, #ffa500 100%);
  color: #1a1a2e;
  padding: 5px 20px;
  border-radius: 5px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  user-select: none;
  text-align: center;

  /* box-shadow: 0 4px 12px rgba(255, 203, 30, 0.3); */
}

.captcha-reload {
  width: 48px;
  height: 48px;
  background: #fafbfc;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #e67a00;
  font-size: 20px;
  border: 2px solid #e67a00;
}

.captcha-reload:hover {
  background: #e67a00;
  color: white;
  border-color: #e67a00;
  transform: rotate(180deg);
}

.captcha-input-wrapper {
  flex: 1;
  min-width: 200px;
}

.message,
.help-block {

  /* 
  padding: 2px; 
   margin-top: 2px; 
  border-radius: 2px; */
  float: right;
  color: #ff0000 !important;
  letter-spacing: .5px;
  font-weight: 500;
  font-size: 12px;
}



/* Captcha validation status */
.valid {
  color: #27ae60;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .5px;
}

.invalid {
  color: #ff0000;
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .captcha-container {
    flex-direction: column;
    gap: 12px;
  }

  .captcha-box {
    width: 100%;
    justify-content: center;
  }

  .captcha-input-wrapper {
    width: 100%;
  }
}