:root {
  --primary-amber: #FFBF00;
  --primary-amber-glow: rgba(255, 191, 0, 0.4);
  --secondary-navy: #0A1F44;
  --bg-dark-navy: #0A1F44;
  --text-light: #F8FAFC;
  --text-dark: #0A1F44;
  --glass-bg: rgba(10, 31, 68, 0.85);
  --glass-border: rgba(255, 255, 255, 0.05);
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Helvetica Neue', Arial, sans-serif;
  --strip-height: 36px;
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-light);
  background-color: var(--secondary-navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =========================================
   1. TOP MOVING STRIP (PUTTY BAR)
   ========================================= */
.top-strip {
  position: relative;
  height: var(--strip-height);
  background: linear-gradient(90deg, #FFBF00 0%, #FFD700 100%);
  box-shadow: 0 2px 10px rgba(255, 191, 0, 0.3);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 100;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.strip-item {
  color: var(--secondary-navy);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.strip-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   2. HEADER / NAVBAR
   ========================================= */
.site-header {
  position: fixed;
  top: var(--strip-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 90;
  transition: var(--transition);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  top: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 900;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary-amber);
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: opacity 0.3s ease;
  padding: 0.5rem 0;
  opacity: 0.85;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-amber);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--primary-amber);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Hero Primary Button */
.btn-glowing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary-amber);
  color: var(--secondary-navy);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(255, 191, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

/* Header CTA Button override */
.site-header .btn-glowing, .nav-menu .btn-glowing {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px var(--primary-amber-glow);
}

.btn-glowing:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Secondary Button (Glass) */
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--primary-amber);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--primary-amber);
}

.mobile-only {
  display: none;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(var(--strip-height) * -1); /* Full bleed to top */
  padding-top: calc(var(--strip-height) + var(--header-height));
  background: var(--secondary-navy);
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* Subtle zoom base */
  transition: transform 10s ease-out;
}

.hero.has-animated .hero-video {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(10, 31, 68, 0.7), rgba(10, 31, 68, 0.9)),
    radial-gradient(circle at 70% 30%, #152c54 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, #152c54 0%, transparent 50%);
  z-index: 1;
}

.hero-glow-1, .hero-glow-2 {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 850px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(3rem, 6vw, 72px);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -2px;
  opacity: 0;
  transform: translateY(30px);
  background: linear-gradient(to bottom, #fff, #bbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .highlight {
  color: var(--primary-amber);
  -webkit-text-fill-color: var(--primary-amber);
  display: inline-block;
  padding-bottom: 0.1em;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 800px;
  padding: 0 10%;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

/* Trust badge matches the design closely and stacks ABOVE the header */
.hero-trust {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-amber);
  font-weight: 700;
  border: 1px solid rgba(255, 191, 0, 0.3);
  padding: 6px 16px;
  border-radius: 4px;
  background: rgba(255, 191, 0, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  order: -1; /* Move trust badge ABOVE the title in the flex column container */
  margin-bottom: 24px;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 191, 0, 0.3);
  margin-left: -8px;
  background-color: #334;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: white;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 11px;
  color: var(--primary-amber);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Animations Triggered via JS */
.hero.has-animated .hero-trust {
  animation: slideUpFade 0.8s 0.2s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero.has-animated .hero-title {
  animation: slideUpFade 0.8s 0.4s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero.has-animated .hero-subtitle {
  animation: slideUpFade 0.8s 0.6s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero.has-animated .hero-actions {
  animation: slideUpFade 0.8s 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSIVENESS (MOBILE-FIRST MINDSET APPLIED TOP-DOWN)
   ========================================= */
@media (max-width: 968px) {
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: -1px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .site-header {
    padding: 0 5%;
  }

  .marquee-content {
    gap: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 31, 68, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 20vh;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    z-index: 80;
  }
  
  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .nav-link {
    font-size: 1.5rem;
  }
  
  .mobile-only {
    display: block;
  }
  
  .nav-menu .mobile-cta {
    display: flex !important;
    margin-top: 1rem;
    font-size: 1.1rem;
  }
  
  .desktop-cta {
    display: none; /* Hide header CTA on mobile, show in menu */
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }
  
  .hero-subtitle {
     padding: 0;
     font-size: 16px;
  }

  .btn-glowing, .btn-glass {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   4. WHY CHOOSE US (FEATURES)
   ========================================= */
.features {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--secondary-navy) 0%, #06122a 100%);
  position: relative;
}

.features--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* BIG visible stars */
  background-image:
    radial-gradient(4px 4px at 60px 80px, rgba(255,255,255,1), transparent 60%),
    radial-gradient(3px 3px at 180px 140px, rgba(255,255,255,0.9), transparent 60%),
    radial-gradient(4px 4px at 300px 90px, rgba(255,255,255,1), transparent 60%),
    radial-gradient(3px 3px at 420px 200px, rgba(255,255,255,0.85), transparent 60%),
    radial-gradient(3.5px 3.5px at 520px 120px, rgba(255,255,255,1), transparent 60%),
    radial-gradient(2.8px 2.8px at 650px 180px, rgba(255,255,255,0.8), transparent 60%),
    radial-gradient(4px 4px at 780px 100px, rgba(255,255,255,1), transparent 60%),
    radial-gradient(3px 3px at 900px 220px, rgba(255,255,255,0.9), transparent 60%),

    /* medium fill stars */
    radial-gradient(2px 2px at 120px 300px, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(2px 2px at 260px 260px, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(2px 2px at 480px 320px, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(2px 2px at 700px 300px, rgba(255,255,255,0.7), transparent 60%);

  background-size: 1000px 600px;

  opacity: 0.85;

  animation: starMoveBig 16s linear infinite;
}

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

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--text-light);
}

.features-header h2 {
  font-size: 14px;
  color: var(--primary-amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 700;
}

.features-header h3 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  margin-bottom: 24px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}

.features-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.feature-card {
  background: rgba(10, 31, 68, 0.5);
  border: 1px solid rgba(255, 191, 0, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 191, 0, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 191, 0, 0.5);
  box-shadow: 0 15px 40px rgba(255, 191, 0, 0.15), inset 0 0 20px rgba(255, 191, 0, 0.05);
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 191, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-amber);
  border: 1px solid rgba(255, 191, 0, 0.2);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-light);
}

.feature-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 60px;
}

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

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--primary-amber);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 191, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Utility Animations setup for JS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 968px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    padding: 60px 20px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .stats-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================================
   5. PRICING SECTION
   ========================================= */
.pricing {
  padding: 100px 5%;
  background-color: #F8FAFC; /* Light background */
  color: var(--secondary-navy);
  position: relative;
}

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

.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.pricing-header h2 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  margin-bottom: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--secondary-navy);
}

.pricing-header p {
  font-size: 18px;
  color: rgba(10, 31, 68, 0.7);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center; /* helps featured card expand slightly in middle */
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(10, 31, 68, 0.05);
  border: 1px solid rgba(10, 31, 68, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 31, 68, 0.1), 0 0 0 2px var(--primary-amber-glow);
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-amber);
  box-shadow: 0 20px 40px rgba(10, 31, 68, 0.1), 0 0 20px var(--primary-amber-glow);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.most-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-amber);
  color: var(--secondary-navy);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 4px 10px var(--primary-amber-glow);
}

