

:root {
  /* Enhanced premium color palette */
  --primary-green: #00b74a;
  --primary-blue: #0066cc;
  --secondary-teal: #00bfa6;
  --accent-purple: #8b5cf6;
  --accent-orange: #f59e0b;
  --gradient-primary: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
  --gradient-secondary: linear-gradient(135deg, #00bfa6 0%, #00b74a 100%);
  --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-ocean: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #48cae4 100%);

  /* Premium backgrounds */
  --bg-light: #ffffff;
  --bg-cream: #fefdfb;
  --bg-section: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --bg-glass-strong: rgba(255, 255, 255, 0.95);

  /* Text colors */
  --text-dark: #0f172a;
  --text-heading: #1e293b;
  --text-medium: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Premium shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 15px 20px -10px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
  --shadow-2xl: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
  --shadow-green: 0 20px 40px -10px rgba(0, 183, 74, 0.25);
  --shadow-blue: 0 20px 40px -10px rgba(0, 102, 204, 0.2);

  /* Borders */
  --border-color: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Updated Typography - Professional Inter + DM Sans */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1400px;


  --digibro-green: #00b74a;
  --digibro-blue: #0066cc;
  --digibro-teal: #00bfa6;
  --digibro-dark: #1a2332;
  --digibro-muted: #5a6c7d;
  --digibro-orange: #f97316;
  --digibro-red: #ef4444;
  --digibro-purple: #8b5cf6;
  --digibro-gold: #f59e0b;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Professional Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

p {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.75;
}

.container-fluid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 50px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



/* ========================================
   PRELOADER - Premium Version
   ======================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-section) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  position: relative;
  width: 140px;
  height: 140px;
}

.loader-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-inner::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 3px solid transparent;
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1.5s linear infinite reverse;
}

.loader-inner::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 3px solid transparent;
  border-top-color: var(--secondary-teal);
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 55px;
  animation: pulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(0, 183, 74, 0.3));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}


/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 15px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}


.navbar-brand img {
  height: 80px;
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
}

.brand-highlight {
  color: var(--primary-green);
}

.nav-link {
  color: var(--text-medium) !important;
  font-weight: 600;
  padding: 10px 20px !important;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green) !important;
}

.nav-actions {
  display: flex;
  gap: 15px;
}

.nav-btn-secondary {
  padding: 12px 34px;
  color: var(--text-heading);
  font-weight: 600;
  text-decoration: none;
  /* transition: var(--transition); */
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}


.nav-btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: 0.4s;
  z-index: -1;
}


.nav-btn-secondary:hover::before {
  left: 0;
}

.nav-btn-secondary:hover {
  border-color: transparent;
  color: white;
}

.nav-btn-primary {
  padding: 12px 28px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}

.nav-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 183, 74, 0.3);
  color: white;
}

/* ========================================
   HERO SECTION - NEW DESIGN
   Split Layout with 3D Card Stack
   ======================================== */
.hero-section-new {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: var(--bg-cream);
}

/* Background Elements */
.hero-bg-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-mesh-gradient {
  position: absolute;

  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(0, 183, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 102, 204, 0.06) 0%, transparent 50%), var(--bg-cream);
}

.hero-floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-circle {
  width: 500px;
  height: 500px;
  border: 100px dashed rgba(0, 183, 73, 0.147);
  top: 17.7%;
  left: 55%;
  animation: floatRotate 20s linear infinite;
  position: relative;

}

.shape-ring {
  width: 200px;
  height: 200px;
  border: 3px dashed rgba(0, 102, 204, 0.1);
  bottom: 20%;
  left: 10%;
  animation: floatRotate 25s linear infinite reverse;
}

.shape-dots {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 183, 74, 0.15) 2px, transparent 2px);
  background-size: 20px 20px;
  top: 50%;
  left: 30%;
  animation: floatY 8s ease-in-out infinite;
}

@keyframes floatRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

.hero-grid-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 183, 74, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 74, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
}

