/* ============================================================
   Quick Visa Solution — Main Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0a06ff;
  --primary-dark: #0603cc;
  --primary-light: #3d3aff;
  --accent: #f6a90a;
  --accent-dark: #d48e00;
  --white: #ffffff;
  --light-bg: #f4f5ff;
  --light-gray: #e8e8ff;
  --text-dark: #1a1f36;
  --text-muted: #6b7280;
  --border: #d1d5f0;
  --shadow: 0 4px 24px rgba(10,6,255,.10);
  --shadow-lg: 0 12px 48px rgba(10,6,255,.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(.4,0,.2,1);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Section Commons ---------- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white) !important;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(10,6,255,.30);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,6,255,.40);
}

.btn-accent-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white) !important;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(245,166,35,.30);
}
.btn-accent-custom:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,.40);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white) !important;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,.7);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 0;
  transition: var(--transition);
  background: transparent;
}

#mainNav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 24px rgba(10,6,255,.12);
  backdrop-filter: blur(12px);
}

/* Fix: nav links must be dark on white scrolled background */
#mainNav.scrolled .nav-link-item a {
  color: var(--text-dark) !important;
}
#mainNav.scrolled .navbar-brand .logo-text {
  color: var(--primary) !important;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand img { height: 48px; width: auto; }
/* Override for logo-swap images */
.navbar-brand .logo-swap-wrapper .logo-img { height: 50px; width: 180px; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span { color: var(--accent); display: block; font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link-item a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link-item a:hover,
.nav-link-item a.active {
  color: var(--accent) !important;
  background: rgba(255,255,255,.10);
}

/* On scrolled white background: use primary blue for hover/active */
#mainNav.scrolled .nav-link-item a:hover {
  color: var(--primary) !important;
  background: var(--light-bg);
}
#mainNav.scrolled .nav-link-item a.active {
  color: var(--primary) !important;
  background: var(--light-bg);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(245,166,35,.35);
}
.nav-cta:hover { background: var(--accent-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#mainNav.scrolled .hamburger span { background: var(--text-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #03027a 0%, #0a06ff 50%, #3d3aff 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  animation: float 8s ease-in-out infinite;
}
.hero-particles::before { width: 480px; height: 480px; top: -120px; right: -120px; }
.hero-particles::after  { width: 320px; height: 320px; bottom: -80px; left: -80px; animation-delay: -4s; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-32px) rotate(6deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.18);
  border: 1px solid rgba(245,166,35,.35);
  color: var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
  animation: fadeInDown .8s ease both;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  animation: fadeInUp .9s ease .1s both;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, #f5a623, #ffd270);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.80);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp .9s ease .2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .9s ease .3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
  animation: fadeInUp .9s ease .5s both;
}
.hero-stat-item h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-item h3 span { color: var(--accent); }
.hero-stat-item p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

.hero-image-col {
  position: relative;
  z-index: 2;
  animation: fadeInRight .9s ease .4s both;
}
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  /* overflow:hidden removed — it was clipping the floating stat cards */
  box-shadow: var(--shadow-lg);
}
/* Apply border-radius clipping directly to the image only */
.hero-img-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(10,6,255,.18);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  min-width: 160px;
}
/* Fully inside the image bounds so nothing gets clipped */
.hero-card-float.card-1 { bottom: 36px; left: 20px; }
.hero-card-float.card-2 { top: 36px;   right: 20px; }
.hero-card-float i { font-size: 24px; color: var(--primary); }
.hero-card-float h4 { font-size: 20px; font-weight: 800; color: var(--text-dark); line-height: 1; margin: 0; }
.hero-card-float p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ============================================================
   SEARCH / FILTER BAR
   ============================================================ */
.search-section {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -40px;
}
.search-bar-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  border: 1px solid var(--border);
}
.search-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.search-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.search-field select,
.search-field input {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.search-field input { background-image: none; }
.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,6,255,.12);
}
.search-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--light-bg); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { border-color: var(--light-gray); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #e8f0fe, #c8dcff);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  transform: rotateY(180deg);
}
.service-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.service-card .learn-more {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card:hover .learn-more { gap: 8px; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations-section { background: var(--white); }

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  height: 280px;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.dest-card:hover img { transform: scale(1.08); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,71,.85) 0%, rgba(10,37,71,.20) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
}
.dest-flag { font-size: 36px; margin-bottom: 8px; }
.dest-overlay h4 { font-size: 20px; color: var(--white); font-weight: 700; margin-bottom: 4px; }
.dest-overlay p { font-size: 12px; color: rgba(255,255,255,.75); }
.dest-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: linear-gradient(135deg, #03027a 0%, #0a06ff 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  top: -200px; right: -200px;
}

.why-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  animation: fadeInLeft .6s ease both;
}
.why-feature-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent);
  transition: var(--transition);
}
.why-feature:hover .why-feature-icon { background: var(--accent); color: var(--white); transform: scale(1.1); }