.card-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(10, 31, 68, 0.1);
}

.card-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: 900;
  color: var(--secondary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.price span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(10, 31, 68, 0.5);
  margin-left: 4px;
}

.highlight-text {
  color: var(--primary-amber);
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(10, 31, 68, 0.8);
  line-height: 1.5;
}

.features-list li.disabled {
  color: rgba(10, 31, 68, 0.4);
  text-decoration: line-through;
}

.features-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features-list .check {
  stroke: var(--primary-amber);
}

.features-list .disabled .cross {
  stroke: rgba(10, 31, 68, 0.3);
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  background: rgba(10, 31, 68, 0.05);
  color: var(--secondary-navy);
  border: 1px solid rgba(10, 31, 68, 0.1);
}

.btn-plan:hover {
  background: var(--secondary-navy);
  color: #FFFFFF;
}

.btn-plan.primary {
  background: var(--primary-amber);
  color: var(--secondary-navy);
  border: none;
  box-shadow: 0 8px 20px var(--primary-amber-glow);
}

.btn-plan.primary:hover {
  background: var(--secondary-navy);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(10, 31, 68, 0.2);
}

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: scale(1);
    grid-column: 1 / -1;
  }
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 20px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    grid-column: auto;
  }
}

/* =========================================
   6. HOW IT WORKS SECTION
   ========================================= */
.how-it-works {
  position: relative;
  background: linear-gradient(135deg, #0A1F44, #07142e);
  padding: 100px 5%;
  overflow: hidden;
  color: var(--text-light);
  z-index: 1;
}

.glow-separator {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-amber), transparent);
  box-shadow: 0 0 15px var(--primary-amber-glow);
  opacity: 0.4;
}

.glow-separator.top { top: 0; }
.glow-separator.bottom { bottom: 0; }

.hw-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
}

.hw-blob-1 {
  top: -50px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255, 191, 0, 0.1);
  animation: float 15s infinite;
}

.hw-blob-2 {
  bottom: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 191, 0, 0.08);
  animation: float 12s infinite reverse;
}

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

.hw-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.hw-header h2 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  margin-bottom: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hw-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.hw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.hw-step {
  background: rgba(10, 31, 68, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.hw-step:hover {
  transform: translateY(-8px);
  background: rgba(10, 31, 68, 0.6);
  border-color: rgba(255, 191, 0, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hw-connector {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-amber);
  box-shadow: 0 0 10px var(--primary-amber-glow);
  z-index: 0;
  transition: width 1s ease-in-out 0.4s;
}

.hw-step.visible .hw-connector {
  width: calc(100% + 30px);
}

.hw-step:last-child .hw-connector {
  display: none;
}

.hw-step-num {
  width: 60px;
  height: 60px;
  background: #0A1F44;
  border: 2px solid var(--primary-amber);
  color: var(--primary-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 0 20px var(--primary-amber-glow);
  animation: pulse-glow 3s infinite;
  z-index: 2;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 191, 0, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255, 191, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 191, 0, 0); }
}

.hw-step-icon {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.hw-step-icon svg {
  width: 32px;
  height: 32px;
}

.hw-step h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

.hw-step p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .hw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    row-gap: 40px;
  }
  .hw-step.visible .hw-connector {
    width: calc(100% + 20px);
  }
  .hw-step:nth-child(even) .hw-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .how-it-works { padding: 60px 20px; }
  .hw-grid { gap: 15px; row-gap: 30px; }
  .hw-step.visible .hw-connector { width: calc(100% + 15px); }
  .hw-step { padding: 30px 15px; }
  .hw-step h4 { font-size: 16px; }
  .hw-step p { font-size: 13px; }
  .hw-step-num { width: 44px; height: 44px; font-size: 18px; margin-bottom: 16px; }
  .hw-connector { top: 52px; }
}

/* =========================================
   7. HOLIDAY PACKAGES SECTION
   ========================================= */
.holiday-packages {
  padding: 100px 5%;
  background: #f8f6f2; /* Soft luxury background */
  position: relative;
  z-index: 1;
}

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

.hp-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--secondary-navy);
}

.hp-header h2 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  margin-bottom: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hp-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-amber);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hp-desc {
  font-size: 1.1rem;
  color: rgba(10, 31, 68, 0.7);
  line-height: 1.6;
}

.hp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px; /* row gap 40, col gap 30 */
  margin-bottom: 60px;
}

.hp-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.03);
}

.hp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 2px var(--primary-amber-glow);
}

.hp-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.hp-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hp-card:hover .hp-img-wrapper img {
  transform: scale(1.08); /* slight image zoom */
}

.hp-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-amber);
  color: var(--secondary-navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hp-badge-best {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-navy);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hp-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.hp-content {
  padding: 24px 30px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
  position: relative;
}

.hp-top {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.hp-top h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 8px;
}

.hp-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-amber);
}

.hp-price span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(10, 31, 68, 0.6);
}

.hp-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.hp-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(10, 31, 68, 0.8);
  font-weight: 500;
}

.hp-features .check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--primary-amber);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hp-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  background: var(--secondary-navy);
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.hp-btn:hover {
  background: var(--primary-amber);
  color: var(--secondary-navy);
  box-shadow: 0 8px 20px var(--primary-amber-glow);
}

.hp-explore {
  text-align: center;
  margin-top: 20px;
}

.hp-explore-btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--primary-amber);
  color: var(--secondary-navy);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px var(--primary-amber-glow);
}

.hp-explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px var(--primary-amber-glow);
  background: #ffc926;
}

/* Tablet Layout */
@media (max-width: 1024px) {
  .hp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile swipe-friendly grid */
@media (max-width: 768px) {
  .holiday-packages {
    padding: 60px 20px;
  }
  
  .hp-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    margin-right: -20px; /* Negative margin to fade off edge */
    padding-right: 20px;
    /* Hide scrollbar for a cleaner look */
    -ms-overflow-style: none; 
    scrollbar-width: none;
  }
  
  .hp-grid::-webkit-scrollbar { 
    display: none; 
  }
  
  .hp-card {
    min-width: 85vw;
    scroll-snap-align: center;
  }
  
  .hp-badge, .hp-badge-best { 
    font-size: 11px; 
    padding: 5px 12px; 
  }
  
  .hp-header h2 { 
    font-size: 2.2rem; 
  }
  
  .hp-img-wrapper { 
    height: 200px; 
  }
}

/* =========================================
   8. THE WAYNEX STANDARD SECTION
   ========================================= */
