/* ===============================
   GLOBAL UNIFIED DESIGN SYSTEM
================================ */
:root {
  --accent: #facc15;      /* Pro Yellow */
  --bg-main: #000000;     /* Pure Black */
  --bg-section: #0a0a0a;  /* Section Dark */
  --bg-card: #121212;     /* Card Dark */
  --radius: 12px;         /* Standardized Radius */
  --text-primary: #ffffff;
  --text-secondary: #999999;
  --padding-section: 100px 5%; /* Increased for premium feel */
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #111;
}

/* Elite Scrollbar for Chrome/Safari */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 20px; border: 2px solid #050505; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* PROTECTION: Disable Image Dragging Interaction */
img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

body.loaded {
  opacity: 1;
  transform: translateY(0);
}

body.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}


/* Global Section Spacing */
section {
  padding: var(--padding-section);
}

/* Global Reveal Effect */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Global Background Blur */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('images/background.jpg') center/cover no-repeat;
  filter: brightness(0.3) blur(6px);
  z-index: -1;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}


/* ===============================
   PROFESSIONAL STICKY NAVBAR
================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2000;
  box-sizing: border-box;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 16px 5%;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.logo span { color: var(--accent); }

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); }

.header-cta {
  background: var(--accent);
  color: var(--bg-main) !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s;
  white-space: nowrap;
}
.header-cta:hover { background: #fff; transform: translateY(-2px); }

.menu-toggle {
  display: none;
  font-size: 28px;
  color: var(--accent);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .nav-links { display: none; } /* Standard hidden for mobile/tablet */
  .menu-toggle { display: block; }
}

@media (max-width: 480px) {
  .header-cta { padding: 10px 16px; font-size: 11px; }
  .logo { font-size: 18px; }
}


/* MOBILE SLIDE-IN PANEL */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 280px;
    height: 100vh;
    background: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid #222;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 20px;
  }
}


/* ===============================
   PRO HERO SECTION (100VH)
================================ */
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

/* Background Zoom Effect */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('images/hero.jpg') center/cover no-repeat;
  animation: kenBurns 20s ease-out forwards;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Slightly lighter for clarity */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
  max-width: 1000px;
}

.hero-content h1 {
  opacity: 0;
  animation: heroSlideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.2s;
}

.hero-content p {
  opacity: 0;
  animation: heroSlideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.5s;
}

.hero-buttons {
  opacity: 0;
  animation: heroSlideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  animation-delay: 0.8s;
}

.hero h1 {
  font-size: clamp(48px, 10vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--accent); /* Yellow Accent */
}

.hero p {
  font-size: clamp(18px, 2.5vw, 1.4rem);
  opacity: 0.9;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
}


.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.btn-primary, .btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-main);
}

.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