.why-feature-text h4 { font-size: 17px; color: var(--white); font-weight: 700; margin-bottom: 6px; }
.why-feature-text p { font-size: 14px; color: rgba(255,255,255,.70); line-height: 1.7; }

.why-img-col { position: relative; }
.why-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.why-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 130px;
}
.why-stat-card.c1 { bottom: -20px; left: -20px; }
.why-stat-card.c2 { top: 30px; right: -20px; }
.why-stat-card h3 { font-size: 26px; font-weight: 800; color: var(--primary); }
.why-stat-card p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission-section { background: var(--light-bg); }
.mission-content { max-width: 700px; }
.mission-content p { font-size: 16px; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; }
.mission-points { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mission-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}
.mission-point i { color: var(--primary); font-size: 18px; }

.mission-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 480px;
  object-fit: cover;
  width: 100%;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #f5c842 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '✈';
  position: absolute;
  font-size: 200px;
  opacity: .06;
  right: 10%;
  top: -20px;
}
.cta-band h2 { font-size: clamp(26px, 3.5vw, 38px); color: var(--white); margin-bottom: 14px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }

.cta-band .btn-white {
  background: var(--white);
  color: var(--accent) !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: var(--transition);
}
.cta-band .btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.20); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 80px;
  color: var(--light-gray);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.testimonial-stars { color: var(--accent); font-size: 16px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-gray);
}
.testimonial-author-info h5 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.testimonial-author-info span { font-size: 13px; color: var(--text-muted); }

.testimonial-slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section { background: var(--light-bg); }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--light-gray); }

.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-cat-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.blog-card-body { padding: 24px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-body h4 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-card:hover .blog-read-more { gap: 8px; }

/* ============================================================
   CERTIFICATES
   ============================================================ */
.certs-section { background: var(--white); padding: 70px 0; }

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.cert-item:hover { border-color: var(--primary); background: var(--light-bg); transform: translateY(-4px); }

.cert-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #e8f0fe, #c8dcff);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.cert-item h5 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.cert-item p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { background: var(--light-bg); }
.step-item {
  text-align: center;
  position: relative;
}
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(10,6,255,.30);
  position: relative;
  z-index: 1;
}
.step-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0a1628;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height: 1.8;
}

.footer-main { padding: 70px 0 40px; }

.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand .logo-text-footer { color: var(--white); font-family: var(--font-heading); font-size: 20px; font-weight: 800; }
.footer-brand .logo-text-footer span { color: var(--accent); }
.footer-desc { max-width: 280px; margin: 12px 0 20px; color: rgba(255,255,255,.55); }