.waynex-standard {
  position: relative;
  padding: 100px 5%;
  background: linear-gradient(135deg, #f7f6f2, #eef3ff);
  overflow: hidden;
  color: var(--secondary-navy);
  z-index: 1;
}

.ws-bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
}

.ws-bg-blur.blur-1 {
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 191, 0, 0.15);
  animation: float 14s infinite alternate;
}

.ws-bg-blur.blur-2 {
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: rgba(10, 31, 68, 0.05);
  animation: float 18s infinite alternate-reverse;
}

.standard-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-amber), transparent);
  background-size: 200% 100%;
  animation: shimmerLine 3s infinite linear;
  opacity: 0.7;
}

.standard-divider.top { top: 0; }
.standard-divider.bottom { bottom: 0; }

@keyframes shimmerLine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

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

.ws-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.ws-header h2 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
  color: var(--secondary-navy);
}

.ws-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.ws-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(10, 31, 68, 0.75);
}

.ws-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.ws-card {
  background: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
}

.ws-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--secondary-navy);
}

.ws-card p {
  font-size: 16px;
  color: rgba(10, 31, 68, 0.65);
  line-height: 1.5;
}

.ws-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 191, 0, 0.1);
  color: var(--primary-amber);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ws-icon svg {
  width: 24px;
  height: 24px;
}

.ws-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 2px var(--primary-amber-glow);
}

/* Unique Shapes */
.ws-card-large {
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #fdfdfd);
}

.ws-card-angled {
  border-radius: 4px 40px 4px 40px;
}

.ws-card-glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.ws-card-rounded {
  border-radius: 50px 10px 50px 10px;
}

/* Big Stat Block */
.ws-stat {
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary-amber);
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.ws-stat .counter {
  animation: gentlePulse 2s infinite alternate;
  display: inline-block;
}

@keyframes gentlePulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.02); }
}

@media (max-width: 768px) {
  .waynex-standard {
    padding: 60px 20px;
  }
  .ws-grid {
    grid-template-columns: 1fr; /* Switch to 1 column for proper mobile flow, per modern UI rules */
    gap: 20px;
  }
  .ws-card {
    padding: 30px;
  }
  /* Normalize shapes slightly for mobile so they don't break layout */
  .ws-card-rounded { border-radius: 30px 10px 30px 10px; }
  .ws-card-angled { border-radius: 8px 24px 8px 24px; }
  .ws-header h2 { font-size: 2.2rem; }
}

/* =========================================
   9. CLIENT REVIEWS SECTION
   ========================================= */
.client-reviews {
  position: relative;
  padding: 100px 0; /* No side padding to allow full-width scroll */
  background: linear-gradient(135deg, #0b0f1a, #111827);
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}

.cr-noise {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
}

.cr-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -2;
  background: rgba(255, 191, 0, 0.15);
}

.orb-left {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -150px;
  animation: float 20s infinite;
}

.orb-right {
  width: 350px;
  height: 350px;
  bottom: 0;
  right: -100px;
  animation: float 15s infinite reverse;
}

.cr-container {
  max-width: 100%;
}

.cr-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.cr-header h2 {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cr-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.cr-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cr-stars {
  display: flex;
  gap: 4px;
  color: var(--primary-amber);
  filter: drop-shadow(0 0 8px rgba(255, 191, 0, 0.5));
}

.cr-stars svg {
  width: 24px;
  height: 24px;
}

.cr-rating span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.cr-rating strong {
  color: #fff;
  font-weight: 800;
}

.cr-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.cr-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.cr-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  /* Translate exactly by half the total track width to perfect the infinite loop */
  100% { transform: translateX(-50%); } 
}

.cr-card {
  width: 320px;
  margin-right: 30px; /* Used instead of gap to make infinite calc(-50%) perfect */
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 191, 0, 0.15);
  border-radius: 20px;
  padding: 30px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cr-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 191, 0, 0.5);
  box-shadow: 0 15px 40px rgba(255, 191, 0, 0.15), inset 0 0 20px rgba(255, 191, 0, 0.05);
  background: rgba(255, 255, 255, 0.05);
}

.cr-card-stars {
  color: var(--primary-amber);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 191, 0, 0.4);
}

.cr-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  flex-grow: 1;
  font-style: italic;
  margin-bottom: 24px;
}

.cr-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-amber);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cr-author::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: rgba(255, 191, 0, 0.2);
  border: 1px solid var(--primary-amber);
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFBF00"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .client-reviews { padding: 80px 0; }
  .cr-header h2 { font-size: 2.2rem; }
  .cr-card { 
    width: 280px; 
    margin-right: 20px; 
    padding: 24px; 
  }
}

/* =========================================
   10. VISA CONSULTATION FORM SECTION
   ========================================= */
.visa-consultation {
  position: relative;
  padding: 120px 5%;
  background: linear-gradient(135deg, #0a0f1f, #0f172a);
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}

.vc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  background: rgba(255, 191, 0, 0.12);
}

.vc-orb.orb-1 {
  width: 500px;
  height: 500px;
  top: -10%;
  left: 10%;
  animation: float 25s infinite alternate;
}

.vc-orb.orb-2 {
  width: 450px;
  height: 450px;
  bottom: -5%;
  right: -5%;
  animation: float 20s infinite alternate-reverse;
}

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

.vc-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.vc-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.vc-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.vc-grid {
  display: grid;
  grid-template-columns: 4fr 6fr; /* 40% left, 60% right */
  gap: 60px;
  align-items: center;
}

/* Left Visual Side */
.vc-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.vc-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto; /* Ensures centered horizontally */
  border-radius: 30px;
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}

.vc-glow-frame {
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,191,0,0.6), transparent, rgba(10,31,68,0.5));
  z-index: -1;
  filter: blur(8px);
}

.vc-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

.vc-tag {
  position: absolute;
  background: rgba(10, 31, 68, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 191, 0, 0.3);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-amber-glow);
}

.tag-1 { top: 15%; left: -10%; animation: float 6s linear infinite alternate; }
.tag-2 { bottom: 25%; left: -5%; animation: float 7s linear infinite alternate-reverse; }
.tag-3 { bottom: 10%; right: -15%; animation: float 8s linear infinite alternate; }
.tag-4 { top: 35%; right: -20%; animation: float 5s linear infinite alternate-reverse; }

/* Right Form Side */
.vc-form-side {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.vc-glass-card {
  width: 100%;
  max-width: 650px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}

.vc-card-head {
  margin-bottom: 30px;
}

.vc-brand {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-amber);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.vc-card-head h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}

.vc-progress {
  width: 100%;
}

.vc-progress-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.vc-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.vc-progress-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 25%;
  background: var(--primary-amber);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--primary-amber-glow);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Form Slider Engine */
.vc-form-body {
  position: relative;
  width: 100%;
  overflow: hidden; /* Hide non-visible steps */
}