/* Hero Wrapper */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Content */
.hero-content-left {
  max-width: 600px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.eyebrow-line {
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.eyebrow-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.headline-word {
  display: block;
}

.highlight-word {
  position: relative;
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.word-bg {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, rgba(0, 183, 74, 0.2), rgba(0, 102, 204, 0.2));
  border-radius: 6px;
  z-index: -1;
}

.typed-text {
  color: var(--text-dark);
}

.cursor-blink {
  color: var(--primary-green);
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-description {
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 35px;
}

/* CTA Wrapper */
.hero-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-main {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
  position: relative;
  overflow: hidden;
}

.cta-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.cta-main:hover::before {
  left: 100%;
}

.cta-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 183, 74, 0.35);
  color: white;
}

.cta-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.cta-video {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-heading);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.video-circle {
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.video-circle i {
  color: var(--primary-green);
  font-size: 14px;
  margin-left: 3px;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

.pulse-ring.delay {
  animation-delay: 1s;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.cta-video:hover {
  color: var(--primary-green);
}

/* Trust Bar */
.hero-trust-bar {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-glass-strong);
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
}

.trust-badge i {
  color: var(--primary-green);
}

/* Right Content - Card Stack */
.hero-content-right {
  position: relative;
  height: 550px;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Main Feature Card */
.feature-card.main-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  background: white;
  border-radius: 28px;
  padding: 35px;
  box-shadow: var(--shadow-xl);
  z-index: 10;
  border: 1px solid var(--border-color);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 183, 74, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.card-badge {
  padding: 6px 14px;
  background: var(--gradient-gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.card-icon.education {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.3));
  color: #8b5cf6;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.card-stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.card-stats-row .stat {
  display: flex;
  flex-direction: column;
}

.card-stats-row .stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-heading);
}

.card-stats-row .stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.card-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.card-action:hover {
  gap: 12px;
  color: var(--primary-blue);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  animation: floatCard 6s ease-in-out infinite;
}

.card-fastag {
  top: 5%;
  left: 0;
  animation-delay: 0s;
}

.card-challan {
  top: 35%;
  right: -10%;
  animation-delay: 2s;
}

.card-travel {
  bottom: 10%;
  left: 5%;
  z-index: 100;
  animation-delay: 4s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.fc-icon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.card-fastag .fc-icon {
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.15), rgba(0, 183, 74, 0.3));
  color: var(--primary-green);
}

.card-challan .fc-icon {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.3));
  color: #ef4444;
}

.card-travel .fc-icon {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 102, 204, 0.3));
  color: var(--primary-blue);
}

.fc-content {
  display: flex;
  flex-direction: column;
}

.fc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}

.fc-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.fc-badge {
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
}

/* Stats Pill */
.stats-pill {
  position: absolute;
  bottom: 25%;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--gradient-primary);
  border-radius: 50px;
  box-shadow: var(--shadow-green);
  animation: floatCard 5s ease-in-out infinite;
  animation-delay: 1s;
}

.pill-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.pill-content {
  display: flex;
  flex-direction: column;
}

.pill-value {
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.pill-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

/* Stats Strip */
.hero-stats-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 10px;
  padding: 35px 60px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.stat-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.stat-icon-wrap {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.1), rgba(0, 102, 204, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-green);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-info .stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
}

.stat-info .stat-suffix {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
}

.stat-info .stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-strong);
}

/* ========================================
   SERVICES SECTION - PARALLAX DESIGN
   ======================================== */
.services-parallax-section {
  position: relative;
  min-height: 100vh;
}

/* Fixed Parallax Background */
.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.parallax-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 100% 80% at 50% 20%, rgba(0, 183, 74, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 80% 80%, rgba(0, 102, 204, 0.04) 0%, transparent 50%), var(--bg-section);
}

.parallax-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 183, 74, 0.04) 1px, transparent 0);
  background-size: 50px 50px;
}

.parallax-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
}

.p-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.p-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 183, 74, 0.1);
  top: 10%;
  right: -10%;
}

.p-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 102, 204, 0.08);
  bottom: 20%;
  left: -10%;
}

.p-orb.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.06);
  top: 50%;
  left: 40%;
}

/* Scrolling Content Layer */
.services-content-layer {
  position: relative;
  z-index: 1;
  background: var(--bg-section);
  padding: var(--section-padding) 0;
}

/* Section Header New */
.section-header-new {
  text-align: center;
  margin-bottom: 70px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 25px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-badge.light {
  background: rgba(255, 255, 255, 0.9);
}

.header-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.header-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.header-subtitle.light {
  color: var(--text-medium);
}

/* Bento Services Grid */
.bento-services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 25px;
  margin-bottom: 60px;
}

.bento-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.bento-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

.bento-large {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 450px;
}

.bento-medium {
  grid-column: span 3;
  min-height: 210px;
}