.btn-primary:hover { transform: translateY(-3px); background: #fff; }
.btn-secondary:hover { background: #fff; color: #000; }

.price-tag {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.1rem;
}

/* ===============================
   REAL PROFESSIONAL FOOTER
================================ */
.footer {
  background: var(--bg-main);
  padding: 80px 5% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3 {
  color: #facc15;
  margin-bottom: 20px;
}

.footer h4 { margin-bottom: 20px; color: #fff; }

.footer p, .footer a {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

.footer a { display: block; margin-bottom: 10px; }
.footer a:hover { color: #facc15; transform: translateX(5px); }

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 12px;
  opacity: 0.5;
}

/* ===============================
   UTILITY & ANIMATIONS
================================ */
/* ===============================
   ADVANCED MOTION DESIGN SYSTEM
================================ */
/* ===============================
   ADVANCED MOTION DESIGN SYSTEM
================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), 
              transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Intelligent Stagger for Infinite Grids (3-column loop) */
.car-grid .car-card:nth-child(3n+1) { transition-delay: 0.1s; }
.car-grid .car-card:nth-child(3n+2) { transition-delay: 0.25s; }
.car-grid .car-card:nth-child(3n+3) { transition-delay: 0.4s; }

.services-grid .service-card:nth-child(3n+1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3n+2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3n+3) { transition-delay: 0.3s; }


@keyframes elitePulse {
  0% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(250, 204, 21, 0); }
  100% { box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

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

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.car-card.reveal:not(.active) .car-image-container::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmer 1.5s infinite;
  z-index: 5;
}

.wa-cta {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: var(--accent);
  color: var(--bg-main);
  padding: 14px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;

  gap: 12px;
  z-index: 1500;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(250, 204, 21, 0.3);
  animation: elitePulse 2s infinite, floatAction 4s ease-in-out infinite;
}

/* ===============================
   GLOBAL COMPONENT POLISH
================================ */
.section-title {
  color: var(--accent);
  font-size: clamp(32px, 6vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
  display: block;
}

.btn-primary, .btn-call-main, .book-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-main) !important;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.2);
  transition: var(--transition);
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary:hover, .btn-call-main:hover, .book-btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
  color: #000 !important;
}

.btn-secondary, .btn-wa-alt {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff !important;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  text-align: center;
  background: transparent;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: #fff;
  color: #000 !important;
  transform: translateY(-4px);
  border-color: #fff;
}

.btn-wa-alt:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
  color: #25D366 !important;
  transform: translateY(-4px) scale(1.03);
}

.action-group {
  display: flex;
  gap: 12px;
  margin-top: 15px; /* Refined spacing */
}

.action-group .btn-call-main {
  flex: 2;
}

.action-group .btn-wa-alt {
  flex: 1;
}

.car-description {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  /* Premium uniformity: clamped to exactly 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 62px; 
}

.extra-details {
  color: #666;
  font-size: 12px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-weight: 600;
  text-align: center;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 204, 21, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.service-icon {
  font-size: 45px;
  display: inline-block;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

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

.service-list li {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-list li::before {
  content: "✔";
  color: var(--accent);
  font-weight: bold;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.car-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden; /* Added back for a cleaner look */
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(250, 204, 21, 0.3);
}

.car-card:hover .price {
  color: #fff;
  text-shadow: 0 0 10px rgba(250, 204, 21, 0.3);
}

.car-card:hover .badge {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.car-image-container {
  width: 100%;
  height: 200px;
  position: relative;
  background: #000;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  overflow: hidden;
}


.car-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 10px;
  background: #000;
}


/* Remove hover scale to prevent any cropping as requested */
.car-card:hover img {
  transform: none;
}

.car-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.car-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1; 
  line-clamp: 1; /* Standard property */
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* Elite High-Performance Badge System */
.badge-group {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  min-height: 28px; /* Alignment stability */
}

.badge {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.badge-petrol {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.badge-diesel {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.badge-cng {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.badge-hybrid {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.badge-seats {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-category {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  border: 1px solid rgba(250, 204, 21, 0.25);
}
.badge:hover { background: rgba(255,255,255,0.05); transform: translateY(-2px); }



.car-card .price {
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  margin-top: auto;
  margin-bottom: 20px;
}

.car-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.car-features li {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.car-features li::before {
  content: "✔";
  color: var(--accent);
  font-weight: bold;
}

.book-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--bg-main);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.book-btn:hover {
  background: #fff;
  transform: scale(1.02);
}

/* ===============================
   GLOBAL TRUST BAR (STATS)
================================ */
.trust-bar {
  padding: 60px 10%;
  background: var(--bg-card);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 5;
}

.stat-item {
  text-align: center;
  min-width: 150px;
}

.stat-item h2 {
  color: var(--accent);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-item p {
  color: #aaa;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ===============================
   PRIMARY CALL TO ACTION (CTA)
================================ */
.cta-section {
  padding: 120px 5%;
  background: var(--bg-section);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-size: clamp(36px, 8vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.cta-section p {
  color: #aaa;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.cta-btn-main {
  background: #25D366;
  color: #fff;
  padding: 20px 50px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
  transition: all 0.4s ease;
  text-decoration: none;
}

.cta-btn-main:hover {
  background: #1eb954;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.cta-btn-main .icon {
  font-size: 24px;
}

/* ===============================
   MISSION & VISION SECTION
================================ */
.mission-vision {
  padding: 100px 5%;
  background: var(--bg-main);
}

.mission-vision-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.mv-card {
  flex: 1;
  min-width: 300px;
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.mv-card:hover {
  border-color: rgba(250, 204, 21, 0.3);
}

.mv-card h2 {
  color: var(--accent);
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mv-card p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
}

/* ===============================
   PREMIUM MOBILE BOTTOM NAV
================================ */
.mobile-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  display: none; /* Desktop Hidden */
  justify-content: space-around;
  align-items: center;
  z-index: 3000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.mobile-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  color: #666;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Subtle Active Indicator Dot */
.mobile-nav-item::after {
  content: '';
  position: absolute;
  bottom: 12px;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 8px var(--accent);
}

.mobile-nav-item ion-icon {
  font-size: 24px;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav-item .nav-text {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transform: translateY(22px);
  opacity: 0;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-nav-item.active {
  color: var(--accent);
}

.mobile-nav-item.active::after {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-item.active .nav-text {
  opacity: 1;
  transform: translateY(16px); /* Slide up into view */
}

.mobile-nav-item.active ion-icon {
  transform: translateY(-10px); /* Lift icon further for premium feel */
}


@media (max-width: 768px) {
  .mobile-nav-bar { display: flex; }
  .wa-cta { bottom: 95px !important; } /* Push floating call button up to clear bar */
  .footer { padding-bottom: 120px; } /* Breath room for foot */
}