/* 
  Go Drive Car Rental - Main Styles
  Theme: Zus Coffee Inspired (Navy Blue & Gold)
  Font: Outfit (Modern Geometric)
*/

:root {
  /* Zus Coffee Inspired Palette - REBRANDED TO GO ROCKET (Zus Blue) */
  --primary-color: #1C39BB;
  /* Vibrant 'Digital' Zus Blue (Electric/Persian Blue) */
  --primary-dark: #102480;
  --secondary-color: #FFFFFF;
  /* Pure White */
  --accent-color: #E5E7EB;
  /* Metallic Silver / Cool Grey */
  --accent-hover: #D1D5DB;
  /* Darker Silver */
  --text-dark: #1F2937;
  /* Cool Grey 800 - Softer than black */
  --text-light: #4B5563;
  /* Cool Grey 600 */
  --accent-cyan: #00C2FF;
  /* Electric Cyan (Tech Vibe) */
  --bg-light: #f4f6f9;
  /* Very light blue-grey tint */
  --bg-dark: #0f172a;
  --bg-white: #ffffff;

  --font-main: 'Outfit', sans-serif;
  /* Clean, modern sans */
  --font-heading: 'Plus Jakarta Sans', sans-serif;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
  /* Soft Zen Shadow */
  --shadow-md: 0 10px 40px rgba(13, 35, 70, 0.06);
  /* Diffused Depth */
  --shadow-lg: 0 25px 50px rgba(13, 35, 70, 0.12);
  /* Floating Effect */
  --radius-sm: 8px;
  --radius-md: 24px;
  /* Ultra-Rounded (Pill Shape) */
  --radius-lg: 32px;
  --container-width: 1200px;
}

/* Removed old .icon-large - see USP Section Premium Styling */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  background-image: url('images/pattern_bg.png');
  /* Pattern added */
  background-size: 400px;
  background-repeat: repeat;
  background-blend-mode: overlay;
  background-blend-mode: overlay;
  color: var(--text-dark);
  font-weight: 300;
  /* Zen Lightness */
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
  padding-top: 70px;
}

/* Hack to hide bottom white space if any */
html {
  background-color: var(--bg-light);
  overflow-x: hidden;
}



a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

h1,
h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  /* Extra Bold */
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  /* Extra Bold */
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Utilities */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}


/* --- HORIZONTAL SCROLL SNAP (Mobile) --- */
@media (max-width: 768px) {

  .grid-3,
  .grid-2 {
    display: flex !important;
    overflow-x: auto;
    /* Custom Snap Logic handles movement, so native snap can be optional or mixed */
    /* scroll-snap-type: x mandatory;  <-- Disabled for smoother auto-scroll flow */
    gap: 20px !important;
    padding-bottom: 30px;
    /* Space for shadow */
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
    -webkit-overflow-scrolling: touch;

    /* Fade Edge Masking (Zen Effect) */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .grid-3>*,
  .grid-2>* {
    min-width: 280px;
    /* Card Width */
    max-width: 280px;
    /* scroll-snap-align: center; */
    flex-shrink: 0;
  }

  /* Hide scrollbar for clean look */
  .grid-3::-webkit-scrollbar,
  .grid-2::-webkit-scrollbar {
    display: none;
  }
}

/* --- FLOATING PILL NAV (Zen Capsule - Top Position) --- */
.fleet-nav-container {
  position: fixed;
  top: 90px;
  /* Below Header (Header is ~70-80px) */
  bottom: auto;
  /* Reset bottom */
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 990;
  /* High but below Mobile Menu Overlay (2000) */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  /* Clean border */
  width: auto;
  max-width: 90%;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  opacity: 1;
  visibility: visible;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fleet-nav-container.hidden-pill {
  transform: translateX(-50%) translateY(-150px);
  /* Slide UP to hide */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.fleet-nav {
  display: inline-flex;
  gap: 8px;
  padding: 0 5px;
}

.fleet-tab {
  padding: 10px 20px;
  border-radius: 50px;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fleet-tab.active {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(28, 57, 187, 0.3);
  transform: scale(1.05);
}

/* Hide scrollbar on pill */
.fleet-nav-container::-webkit-scrollbar {
  display: none;
}

/* --- VVIP DARK CARDS --- */
.card.vvip {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.card.vvip h4 {
  color: #ffd700 !important;
  /* Gold */
}

/* VVIP Specifics (Text Only) */
.card.vvip .price {
  color: var(--primary-color);
  /* Unify Price Color too */
}

.card.vvip .price {
  color: white;
}

.card.vvip .btn-outline {
  border-color: #ffd700;
  color: #ffd700;
}

.card.vvip .btn-outline:hover {
  background: #ffd700;
  color: #0f172a;
}


.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-align: center;
  /* Ensure text is centered inside the block */
}

.section {
  padding: 120px 0;
  /* Zen Whitespace: Increased from 80px */
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-white {
  background-color: var(--secondary-color);
}

/* Portfolio & Video Cards */

/* Animation Gedik for Interactions */
/* Zen Pulse Animation (Replaces Gedik Wiggle) */
@keyframes gedik {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.4);
  }

  50% {
    transform: scale(1.05);
    /* Gentle Breath */
    box-shadow: 0 0 0 10px rgba(0, 194, 255, 0);
    /* Ripple faded out */
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 194, 255, 0);
  }
}

.video-card {
  background: white;
  padding: 10px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Ultra-smooth Zen interactions */
}

.video-card:hover {
  transform: translateY(-5px);
}


/* --- Shape Dividers (Bridges) --- */
/* --- Shape Dividers (Bridges) --- */
.custom-shape-divider-bottom-1689947849 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1689947849 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
  /* Increased height for smoother curve */
}

.custom-shape-divider-bottom-1689947849 .shape-fill {
  fill: var(--secondary-color);
  /* Match next section (Portfolio) bg: #f8f9fa */
}

/* Wave Bottom */
.custom-shape-divider-bottom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-wave svg {
  position: relative;
  display: block;
  width: calc(150% + 1.3px);
  height: 90px;
}

.custom-shape-divider-bottom-wave .shape-fill {
  fill: var(--bg-light);
  /* Match next section (Testimonials) */
}

/* Wave Top for Services */
.custom-shape-divider-top-1689948270 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1689948270 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.custom-shape-divider-top-1689948270 .shape-fill {
  fill: var(--secondary-color);
  /* Match previous section (How-To) bg: #f8f9fa */
}

/* Hero Bottom Divider */
.custom-shape-divider-bottom-hero {
  position: absolute;
  bottom: -1px;
  /* Fix gap: Anchor to bottom (negative to ensure overlap) */
  left: 0;
  width: 100%;
  overflow: visible;
  /* Fix clipping: Allow car to drive "outside" the box */
  line-height: 0;
  transform: rotate(180deg);
  z-index: 20;
  /* Bring forward as requested */
}

.custom-shape-divider-bottom-hero svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  /* Reduced height as requested */
  /* Slightly taller for visibility */
}

.custom-shape-divider-bottom-hero .shape-fill {
  fill: var(--secondary-color);
  /* Restored selector to fix black background */
  /* Match next section (USP) bg: #f8f9fa */
}

/* --- Road Divider Animation --- */
.road-tarmac {
  fill: none;
  stroke: transparent;
  /* Transparent tarmac */
  stroke-width: 25px;
  stroke-linecap: round;
}

.road-line {
  fill: none;
  stroke: #f1c40f;
  /* Yellow Road Line */
  stroke-width: 4px;
  stroke-dasharray: 12, 12;
}

/* Ensure sections with dividers are relative */
#fleet,
#portfolio,
#services,
.hero {
  position: relative;
  overflow: hidden;
  /* Prevent horizontal scroll from SVG width */
}