.social-links { display: flex; gap: 10px; margin-top: 4px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.70);
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.footer-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.60); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 16px; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i { color: var(--accent); font-size: 16px; margin-top: 4px; }
.footer-contact-item span { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.60); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #03027a 0%, #0a06ff 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: .12;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); color: var(--white); position: relative; z-index: 1; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 500px; margin: 12px auto 0; position: relative; z-index: 1; }
.breadcrumb-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.breadcrumb-custom a { color: rgba(255,255,255,.65); }
.breadcrumb-custom span { color: var(--accent); }
.breadcrumb-custom .sep { color: rgba(255,255,255,.40); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.about-team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.about-team-card img { width: 100%; height: 260px; object-fit: cover; }
.about-team-body { padding: 20px; }
.about-team-body h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.about-team-body p { font-size: 13px; color: var(--primary); font-weight: 500; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-control-custom {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,6,255,.12);
}
.form-control-custom::placeholder { color: #9ca3af; }

textarea.form-control-custom { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: linear-gradient(135deg, #03027a, #0a06ff);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  height: 100%;
}
.contact-info-card h3 { font-size: 24px; margin-bottom: 12px; }
.contact-info-card p { color: rgba(255,255,255,.70); margin-bottom: 32px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item .ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
}
.contact-info-item h5 { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; margin-bottom: 2px; }
.contact-info-item p { font-size: 15px; color: var(--white); font-weight: 600; margin: 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(10,6,255,.35);
  transition: var(--transition);
}
#backToTop:hover { background: var(--primary-dark); transform: translateY(-3px); }
#backToTop.show { display: flex; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .section-pad { padding: 70px 0; }
  .hero-image-col { display: none; }
  .search-bar-inner { grid-template-columns: 1fr 1fr; }

  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: var(--transition);
    opacity: 0;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; }
  .nav-link-item a { color: var(--text-dark) !important; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 576px) {
  .search-bar-inner { grid-template-columns: 1fr; }
  .search-bar-wrap { padding: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-stat-card { display: none; }
  .cta-band { padding: 50px 0; }
  .hero-card-float { display: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-primary-custom { color: var(--primary); }
.text-accent { color: var(--accent); }
.bg-light-custom { background: var(--light-bg); }
.fw-800 { font-weight: 800; }
.mt-auto { margin-top: auto; }
.gap-custom { gap: 24px; }
.rounded-custom { border-radius: var(--radius); }

/* Number counter */
.counter-wrap { display: inline-block; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 30px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,.40);
  transition: var(--transition);
  color: var(--white);
  font-size: 26px;
}
.whatsapp-float:hover { transform: scale(1.12); }

/* ============================================================
   LOGO — Scroll-swap (slider-logo ↔ logo)
   ============================================================ */
.logo-swap-wrapper {
  position: relative;
  height: 50px;
  width: 180px;
  margin-right: 10px;
  flex-shrink: 0;
}

.logo-swap-wrapper .logo-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 180px;
  object-fit: contain;
  margin-right: 0;
  transition: opacity 0.4s ease, transform 0.3s ease, filter 0.3s ease;
  display: block;
}

/* Default state (top of page): slider-logo visible, logo hidden */
.logo-swap-wrapper .logo-top      { opacity: 1; }
.logo-swap-wrapper .logo-scrolled { opacity: 0; }

/* Scrolled state: swap */
#mainNav.scrolled .logo-swap-wrapper .logo-top      { opacity: 0; }
#mainNav.scrolled .logo-swap-wrapper .logo-scrolled { opacity: 1; }

.logo-swap-wrapper .logo-img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Footer logo */
.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  margin-right: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
}
.footer-logo-img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

@media (max-width: 768px) {
  .logo-swap-wrapper {
    height: 38px;
    width: 140px;
  }
  .logo-swap-wrapper .logo-img,
  .navbar-brand .logo-swap-wrapper .logo-img {
    height: 38px;
    width: 140px;
  }
  .footer-logo-img {
    height: 38px;
  }
}


/* ============================================================
   LEGAL PAGES (Privacy & Terms)
   ============================================================ */
.legal-intro-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f3ff 100%);
  border: 1px solid rgba(26, 79, 156, .15);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 48px;
}
.legal-intro-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(26, 79, 156, .3);
}
.legal-intro-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.legal-intro-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-intro-text a { color: var(--primary); font-weight: 600; }

.legal-section {
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.legal-section:hover { box-shadow: var(--shadow-lg); }

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
}
.legal-section-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(26, 79, 156, .1);
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.legal-section-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.legal-section-body {
  padding: 28px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}