.vc-steps-track {
  display: flex;
  width: 400%; /* 4 steps */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vc-step {
  width: 25%;
  padding-right: 15px; /* Slight padding buffer */
  flex-shrink: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.vc-step.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease 0.3s; /* Delay fade in slightly after slide */
}

/* Form Inputs & Radios */
.vc-question {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.vc-helper {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.vc-radio-group {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.vc-radio-card input {
  display: none;
}

.vc-radio-ui {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vc-radio-ui:hover {
  background: rgba(255, 255, 255, 0.1);
}

.vc-radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.vc-radio-circle::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-amber);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vc-radio-card input:checked + .vc-radio-ui {
  border-color: var(--primary-amber);
  background: rgba(255, 191, 0, 0.08);
  box-shadow: 0 0 15px rgba(255, 191, 0, 0.15);
}

.vc-radio-card input:checked + .vc-radio-ui .vc-radio-circle {
  border-color: var(--primary-amber);
}

.vc-radio-card input:checked + .vc-radio-ui .vc-radio-circle::after {
  transform: scale(1);
}

.vc-radio-text {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.vc-input-group {
  margin-bottom: 20px;
}

.vc-input {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.vc-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.vc-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-amber);
  box-shadow: 0 0 15px rgba(255, 191, 0, 0.2);
}

.vc-error-msg {
  color: #ff4757;
  font-size: 13px;
  font-weight: 600;
  margin-top: -10px;
  margin-bottom: 15px;
  display: none;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Actions */
.vc-step-actions {
  margin-top: 30px;
  display: flex;
}

.vc-step-actions.split {
  justify-content: space-between;
  gap: 15px;
}

.vc-btn-next, .vc-btn-submit {
  flex-grow: 1;
  padding: 16px 24px;
  background: var(--primary-amber);
  color: var(--secondary-navy);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 191, 0, 0.3);
}

.vc-btn-next:hover, .vc-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 191, 0, 0.4);
  background: #ffc926;
}

.vc-btn-next svg, .vc-btn-submit svg {
  width: 20px; height: 20px;
}

.vc-btn-prev {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vc-btn-prev:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.vc-btn-submit.loading {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: not-allowed;
  box-shadow: none;
}

/* Success Modal Overlay */
.vc-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 15, 31, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.vc-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.vc-modal-box {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  color: var(--secondary-navy);
  transform: translateY(40px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.vc-modal-overlay.active .vc-modal-box {
  transform: translateY(0) scale(1);
}

.vc-modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 191, 0, 0.15);
  color: var(--primary-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(255, 191, 0, 0.3);
}

.vc-modal-icon svg {
  width: 40px; height: 40px;
}

.vc-modal-box h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 12px;
}

.vc-modal-box p {
  font-size: 16px;
  color: rgba(10, 31, 68, 0.6);
  margin-bottom: 30px;
}

.vc-btn-close {
  padding: 14px 40px;
  background: var(--secondary-navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.vc-btn-close:hover {
  background: var(--primary-amber);
  color: var(--secondary-navy);
}

/* Confetti Effect inside modal */
.vc-confetti {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle, var(--primary-amber) 20%, transparent 20%),
    radial-gradient(circle, #ff6b6b 20%, transparent 20%),
    radial-gradient(circle, #4ecdc4 20%, transparent 20%),
    radial-gradient(circle, var(--primary-amber) 20%, transparent 20%);
  background-size: 6% 6%;
  background-position: 10% 10%, 30% 90%, 80% 20%, 90% 70%;
  animation: confettiDrop 3s ease-out forwards;
  opacity: 0;
}

.vc-modal-overlay.active .vc-confetti {
  opacity: 1;
}

@keyframes confettiDrop {
  0% { transform: translateY(-100%); opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
  .vc-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }
  .vc-visual {
    order: -1; /* Image stays on top for visual engagement */
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }
  .vc-form-side {
    width: 100%;
    justify-content: center;
  }
  .vc-glass-card {
    width: 100%;
    max-width: 100%;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .vc-tag {
    transform: scale(0.85); /* Slightly smaller tags on mobile */
  }
  .tag-1 { top: -10px; left: -10px; }
  .tag-3 { right: -10px; }
  .tag-4 { right: -10px; }
  
  .vc-steps-track {
    /* Prevent any horizontal overflow issues by ensuring steps fit */
    width: 400%;
  }
  .vc-step {
    padding-right: 0; /* Remove right padding on mobile to avoid off-center form steps */
  }
}

@media (max-width: 480px) {
  .visa-consultation { padding: 60px 15px; }
  .vc-glass-card { padding: 25px 15px; border-radius: 16px; }
  .vc-card-head h3 { font-size: 22px; }
  .vc-step-actions.split { flex-direction: column-reverse; gap: 10px; }
  .vc-btn-next, .vc-btn-prev, .vc-btn-submit { width: 100%; padding: 14px 20px; }
  
  .vc-radio-ui { padding: 12px 16px; }
  .vc-input { padding: 14px 16px; }
}

/* =========================================
   11. WAYS TO CONTACT US SECTION
   ========================================= */
.contact-options {
  position: relative;
  padding: 100px 5%;
  background: linear-gradient(135deg, #f5f7fb, #eef2f7);
  overflow: hidden;
  color: var(--secondary-navy);
}

.co-bg-shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.co-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.co-shape-1 {
  width: 400px; height: 400px;
  background: rgba(255, 191, 0, 0.15); /* Amber */
  top: -100px; left: -100px;
}

.co-shape-2 {
  width: 500px; height: 500px;
  background: rgba(10, 31, 68, 0.08); /* Navy */
  bottom: -150px; right: -100px;
}

.co-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.co-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.co-header h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 900;
  color: var(--secondary-navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.co-header p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
}

.co-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.co-card {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #0a1f44, #0f172a);
  padding: 40px 30px;
  border-radius: 19px; 
  border: 1px solid rgba(255, 191, 0, 0.15); /* Soft transparent amber border */
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0; /* Prevent margin breakage */
}

.co-hover-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 19px;
  box-shadow: inset 0 0 0 2px transparent;
  transition: box-shadow 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.co-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #0f295e, #131c38); /* Slight brighten on hover */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 10; 
}

.co-card:hover .co-hover-glow {
  box-shadow: inset 0 0 0 2px rgba(255, 191, 0, 0.6), 0 0 15px rgba(255, 191, 0, 0.4);
}

.co-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 191, 0, 0.1);
  color: var(--primary-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.co-icon {
  width: 28px;
  height: 28px;
}

.co-card:hover .co-icon-badge {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 10px 20px rgba(255,191,0,0.2);
}

.co-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.co-main-info {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-amber);
  margin-bottom: 6px;
  word-break: break-word; /* Ensure large texts don't expand card */
  max-width: 100%;
}

.co-card:hover .co-main-info {
  text-decoration: underline;
}

.co-sub-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 100%;
}

@media (max-width: 1024px) {
  .co-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-options {
    padding: 80px 20px;
  }
  .co-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important; 
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .co-card {
    padding: 25px 12px;
    width: 100% !important;
  }
  .co-icon-badge {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }
  .co-icon { width: 24px; height: 24px; }
  .co-card h4 { font-size: 15px; margin-bottom: 8px;}
  .co-main-info { font-size: 13px; }
  .co-sub-info { font-size: 12px; }
}

/* =========================================
   12. FLOATING WHATSAPP CTA
   ========================================= */
.floating-wa-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: periodicBounce 4s infinite cubic-bezier(0.28, 0.84, 0.42, 1);
}

.floating-wa-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite ease-out;
  z-index: -1;
}

.wa-icon {
  width: 34px;
  height: 34px;
  fill: #ffffff;
  z-index: 2;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}

.wa-tooltip {
  position: absolute;
  right: 75px;
  background: rgba(10, 31, 68, 0.95);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid rgba(255, 191, 0, 0.2);
}

.floating-wa-btn:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes periodicBounce {
  0%, 85%, 100% { transform: translateY(0); }
  90% { transform: translateY(-12px); }
  95% { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .floating-wa-btn {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px; /* Slight buffer for safe area on mobile */
  }
  .wa-icon { width: 30px; height: 30px; }
  .wa-tooltip { display: none; /* Tooltips can be intrusive on pure touch displays */ }
}

/* =========================================
   13. PREMIUM FOOTER
   ========================================= */

/* Top glowing separator */
.pf-top-separator {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFBF00, transparent);
  animation: pfGlowPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  box-shadow: 0 0 15px rgba(255, 191, 0, 0.4);
}

@keyframes pfGlowPulse {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 10px rgba(255, 191, 0, 0.2); }
  50% { opacity: 1; box-shadow: 0 0 20px rgba(255, 191, 0, 0.8); }
}

.premium-footer {
  position: relative;
  background: linear-gradient(135deg, #0a0f1f, #0f172a);
  color: #fff;
  padding: 80px 5% 40px;
  overflow: hidden;
  font-family: inherit;
}

/* Background floating bubbles */
.pf-bg-fx {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.pf-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: floatBubble 15s infinite alternate ease-in-out;
}

@keyframes floatBubble {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-50px) scale(1.1); }
}

.pf-bubble-amber {
  background: radial-gradient(circle, #FFBF00 0%, transparent 70%);
  width: 300px; height: 300px;
  top: -50px; right: 10%;
  animation-delay: 0s;
}

.pf-bubble-blue {
  background: radial-gradient(circle, #3B82F6 0%, transparent 70%);
  width: 400px; height: 400px;
  bottom: -100px; left: 5%;
  animation-delay: -5s;
}

/* Main Container and Grids */
.pf-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pf-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Brand & Contact Column */
.pf-brand-col {
  padding-right: 40px;
}

.pf-brand-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.pf-brand-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.pf-contact-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.pf-contact-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.pf-contact-link svg {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  color: #FFBF00;
}

.pf-contact-link:hover {
  color: #FFBF00;
}

.pf-mt {
  margin-top: 30px;
}

.pf-map-link {
  color: #FFBF00;
}

/* Links Columns */
.pf-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-left: 1px solid rgba(255, 191, 0, 0.1); /* Separator line */
  padding-left: 40px;
  box-shadow: -1px 0 10px rgba(255, 191, 0, 0.05); /* Glow effect on separator */
}

.pf-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

/* Subtle amber underline for headings */
.pf-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 20px; height: 2px;
  background-color: #FFBF00;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(255, 191, 0, 0.5);
}

.pf-link-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pf-link-col ul li {
  margin-bottom: 12px;
}

.pf-link-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.pf-link-col ul li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 1px;
  background-color: #FFBF00;
  transition: width 0.3s ease;
  box-shadow: 0 0 4px rgba(255, 191, 0, 0.6);
}