/* Add padding to clear bottom dividers (Divider height ~100px + 50px buffer) */
#fleet {
  padding-bottom: 80px;
}

#portfolio {
  padding-bottom: 150px;
  padding-top: 0;
  margin-top: -100px;
  /* Force stick */
  position: relative;
  z-index: 20;
}

#portfolio .section-title {
  margin-top: 30px;
  /* Add breathing room */
}

/* USP Section - Standard Padding */
#usp {
  padding-top: 80px;
  /* Restore standard padding */
}

#usp .container {
  position: relative;
  z-index: 10;
  /* Removed negative margin */
}

/* Removed redundant .usp-card - see Premium Styling section */

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  color: #888;
  text-align: center;
}

.video-placeholder i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.video-placeholder span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonials */
.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 5px;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testi-card {
  min-width: 300px;
  background: white;
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.stars {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.testi-card p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ddd;
  /* Generic fallback or service if needed */
  background-size: cover;
}

.company-reg {
  font-family: monospace, sans-serif;
  letter-spacing: 0.5px;
}

/* Footer (existing) */
footer {
  background-color: var(--primary-color);
  color: white;
}

.bg-dark {
  background-color: var(--primary-color);
  color: white;
}

.text-gold {
  color: var(--accent-color) !important;
}

.text-white {
  color: white !important;
}

/* Glassmorphism Utility */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Icon Utilities (Phosphor) */
.ph {
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}

/* Scroll Animation Classes */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

/* Buttons */
/* Buttons Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  /* Smooth Button Feel */
  cursor: pointer;
  border: none;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:active {
  transform: scale(0.96);
}

.btn .icon {
  font-size: 1.25em;
}

/* Primary Button - Deep Blue Gradient */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(27, 60, 115, 0.3);
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(28, 57, 187, 0.4), 0 0 15px rgba(0, 194, 255, 0.6);
  /* Cyan Glow */
}

/* Secondary Button - Silver Gradient */
.btn-secondary {
  background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(200, 200, 200, 0.3);
  border: 1px solid #D1D5DB;
}

.btn-secondary:hover {
  filter: brightness(0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 200, 200, 0.5);
}

/* Outline Button */
.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(27, 60, 115, 0.25);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  width: 100%;
}

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  background-color: var(--primary-color);
  color: white;
  overflow-x: hidden;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.logo {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  /* White logo text */
  letter-spacing: -1px;
}

.logo span {
  color: var(--accent-color);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  /* White text */
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--accent-color);
  /* Gold hover */
}

.nav-link.btn-primary {
  color: white;
  background: var(--accent-color);
  /* Gold button in navbar for contrast */
  color: var(--primary-color);
}

.nav-link.btn-primary:hover {
  background: white !important;
  color: var(--primary-color) !important;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Nav Controls (Music & Language) */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-toggle-container {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  /* White text */
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  padding: 2px 5px;
}

.lang-btn.active {
  color: white;
  font-weight: 700;
}

.lang-btn:hover {
  color: white;
}

.divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  /* White icon */
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 5px;
}

.icon-btn:hover {
  transform: scale(1.1);
  color: var(--accent-cyan);
  /* Hover Cyan */
  text-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

/* Mobile Menu Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
  /* White bars */
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  /* Background moved to .hero-bg for parallax performance */
  background: none;
  color: white;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
  /* Ensure parallax overflow is hidden */
}

.hero-bg {
  position: absolute;
  top: -10%;
  /* Start slightly above */
  left: 0;
  width: 100%;
  height: 120%;
  /* Taller than container for scroll range */
  background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  z-index: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  /* Force GPU */
  backface-visibility: hidden;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(27, 60, 115, 0.7));
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  color: white;
  font-size: 3.0rem;
  /* Reduced from 3.5rem to fit long BM text */
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  /* Fix layout shift from typewriter */
  /* New stable structure with <br> breaks */
  /* min-height removed */
  display: block;
  /* Top Align creates stability */
  /* Remove flex centering to stop jumping */
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #e2e8f0;
}

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

.hero-subtext {
  margin-top: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Cards & Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  /* Wider gaps for Zen layout */
}

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

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  /* More internal breathing room */
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  overflow: hidden;
  border: none;
  /* Zen Rule: No Hard Borders */
}

.card:hover {
  transform: translateY(-10px);
  /* Higher Float */
  box-shadow: var(--shadow-lg);
}

/* USP Section - Premium Styling */
.usp-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.usp-card:hover::before {
  transform: scaleX(1);
}

.usp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 2px var(--primary-color), 0 0 20px rgba(28, 57, 187, 0.15);
}

.usp-card:nth-child(even) {
  animation-delay: 1.5s;
}

/* Zen USP Icon (Matches Step Icon) */
.icon-large {
  width: 80px;
  height: 80px;
  background: rgba(28, 57, 187, 0.05);
  color: var(--primary-color);
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  /* Balanced size */
  margin-bottom: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(28, 57, 187, 0.1);
}

.usp-card:hover .icon-large {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(28, 57, 187, 0.2);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: -40px auto 50px;
  font-size: 1.1rem;
}

/* Fleet Section */
.fleet-category {
  margin-bottom: 60px;
}

.fleet-category h3 {
  display: inline-block;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.fleet-card {
  padding: 0;
  border: none;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  /* Flex Layout */
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 0 3px var(--primary-color), 0 0 30px rgba(28, 57, 187, 0.2);
}

.fleet-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  transform: scale(1.15) translateY(10px);
  transform-origin: center center;
}

.fleet-card:hover .fleet-img {
  transform: scale(1.2) translateY(5px);
}

.fleet-info {
  padding: 24px;
  text-align: center;
  background: white;
  position: relative;
  flex: 1;
  /* Occupy remaining space */
  display: flex;
  flex-direction: column;
}

.fleet-info h4 {
  margin-bottom: 10px;
  font-weight: 700;
  min-height: 54px;
  /* Reserve space for 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fleet-info .btn {
  margin-top: auto;
  /* Push button to bottom */
  white-space: nowrap;
  /* Prevent button text wrapping */
}

.fleet-info::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to top, white, transparent);
}

.fleet-info h4 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.fleet-card:hover .fleet-info h4 {
  color: var(--primary-color);
}

/* Spec Icons */
.specs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 40px;
  /* Reserve space for layout stability */
  align-items: center;
}

.specs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(28, 57, 187, 0.05);
  /* Zen Light Blue */
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  /* Pill Shape */
  border: 1px solid rgba(28, 57, 187, 0.1);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  /* Prevent text stacking */
}

.fleet-card:hover .specs span {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 57, 187, 0.2);
}

.fleet-card:hover .specs .ph {
  color: white;
}

.specs .ph {
  font-size: 1.2em;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.price {
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.badges {
  margin-bottom: 15px;
  font-size: 0.8rem;
}

.badge {
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--primary-color);
  border: 1px solid #cbd5e1;
  font-weight: 600;
}

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

/* How To (Steps) - Premium Timeline */
.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.step-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 25px 15px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 2px var(--primary-color), 0 0 25px rgba(28, 57, 187, 0.15);
}

/* Zen Icon Style for Steps */
.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(28, 57, 187, 0.05);
  /* Soft Zen BG */
  color: var(--primary-color);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(28, 57, 187, 0.1);
}

.step-item:hover .step-icon {
  background: var(--primary-color);
  color: white;
  /* Invert on hover for impact */
  transform: translateY(-5px) rotate(0deg);
  box-shadow: 0 15px 30px rgba(28, 57, 187, 0.2);
}

/* Services Section - Premium Glassmorphism */
.info-block {
  padding: 35px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.info-block:hover::before {
  opacity: 1;
}

.info-block:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.info-block ul {
  margin-left: 20px;
  list-style: disc;
  margin-top: 15px;
  color: #cbd5e1;
}

.info-block h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
}