.legal-section-body p { margin-bottom: 14px; }
.legal-section-body p:last-child { margin-bottom: 0; }
.legal-section-body strong { color: var(--text-dark); }

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.legal-list li i {
  color: #22c55e;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.legal-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(26, 79, 156, .07);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-dark);
  margin-top: 16px;
}
.legal-highlight-box i { color: var(--primary); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.legal-highlight-box--green { background: rgba(34, 197, 94, .08); border-left-color: #22c55e; }
.legal-highlight-box--green i { color: #22c55e; }
.legal-highlight-box--warning { background: rgba(245, 158, 11, .08); border-left-color: #f59e0b; }
.legal-highlight-box--warning i { color: #f59e0b; }

.legal-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 6px;
}
.legal-badge-warning {
  background: rgba(245, 158, 11, .12);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, .3);
}

.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.legal-right-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  transition: border-color .25s, transform .25s;
}
.legal-right-item:hover { border-color: var(--primary); transform: translateY(-2px); }
.legal-right-icon {
  width: 40px;
  height: 40px;
  background: rgba(26, 79, 156, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.legal-right-item strong { display: block; color: var(--text-dark); font-size: 14px; margin-bottom: 4px; }
.legal-right-item p { color: var(--text-muted); font-size: 13px; margin: 0; line-height: 1.6; }

.legal-contact-card {
  background: linear-gradient(135deg, #111827 0%, #1a2e4a 100%);
  border-radius: 20px;
  padding: 40px;
  color: rgba(255,255,255,.85);
  margin-top: 48px;
}
.legal-contact-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.legal-contact-title i { color: #f6a90a; font-size: 22px; }
.legal-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  margin-bottom: 28px;
}
.legal-contact-item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}
.legal-contact-item i {
  font-size: 20px;
  color: #f6a90a;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.legal-contact-item a { color: rgba(255,255,255,.75); text-decoration: none; }
.legal-contact-item a:hover { color: #fff; }
.legal-contact-item strong { color: rgba(255,255,255,.9); display: block; font-size: 13px; margin-bottom: 2px; }
.legal-last-updated {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

}

@media (max-width: 576px) {
  .legal-intro-card { flex-direction: column; padding: 24px; }
  .legal-section-body { padding: 20px; }
  .legal-contact-card { padding: 24px; }
  .legal-rights-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

/* Intro card */
.faq-intro {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f3ff 100%);
  border: 1px solid rgba(26,79,156,.15);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 36px;
}
.faq-intro-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: #fff;
  box-shadow: 0 8px 24px rgba(26,79,156,.25);
}
.faq-intro-title {
  font-size: 22px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}
.faq-intro-text {
  color: var(--text-muted); font-size: 15px;
  line-height: 1.8; margin: 0;
}
.faq-intro-text a { color: var(--primary); font-weight: 600; }

/* Stats strip */
.faq-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, #03027a 0%, #0a06ff 100%);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.faq-stat {
  display: flex; flex-direction: column;
  align-items: center; flex: 1; min-width: 100px;
}
.faq-stat-val {
  font-size: 30px; font-weight: 800;
  color: #f6a90a; line-height: 1;
}
.faq-stat-label {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.70);
  margin-top: 6px; text-align: center; letter-spacing: .3px;
}
.faq-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Category Tabs */
.faq-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.faq-tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}
.faq-tab:hover { border-color: var(--primary); color: var(--primary); }
.faq-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(10,6,255,.25);
}

/* Accordion */
.faq-accordion { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
  background: var(--white);
}
.faq-item:hover { border-color: rgba(10,6,255,.25); box-shadow: var(--shadow); }
.faq-item.open { border-color: var(--primary); box-shadow: 0 4px 24px rgba(10,6,255,.12); }

.faq-question {
  width: 100%;
  display: flex; align-items: center;
  gap: 16px;
  background: none; border: none;
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  transition: background .2s ease;
}
.faq-question:hover { background: rgba(10,6,255,.03); }
.faq-item.open .faq-question { background: rgba(10,6,255,.05); }

.faq-q-num {
  flex-shrink: 0;
  font-size: 12px; font-weight: 800;
  color: var(--primary);
  background: rgba(10,6,255,.1);
  padding: 4px 10px; border-radius: 8px;
  letter-spacing: .5px;
}
.faq-item.open .faq-q-num { background: var(--primary); color: #fff; }

.faq-q-text {
  flex: 1;
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); line-height: 1.45;
}
.faq-item.open .faq-q-text { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-muted);
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--primary); color: #fff;
  transform: rotate(180deg);
}

.faq-answer { transition: none; }
.faq-answer-inner {
  padding: 4px 24px 28px 24px;
  border-top: 1px solid var(--border);
}

/* Shared list inside FAQ */
.faq-list {
  list-style: none; padding: 0; margin: 12px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text-muted);
}
.faq-list li i { color: var(--primary); font-size: 15px; flex-shrink: 0; }

/* Highlight box inside FAQ */
.faq-highlight-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(10,6,255,.06);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-size: 14px; color: var(--text-dark);
  margin-top: 16px;
}
.faq-highlight-box i { color: var(--primary); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.faq-highlight-box--green {
  background: rgba(34,197,94,.08);
  border-left-color: #22c55e;
}
.faq-highlight-box--green i { color: #22c55e; }

/* Benefit grid (Q2) */
.faq-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px; margin-top: 16px;
}
.faq-benefit {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 16px;
  transition: var(--transition);
}
.faq-benefit:hover { border-color: var(--primary); transform: translateY(-2px); }
.faq-benefit i {
  font-size: 22px; color: var(--primary);
  flex-shrink: 0; margin-top: 2px;
}
.faq-benefit strong { display: block; font-size: 14px; color: var(--text-dark); margin-bottom: 4px; }
.faq-benefit p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Service cards grid (Q5) */
.faq-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px; margin-top: 16px;
}
.faq-service-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; text-align: center;
  background: linear-gradient(135deg, #f0f6ff, #e8f3ff);
  border: 1.5px solid rgba(26,79,156,.15);
  border-radius: 14px; padding: 22px 14px;
  transition: var(--transition);
}
.faq-service-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.faq-service-card i { font-size: 26px; color: var(--primary); }
.faq-service-card span { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }

