@import url('./branding.css');
@import url('./about-us.css');


/* ===============================
   NAVBAR
================================ */
/* ===============================
   HERO NAVBAR LAYOUT FIX
================================ */
.ev-navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ev-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: var(--transition);
}

.ev-brand img {
  height: 42px;
}

.ev-menu-toggle {
  background: none;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ev-menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
}

/* Sticky */
.ev-navbar-sticky {
  display: none;
  background: rgba(15, 23, 42, 0.95);
  padding: 12px 0;
}
.ev-navbar-sticky .ev-menu-toggle span {
  background: #fff;
}

/* ===============================
   STICKY NAV LINKS
================================ */
.ev-navbar-sticky .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Center links */
.ev-sticky-links {
  gap: 28px;
}

.ev-link {
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.ev-link:hover {
  color: #fff;
}

/* ===============================
   STICKY RIGHT GROUP
================================ */
.ev-sticky-right {
  gap: 20px;
}

/* White logo */
.ev-navbar-sticky .ev-brand img {
  height: 36px;
}



/* Links */
.ev-link {
  color: #e5e7eb;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.ev-link:hover {
  color: #ffffff;
}

/* Become Dealer CTA */
.ev-dealer-cta {
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: var(--transition);
}

.ev-dealer-cta:hover {
  background: #fff;
  color: #000;
}

/* Dealer Support */
.ev-support {
  color: #d1fae5;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ev-support i {
  color: var(--secondary);
}

/* ===============================
   MENU TOGGLE (WHITE BG)
================================ */
.ev-menu-toggle.white {
  background: #ffffff;
  border: none;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-sm);
}

.ev-menu-toggle.white span {
  width: 20px;
  height: 2px;
  background: #020617;
}

/* ===============================
   PREMIUM MEGA MENU
================================ */
.ev-mega {
  width: 100vw !important;
  max-width: 100vw !important;
  background: #ffffff;
  color: var(--text-primary);
  border-left: none;
}

/* Desktop behaviour */
@media (min-width: 992px) {
  .offcanvas-end.ev-mega {
    height: auto;
    max-height: 75vh;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    right: 0;
  left: auto;
  }
}

/* ===============================
   REMOVE BOOTSTRAP FOCUS STYLES
================================ */

/* Buttons & links */
.ev-navbar button:focus,
.ev-navbar button:focus-visible,
.ev-mega button:focus,
.ev-mega button:focus-visible,
.ev-mega a:focus,
.ev-mega a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Header */
.ev-mega-header {
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 2rem;
}

.ev-mega-brand img {
  height: 36px;
}

/* Body */
.ev-mega-body {
  padding: 2rem 2rem 2rem;
  overflow: hidden;
}

/* ===============================
   MEGA GRID
================================ */
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr; /* slightly tighter than 1.4 */
  gap: 1.75rem; /* reduced from 3rem */
  max-width: 1200px; /* slightly tighter container */
  margin: 0 auto;
}


/* Titles */
.mega-col h6 {
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

.mega-scooter-item {
   padding :0 !important; 
}

/* Links */
.mega-col a {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 12px;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition);
}

.mega-col a:hover {
  background: var(--bg-dark);
}

.mega-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Visual */
.mega-visual img {
 width: 350px;
  height: 350px;
  object-fit: contain;
  padding: 2px;
}

/* ===============================
   MEGA MENU – SCOOTER GRID
================================ */
.mega-scooter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 1rem;
}

.mega-scooter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  background: #f8fafc;
  border-radius: 14px;
  transition: var(--transition);
}

.mega-scooter-item img {
  width: 100%;
  max-width: 110px;
  height: auto;
  margin-bottom: 5px;
}