.info-block h3 i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-block p {
  color: #e2e8f0;
  line-height: 1.7;
}

/* About & Location */
.align-center {
  align-items: center;
}

.map-placeholder {
  width: 100%;
  height: 350px;
  background-color: #cbd5e1;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: bold;
}

/* Contact List - Premium Style */
.contact-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.contact-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  background: linear-gradient(90deg, rgba(28, 57, 187, 0.05), white);
}

.contact-list li strong {
  margin-right: 8px;
  /* Breathing room for label */
  color: var(--primary-color);
}

.contact-list .ph {
  font-size: 1.4rem;
  color: var(--primary-color);
  background: linear-gradient(135deg, rgba(28, 57, 187, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
  padding: 8px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-list li:hover .ph {
  background: var(--primary-color);
  color: white;
}

.contact-list a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.contact-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-list a:hover::after {
  transform: scaleX(1);
}

/* Footer - "Owner Hero" Redesign */
footer {
  background: #111;
  color: #fff;
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  /* Ensure no gap */
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  /* Align bottom for cutout */
  justify-content: center;
  /* max-width removed for full width background */
  width: 100%;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.owner-hero {
  flex: 1 1 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.owner-img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  /* Adjust based on image */
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.05));
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.footer-info {
  flex: 1 1 400px;
  padding: 2rem;
  text-align: left;
  align-self: center;
}

.owner-badge {
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 700;
}

.footer-info h3 {
  font-size: 3rem;
  margin: 0 0 1rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.footer-info h3 span {
  color: var(--primary-color);
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 5px;
  opacity: 0.8;
}

.footer-quote {
  font-style: italic;
  color: #aaa;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  border-left: 3px solid var(--accent-color);
  padding-left: 15px;
}

.footer-contacts p {
  font-size: 1.2rem;
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-contacts i {
  color: var(--primary-color);
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.footer-bottom {
  background: #000;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #222;
  color: #666;
  font-size: 0.9rem;
}

/* Mobile Sticky Action Bar */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 999;
  padding: 8px 12px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: none;
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}

.call-btn {
  background-color: #f1f5f9;
  color: var(--primary-color);
}

.wa-btn {
  background-color: #25D366;
  color: white;
}

/* Floating WhatsApp (Desktop) */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s;
  animation: bounce 3s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
}

.desktop-only {
  display: flex;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/* Sales Psychology - Trust Bar */
.trust-bar {
  padding: 30px 0;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  /* For safety */
}

.trust-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #4B5563;
  /* Darker grey for better contrast */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  display: block;
  text-align: center;
}

/* Marquee Container */
.trust-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

/* Marquee Track */
.trust-track {
  display: flex;
  align-items: center;
  gap: 0;
  /* Removing gap, using padding on items for perfect loop math */
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  /* Fixed width for perfect calculation */
  padding: 0 20px;
  /* Create spacing via padding */
  flex-shrink: 0;
}

.trust-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: #374151;
  /* Darker grey for better contrast */
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: 1px;
}

/* Logo Image Styling */
.trust-logo-img {
  height: 45px;
  /* Consistent height */
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  /* Watermark effect */
  transition: filter 0.3s ease;
}

.trust-logo-item:hover .trust-logo-img {
  filter: grayscale(0%) opacity(1);
  /* Full color on hover */
}

/* Infinite Scroll Keyframes */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
    /* Moves exactly 1 set (4 items) out of 4 sets */
  }
}

/* Badge Styles */
.badge-best-value,
.badge-popular {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  animation: badgePulse 2s infinite;
}

.badge-best-value {
  background: #10b981;
  /* Emerald Green */
  color: white;
}

.badge-popular {
  background: #fbbf24;
  /* Amber Gold */
  color: #0d2346;
}

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

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* Pulse for Hero CTA (Blue) - Global */
@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 60, 115, 0.7);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(27, 60, 115, 0);
    transform: scale(1.02);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(27, 60, 115, 0);
    transform: scale(1);
  }
}

.cta-whatsapp {
  animation: pulse-blue 2s infinite;
  will-change: transform, box-shadow;
}

/* Portfolio 2x2 Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 Columns on Desktop */
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

/* Testimonial Marquee */
.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  /* Slower for reading */
}

.testimonial-card {
  min-width: 300px;
  /* Fixed width for consistent cards */
  white-space: normal;
  /* Allow text wrapping inside card */
  margin: 0;
  flex-shrink: 0;
}

/* Mobile Utility Classes */
.mobile-hidden {
  display: inline;
  /* Default visible */
}

/* =========================================
   Mobile Responsiveness (Max-Width: 768px)
   ========================================= */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  /* Stack Grids */
  .grid-2,
  .grid-3,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* --- Animations: Pulse, Shimmer, Parallax --- */

  /* Pulse for Floating WhatsApp */
  @keyframes pulse-green {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  .floating-wa {
    animation: pulse-green 2.5s infinite;
  }

  /* Shimmer for CTA Buttons */
  @keyframes shimmer {
    0% {
      background-position: -100% 0;
    }

    100% {
      background-position: 200% 0;
    }
  }

  .btn-primary {
    /* Existing styles... plus gradient setup for shimmer */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    /* Overwrite for shimmer effect */
    background: linear-gradient(120deg,
        var(--primary-color) 30%,
        rgba(255, 255, 255, 0.4) 50%,
        var(--primary-dark) 70%);
    background-size: 200% 100%;
    animation: shimmer 4s infinite linear;
  }

  /* Mobile Spacing Fix */
  .section {
    padding: 50px 0;
  }


  /* Mobile specific: Reduce animation intensity or keep it if performance is fine. */
  .floating-wa {
    animation: pulse-green 3s infinite;
    /* Slower on mobile */
  }

  /* Pulse for Hero CTA (Blue) */
  @keyframes pulse-blue {
    0% {
      box-shadow: 0 0 0 0 rgba(27, 60, 115, 0.7);
      transform: scale(1);
    }

    70% {
      box-shadow: 0 0 0 15px rgba(27, 60, 115, 0);
      transform: scale(1.02);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(27, 60, 115, 0);
      transform: scale(1);
    }
  }

  .cta-whatsapp {
    animation: pulse-blue 2s infinite;
    will-change: transform, box-shadow;
  }

  /* Disable tilt on mobile to prevent weird touch interactions */
  .fleet-card {
    transform: none !important;
  }

  /* Hide Desktop Elements */
  .mobile-hidden {
    display: none !important;
  }

  /* Animation Speed */
  .trust-track,
  .testimonial-track {
    animation-duration: 20s;
  }

  h1 {
    font-size: 2rem;
  }

  /* Fix Header Logo wrapping on mobile */
  .logo {
    font-size: 0.85rem;
    white-space: nowrap;
    letter-spacing: -0.5px;
    flex-shrink: 0;
    display: inline-block;
  }

  /* Optimize header space */
  .nav-container {
    gap: 5px;
  }

  .nav-controls {
    gap: 5px;
    z-index: 1002;
    /* Ensure BUTTON lives above the MENU (1001) */
    position: relative;
  }

  .lang-toggle-container {
    font-size: 0.75rem;
  }

  .icon-btn {
    font-size: 1.3rem;
    padding: 2px;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 1.35rem;
    /* Aggressive reduction: Guaranteed to fit "Sampai Airport, Terus Pandu." on 320px */
    line-height: 1.25;
    padding: 0 2px;
    letter-spacing: -0.3px;
    /* Help squeeze it in */
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding: 50px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    /* Slightly more opaque, less reliance on blur if needed */
    backdrop-filter: blur(10px);
    /* Keep for now, but monitor */
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    will-change: opacity;
    /* Optimize fade */
  }

}