.pf-link-col ul li a:hover {
  color: #FFBF00;
  transform: translateX(4px); /* subtle shift */
}

.pf-link-col ul li a:hover::after {
  width: 100%;
}

/* Bottom Copyright Section */
.pf-bottom-section {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 191, 0, 0.15); /* Soft glow underline separator above it */
  position: relative;
}

.pf-bottom-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 191, 0, 0.4), transparent);
}

.pf-bottom-section p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.pf-bottom-section .pf-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* --- MOBILE RESPONSIVE RULES --- */
@media (max-width: 1024px) {
  .pf-main-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .pf-brand-col {
    padding-right: 0;
    max-width: 600px;
  }
  .pf-links-grid {
    border-left: none;
    padding-left: 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 191, 0, 0.1);
    box-shadow: none;
  }
  .pf-links-grid::before {
    content: '';
    position: absolute;
    margin-top: -40px;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 191, 0, 0.2), transparent);
  }
}

@media (max-width: 768px) {
  .premium-footer {
    padding: 60px 20px 30px;
  }
  
  .pf-links-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for better mobile layout */
    gap: 40px 20px;
  }
  
  .pf-brand-col {
    text-align: center;
    margin: 0 auto;
  }
  
  .pf-brand-desc {
    font-size: 0.9rem;
  }
  
  /* Center align title underscores on mobile brand section */
  .pf-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .pf-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Link columns return to left align */
  .pf-link-col .pf-title::after {
    left: 0;
    transform: none;
  }
  
  .pf-link-col ul li a {
    padding: 8px 0; /* tap-friendly links */
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .pf-links-grid {
    grid-template-columns: 1fr; /* Stack vertically entirely */
    gap: 35px;
  }
}

/* =========================================
   14. SERVICES PAGE SPECIFIC STYLES
   ========================================= */

/* Services Hero */
.services-hero {
  position: relative;
  background: linear-gradient(135deg, #050a15, #0B172A);
  padding: 180px 5% 100px; /* high top padding to clear fixed nav + top strip */
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.sv-hero-glow-1, .sv-hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.sv-hero-glow-1 {
  width: 50vw; height: 50vw;
  background: rgba(255, 191, 0, 0.15);
  top: -20%; left: -20%;
  animation: floatBubble 20s infinite alternate ease-in-out;
}

.sv-hero-glow-2 {
  width: 60vw; height: 60vw;
  background: rgba(10, 31, 68, 0.6);
  bottom: -20%; right: -20%;
  animation: floatBubble 25s infinite alternate ease-in-out reverse;
}

.sv-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.sv-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -1px;
}

.sv-hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
}

.sv-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services Container */
.sv-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Services Grid Section */
.sv-grid-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #f5f7fb, #eef2f7);
  position: relative;
}

.sv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.sv-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(10, 31, 68, 0.05);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.sv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 31, 68, 0.08);
  border-color: rgba(255, 191, 0, 0.3);
}

.sv-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a1f44, #0f172a);
  color: #FFBF00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.sv-icon-wrap.var-amber {
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.1), rgba(255, 191, 0, 0.2));
  color: #FFBF00;
}