.bento-wide {
  grid-column: span 6;
  min-height: 180px;
}

/* Bento Card Styles */
.education-bento {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.fastag-bento {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}

.challan-bento {
  background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
  color: white;
}

.travel-bento {
  background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
  color: white;
}

.bento-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.bento-content {
  position: relative;
  z-index: 1;
  padding: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.bento-card:hover .bento-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.3);
}

.bento-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.bento-content p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 20px;
}

.bento-text {
  flex: 1;
}

.bento-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.bento-features li {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bento-features i {
  color: #00ff88;
}

.bento-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  width: fit-content;
  margin-top: auto;
}

.bento-btn:hover {
  background: white;
  transform: translateX(5px);
  color: var(--text-dark);
}

.bento-decoration {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.3;
}

.deco-circle {
  width: 150px;
  height: 150px;
  border: 2px solid white;
  border-radius: 50%;
}



/* ========================================
   PREMIUM ALL PAYMENT SERVICES - REDESIGNED
   ======================================== */
.premium-services-section {
  background: white;
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.pss-header {
  text-align: center;
  margin-bottom: 40px;
}

.pss-title-group {
  margin-bottom: 20px;
}

.pss-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pss-subtitle {
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.pss-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pss-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.pss-dot {
  width: 8px;
  height: 8px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.premium-service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 16px 24px;
  background: var(--bg-section);
  border-radius: 20px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
  overflow: hidden;
}

.premium-service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.premium-service-item:hover {
  transform: translateY(-6px);
  background: white;
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 183, 74, 0.15);
}

.premium-service-item:hover::before {
  transform: scaleX(1);
}

.psi-icon-container {
  position: relative;
  margin-bottom: 16px;
}

.psi-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.08), rgba(0, 102, 204, 0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-green);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.psi-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(0, 183, 74, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.premium-service-item:hover .psi-icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1);
}

.premium-service-item:hover .psi-glow {
  opacity: 1;
}

.psi-label {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  text-align: center;
  transition: var(--transition);
}

.premium-service-item:hover .psi-label {
  color: var(--primary-green);
}

.psi-arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: rgba(0, 183, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--primary-green);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.premium-service-item:hover .psi-arrow {
  opacity: 1;
  transform: translateX(0);
}



/* ========================================
   WHY CHOOSE SECTION - NEW UNIQUE DESIGN
   ======================================== */
.why-choose-section-new {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--bg-cream);
  overflow: hidden;
}

.why-bg-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.why-gradient-mesh {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 60% 40% at 20% 30%, rgba(0, 183, 74, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 80% 70%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
}

.why-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-el {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.float-el.el-1 {
  width: 300px;
  height: 300px;
  border: 2px solid rgba(0, 183, 74, 0.1);
  top: 10%;
  left: 5%;
  animation: floatRotate 30s linear infinite;
}

.float-el.el-2 {
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(0, 102, 204, 0.1);
  bottom: 20%;
  right: 10%;
  animation: floatRotate 25s linear infinite reverse;
}

.float-el.el-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 183, 74, 0.08) 2px, transparent 2px);
  background-size: 15px 15px;
  top: 60%;
  left: 50%;
  animation: floatY 10s ease-in-out infinite;
}

/* Why Showcase Container */
.why-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Visual Hub - Phone Mockup */
.why-visual-hub {
  display: flex;
  justify-content: center;
  position: relative;
}

.visual-phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 40px;
  padding: 15px;
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: #0f0f1a;
  border-radius: 0 0 15px 15px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 28px;
  padding: 50px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.screen-header span {
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.screen-header i {
  color: var(--text-muted);
}

.screen-balance {
  background: var(--gradient-primary);
  padding: 25px;
  border-radius: 20px;
  color: white;
  text-align: center;
}

.balance-label {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.balance-amount {
  font-size: 32px;
  font-weight: 800;
}

.screen-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.action-btn {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}

.screen-transaction {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.trans-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.trans-icon.success {
  background: rgba(0, 183, 74, 0.15);
  color: var(--primary-green);
}

.trans-info {
  display: flex;
  flex-direction: column;
}

.trans-info span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
}

.trans-info small {
  font-size: 12px;
  color: var(--text-muted);
}

/* Floating Feature Badges */
.feature-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  animation: floatCard 5s ease-in-out infinite;
}

.feature-badge.fb-1 {
  top: 5%;
  left: -70%;
  animation-delay: 0s;
}

.feature-badge.fb-2 {
  top: 25%;
  right: -80%;
  animation-delay: 1s;
}

.feature-badge.fb-3 {
  bottom: 25%;
  left: -70%;
  animation-delay: 2s;
}

.feature-badge.fb-4 {
  bottom: 5%;
  right: -68%;
  animation-delay: 3s;
}

.fb-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(0, 183, 74, 0.15), rgba(0, 102, 204, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-green);
}