/* End of max-width: 768px */

/* =========================================
   Navigation Styles (Refactored v3.11 - Global)
   ========================================= */

/* Desktop Navigation (Header) */
.desktop-nav {
  display: none;
  /* Hidden by default (Mobile First) */
  gap: 30px;
  align-items: center;
}

.desktop-nav .nav-link {
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
  position: relative;
  text-decoration: none;
  color: var(--secondary-color);
  /* Ensure visibility against blue header */
  margin-bottom: 0;
  /* consistent check */
}

.desktop-nav .nav-link:hover {
  color: var(--accent-cyan);
}

.desktop-nav .btn-primary {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--primary-color);
  color: white !important;
  box-shadow: 0 4px 15px rgba(27, 60, 115, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 0;
}

.desktop-nav .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 60, 115, 0.3);
}

/* Mobile Navigation (Overlay) */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* Zen x Zus: Full Screen Navy Overlay */
  background: var(--primary-color);
  /* Zus Navy */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Space out content */
  align-items: center;
  padding: 0;
  padding-bottom: 40px;
  /* Safe area */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at 100% 0);
  /* Circle reveal effect */
  pointer-events: none;
  z-index: 2000;
}

.mobile-nav-header {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  letter-spacing: -0.5px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.mobile-nav-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: circle(150% at 100% 0);
}

.mobile-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  /* Inactive State */
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link:active {
  color: white;
  transform: scale(1.05);
}

.mobile-nav .nav-link.active-page {
  color: white;
  position: relative;
}

.mobile-nav .nav-link.active-page::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  /* Gold */
}

.mobile-nav .btn-primary {
  margin-top: 20px;
  width: auto;
  min-width: 200px;
  text-align: center;
  padding: 15px 30px;
  font-size: 1.1rem;
  background: white;
  color: var(--primary-color) !important;
  border-radius: 50px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile Controls Styling */
.mobile-lang .lang-btn {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
}

.mobile-lang .lang-btn.active {
  color: white;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}

.mobile-music {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.mobile-music i {
  font-size: 1.4rem;
}

/* Close Button (Mobile Only) */
.nav-close-btn {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: white;
  cursor: pointer;
  z-index: 2005;
  padding: 10px;

}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}

.mobile-nav .btn-primary {
  margin-top: 20px;
  width: 80%;
  text-align: center;
  padding: 15px;
  font-size: 1.2rem;
  background: var(--primary-color);
  color: white !important;
  border-radius: 12px;
}

/* Close Button (Mobile Only) */


/* DESKTOP MEDIA QUERY - Now at Root Level */
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    /* Show Desktop Menu */
  }

  .mobile-nav {
    display: none !important;
    /* Force hide Mobile Menu */
  }

  .nav-controls .hamburger {
    display: none !important;
    /* Hide Hamburger on Desktop */
  }
}

/* Re-open Mobile Styles (Max-Width: 768px) for subsequent code */
@media (max-width: 768px) {

  .hero {
    min-height: 70vh;
    /* Reduced from 80vh to pull next section up */
    padding-bottom: 0;
  }

  /* Fleet Card Optimization */
  .fleet-img {
    height: 220px;
    /* Reduced from 260px to fix overlap */
    padding: 0;
    margin-bottom: 10px;
    /* Ensure label is visible */
  }

  .fleet-info {
    padding: 15px;
  }

  /* Fix Hero Button Wrapping */
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    /* Full width */
    font-size: 0.9rem;
    /* Reduce font size to fit text */
    padding: 12px 5px;
    /* Reduce side padding */
    white-space: nowrap;
    /* Force single line */
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    /* Allow height to adjust if needed, but flex prevents it */
  }



  /* Exception for Center CTA to avoid edge touching */
  .center-cta .btn {
    width: auto;
    max-width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }



  .steps-container {
    flex-direction: column;
  }

  .step-item {
    margin-bottom: 40px;
  }

  .mobile-action-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px 20px 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    align-items: center;
    gap: 15px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    /* Modern rounded look */
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  /* --- Spacing Fixes for Mobile --- */

  /* 1. Fix "Lokasi utama" overlapping bottom divider */
  .hero-content {
    padding-bottom: 120px;
    /* Push text up above the white wave */
  }

  /* 2. Fix Portfolio Gap (Too Far) -> NOW prevent overlap */
  #portfolio {
    padding-top: 20px;
    padding-bottom: 120px;
    /* Increased to clear the 90px wave divider */
  }

  /* 3. Fix Testimonials Gap (Too Far) -> Keep tight */
  #testimonials {
    padding-top: 0;
    margin-top: -60px;
    /* Pull up to overlap the empty padding space of Portfolio */
    position: relative;
    z-index: 2;
    /* Ensure it sits on top if overlapping */
  }

  /* 4. Fix Services Gap (Too Close to Top Divider) */
  #services {
    padding-top: 120px;
    /* Push text down below the top wave */
  }

  /* Remove previous general section fix if it conflicts, but 50px is good base */

  .action-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Add depth to buttons */
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Fix Footer Spacing: Extend footer background BEHIND the bar */
  /* Fix Footer Spacing: Extend footer background BEHIND the bar */
  footer,
  .section-footer,
  .footer-zen {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    /* Reset padding, let hero handle it */
    background: #0a1628 !important;
    /* Solid Dark Navy Base */
  }

  /* Apply BG Image specifically to the Hero section (behind owner) on Mobile */
  .footer-hero {
    background: linear-gradient(0deg, rgba(10, 22, 40, 0.85), rgba(10, 22, 40, 0.85)), url('images/footer_bg_mobile.png') no-repeat center center / cover !important;
    padding-top: 60px !important;
    padding-bottom: 40px !important;
    border-radius: 0 !important;
    /* Full width look */
  }

  .footer-bottom-zen {
    padding-bottom: 20px !important;
    /* Aggressive reduction: Text sits just above sticky bar */
    padding-top: 5px !important;
    background: #0a1628 !important;
    /* Ensure match */
  }

  /* Remove body padding so footer color touches bottom (if sticky bar floats) or at least background is seamless */
  body {
    padding-bottom: 0;
  }

  .desktop-only {
    display: none;
  }
}

/* --- Force Desktop Visibility Safety Guard --- */
@media (min-width: 769px) {
  .mobile-action-bar {
    display: none !important;
  }

  .floating-wa {
    display: flex !important;
  }
}

/* Gedik Animation Keyframes */
@keyframes gedik {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-3deg);
  }

  20% {
    transform: rotate(3deg);
  }

  30% {
    transform: rotate(-3deg);
  }

  40% {
    transform: rotate(3deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

/* Floating WhatsApp Button */
.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-wa:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: white;
}

/* Layered Background Utility */
.bg-layered {
  position: relative;
  background-color: var(--secondary-color);
  overflow: hidden;
}

.bg-layered::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/pattern_bg.png');
  background-size: 400px;
  background-repeat: repeat;
  opacity: 0.05;
  /* Low opacity as requested */
  pointer-events: none;
  z-index: 0;
}

.bg-layered>* {
  position: relative;
  z-index: 1;
}

/* Gedik Animation Class */
.gedik-anim {
  animation: gedik 3s infinite ease-in-out;
  display: inline-block;
}

/* Owner & AI Avatar in Footer */
.footer-owner-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  text-align: center;
}

.footer-owner-img {
  max-width: 250px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: #000;
  /* Ensure black bg if transparent */
}

.ai-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
  animation: gedik 5s infinite;
}

.footer-contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