.sv-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.sv-card:hover .sv-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.sv-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 15px;
}

.sv-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}

.sv-btn-link {
  color: #FFBF00;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  transition: color 0.3s ease;
  position: relative;
  align-self: flex-start;
}

.sv-btn-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 2px;
  background-color: #FFBF00;
  transition: width 0.3s ease;
}

.sv-card:hover .sv-btn-link::after {
  width: 100%;
}

/* Why Choose Us - Services Variant */
.sv-why-choose {
  background: linear-gradient(135deg, #0a1f44, #0f172a);
  color: #fff;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.sv-why-separator {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, #FFBF00, transparent);
  animation: pfGlowPulse 4s infinite;
}

.sv-why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.sv-why-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}

.sv-why-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.sv-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.sv-why-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.sv-why-box:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 191, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sv-why-box h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.sv-why-box p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Process Section */
.sv-process {
  padding: 100px 5%;
  background: #fff;
}

.sv-process-header {
  text-align: center;
  margin-bottom: 60px;
}

.sv-process-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #0a1f44;
}

.sv-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sv-step {
  position: relative;
  padding: 30px 20px;
  text-align: center;
}

.sv-step::after {
  content: '';
  position: absolute;
  top: 60px; right: -50%;
  width: 100%; height: 2px;
  background: dashed 2px rgba(10, 31, 68, 0.1);
  z-index: 0;
}

.sv-step:last-child::after {
  display: none;
}

.sv-step-number {
  width: 60px; height: 60px;
  background: #FFBF00;
  color: #0a1f44;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(255, 191, 0, 0.3);
}

.sv-step h4 {
  font-size: 1.2rem;
  color: #0a1f44;
  margin-bottom: 12px;
  font-weight: 800;
}

.sv-step p {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* High Conversion CTA Section */
.sv-cta-section {
  padding: 0 5% 100px;
  background: #fff;
}

.sv-cta-box {
  background: linear-gradient(135deg, #0a1f44, #122549);
  border-radius: 30px;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(10, 31, 68, 0.15);
}

.sv-cta-glow {
  position: absolute;
  width: 50%; height: 200%;
  top: -50%; left: 25%;
  background: radial-gradient(ellipse at center, rgba(255,191,0,0.15) 0%, transparent 60%);
  transform: rotate(30deg);
  pointer-events: none;
  z-index: -1;
  animation: pulseDivider 5s infinite;
}

.sv-cta-box h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.sv-cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Mobile Media Queries for Services Page */
@media (max-width: 1024px) {
  .sv-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .sv-step::after {
    display: none; /* remove connecting dashed lines when stacked */
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 140px 5% 80px;
  }
  .sv-grid-section, .sv-why-choose, .sv-process, .sv-cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sv-cta-section {
    padding-top: 0;
  }
  .sv-cta-box {
    padding: 50px 20px;
    border-radius: 20px;
  }
  .sv-hero-actions, .sv-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .sv-hero-actions .btn-glowing, .sv-hero-actions .btn-glass,
  .sv-cta-buttons .btn-glowing, .sv-cta-buttons .btn-glass {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .sv-process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================================
   15. HOLIDAYS PAGE SPECIFIC STYLES
   ========================================= */

/* Helpers */
.hd-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hd-center {
  justify-content: center;
  text-align: center;
}

.hd-glass-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.hd-glass-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.hd-btn-full {
  width: 100%;
  display: block;
  text-align: center;
}

/* Hero Section */
.hd-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 5% 100px;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hd-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: zoomBgOut 20s infinite alternate ease-in-out;
}

@keyframes zoomBgOut {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hd-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10, 15, 31, 0.85), rgba(15, 23, 42, 0.8));
  z-index: 1;
}

.hd-hero-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(255,191,0,0.15) 0%, transparent 60%);
  top: -20%; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.hd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hd-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hd-hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hd-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Headers */
.hd-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.hd-section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.hd-section-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Packages Grid Section */
.hd-packages-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #050a15, #0a1020);
  position: relative;
}

.hd-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.hd-package-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.hd-package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 191, 0, 0.4);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.hd-card-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hd-card-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(15, 23, 42, 0.9) 100%);
}

.hd-visa-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFBF00;
  color: #050a15;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hd-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hd-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

.hd-card-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.hd-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFBF00;
}

.hd-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.hd-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  flex-grow: 1;
}

.hd-features-list li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.hd-features-list li svg {
  width: 18px;
  height: 18px;
  stroke: #FFBF00;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Why Book Section */
.hd-why-book-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0a1020, #0B172A);
  position: relative;
  overflow: hidden;
}