.fb-content {
  display: flex;
  flex-direction: column;
}

.fb-content strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
}

.fb-content span {
  font-size: 12px;
  color: var(--text-muted);
}


/* Why Features List */
.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.wf-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  position: relative;
}

.wf-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.3;
}

.wf-content h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.wf-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.wf-line {
  position: absolute;
  bottom: -15px;
  left: 80px;
  right: 0;
  height: 1px;
  background: var(--border-color);
}


.wf-item:last-child .wf-line {
  display: none;
}


/* ========================================
   DIGICRUISE SECTION - NEW DESIGN
   Timeline Journey Layout
   ======================================== */

.digicruise-section-new {
  padding: var(--section-padding) 0 150px;
  position: relative;
  overflow: hidden;
  /* <CHANGE> Premium deep ocean gradient with subtle dark tones for separate feel */
  background: linear-gradient(180deg,
      #0a1628 0%,
      #0d2137 15%,
      #0f2847 30%,
      #0c3b5e 50%,
      #0e4d6e 70%,
      #1a6b8a 100%);
}

/* Background */
.cruise-bg-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* <CHANGE> Enhanced ocean gradient with premium glow effects */
.cruise-ocean-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 120% 60% at 50% 100%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 20% 90%, rgba(0, 119, 182, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 80% 85%, rgba(72, 202, 228, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 10% 20%, rgba(0, 180, 216, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 90% 30%, rgba(0, 119, 182, 0.05) 0%, transparent 25%);
}

/* <CHANGE> Premium wave pattern with enhanced opacity */
.cruise-wave-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2300B4D8' fill-opacity='0.08' d='M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,197.3C672,213,768,203,864,176C960,149,1056,107,1152,101.3C1248,96,1344,128,1392,144L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x bottom;
}

.animated-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

.wave-path {
  fill: rgba(0, 180, 216, 0.12);
}

.wave-path.wave-1 {
  fill: rgba(0, 180, 216, 0.1);
  animation: waveMove 12s ease-in-out infinite;
}

.wave-path.wave-2 {
  fill: rgba(72, 202, 228, 0.08);
  animation: waveMove 15s ease-in-out infinite reverse;
}

@keyframes waveMove {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }
}


/* <CHANGE> Light header text colors for dark background */
.section-header-new.light-header .header-title {
  color: #ffffff;
}

.section-header-new.light-header .header-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.section-header-new.light-header .header-badge.light {
  background: rgba(0, 180, 216, 0.2);
  color: #48cae4;
  border: 1px solid rgba(72, 202, 228, 0.3);
}

.gradient-text-ocean {
  background: linear-gradient(135deg, #48cae4 0%, #00b4d8 50%, #0096c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.light-header .header-title,
.light-header .header-subtitle {
  color: var(--text-dark);
}

.header-badge.light {
  background: var(--bg-glass-strong);
  box-shadow: var(--shadow-md);
}

/* Cruise Stats Row */
.cruise-stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0;
  position: relative;
  z-index: 1;
}

.cruise-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.cruise-stat-item .cs-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(0, 119, 182, 0.15) 100%);
  border: 1px solid rgba(72, 202, 228, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
  color: #48cae4;
}

.cruise-stat-item .cs-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.cruise-stat-item .cs-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* <CHANGE> Enhanced search form for dark theme */
.cruise-search-new {
  position: relative;
  z-index: 1;
  margin: 40px auto;
  max-width: 1100px;
}

.search-form-inline {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 20px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.search-field {
  flex: 1;
}

.search-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-field label i {
  margin-right: 6px;
  color: #48cae4;
}

.search-field select,
.search-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: #48cae4;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(72, 202, 228, 0.2);
}

.search-field select option {
  background: #0d2137;
  color: #ffffff;
}