/* --- Mobile Bottom Action Bar (App-Like Sticky) --- */
.mobile-action-bar {
  position: fixed;
  bottom: 20px;
  /* Float from bottom */
  left: 20px;
  /* Float from left */
  right: 20px;
  /* Float from right */
  width: auto;
  /* Allow auto width based on margins */
  background: white;
  /* Or rgba(255,255,255,0.95) for glass */
  padding: 12px 20px;
  display: flex;
  /* Kept default, hidden via media query logic elsewhere if needed, but usually this is base class */
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  /* Deeper shadow */
  border-radius: 20px;
  /* ZEN CURVE */
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: none;
  /* Hidden on Desktop */

  /* Animation Hook */
  transform: translateY(100px);
  /* Initially Hidden Below */
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  /* No clicks when hidden */
}

.mobile-action-bar.visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: all;
}



@media (max-width: 768px) {
  .mobile-action-bar {
    display: flex;
    /* Show on Mobile */
  }

  /* Adjust Floating WA button to sit above the bar if present, or hide it to avoid clutter */
  .float-wa {
    bottom: 100px;
  }
}

.action-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.call-btn {
  background: #E5E7EB;
  /* Metallic Silver */
  color: var(--text-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wa-btn {
  background: #25D366;
  /* WhatsApp Green */
  color: white;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.wa-btn:hover,
.call-btn:hover {
  transform: scale(1.02);
}

/* Closing media query from line 1996 */

/* Closing media query from line 1996 */
/* Clean Map Container */
.map-container {
  width: 100%;
  height: 550px !important;
  /* Zen Size: Forced height for desktop */
  min-height: 550px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #ffffff;
  /* Zen Frame: White Border */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  /* Soft, elevated shadow */
  transition: box-shadow 0.3s ease;
}

.map-container:hover {
  box-shadow: var(--shadow-lg);
  /* Floating effect on hover */
}

/* Fix for bg-dark contrast issues */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark p,
.bg-dark span,
.bg-dark li,
.bg-dark i {
  color: white !important;
}

.bg-dark .text-primary {
  color: white !important;
  /* Force override even if class is present */
}

/* --- Zen Premium Footer - Hero Style --- */
.footer-zen {
  background: linear-gradient(180deg, #0a1628 0%, #1c39bb 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Footer Hero Section - Centered Owner Style */
/* Footer Hero Section - Centered Owner Style */
.footer-hero {
  position: relative;
  min-height: 600px;
  /* Increased to fit taller image */
  background-image: url('images/footer_bg.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  /* Align to bottom */
  justify-content: center;
  padding: 60px 20px 0;
  margin-top: -2px;
  overflow: visible;
  /* Ensure nothing cuts off */
}

/* Fix desktop width cut off */
@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}

.footer-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 22, 40, 0.95) 100%);
  pointer-events: none;
}

.footer-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  /* Increased for wider desktop view */
  padding-bottom: 0;
}

/* Text Above Owner */
.footer-hero-text {
  margin-bottom: 20px;
}

.footer-subtitle {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-logo-large {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-logo-large span {
  color: var(--accent-cyan);
  font-weight: 400;
  font-size: 2.2rem;
  display: block;
  letter-spacing: 6px;
}

.footer-tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin: 0;
}

/* Owner Centered - Zoomed In */
.footer-hero-owner-centered {
  margin: 0 auto;
  line-height: 0;
  /* Remove inline gap */
}

.footer-hero-owner-centered img {
  height: 480px;
  /* Consistently large */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
  animation: ownerFloat 4s ease-in-out infinite;
  margin-bottom: 0;
  /* Align perfectly to bottom */
}

/* CTA Button */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  /* Lift button up visually but keep spacing */
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.footer-cta-btn i {
  font-size: 1.4rem;
}

/* Fix CSV Pattern - Ensure white fill to match adjacent sections (White) */
.custom-shape-divider-bottom-1689947849 .shape-fill {
  fill: #ffffff !important;
}

.custom-shape-divider-top-1689948270 .shape-fill {
  fill: #ffffff !important;
}

/* Ensure shape divider is correctly positioned */
.custom-shape-divider-bottom-1689947849 {
  position: absolute;
  bottom: 0;
  /* Overlap to fix gap */
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  /* Reset rotation */
  z-index: 10;
  /* Ensure visible on top */
}

/* Use specific ID for About margin fix if needed */
#about {
  margin-bottom: 0 !important;
  padding-bottom: 100px !important;
  /* Zen Space */
  /* Let map sit flush if needed */
}

/* Fix Map Gap & Size */
#about iframe,
.map-container iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  /* Force Fill Container (550px) */
  border: 0;
}

/* Mobile New Styles */
@media (max-width: 768px) {

  /* Mobile Map Zen Sizing */
  .map-container {
    height: 400px;
    /* Mobile Zen Size */
    border-radius: var(--radius-md);
  }

  /* Fix gap issue on mobile */
  .footer-zen {
    margin-top: -2px;
  }

  .footer-hero {
    min-height: 55vh;
    /* Viewport-based for responsiveness */
    background-position: center bottom;
    padding-top: 40px;
    align-items: flex-end;
    /* Align bottom */
  }

  .footer-hero-text {
    margin-bottom: 20px;
  }

  .footer-logo-large {
    font-size: 2.5rem;
  }

  .footer-logo-large span {
    font-size: 1.5rem;

    /* --- GAP FIX: Reduce Map Section Bottom Padding --- */
    #about,
    .section.bg-light {
      padding-bottom: 0 !important;
      margin-bottom: 0 !important;
    }
  }

  /* Zoom owner on mobile - Viewport Based */
  .footer-hero-owner-centered img {
    height: 55vh;
    /* Scales with screen height */
    max-height: 500px;
    /* Cap for very tall screens */
    min-height: 320px;
    /* Minimum for small screens */
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 60px rgba(28, 57, 187, 0.3));
    /* Enhanced glow */
  }

  .footer-cta-btn {
    margin-top: -40px;
    padding: 14px 30px;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

/* Footer Content Section */
.footer-content {
  background: rgba(10, 22, 40, 0.98);
  padding: 50px 40px;
}

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

.footer-grid-mobile {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--accent-cyan);
}



/* Owner floating animation keyframes */
@keyframes ownerFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}



.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  text-align: left;
  /* Reset center alignment */
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo span {
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  font-weight: 400;
}

.footer-promise {
  font-size: 0.95rem;
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 300px;
}

@media (max-width: 768px) {
  .footer-promise {
    margin: 0 auto 30px;
  }
}

/* Owner Badge */
.owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.owner-badge:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.avatar-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.badge-info {
  display: flex;
  flex-direction: column;
}

.badge-role {
  font-size: 0.75rem;
  color: #bdc3c7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-status {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 5px #2ecc71;
}

/* Links & Contact */
.footer-col h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col a {
  color: #bdc3c7;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--accent-cyan);
  transform: translateX(5px);
}

/* Footer contact-list overrides - dark footer specific styling */
footer .contact-list li,
.footer-col .contact-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

footer .contact-list li:hover,
.footer-col .contact-list li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  box-shadow: none;
}

footer .contact-list .ph,
.footer-col .contact-list .ph {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-cyan);
  padding: 10px;
  border-radius: 10px;
}

footer .contact-list a,
.footer-col .contact-list a {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

footer .contact-list a:hover,
.footer-col .contact-list a:hover {
  color: var(--accent-cyan);
}

footer .contact-list .label,
.footer-col .contact-list .label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  display: block;
  margin-bottom: 4px;
}

/* Socials Zen */
.social-links-zen {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .social-links-zen {
    justify-content: center;
  }
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  font-size: 1.4rem;
}

.social-icon::before {
  display: none;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--accent-cyan);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 194, 255, 0.3);
  border-color: transparent;
}

.social-icon:hover svg {
  fill: white;
}