.mega-scooter-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mega-scooter-item:hover {
  background: #eef2ff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .mega-scooter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   MEGA MENU – MOBILE NAV
================================ */
.mega-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

/* Links */
.mobile-nav-link {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: var(--bg-dark);
}

/* CTA */
.mobile-nav-cta {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
}

.mobile-nav-cta:hover {
  background: var(--blue-dark);
}


/* ===============================
   MOBILE OFFCANVAS FIX (ISOLATED)
   DOES NOT AFFECT DESKTOP
================================ */
@media (max-width: 767px) {

  .offcanvas-end.ev-mega {
    top: 0;
    height: 100dvh; /* viewport-safe */
  }

  /* Activate flex only on mobile */
  .ev-mega {
    display: flex;
    flex-direction: column;
  }

  .ev-mega-header {
    flex: 0 0 auto;
  }

  .ev-mega-body {
    flex: 1 1 auto;
    min-height: 0;              /* critical */
    overflow-y: auto;           /* enable scroll */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mega-visual img {
    width: 220px;
    height: 220px;
  }
  
  .mega-scooter-item img {
      max-width: 100%!important;
  }
}


/* ===============================
   HERO (CLEAN – NO OVERLAY)
================================ */
.ev-hero {
  position: relative;
  min-height: 100vh;
  color: #1f2937;               /* dark text, not white */
  overflow: hidden;
  background: #fff;
}

/* Full image, no opacity hacks */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/webs/hero-bg.webp') center / cover no-repeat;
  z-index: 0;
}

/* Content layer */
.ev-hero .container {
  position: relative;
  z-index: 1;
}

/* ===============================
   CONTENT POSITIONING
================================ */
.hero-content {
  max-width: 560px;             /* THIS fixes spreading */
  padding-top: 180px;           /* pushes content down */
}

/* ===============================
   TYPOGRAPHY (LIGHT & PREMIUM)
================================ */
.hero-title {
  font-size: clamp(3rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #111827;
}

.hero-title span {
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: #374151;
  margin-bottom: 2.25rem;
}

/* ===============================
   ACTIONS
================================ */
/* ===============================
   ACTIONS
================================ */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
}

.hero-actions .btn {
  padding: 13px 26px;
  font-weight: 500;
}

/* ===============================
   HERO ACTIONS – MOBILE
================================ */
@media (max-width: 991px) {
  .hero-actions {
    justify-content: center;      /* center align on mobile */
    flex-wrap: wrap;              /* allow stacking if needed */
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;                  /* full-width buttons */
    max-width: 320px;             /* keeps it premium */
    padding: 14px 22px;
    font-size: 0.95rem;
  }
}


/* ===============================
   MOBILE REFINEMENT
================================ */
@media (max-width: 991px) {
  .hero-content {
    max-width: 100%;
    padding-top: 140px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* ===============================
   HERO SOFT ENTRANCE ANIMATION
================================ */

/* Base animation state */
.hero-animate {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.9s ease forwards;
}

/* Staggered delays */
.hero-animate.delay-1 { animation-delay: 0.15s; }
.hero-animate.delay-2 { animation-delay: 0.3s; }
.hero-animate.delay-3 { animation-delay: 0.45s; }
.hero-animate.delay-4 { animation-delay: 0.6s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===============================
   GLOBAL SECTION HEADER (SPAN – PRIME)
================================ */
.section-title {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* Span = subtle emphasis, not highlight */
.section-title span {
  font-weight: 400;                 /* softer, lighter */
  color: var(--dark-light);         /* SAME family, lower contrast */
}

/* Subtitle = supporting voice */
.section-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}


/* ===============================
   SCOOTER SCROLL SECTION
================================ */
.scooters-section {
  background: var(--bg);
}

/* Outer wrapper */
.scooters-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scrollbar-width: none;        /* Firefox */
}

.scooters-scroll-wrapper::-webkit-scrollbar {
  display: none;                /* Chrome */
}

/* Horizontal row */
.scooters-scroll {
  display: flex;
  gap: 24px;
  padding: 10px 2px 20px;
}

/* Card */
.scooter-card {
  min-width: 280px;
  max-width: 280px;
  background: #fff;
  border-radius: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.scooter-card img {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

.scooter-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.scooter-card a {
    margin-bottom: 16px;
}

.scooter-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ===============================
   SCROLL BUTTONS (BRANDED)
================================ */
.scooters-scroll-container {
  position: relative;
}

/* Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.scroll-btn:hover {
  box-shadow: var(--shadow-md);
}

/* Positioning */
.scroll-left {
  left: -18px;
}

.scroll-right {
  right: -18px;
}

/* Icons */
.scroll-btn i {
  font-size: 1.2rem;
}

/* Hide on small screens (touch already scrolls) */
@media (max-width: 767px) {
  .scroll-btn {
    display: none;
  }
}


/* Desktop enhancement */
@media (min-width: 992px) {
  .scooters-scroll {
    padding-bottom: 30px;
  }
}

/* ===============================
   ABOUT US
================================ */
.about-section {
  background: #ffffff;
}

/* Lead paragraph */
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* Supporting text */
.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* Bullet points */
.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.about-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Values */
.about-values {
  display: grid;
  gap: 20px;
}

.value-card {
  background: var(--bg);
  border-radius: var(--border-radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

/* ===============================
   ABOUT VALUES – HORIZONTAL
================================ */
.value-horizontal {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Icon */
.value-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon i {
  font-size: 2.2rem;
  color: var(--primary);
}

/* Content */
.value-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.value-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}


/* ===============================
   JOURNEY SECTION (FIXED BG)
================================ */
.journey-section {
  position: relative;
  background: url('/assets/img/webs/journey-bg.webp') center / cover no-repeat fixed;
}

/* Soft overlay for readability (VERY light) */
.journey-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
}

.journey-section .container {
  position: relative;
  z-index: 1;
}

/* ===============================
   TIMELINE STRUCTURE
================================ */
.journey-timeline {
  max-width: 760px;                 /* slightly wider */
  margin: 0 auto;
  position: relative;
}

/* Vertical line */
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

/* Timeline item */
.timeline-item {
  display: flex;
  gap: 28px;                        /* more space */
  margin-bottom: 56px;             /* larger separation */
  position: relative;
}

/* Icon */
.timeline-icon {
  width: 44px;                     /* larger */
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-icon i {
  font-size: 1.15rem;
  color: var(--primary);
}

/* Content */
.timeline-content h4 {
  font-size: 1.4rem;               /* slightly larger */
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* ===============================
   MOBILE REFINEMENT
================================ */
@media (max-width: 768px) {
  /* Disable fixed background on mobile */
  .journey-section {
    background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .journey-timeline::before {
    left: 18px;
  }

  .timeline-item {
    gap: 18px;
    margin-bottom: 40px;
  }

  .timeline-icon {
    width: 40px;
    height: 40px;
  }

  .timeline-content h4 {
    font-size: 1.05rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
  }
}

/* ===============================
   COMMUNITY SECTION
================================ */
.community-section {
  background: #f8fafc;
}

/* Image grid */
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
  grid-auto-flow: dense;

}

/* Base image card */
.community-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #e5e7eb;
}

.community-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

/* Hover (very subtle) */
.community-item:hover img {
  transform: scale(1.04);
}

/* Tall & wide variations */
.community-item.tall {
  grid-row: span 2;
}

.community-item.wide {
  grid-column: span 2;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 992px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .community-item.wide {
    grid-column: span 2;
  }
}


/* ===============================
   LOCATIONS – PREMIUM LAYOUT
================================ */
.locations-section {
  background: #fff;
  overflow: hidden;
}

.locations-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 420px;
}

/* LEFT PANEL */
.locations-left {
  padding: clamp(3rem, 4vw, 4rem);
  display: flex;
  align-items: center;
}

/* SIDE-BY-SIDE GRID */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  width: 100%;
  align-items: flex-start;
}

/* Location item */
.location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon i {
  font-size: 1.2rem;
  color: var(--primary);
}

/* Contact list */
.location-contacts {
  list-style: none;
  padding: 0;
  margin: 10px 0 6px;
}

.location-contacts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.location-contacts i {
  color: var(--secondary);
  font-size: 0.95rem;
}

.location-contacts a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.location-contacts a:hover {
  text-decoration: underline;
}

/* Hours */
.location-hours {
  font-size: 0.85rem;
  color: var(--gray);
}


/* VERTICAL DIVIDER */
.location-divider-vertical {
  width: 1px;
  height: 100%;
  background: var(--border-color);
  align-self: stretch;
}

/* RIGHT IMAGE */
.locations-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.locations-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 992px) {
  .locations-layout {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .location-divider-vertical {
    display: none;
  }

  .locations-right {
    min-height: 260px;
  }

  .locations-left {
    padding: 2.5rem 1.5rem;
  }
}


/* ===============================
   DEALER SECTION
================================ */

.dealer-section {
  position: relative;
  background:
    linear-gradient(
      rgba(255,255,255,0.8),
      rgba(255,255,255,0.8)
    ),
    url('../img/webs/dealer-bg.webp') center / cover no-repeat fixed;
}

/* Left points */
.dealer-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.dealer-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.dealer-point i {
  font-size: 1.6rem;
  color: var(--primary);
  flex-shrink: 0;
}

.dealer-point h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.dealer-point p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* CTA box */
.dealer-cta-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.dealer-cta-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.dealer-cta-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Support */
.dealer-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
}

.dealer-support i {
  font-size: 1rem;
}


/* ===============================
   FOOTER – GLOBAL PREMIUM
================================ */
.ev-footer {
  background:
    linear-gradient(rgba(15,23,42,.95), rgba(15,23,42,.95)),
    url('../img/webs/footer-world-map.png') center / contain no-repeat;
  color: #cbd5e1;
  padding: 4rem 0 2rem;
  position: relative;
  border-top: 3px solid var(--primary);
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3,1fr);
  gap: 3rem;
}

/* BRAND */
.footer-logo {
  max-width: 160px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .95rem;
  line-height: 1.7;
  max-width: 360px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #e5e7eb;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* LINKS */
.footer-links h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #94a3b8;
  font-size: .9rem;
  text-decoration: none;
  transition: .25s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* POPULAR SEARCHES */
.footer-searches {
  margin-top: 3.5rem;
  text-align: center;
}

.footer-center-title {
  color: #fff;
  margin-bottom: 16px;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.search-tags span {
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: .8rem;
  color: #e5e7eb;
  white-space: nowrap;
}

/* BOTTOM */
.footer-bottom-center {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  color: #9ca3af;
}

/* ======================================================
   FOOTER — MOBILE CENTER ALIGN
====================================================== */
@media (max-width: 768px) {

  .ev-footer {
    padding: 3rem 0 2rem;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* BRAND */
  .footer-brand,
  .footer-brand p {
    margin: 0 auto;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  /* SOCIAL */
  .footer-social {
    justify-content: center;
  }

  /* LINKS */
  .footer-links {
    text-align: center;
  }

  .footer-links ul {
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a:hover {
    padding-left: 0; /* remove desktop slide effect on mobile */
  }

  /* POPULAR SEARCH TAGS */
  .search-tags {
    justify-content: center;
  }

  /* BOTTOM TEXT */
  .footer-bottom-center {
    text-align: center;
  }
}


/* ===============================
   BACK TO TOP
================================ */
#backToTopBtn {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.4rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}

#backToTopBtn.show {
  display: flex;
}

#backToTopBtn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(43,123,187,.45);
}

/* Floating Button Position */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  text-decoration: none;
}

/* Container Styling */
.whatsapp-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #14ba52;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: fadeInUp 0.5s ease forwards;
}

/* Hover Effect */
.whatsapp-container:hover {
  background-color: #43a047;
  transform: translateY(-3px);
}

/* WhatsApp Icon */
.whatsapp-container i {
  font-size: 22px;
}

/* Text Styling */
.whatsapp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.chat-title {
  font-size: 14px;
  font-weight: bold;
}

.chat-subtitle {
  font-size: 11px;
  opacity: 0.9;
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hide on small screens */
@media (max-width: 640px) {
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 20px;
  z-index: 999;
  text-decoration: none;
}  
 .whatsapp-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #14ba52;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: fadeInUp 0.5s ease forwards;
}

/* Hover Effect */
.whatsapp-container:hover {
  background-color: #43a047;
  transform: translateY(-3px);
}

/* WhatsApp Icon */
.whatsapp-container i {
  font-size: 22px;
}


/* Text Styling */
.whatsapp-text {
  display: none;
}

.chat-title {
  display: none;
}

.chat-subtitle {
  display: none;
}

}

/* MOBILE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


.page-content {
  padding: var(--section-gap) 0;
}

/* =============================
   2. HERO SECTION (Top Banner)
============================= */
.page-hero {
  background: var(--accent);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
  position: relative;
}

.page-hero h2 {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Soft Glow Overlay */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
}

/* =============================
   3. CONTENT WRAPPER
============================= */
.content-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

/* =============================
   4. HEADINGS
============================= */
.content-wrapper h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-left: 1rem;
  color: var(--primary);
}

.content-wrapper h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 4px;
}

/* =============================
   5. PARAGRAPH TEXT
============================= */
.content-wrapper p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

.content-wrapper strong {
  color: var(--text-primary);
}

/* =============================
   6. LISTS
============================= */
.content-wrapper ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.content-wrapper ul li {
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
}

/* =============================
   7. LINKS
============================= */
.content-wrapper a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.content-wrapper a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* =============================
   8. CONTACT BOX
============================= */
.policy-contact-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-dark);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary);
}

/* =============================
   9. LAST UPDATED TEXT
============================= */
.policy-last-updated {
  margin-top: 3rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--gray);
}

/* =============================
   10. RESPONSIVE
============================= */
@media (max-width: 768px) {

  .content-wrapper {
    padding: 2rem 1.5rem;
  }

  .page-hero {
    padding: 5rem 1rem;
  }

  .content-wrapper h2 {
    font-size: 1.2rem;
  }
}