.search-submit {
  padding: 14px 30px;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.search-submit:hover {
  background: linear-gradient(135deg, #48cae4 0%, #00b4d8 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}




/* NEW Voyage Showcase Grid */
.voyage-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 25px;
}

/* Featured Card spans 2 rows */
.voyage-card.voyage-featured {
  grid-row: span 2;
}

/* Base Card Styles */
.voyage-card {
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.voyage-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-2xl);
}

/* Card Image */
.voyage-card-image {
  position: relative;
  overflow: hidden;
}

.voyage-featured .voyage-card-image {
  height: 405px;
}

.voyage-standard .voyage-card-image {
  height: 180px;
}

.voyage-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.voyage-card:hover .voyage-card-image img {
  transform: scale(1.1);
}

.voyage-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Card Badge */
.voyage-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.voyage-card-badge.bestseller {
  background: var(--gradient-primary);
  color: white;
}

.voyage-card-badge.premium {
  background: var(--gradient-gold);
  color: white;
}

.voyage-card-badge.popular {
  background: var(--gradient-premium);
  color: white;
}

.voyage-card-badge.new {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
}

/* Card Price */
.voyage-card-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 16px;
  text-align: right;
  z-index: 2;
}

.price-old {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-new {
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Content */
.voyage-card-content {
  padding: 25px;
}

.voyage-featured .voyage-card-content {
  padding: 30px;
}

.voyage-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.voyage-card-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
  margin: 0;
}

.voyage-standard .voyage-card-header h3 {
  font-size: 18px;
}

.voyage-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(0, 183, 74, 0.1);
  border-radius: 20px;
}

.voyage-card-rating i {
  color: #f59e0b;
  font-size: 12px;
}

.voyage-card-rating span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-heading);
}

.voyage-card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.voyage-card-meta span {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.voyage-card-meta i {
  color: var(--primary-green);
}

.voyage-card-desc {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

.voyage-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.voyage-card-tags span {
  font-size: 12px;
  padding: 6px 14px;
  background: var(--bg-section);
  border-radius: 20px;
  color: var(--text-medium);
  font-weight: 600;
}

.voyage-card-tags i {
  color: var(--primary-green);
  margin-right: 5px;
}

.voyage-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);

  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}

.voyage-card-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 183, 74, 0.35);
  color: white;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
  padding: var(--section-padding) 0;
  position: relative;
  background: var(--bg-section);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.testimonials-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 183, 74, 0.04) 1px, transparent 0);
  background-size: 50px 50px;
}

.testimonials-wrapper {
  position: relative;
  z-index: 1;
}

.testimonials-nav {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 35px;
}

.testimonial-nav-btn {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-heading);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-nav-btn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: var(--shadow-green);
}

.testimonials-track-container {
  overflow: hidden;
  cursor: grab;
  padding: 25px 0;
}

.testimonials-track-container:active {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 35px;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.testimonials-track.dragging {
  transition: none;
}

/* Testimonial Cards */
.testimonial-card {
  flex-shrink: 0;
  width: 420px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  user-select: none;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 80px;
  font-family: Georgia, serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.testimonial-rating {
  margin-bottom: 22px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 18px;
  margin-right: 4px;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.author-avatar {
  position: relative;
}

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-section);
}

.author-avatar::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: var(--gradient-primary);
  border-radius: 50%;
  z-index: -1;
  animation: avatarRing 4s linear infinite;
}

@keyframes avatarRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.verified-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 183, 74, 0.4);
}

.author-info h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 5px;
}

.author-info span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonials-progress {
  height: 5px;
  background: var(--border-color);
  border-radius: 5px;
  margin-top: 35px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 183, 74, 0.5);
}

.drag-hint {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.drag-hint i {
  margin-right: 10px;
  color: var(--primary-green);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
}

.cta-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 50px 50px;
}

.cta-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 19px;
  opacity: 0.95;
  max-width: 650px;
  margin: 0 auto 45px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 35px;
  border-radius: 18px;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.cta-btn.primary {
  background: #000;
  color: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn.secondary {
  background: white;
  color: var(--text-dark);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-btn i {
  font-size: 36px;
}

.cta-btn div {
  text-align: left;
}

.cta-btn span {
  font-size: 12px;
  opacity: 0.8;
  display: block;
  letter-spacing: 0.5px;
}

.cta-btn strong {
  font-size: 19px;
  font-weight: 800;
}

.cta-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-btn.primary:hover {
  color: white;
}

.cta-btn.secondary:hover {
  color: var(--text-dark);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--text-dark);
  color: white;
}

.footer-top {
  padding: 90px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 50px;
}

.footer-logo-wrap {
  margin-bottom: 25px;
}

.footer-logo-text {
  font-size: 32px;
  font-weight: 800;
  color: white;
}

.footer-logo-text span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 28px;
}