/* Footer Bottom */
.footer-bottom-zen {
  background: #0a1628;
  /* Dark background to cover blue parent */
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px 0;
  font-size: 0.95rem;
  color: var(--accent-cyan);
  text-align: center;
  font-weight: 500;
}

.footer-bottom-zen p {
  margin: 0;
  color: #00C2FF !important;
}

/* Zen Developer Credit */
.developer-credit {
  margin-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 10px;
  display: inline-block;
  opacity: 0.9;
}

.developer-credit a {
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.developer-credit a:hover {
  color: var(--accent-cyan) !important;
  text-decoration: underline;
}

/* --- Fine-tuned Footer Alignment --- */

/* 1. Ensure Contact List items align nicely */
.contact-list li {
  align-items: flex-start;
  /* Align icon with top line of text */
}

.contact-list i {
  margin-top: 4px;
  /* Optical adjustment to align with text cap-height */
}

/* 2. Badge Info Alignment */
.badge-info {
  justify-content: center;
  /* Center text vertically relative to avatar */
}

/* 3. Link List Spacing */
.footer-col ul li {
  margin-bottom: 12px;
  /* Slightly tighter for better grouping */
}

/* 4. Mobile Refinements */
@media (max-width: 768px) {
  .footer-grid {
    text-align: center;
    gap: 50px;
    /* More breathing room on mobile */
  }

  /* Center badge on mobile */
  .owner-badge {
    margin: 0 auto;
    width: fit-content;
  }

  /* Fix contact list alignment on mobile */
  .contact-list li {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    /* icon | label | phone */
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  /* Icon column */
  .contact-list .ph {
    font-size: 1.2rem;
    padding: 6px;
  }

  /* Prevent phone number from wrapping */
  .contact-list a {
    white-space: nowrap;
    font-size: 1rem;
    text-align: right;
  }

  /* Label styling */
  .contact-list li strong {
    white-space: nowrap;
    font-size: 0.85rem;
  }
}

/* =========================================
   FULL MOBILE OPTIMIZATION (Iteration 9)
   ========================================= */

@media (max-width: 768px) {

  /* 1. Global Padding Update (Zen -> Mobile) */
  .section {
    padding: 60px 0 !important;
    /* Reduce from 120px */
  }

  /* 2. Typography Scaling */
  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 30px !important;
  }

  .section-subtitle {
    font-size: 1rem !important;
    margin-bottom: 30px !important;
  }

  /* 3. Grid Stacking Fix */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    /* Reduce gap */
  }

  /* 4. Hero Specifics */
  .hero-content {
    padding-top: 20px;
    padding-bottom: 80px !important;
    /* Adjust for bottom divider */
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }

  /* 5. Card Adjustments */
  .card,
  .fleet-card,
  .video-card {
    padding: 25px !important;
  }

  /* --- Android Glitch Fixes (Fleet) --- */
  .fleet-card {
    transform: translate3d(0, 0, 0) !important;
    /* Force Hardware Acceleration */
    backface-visibility: hidden !important;
    perspective: 1000px !important;
    min-height: auto !important;
    /* Let it grow naturally */
    height: auto !important;
    overflow: visible !important;
    /* Fix: Don't clip shadow/content */
    background: white;
    /* Prevent transparency bugs */
    margin-bottom: 30px !important;
    /* Extra spacing for shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    /* Enforce Shadow */
  }

  .fleet-img {
    height: 180px !important;
    width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
  }

  .fleet-info h4 {
    height: 54px !important;
    margin-bottom: 5px !important;
    /* Tighter gap */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .specs {
    height: 40px !important;
    margin-bottom: 10px !important;
    /* Tighter gap */
    align-items: center;
  }

  /* Force Pill Shape for Specs (Curve Fix) */
  .specs span {
    border-radius: 30px !important;
    padding: 4px 12px !important;
  }

  /* Price Spacing */
  .fleet-info .price {
    margin-bottom: 15px !important;
  }

  .fleet-info .btn,
  .btn-sm {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100%;
    display: block;
    margin-top: auto !important;
    border-radius: 50px !important;
    /* Ensure Button Curve */
  }

  /* 6. Testimonials & Marquee */
  .testimonial-track {
    gap: 20px;
  }

  .testimonial-card {
    min-width: 280px;
    /* Slightly smaller */
    padding: 20px;
  }

  /* 7. Footer Mobile Adjustments (Override Zen) */
  .footer-zen {
    padding: 60px 0 120px !important;
    /* Bottom padding for sticky bar */
    text-align: center;
  }

  .footer-grid {
    gap: 40px !important;
  }

  .owner-badge {
    justify-content: center;
  }

  /* 8. Spacer Utilities */
  .custom-shape-divider-bottom-hero svg {
    height: 60px !important;
    /* Smaller wave */
  }

  /* 9. Navigation */
  .nav-menu {
    padding-top: 100px;
    /* Ensure menu content clears header */
    justify-content: flex-start;
  }

  .nav-link {
    font-size: 1.25rem;
  }

  /* Reduce Zen Gap (About -> Footer) */
  #about {
    padding-bottom: 30px !important;
    /* Reduced from 60px */
  }

  .footer-zen {
    padding-top: 20px !important;
    /* Reduced from 60px */
  }

  /* Slimmer Trust Bar on Mobile */
  .trust-bar {
    padding: 15px 0 !important;
    /* Compact strip */
  }

  /* 10. Portfolio Mobile Fix */
  #portfolio {
    padding-bottom: 150px !important;
    /* Fix overlapping border */
    padding-top: 0 !important;
    /* Keep stick */
    margin-top: -60px !important;
    /* Mobile stick adjustment */
  }

  #portfolio .section-title {
    margin-top: 20px !important;
    margin-bottom: 45px !important;
    /* Increase gap to subtitle */
  }

  /* 11. Services Mobile Fix (Clear Top Wave) */
  #services {
    padding-top: 120px !important;
    /* 60px Wave + 60px Zen Gap */
  }

  /* 12. Footer Mobile Zen Clean (Stacked) */
  .footer-grid-mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    /* Force center items */
    text-align: center !important;
    /* Force center text */
    gap: 40px !important;
  }

  .footer-grid-mobile ul {
    padding-left: 0 !important;
    /* Remove list indent */
    margin: 0 !important;
    list-style: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center list items */
  }

  .footer-grid-mobile li {
    width: 100%;
    display: flex;
    /* Flex on ALL LIs (Pautan Pantas & Contact) */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center !important;
  }

  /* Remove Card Style from Contact Items */
  .footer-content .contact-list li,
  .footer-col .contact-list li {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 40px !important;
    /* More spacing between contacts */
  }

  /* Fixing Map Iframe Overflow on Mobile */
  #about .grid-2>* {
    min-width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 30px;
    /* Space between text and map */
    padding: 0 10px;
    /* Minor breathing room */
  }

  /* Force Map to be responsive */
  .about-map iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    /* Fixed height for mobile */
    border-radius: 20px;
  }



  /* Reset Inner Div */
  .contact-list div {
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Reset Label */
  .contact-list .label {
    display: block !important;
    margin-bottom: 5px !important;
    padding: 0 !important;
    line-height: 1.2 !important;
  }

  /* Reset Icon - Zen "Spirit Bubble" Style */
  .footer-content .contact-list .ph,
  .footer-col .contact-list .ph {
    background: rgba(0, 240, 255, 0.1) !important;
    /* Soft Cyan Glow */
    border-radius: 50% !important;
    width: 70px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2.2rem !important;
    /* Balanced Size */
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
    color: var(--accent-cyan);
    align-self: center !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    /* Subtle Glow */
  }

  /* Reset Link/Phone */
  .contact-list a {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    display: inline-block !important;
    /* Fix: Shrink to fit text */
    width: auto !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-align: center !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    text-decoration: none !important;
  }

  /* Developer Credit Stack */
  .developer-credit {
    display: block !important;
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-top: 10px;
    font-size: 0.9rem;
    /* Matches Zen Style */
    opacity: 0.8;
  }
}