.hd-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.hd-benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hd-benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top left, rgba(255,191,0,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hd-benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 191, 0, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.hd-benefit-card:hover::before {
  opacity: 1;
}

.hd-icon-box {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.1), rgba(255, 191, 0, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFBF00;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.hd-icon-box svg {
  width: 28px; height: 28px;
}

.hd-benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hd-benefit-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Customized Planning Section */
.hd-custom-plan {
  padding: 120px 5%;
  background: #f5f7fb;
  position: relative;
}

.hd-custom-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hd-custom-content h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0a1f44;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hd-custom-desc {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hd-plan-points {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.hd-plan-points li {
  display: flex;
  align-items: center;
  color: #2d3748;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.hd-plan-points li svg {
  width: 22px; height: 22px;
  stroke: #FFBF00;
  margin-right: 15px;
  background: rgba(255,191,0,0.1);
  border-radius: 50%;
  padding: 4px;
}

.hd-custom-actions {
  display: flex;
  gap: 20px;
}

.hd-glass-btn-alt {
  background: rgba(10, 31, 68, 0.05);
  border: 1px solid rgba(10, 31, 68, 0.1);
  color: #0a1f44;
  font-weight: 700;
  transition: all 0.3s ease;
}

.hd-glass-btn-alt:hover {
  background: rgba(10, 31, 68, 0.1);
  border-color: rgba(10, 31, 68, 0.2);
}

.hd-custom-image-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.hd-custom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hd-image-glow {
  position: absolute;
  top: -20%; left: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(255,191,0,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hd-floating-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #fff;
  padding: 15px 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  z-index: 2;
  animation: floatBubble 6s infinite alternate ease-in-out;
}

.hd-floating-badge svg {
  width: 24px; height: 24px;
  fill: #FFBF00;
  stroke: #FFBF00;
  margin-right: 12px;
}

.hd-floating-badge span {
  font-weight: 800;
  color: #0a1f44;
}

/* Final CTA block */
.hd-final-cta {
  padding: 0 5% 100px;
  background: #f5f7fb;
}

.hd-cta-box {
  background: linear-gradient(135deg, #0B172A, #050a15);
  border-radius: 30px;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(10, 31, 68, 0.15);
  border: 1px solid rgba(255, 191, 0, 0.1);
}

.hd-cta-pulse {
  position: absolute;
  width: 60%; height: 200%;
  top: -50%; left: 20%;
  background: radial-gradient(ellipse at center, rgba(255,191,0,0.15) 0%, transparent 60%);
  transform: rotate(30deg);
  pointer-events: none;
  z-index: -1;
  animation: pulseDivider 5s infinite;
}

.hd-cta-box h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.hd-cta-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Responsive Holidays Mobile Fixes */
@media (max-width: 1024px) {
  .hd-custom-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hd-custom-image-wrap {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hd-hero {
    padding: 140px 5% 80px;
  }
  .hd-packages-section, .hd-why-book-section, .hd-custom-plan, .hd-final-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hd-final-cta {
    padding-top: 0;
  }
  .hd-cta-box {
    padding: 50px 20px;
    border-radius: 20px;
  }
  .hd-hero-actions, .hd-custom-actions {
    flex-direction: column;
    width: 100%;
  }
  .hd-hero-actions .btn-glowing, .hd-hero-actions .btn-glass,
  .hd-custom-actions .btn-glowing, .hd-custom-actions .hd-glass-btn-alt {
    width: 100%;
    margin-bottom: 10px;
  }
  .hd-floating-badge {
    left: 20px;
    bottom: -20px;
  }
}

/* =========================================
   16. VISAS PAGE SPECIFIC STYLES
   ========================================= */

/* Helpers */
.vs-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vs-btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.vs-btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.vs-btn-full {
  width: 100%;
  display: block;
  text-align: center;
}

.vs-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.vs-section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}

.vs-section-header p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Hero Section */
.vs-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 5% 100px;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #050a15, #0B172A);
}

.vs-bg-map {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: 0;
}

.vs-hero-lines {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 50%, rgba(255, 191, 0, 0.05) 50%);
  background-size: 100px 100%;
  z-index: 0;
  animation: bgPan 40s linear infinite;
}

@keyframes bgPan {
  from { background-position: 0 0; }
  to { background-position: 1000px 0; }
}

.vs-hero-glow-1 {
  position: absolute;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(10,31,68,0.8) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.vs-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.vs-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.vs-hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vs-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Schengen Section */
.vs-schengen-section {
  padding: 100px 5%;
  background: #f5f7fb;
  position: relative;
}

.vs-schengen-section .vs-section-header h2 { color: #0a1f44; }
.vs-schengen-section .vs-section-header p { color: #4a5568; }

/* Flags Marquee */
.vs-flags-wrapper {
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.vs-flags-wrapper::before, .vs-flags-wrapper::after {
  content: '';
  position: absolute;
  top: 0; width: 50px; height: 100%;
  z-index: 2;
}

.vs-flags-wrapper::before { left: 0; background: linear-gradient(to right, #f5f7fb, transparent); }
.vs-flags-wrapper::after { right: 0; background: linear-gradient(to left, #f5f7fb, transparent); }

.vs-flags-track {
  display: flex;
  gap: 30px;
  padding-bottom: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
  padding: 10px 50px;
}

.vs-flags-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.vs-flag {
  width: 60px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  animation: flagFloat 4s ease-in-out infinite;
  display: block;
}

.vs-flag:hover {
  transform: scale(1.15) translateY(-5px) !important;
  box-shadow: 0 10px 20px rgba(255, 191, 0, 0.4);
}

@keyframes flagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }
.delay-4 { animation-delay: 2s; }

/* Dual Area */
.vs-schengen-dual {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.vs-tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-tick-list li {
  display: flex;
  align-items: center;
  color: #2d3748;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.vs-tick-list li:hover {
  transform: translateX(10px);
}

.vs-list-icon {
  width: 32px; height: 32px;
  background: rgba(255,191,0,0.15);
  color: #FFBF00;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.vs-list-icon svg { width: 18px; height: 18px; stroke-width: 3; }

/* Discount Box */
.vs-discount-card {
  position: relative;
  background: linear-gradient(135deg, #0a1f44, #122549);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10,31,68,0.2);
}

.vs-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,191,0,0.1) 0%, transparent 50%);
  animation: rotateGlow 10s linear infinite;
  z-index: 0;
}

@keyframes rotateGlow {
  100% { transform: rotate(360deg); }
}

.vs-card-inner { position: relative; z-index: 1; }

.vs-discount-badge {
  display: inline-block;
  background: #FFBF00;
  color: #0a1f44;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.vs-discount-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.vs-discount-price {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.vs-pulse-price {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: #FFBF00;
  margin-top: 5px;
  text-shadow: 0 0 20px rgba(255,191,0,0.4);
}

.vs-card-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Documents Section */
.vs-docs-section {
  padding: 100px 5%;
  background: #fff;
}

.vs-docs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.vs-docs-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #0a1f44;
  margin-bottom: 15px;
}

.vs-docs-header p {
  color: #4a5568;
  font-size: 1.15rem;
}

.vs-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.vs-doc-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.vs-doc-card:hover {
  background: #fff;
  border-color: #FFBF00;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.vs-doc-check {
  width: 32px; height: 32px;
  background: #10b981; /* Success Green */
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.vs-doc-check svg { width: 16px; height: 16px; }
.vs-doc-text { font-weight: 600; color: #1e293b; font-size: 1rem; }

/* Country Dual Details */
.vs-country-section {
  padding: 0 5% 100px;
  background: #fff;
  position: relative;
}

.vs-country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vs-country-card {
  background: linear-gradient(135deg, #0a1020, #0F172A);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.vs-country-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,191,0,0.2);
}

.vs-country-flag {
  margin-bottom: 25px;
}

.vs-country-flag img {
  width: 60px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.vs-country-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.vs-country-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.vs-small-list {
  margin-bottom: 30px;
  flex-grow: 1;
}

.vs-small-list li {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 12px 15px;
  font-size: 1rem;
  margin-bottom: 12px;
}

.vs-small-list li:hover { transform: translateX(5px); }
.vs-small-list .vs-list-icon { background: rgba(255,191,0,0.1); }

/* Values Section */
.vs-values-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #050a15, #0B172A);
  position: relative;
  overflow: hidden;
}

.vs-bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(255,191,0,0.08), transparent 50%);
  pointer-events: none;
}

.vs-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.vs-value-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.vs-value-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 191, 0, 0.3);
  transform: translateY(-5px);
}

.vs-val-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.1), rgba(255, 191, 0, 0.2));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #FFBF00;
  margin-bottom: 20px;
}

.vs-val-icon svg { width: 24px; height: 24px; }

.vs-value-box h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.vs-value-box p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.6;
}

/* Final CTA Section */
.vs-final-cta {
  padding: 100px 5%;
  background: #f5f7fb;
}

.vs-cta-box-glow {
  background: linear-gradient(135deg, #0a1f44, #122549);
  border-radius: 30px;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.2);
  border: 1px solid rgba(255, 191, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.vs-cta-wave {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; padding-bottom: 100%;
  background: radial-gradient(circle, rgba(255,191,0,0.1) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseDivider 4s infinite alternate;
}

.vs-cta-box-glow h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.vs-cta-box-glow p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Mobile Adjustments for Visas Page */
@media (max-width: 1024px) {
  .vs-schengen-dual {
    grid-template-columns: 1fr;
  }
  .vs-country-grid {
    grid-template-columns: 1fr;
  }
  .vs-discount-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .vs-hero {
    padding: 140px 5% 80px;
  }
  .vs-schengen-section, .vs-docs-section, .vs-country-section, .vs-values-section, .vs-final-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .vs-flags-wrapper::before, .vs-flags-wrapper::after {
    width: 30px;
  }
  .vs-cta-box-glow {
    padding: 50px 20px;
    border-radius: 20px;
  }
  .vs-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .vs-hero-actions .btn-glowing, .vs-hero-actions .vs-btn-glass {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* =========================================
   17. CONTACT PAGE SPECIFIC STYLES
   ========================================= */

/* Helpers */
.ct-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ct-btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease;
}

.ct-btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.ct-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.ct-section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: #0a1f44;
}

.ct-section-header p {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Hero Section */
.ct-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 5% 100px;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background: #0a1f44;
}

.ct-bg-map {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  z-index: 0;
}

.ct-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
  transform: scale(1.05);
  animation: zoomBgOutHover 20s alternate infinite ease-in-out;
}

@keyframes zoomBgOutHover {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.ct-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10, 15, 31, 0.9), rgba(15, 23, 42, 0.7));
  z-index: 1;
}

.ct-hero-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(255,191,0,0.15) 0%, transparent 60%);
  top: -10%; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.ct-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.ct-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ct-hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ct-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Expert Team Section */
.ct-team-section {
  padding: 120px 5%;
  background: #fff;
  position: relative;
}

.ct-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ct-team-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.15);
}

.ct-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ct-image-glow {
  position: absolute;
  top: -20%; right: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(255,191,0,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.ct-team-info h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0a1f44;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ct-team-desc {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 30px;
}

.ct-tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ct-tick-list li {
  display: flex;
  align-items: center;
  color: #2d3748;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.ct-list-icon {
  width: 28px; height: 28px;
  background: rgba(255,191,0,0.15);
  color: #FFBF00;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}

.ct-list-icon svg { width: 16px; height: 16px; }

/* 4-Step Form Section */
.ct-form-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #f5f7fb, #eef2f7);
  position: relative;
}

.ct-form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 25px 50px rgba(10,31,68,0.08);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(10,31,68,0.05);
  position: relative;
}

.ct-step {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ct-step.active {
  display: block;
}

.ct-step-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 30px;
  text-align: center;
}

.ct-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.ct-radio-ui {
  position: relative;
  cursor: pointer;
}

.ct-radio-ui input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.ct-radio-ui span {
  display: block;
  padding: 18px 20px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: #4a5568;
  transition: all 0.3s ease;
}

.ct-radio-ui:hover span {
  background: #fff;
  border-color: rgba(255, 191, 0, 0.4);
  transform: translateY(-2px);
}

.ct-radio-ui input:checked + span {
  background: rgba(255, 191, 0, 0.1);
  border-color: #FFBF00;
  color: #0a1f44;
  box-shadow: 0 5px 15px rgba(255, 191, 0, 0.15);
}

.ct-input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.ct-input {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  background: #f8fafc;
  color: #0a1f44;
  transition: all 0.3s ease;
}

.ct-input:focus {
  outline: none;
  background: #fff;
  border-color: #FFBF00;
  box-shadow: 0 0 0 4px rgba(255,191,0,0.1);
}

.ct-form-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* Success Modal */
.ct-success-modal {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(5px);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

.ct-success-modal.hidden {
  display: none !important;
}

.ct-success-icon {
  width: 70px; height: 70px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(16,185,129,0.3);
  animation: bounceScale 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceScale {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.ct-success-icon svg { width: 36px; height: 36px; }

.ct-success-content h3 {
  font-size: 1.8rem;
  color: #0a1f44;
  margin-bottom: 10px;
}
.ct-success-content p {
  color: #4a5568;
  margin-bottom: 25px;
}

/* Specific button style for success close */
.ct-success-content .ct-btn-glass {
  background: #0a1f44;
  color: #fff;
  border: none;
}

/* Contact Details Section */
.ct-details-section {
  padding: 100px 5%;
  background: #fff;
}

.ct-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.ct-detail-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  display: block; /* Overrides anchor inline block */
  text-decoration: none;
  color: #0a1f44;
}

.ct-detail-card:hover {
  background: #fff;
  border-color: #FFBF00;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.ct-detail-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(255,191,0,0.1), rgba(255,191,0,0.2));
  color: #FFBF00;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

.ct-detail-icon svg { width: 28px; height: 28px; }

.ct-detail-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.ct-detail-card p {
  color: #4a5568;
  font-size: 1.05rem;
}

/* Expertise Section */
.ct-expertise-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #050a15, #0B172A);
  position: relative;
  overflow: hidden;
}

.ct-expertise-section .ct-section-header h2 { color: #fff; }
.ct-expertise-section .ct-section-header p { color: rgba(255,255,255,0.7); }

.ct-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ct-expert-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.ct-expert-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 191, 0, 0.3);
  transform: translateY(-5px);
}

.ct-expert-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(255, 191, 0, 0.1), rgba(255, 191, 0, 0.2));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #FFBF00;
  margin-bottom: 20px;
}

.ct-expert-icon svg { width: 24px; height: 24px; }

.ct-expert-box h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.ct-expert-box p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.6;
}

/* Final CTA Section */
.ct-final-cta {
  padding: 100px 5%;
  background: #fff;
}

.ct-cta-box-glow {
  background: linear-gradient(135deg, #0a1f44, #122549);
  border-radius: 30px;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.2);
  border: 1px solid rgba(255, 191, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.ct-cta-wave {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; padding-bottom: 100%;
  background: radial-gradient(circle, rgba(255,191,0,0.1) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseDivider 4s infinite alternate;
}

.ct-cta-box-glow h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.ct-cta-box-glow p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Mobile Adjustments for Contact Page */
@media (max-width: 1024px) {
  .ct-team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .ct-hero {
    padding: 140px 5% 80px;
  }
  .ct-team-section, .ct-form-section, .ct-details-section, .ct-expertise-section, .ct-final-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ct-form-wrapper {
    padding: 30px 20px;
  }
  .ct-radio-group {
    grid-template-columns: 1fr;
  }
  .ct-cta-box-glow {
    padding: 50px 20px;
    border-radius: 20px;
  }
  .ct-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .ct-hero-actions .btn-glowing, .ct-hero-actions .ct-btn-glass {
    width: 100%;
    margin-bottom: 10px;
  }
  .ct-form-actions {
    flex-direction: column;
  }
  .ct-form-actions button {
    width: 100%;
  }
}