/* Pipeline steps (Q6) */
.faq-pipeline {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 16px;
}
.faq-pipeline-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.faq-pipeline-step:last-child { border-bottom: none; }
.faq-pipeline-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; font-size: 15px; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(10,6,255,.25);
}
.faq-pipeline-info strong { display: block; font-size: 15px; color: var(--text-dark); margin-bottom: 4px; }
.faq-pipeline-info p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Timeline cards (Q7) */
.faq-timeline-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; margin: 16px 0;
}
.faq-timeline-card {
  border-radius: 14px; padding: 24px 20px;
  border: 1.5px solid transparent;
}
.faq-timeline-green {
  background: rgba(34,197,94,.08);
  border-color: rgba(34,197,94,.3);
}
.faq-timeline-blue {
  background: rgba(10,6,255,.06);
  border-color: rgba(10,6,255,.2);
}
.faq-timeline-range {
  font-size: 22px; font-weight: 800;
  margin-bottom: 4px;
}
.faq-timeline-green .faq-timeline-range { color: #16a34a; }
.faq-timeline-blue .faq-timeline-range  { color: var(--primary); }
.faq-timeline-type {
  font-size: 14px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 8px;
}
.faq-timeline-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Process steps (Q8) */
.faq-process-steps {
  display: flex; flex-direction: column;
  margin-top: 16px;
}
.faq-process-step {
  display: flex; gap: 16px; align-items: stretch;
  position: relative;
}
.faq-process-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; font-size: 16px; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(10,6,255,.25);
  position: relative; z-index: 1; flex-shrink: 0; margin-top: 0;
}
.faq-process-connector {
  position: absolute;
  left: 19px; top: 40px;
  width: 2px; height: calc(100% + 8px);
  background: linear-gradient(to bottom, var(--primary), rgba(10,6,255,.15));
}
.faq-process-body {
  padding: 8px 0 24px;
  flex: 1;
}
.faq-process-body strong { display: block; font-size: 15px; color: var(--text-dark); margin-bottom: 4px; }
.faq-process-body p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.faq-process-step.last .faq-process-body { padding-bottom: 0; }

/* Bottom CTA card */
.faq-bottom-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #111827 0%, #1a2e4a 100%);
  border-radius: 20px;
  padding: 32px 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.faq-bottom-cta-icon {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: rgba(246,169,10,.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #f6a90a;
}
.faq-bottom-cta h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.faq-bottom-cta p  { font-size: 14px; color: rgba(255,255,255,.65); margin: 0; }
.faq-bottom-cta > div:nth-child(2) { flex: 1; min-width: 180px; }
.faq-bottom-cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0;
}
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: 14px;
  transition: var(--transition);
  border: none; text-decoration: none;
}
.btn-primary-custom:hover { background: var(--primary-dark); transform: translateY(-2px); color: #fff; box-shadow: 0 6px 20px rgba(10,6,255,.3); }
.btn-outline-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 600; font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-custom:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* FAQ responsive */
@media (max-width: 768px) {
  .faq-intro { flex-direction: column; padding: 24px; gap: 16px; }
  .faq-stats-strip { gap: 16px; padding: 20px; }
  .faq-stat-divider { display: none; }
  .faq-bottom-cta { flex-direction: column; align-items: flex-start; padding: 24px; gap: 18px; }
  .faq-bottom-cta-icon { display: none; }
  .faq-q-text { font-size: 14px; }
  .faq-question { padding: 18px 16px; gap: 12px; }
  .faq-answer-inner { padding: 4px 16px 22px; }
  .faq-benefit-grid { grid-template-columns: 1fr; }
  .faq-service-cards { grid-template-columns: repeat(2, 1fr); }
  .faq-timeline-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .faq-service-cards { grid-template-columns: 1fr; }
  .faq-tabs { gap: 8px; }
  .faq-tab { padding: 8px 16px; font-size: 12px; }
  .faq-stat-val { font-size: 22px; }
}