/* --- Video Player Styles --- */
/* --- Video Player Styles --- */
.video-player {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  /* TikTok/Reels style vertical video */
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #000;
  /* Fallback color */
  display: block;
}

.video-card {
  padding: 15px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-caption {
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.video-caption i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Ensure mobile layout handles it well */
@media (max-width: 768px) {
  .video-player {
    max-height: 500px;
  }
}

/* --- FRESH START: Zen Testimonials (Slim Compact) --- */
.zen-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Strict 3 columns on Desktop */
  gap: 20px;
  max-width: 1000px;
  /* Constrain total width */
  margin: 40px auto 0;
  /* Center grid */
}

.zen-testi-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Lighter shadow */
  display: flex;
  flex-direction: row;
  height: 180px;
  /* Slimmer "Ticket" height */
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.zen-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(28, 57, 187, 0.1);
}

.zen-testi-img {
  width: 35%;
  /* Reduced width */
  height: 100%;
  position: relative;
  background-color: #f1f5f9;
}

.zen-testi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* Focus on face */
  transition: transform 0.6s ease;
}

.zen-testi-card:hover .zen-testi-img img {
  transform: scale(1.05);
}

.zen-testi-content {
  width: 65%;
  padding: 15px;
  /* Tighter padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.zen-testi-stars {
  color: #fbbf24;
  font-size: 0.8rem;
  /* Smaller stars */
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.zen-testi-quote {
  font-size: 0.85rem;
  /* Compact font */
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.4;
  color: var(--text-dark);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  /* Standard property for compatibility */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviewer-meta {
  margin-top: auto;
  padding-top: 10px;
}

.zen-testi-name {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #1e293b;
  font-size: 0.9rem;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.zen-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1c39bb, #2563eb);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .zen-testi-grid {
    grid-template-columns: 1fr;
    /* Stack on mobile/tablet */
    max-width: 450px;
    /* Limit width on mobile too */
  }

  .zen-testi-card {
    height: auto;
    flex-direction: row;
    /* Keep horizontal on larger phones if possible? */
    min-height: 160px;
  }
}

@media (max-width: 600px) {
  .zen-testi-card {
    flex-direction: column;
    /* Stack on small phones */
    height: auto;
  }

  .zen-testi-img {
    width: 100%;
    height: 180px;
    /* Standard mobile image height */
  }

  .zen-testi-content {
    width: 100%;
    padding: 20px;
  }
}

/* ==============================================
   VVIP CAROUSEL SHOWCASE
   Premium interactive testimonial carousel
   ============================================== */

.vvip-carousel-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.vvip-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.vvip-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 750px;
  /* Even taller for bigger cards */
  perspective: 1000px;
}

.vvip-card {
  position: absolute;
  width: 340px;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: top center;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(50%) brightness(0.6);
  transform: scale(0.7) translateX(0);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
}

/* Show adjacent cards (prev/next) */
.vvip-card.prev-card {
  opacity: 1;
  pointer-events: auto;
  transform: scale(0.85) translateX(-380px);
}

.vvip-card.next-card {
  opacity: 1;
  pointer-events: auto;
  transform: scale(0.85) translateX(380px);
}

/* Active/Center Card - BIGGEST */
.vvip-card.active {
  opacity: 1;
  pointer-events: auto;
  width: 420px;
  height: 650px;
  filter: none;
  transform: scale(1) translateX(0);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 5px var(--primary-color), 0 0 50px rgba(28, 57, 187, 0.5);
  z-index: 10;
}

.vvip-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.card-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, #1c39bb, #2563eb);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.card-headline {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.card-quote {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-top: 10px;
  line-height: 1.4;
  display: none;
}

/* Active card content styles */
.vvip-card.active .card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.vvip-card.active .card-headline {
  font-size: 1.8rem;
}

.vvip-card.active .card-quote {
  display: block;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(28, 57, 187, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .vvip-carousel-container {
    padding: 20px 10px;
  }

  .vvip-carousel {
    height: 480px;
  }

  .vvip-card {
    width: 200px;
    height: 320px;
  }

  .vvip-card.prev-card {
    transform: scale(0.8) translateX(-220px);
  }

  .vvip-card.next-card {
    transform: scale(0.8) translateX(220px);
  }

  .vvip-card.active {
    width: 260px;
    height: 400px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .card-headline {
    font-size: 1rem;
  }

  .vvip-card.active .card-headline {
    font-size: 1.3rem;
  }

  .card-overlay {
    padding: 15px;
  }
}

@media (max-width: 600px) {
  .vvip-carousel {
    height: 520px;
    /* Taller for bigger cards */
  }

  .vvip-card {
    width: 180px;
    height: 280px;
  }

  .vvip-card.prev-card {
    transform: scale(0.8) translateX(-170px);
  }

  .vvip-card.next-card {
    transform: scale(0.8) translateX(170px);
  }

  .vvip-card.active {
    width: 280px;
    height: 440px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .carousel-nav.prev {
    left: 5px;
  }

  .carousel-nav.next {
    right: 5px;
  }

  .card-subtitle {
    font-size: 0.6rem;
    padding: 3px 10px;
  }

  .card-headline {
    font-size: 1rem;
  }

  .vvip-card.active .card-headline {
    font-size: 1.3rem;
  }

  .card-quote {
    font-size: 0.75rem;
  }

  .carousel-dots {
    margin-top: 25px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}

/* ========================================
   ADVANCED UPGRADES
======================================== */

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.4s ease;
  animation: wa-pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp .wa-tooltip {
  position: absolute;
  right: 80px;
  background: #1F2937;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.floating-whatsapp .wa-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #1F2937;
}

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

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* CTA Button Pulse */
.btn-primary {
  animation: cta-glow 3s ease-in-out infinite;
}

@keyframes cta-glow {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(28, 57, 187, 0.3);
  }

  50% {
    box-shadow: 0 4px 30px rgba(28, 57, 187, 0.5), 0 0 20px rgba(28, 57, 187, 0.2);
  }
}

/* Navbar Shrink on Scroll (Applied via JS) */
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(28, 57, 187, 0.98);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .logo {
  font-size: 1.3rem;
}

/* Mobile Floating WhatsApp - Dynamic Toggle */
@media (max-width: 768px) {
  .floating-whatsapp {
    display: flex !important;
    /* Visible initially */
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
  }

  .floating-whatsapp.hidden {
    opacity: 0 !important;
    transform: scale(0) !important;
    pointer-events: none;
  }
}

/* Video Mute/Unmute Button */
.video-mute-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.video-mute-btn.unmuted {
  background: linear-gradient(135deg, var(--primary-color), #2563eb);
  box-shadow: 0 4px 15px rgba(28, 57, 187, 0.4);
}

.video-card {
  position: relative;
}

/* ============================================
   WHITE SECTION PATTERN OVERLAY
   ============================================ */
section[id="usp"],
section[id="fleet"],
section[id="how-to"],
.section-patterned {
  position: relative;
}

section[id="usp"]::before,
section[id="fleet"]::before,
section[id="how-to"]::before,
.section-patterned::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(28, 57, 187, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(0, 194, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(28, 57, 187, 0.03) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(28, 57, 187, 0.02) 10px, rgba(28, 57, 187, 0.02) 11px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: 0;
}

section[id="usp"]>*,
section[id="fleet"]>*,
section[id="how-to"]>*,
.section-patterned>* {
  position: relative;
  z-index: 1;
}

/* ============================================
   SCROLL-TRIGGERED ACTIVE STATES (Mobile)
   ============================================ */
@media (max-width: 768px) {

  /* Cards get active state when scrolled into view */
  .fleet-card.scroll-active,
  .usp-card.scroll-active,
  .step-item.scroll-active,
  .info-block.scroll-active {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(28, 57, 187, 0.2);
  }

  .fleet-card.scroll-active {
    border-color: var(--primary-color);
  }

  .usp-card.scroll-active .icon-large {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(28, 57, 187, 0.3);
  }

  .step-item.scroll-active .step-icon {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(28, 57, 187, 0.3);
  }
}

/* --- FINAL ZEN MAP FIX (v2.998) --- */
.map-container-zen {
  width: 100%;
  height: 550px !important;
  /* Forces Desktop Size */
  min-height: 550px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid #ffffff;
  /* Zen Frame */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  /* Elevated Shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  background: #f0f0f0;
  /* Loader background */
}

/* Force Iframe Fill */
.map-container-zen iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
}

/* Hover Effect */
.map-container-zen:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Mobile Override */
@media (max-width: 768px) {
  .map-container-zen {
    height: 400px !important;
    /* Mobile Zen Size */
    min-height: 400px;
  }
}

/* --- FINAL MOBILE BG FIX (v3.01) --- */
@media (max-width: 768px) {
  .footer-hero {
    /* Force Image Background on Hero ONLY */
    /* Force Image Background on Hero ONLY (Reduced Overlay to 40%) */
    background: linear-gradient(0deg, rgba(10, 22, 40, 0.4), rgba(10, 22, 40, 0.4)), url('images/footer_bg_mobile.png') no-repeat center center / cover !important;
    position: relative !important;
    z-index: 1 !important;
    border-radius: 0 !important;
  }

  /* Ensure children don't hide it */
  .footer-hero-content,
  .footer-hero-owner-centered {
    background: transparent !important;
    z-index: 2;
    position: relative;
  }

  /* KILL THE OVERLAY CAUSING THE ISSUE */
  .footer-hero::before {
    display: none !important;
    background: transparent !important;
  }

  /* GAP FIX: Ensure valid spacing */
  .footer-zen,
  footer {
    padding-top: 0 !important;
    margin-top: -2px !important;
    /* Slight pull to cover any sub-pixel gaps */
  }

  /* Reset hero top spacing */
  .footer-hero {
    margin-top: 0 !important;
    padding-top: 40px !important;
    /* Reduced from 60px to bring text up */
  }
}

/* --- FINAL HAMBURGER VISIBILITY FIX (v3.10) --- */
#hamburger {
  position: relative !important;
  z-index: 1005 !important;
  /* Always above Nav Menu (1001) */
}

#hamburger.active .bar {
  background-color: var(--primary-color) !important;
  /* Dark X on White Menu */
}

/* Ensure Nav Menu is below Hamburger */
.nav-menu.active {
  z-index: 1001 !important;
}

/* =========================================
   PERFORMANCE OPTIMIZATIONS (v3.16)
   ========================================= */

/* 1. Disable backdrop-filter on mobile (GPU-intensive) */
@media (max-width: 768px) {

  .glass,
  .navbar,
  .navbar.glass {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(28, 57, 187, 0.98) !important;
    /* Solid fallback */
  }

  .mobile-nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.99) !important;
  }

  .nav-menu {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.99) !important;
  }

  /* Reduce animation intensity on mobile */
  .floating-wa,
  .cta-whatsapp,
  .btn-primary {
    animation: none !important;
  }

  /* Enable marquee on mobile but keep it smooth */
  .trust-track,
  .testimonial-track {
    animation-play-state: running !important;
  }

  /* Re-enable marquee only when in viewport */
  .trust-bar:hover .trust-track,
  .testimonial-marquee:hover .testimonial-track {
    animation-play-state: running !important;
  }
}

