/* =========================================================
   Global Visa & Passport Services — style.css
   Theme: Navy Blue + Saffron/Orange
   Fonts: Syne (headings) + Nunito (body)
   Google Ads Compliant
   ========================================================= */

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1D3461;
  --saffron: #F47B20;
  --saffron-lt: #FF9A4D;
  --saffron-dk: #D4600D;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --text-main: #1A2238;
  --text-muted: #5C6B8A;
  --text-light: rgba(255, 255, 255, 0.75);
  --border: rgba(10, 22, 40, 0.09);
  --border-light: rgba(255, 255, 255, 0.12);
  --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.13);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ===========================
   BASE
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
}

p {
  line-height: 1.75;
}

a {
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.section-pad {
  padding: 96px 0;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate="fade-left"] {
  transform: translateX(-28px);
}

[data-animate="fade-right"] {
  transform: translateX(28px);
}

[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   COMPLIANCE BAR
=========================== */
.compliance-bar {
  background: var(--navy);
  border-bottom: 2px solid var(--saffron);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: all var(--transition);
}

.compliance-bar.hidden {
  display: none;
}

.compliance-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
}

.compliance-text strong {
  color: var(--saffron-lt);
}

.compliance-link {
  color: var(--saffron-lt);
  font-weight: 600;
  margin-left: 6px;
}

.compliance-link:hover {
  color: #fff;
}

.compliance-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 3px 10px;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.85rem;
}

.compliance-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  background: transparent;
  padding: 18px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* Brand */
.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244, 123, 32, 0.35);
}

.brand-icon.small {
  width: 34px;
  height: 34px;
  font-size: 1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.brand-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
}

/* Nav links */
.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75) !important;
  padding: 6px 12px !important;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

/* CTA button in navbar */
.btn-nav-cta {
  background: var(--saffron);
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 18px !important;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-head);
  border: none;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(244, 123, 32, 0.35);
}

.btn-nav-cta:hover {
  background: var(--saffron-dk);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 6px;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO — Full BG Image Layout
=========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /* Fallback gradient when no image */
  background-color: var(--navy-mid);
}

/* Dark overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgb(0, 0, 0) 0%,
      rgba(0, 0, 0, 0.849) 55%,
      rgba(0, 0, 0, 0.45) 100%);
}

/* Content sits above bg + overlay */
.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  /* clears navbar + compliance bar */
  padding-bottom: 80px;
}

.hero-inner {
  max-width: 640px;
}

/* Badge */
.badge-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(244, 123, 32, 0.12);
  border: 1px solid rgba(244, 123, 32, 0.35);
  color: var(--saffron-lt);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* Heading */
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin-bottom: 20px;
}

.highlight-text {
  color: var(--saffron);
}

/* Desc */
.hero-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 14px;
}

.hero-mini-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid rgba(244, 123, 32, 0.45);
  border-radius: 4px;
  padding: 8px 12px;
  max-width: 540px;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.35);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 123, 32, 0.45);
  color: #fff;
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 12px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* Stats */
.hero-stats {
  margin-top: 36px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-plus {
  color: var(--saffron);
  font-size: 1.6rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  align-self: center;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--saffron);
  border-radius: 4px;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    top: 5px;
    opacity: 1;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}


/* ===========================
   MARQUEE
=========================== */
.marquee-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(244, 123, 32, 0.15);
  border-bottom: 1px solid rgba(244, 123, 32, 0.15);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.marquee-track span:last-child {
  border-right: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===========================
   COMPLIANCE NOTE SECTION
=========================== */
.compliance-note-section {
  padding: 40px 0;
  background: var(--off-white);
}

.compliance-note-box {
  background: #fff;
  border: 1.5px solid rgba(244, 123, 32, 0.2);
  border-left: 5px solid var(--saffron);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}

.cn-icon {
  width: 56px;
  height: 56px;
  background: rgba(244, 123, 32, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--saffron);
  flex-shrink: 0;
}

.cn-title {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.cn-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.cn-text strong {
  color: var(--navy);
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-eyebrow {
  display: inline-block;
  background: rgba(244, 123, 32, 0.1);
  border: 1px solid rgba(244, 123, 32, 0.25);
  color: var(--saffron-dk);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.section-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.section-note strong {
  color: var(--navy);
}

/* ===========================
   SERVICE CARDS (with image)
=========================== */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 123, 32, 0.25);
}

/* Image area */
.service-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-mid);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

/* Image fallback */
.service-img-wrap.img-fallback .service-img {
  display: none;
}

.service-img-wrap .img-fallback-content {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--navy-light);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.service-img-wrap.img-fallback .img-fallback-content {
  display: flex;
}

.service-img-wrap .img-fallback-content i {
  font-size: 2.5rem;
  color: var(--saffron);
  opacity: 0.6;
}

/* Overlay icon on hover */
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.75) 0%, rgba(10, 22, 40, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-img-overlay {
  opacity: 1;
}

/* Card body */
.service-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--saffron-dk);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 16px;
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  color: var(--saffron);
  gap: 10px;
}