.footer-brand img {
  height: 80px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 28px;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer-links a:hover {
  color: white;
  padding-left: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.footer-contact i {
  color: var(--primary-green);
  margin-top: 4px;
  font-size: 16px;
}

.footer-bottom {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 500;
}

.footer-bottom i.fa-heart {
  color: #ef4444;
}

.payment-partners {
  display: flex;
  gap: 18px;
}

.payment-partners img {
  height: 32px;
  opacity: 0.6;
  transition: var(--transition);
}

.payment-partners img:hover {
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-6px);
  color: white;
  box-shadow: 0 20px 50px rgba(0, 183, 74, 0.5);
}

/* 

  ========================================
   RESPONSIVE - Added for new sections
  ======================================== 

*/


@media (max-width: 1200px) {
  .voyage-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .voyage-card.voyage-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .voyage-featured .voyage-card-image {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .container-fluid {
    padding: 0 30px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content-left {
    max-width: 100%;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-cta-wrapper {
    justify-content: center;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .hero-content-right {
    height: 450px;
  }

  .hero-stats-strip {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 40px;
    border-radius: 30px;
  }

  .stat-divider {
    display: none;
  }

  .bento-services-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .bento-large {
    grid-column: span 6;
    grid-row: span 1;
    min-height: 350px;
  }

  .bento-medium {
    grid-column: span 3;
  }

  .bento-wide {
    grid-column: span 6;
  }

  .quick-services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Why Choose Section */
  .why-showcase-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-visual-hub {
    order: -1;
  }

  .voyage-timeline::before {
    display: none;
  }

  .voyage-connector {
    display: none;
  }

  .voyage-item,
  .voyage-item.reverse {
    justify-content: center;
  }

  .voyage-content {
    width: 100%;
    max-width: 600px;
  }

  .voyage-item.reverse .voyage-content {
    flex-direction: row;
  }

  .search-form-inline {
    flex-wrap: wrap;
  }

  .search-field {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
  }

  .search-submit {
    width: 100%;
    justify-content: center;
  }

  .cruise-stats-row {
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .navbar-brand img {
    height: 50px;
  }

  .voyage-showcase-grid {
    grid-template-columns: 1fr;
    justify-content: center;

  }


  .navbar-collapse {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: var(--shadow-lg);
  }


      .voyage-card.voyage-featured {
        grid-column: unset;
        /* grid-row: unset; */
    }

  .premium-services-grid {
  grid-template-columns: repeat(2, 1fr);
}

  .nav-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-content-right {
    height: 400px;
  }

  .feature-card.main-card {
    width: 280px;
    padding: 25px;
  }

  .floating-card {
    padding: 12px 16px;
  }

  .bento-services-grid {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-medium,
  .bento-wide {
    grid-column: span 1;
    min-height: auto;
  }

  .quick-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .quick-service {
    padding: 20px 10px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .voyage-content {
    flex-direction: column !important;
  }

  .voyage-image {
    width: 100%;
    min-height: 200px;
  }

  .search-field {
    flex: 1 1 100%;
  }

  .cruise-stats-row {
    flex-wrap: wrap;
    gap: 25px;
  }

  .cruise-stat-item {
    flex: 1 1 calc(50% - 15px);
  }

  .testimonial-card {
    width: 320px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }


  /* Why Choose */
  .phone-frame {
    width: 240px;
    height: 480px;
  }

  .feature-badge {
    position: static;
    margin-bottom: 15px;
  }

  .why-visual-hub {
    flex-wrap: wrap;
    gap: 15px;
  }

  .visual-phone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .container-fluid {
    padding: 0 20px;
  }

  .hero-cta-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats-strip {
    padding: 25px 20px;display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
  }

  .stat-block {
    flex: 1 1 calc(50% - 15px);
    justify-content: center;
  }

  .quick-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .voyage-details {
    padding: 20px;
  }

  .voyage-header {
    flex-direction: column;
    gap: 10px;
  }

  .voyage-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .voyage-book-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 290px;
    padding: 30px;
  }

  .cs-value {
    font-size: 26px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}