/* 2. Reduced Motion Support (Accessibility + Performance) */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .trust-track,
  .testimonial-track {
    animation: none !important;
  }

  .floating-wa,
  .cta-whatsapp,
  .owner-floating {
    animation: none !important;
  }
}

/* 3. Optimize will-change usage (reset after animation) */
.scroll-reveal.visible {
  will-change: auto;
}

/* 4. GPU compositing hints for smooth scroll */
.hero-bg,
.fleet-card,
.vvip-card {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* --- STATIC FLEET NAV (Initial Position) --- */
.fleet-nav-static-container {
  padding: 10px 0;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  display: flex;
  /* Ensure flex behavior */
  justify-content: center;
  /* Center the pill */
  width: 100%;
}

.fleet-nav-static {
  background: #f1f5f9;
  border-radius: 50px;
  display: inline-flex;
  /* Pill wraps content */
  gap: 10px;
  padding: 8px 16px;
  /* Inner spacing */
  justify-content: center;
  align-items: center;
}

/* Mobile specific for Static Nav */
@media (max-width: 768px) {
  .fleet-nav-static-container {
    justify-content: center;
    /* Force center on mobile too */
    padding-left: 10px;
    padding-right: 10px;
    flex-wrap: wrap;
    /* Safety wrap just in case, but usually fits */
  }
}

/* --- CONCLUSIVE FIX FOR ABOUT SECTION ON MOBILE --- */
@media (max-width: 768px) {
  #about .grid-2 {
    display: block !important;
    /* Stack vertically */
    overflow-x: hidden !important;
    /* STRICTLY NO SCROLL */
    mask-image: none !important;
    /* No fade edge */
    -webkit-mask-image: none !important;
    /* Reset negative margins so it fits inside .container naturally */
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    gap: 0 !important;
  }

  #about .grid-2>* {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 30px;
    padding: 0 20px !important;
    /* Safe 20px padding */
    box-sizing: border-box;
    /* Ensure padding doesn't add to width */
  }

  /* Force Map Response */
  .about-map iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
    border-radius: 20px;
    display: block;
  }
}

/* --- GLOBAL ZEN POLISH (v4.0) --- */
/* 1. Custom Scrollbar (Sleek Blue) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(28, 57, 187, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* 2. Selection Highlight (Premium) */
::selection {
  background: var(--primary-color);
  color: white;
}

::-moz-selection {
  background: var(--primary-color);
  color: white;
}

/* --- USP Zen Scroll (Native + Snap) --- */
#usp .grid-3,
#usp .grid-2,
#portfolio .grid-3 {
  display: flex !important;
  overflow-x: auto !important;
  /* Enable manual scroll */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  /* Premium snap feel */
  -webkit-overflow-scrolling: touch;
  /* iOS momentum */
  gap: 20px;
  padding-bottom: 20px;
  /* Space for shadow */
  width: 100%;
  /* Hide Scrollbar */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE */
}

#usp .grid-3::-webkit-scrollbar,
#usp .grid-2::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* Ensure items are rigid */
#usp .grid-3>*,
#usp .grid-2>* {
  flex: 0 0 auto !important;
  width: 85vw !important;
  /* Mobile width */
  max-width: 350px !important;
  scroll-snap-align: center;
  /* Snap to center */
  opacity: 1 !important;
  /* Force visible */
  transform: none !important;
}

@media (min-width: 769px) {

  #usp .grid-3>*,
  #usp .grid-2>* {
    width: 300px !important;
    /* Desktop width */
  }
}

/* --- USP Standard Grid (Desktop) --- */
@media (min-width: 769px) {

  #usp .grid-3,
  #portfolio .grid-3 {
    /* Added Video Container */
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    overflow: visible !important;
    width: 100% !important;
  }

  #usp .grid-3>*,
  #portfolio .grid-3>* {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* Hide any clones if JS accidentally created them before resize */
  #usp .grid-3>*[aria-hidden="true"],
  #portfolio .grid-3>*[aria-hidden="true"] {
    display: none !important;
  }
}