/* ===========================
   WHY SECTION
=========================== */
.why-section {
  background: var(--off-white);
}

.why-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.why-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.why-img-wrap.img-fallback .why-img {
  display: none;
}

.why-img-wrap .img-fallback-content {
  display: none;
  aspect-ratio: 4/5;
  background: var(--navy-light);
  border-radius: var(--radius);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.why-img-wrap.img-fallback .img-fallback-content {
  display: flex;
}

.why-img-wrap .img-fallback-content i {
  font-size: 3.5rem;
  color: var(--saffron);
  opacity: 0.6;
}

.why-overlay-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  color: #fff;
}

.wos-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.wos-label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: all var(--transition);
}

.why-item:hover {
  border-color: rgba(244, 123, 32, 0.3);
  box-shadow: var(--shadow-sm);
}

.why-item-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(244, 123, 32, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  font-size: 1.1rem;
}

.why-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.why-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   PROCESS
=========================== */
.process-section {
  background: var(--navy);
}

.process-section .section-eyebrow {
  background: rgba(244, 123, 32, 0.12);
  border-color: rgba(244, 123, 32, 0.3);
  color: var(--saffron-lt);
}

.process-section .section-title {
  color: #fff;
}

.process-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 190px;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
}

.process-step:hover {
  background: rgba(244, 123, 32, 0.08);
  border-color: rgba(244, 123, 32, 0.25);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(244, 123, 32, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.3);
}

.process-step h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 123, 32, 0.4);
  font-size: 1.4rem;
  padding: 0 8px;
  flex-shrink: 0;
  margin-top: 80px;
}

@media (max-width: 767px) {
  .process-grid {
    flex-direction: column;
    align-items: center;
  }

  .process-connector {
    transform: rotate(90deg);
    margin: 0;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
  }
}

/* ===========================
   TESTIMONIALS
=========================== */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testi-card:hover::before {
  opacity: 1;
}

.testi-card.featured {
  background: var(--navy);
  border-color: rgba(244, 123, 32, 0.3);
}

.testi-card.featured::before {
  opacity: 1;
}

.testi-card.featured .testi-text {
  color: rgba(255, 255, 255, 0.8);
}

.testi-card.featured strong {
  color: #fff;
}

.testi-card.featured .testi-author span {
  color: rgba(255, 255, 255, 0.5);
}

.testi-quote {
  font-size: 2rem;
  color: var(--saffron);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 4px;
}

.testi-card.featured .testi-quote {
  opacity: 0.5;
}

.stars {
  color: var(--saffron);
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.testi-card.featured .testi-author strong {
  color: #fff;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
  background: var(--off-white);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(244, 123, 32, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  font-size: 1rem;
}

.contact-info-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--saffron);
}

/* Form box */
.contact-form-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-privacy-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--off-white);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 20px;
}

.form-privacy-note a {
  color: var(--saffron-dk);
  font-weight: 600;
}

/* Inputs */
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--off-white);
  transition: all var(--transition);
}

.custom-input:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.12);
  background: #fff;
  outline: none;
}

.form-check-input:checked {
  background-color: var(--saffron);
  border-color: var(--saffron);
}

.req {
  color: var(--saffron);
}

.success-msg {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #047857;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* WhatsApp button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  padding: 11px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

/* ===========================
   DISCLAIMER SECTION
=========================== */
.disclaimer-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
}

.eyebrow-light {
  background: rgba(244, 123, 32, 0.12);
  border-color: rgba(244, 123, 32, 0.3);
  color: var(--saffron-lt);
}

.light-title {
  color: #fff;
}

.light-desc {
  color: rgba(255, 255, 255, 0.55);
}

.disclaimer-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.disclaimer-ad-note {
  border-color: rgba(244, 123, 32, 0.25);
}

.db-title {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.db-title i {
  color: var(--saffron);
}

.db-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.db-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}

.db-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-weight: 700;
}

.db-list li strong {
  color: rgba(255, 255, 255, 0.9);
}

.db-list li a {
  color: var(--saffron-lt);
}

.db-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0;
}

.db-text strong {
  color: rgba(255, 255, 255, 0.9);
}

.db-text a {
  color: var(--saffron-lt);
  font-weight: 600;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 72px 0 0;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}

.footer-heading {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--saffron-lt);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list i {
  color: var(--saffron);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list span,
.footer-contact-list a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-contact-list a:hover {
  color: var(--saffron-lt);
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 6px;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto !important;
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.45);
}

.footer-disclaimer a {
  color: rgba(244, 123, 32, 0.6);
}

/* ===========================
   FLOATING CTAs
=========================== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.call-btn {
  background: var(--saffron);
}

.call-btn:hover {
  background: var(--saffron-dk);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 991px) {
  .section-pad {
    padding: 72px 0;
  }

  .why-overlay-stat {
    bottom: -10px;
    right: -10px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 56px 0;
  }

  .hero-section .container {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .contact-form-box {
    padding: 24px 18px;
  }

  .why-overlay-stat {
    display: none;
  }

  .compliance-note-box {
    padding: 18px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.7rem;
  }
}