
    :root {
      --navy: #0a1628; --blue: #1a3ed4; --blue-l: #e8edff;
      --cream: #f4f5f7; --white: #ffffff; --border: #e0e0e0;
      --muted: #6b6b6b; --dark: #1a1a1a; --orange: #e85d00;
      --F: 'Space Grotesk', sans-serif; --FD: 'DM Serif Display', serif; --FB: 'DM Sans', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--FB); background: var(--white); color: var(--navy); overflow-x: hidden; padding-bottom: 52px; }
nav {
  position: fixed; top: 12px; left: 16px; right: 16px; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 60px; background: #fff; border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
  opacity: 1; transform: translateY(0);
  transition: box-shadow .3s;
}
    /* NAV */
    nav {
      position: fixed; top: 12px; left: 16px; right: 16px; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 28px; height: 60px; background: #fff; border-radius: 12px;
      box-shadow: 0 2px 16px rgba(0,0,0,.1);
     
      transition: opacity .4s ease, transform .4s ease, box-shadow .3s;
    }
    .logo-img { 
  height: 50px; /* Reduce this number to make the logo smaller */
  width: auto; 
  display: block; 
  object-fit: contain;
  margin-right: 8px; /* Adds space between logo and text */
}
    nav.show {
      opacity: 1; transform: translateY(0);
      box-shadow: 0 1px 12px rgba(0,0,0,.08);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    }
    .nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--navy); }
    .logo-word { font-family: var(--F); font-size: 17px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); }
    .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
    .nav-links>li { position: relative; padding-bottom: 28px; margin-bottom: -28px; }
    .nav-links>li>a {
      font-family: var(--FB); font-size: 15px; font-weight: 800; color: #333; text-decoration: none;
      padding: 5px 12px; border-radius: 20px; transition: background .2s, color .2s; display: flex; align-items: center; gap: 4px;
    }
    .nav-links>li>a:hover { background: #f0f0f0; color: #000; }

    /* MEGA MENU — Clean Rivian Style */
    .mega-menu {
      display: block; position: fixed; top: 72px; left: 16px; transform: translateY(-10px);
      width: 640px; max-width: calc(100vw - 32px);
      background: #fff; border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.12);
      z-index: 999; padding: 16px; opacity: 0; pointer-events: none;
      transition: opacity .25s ease, transform .25s ease;
    }
    .nav-links>li.active .mega-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .mega-menu .mega-vgrid-wrap { padding: 0; max-height: none; overflow: visible; }
    .mega-menu .mega-vgrid { grid-template-columns: repeat(4,1fr); gap: 6px; }
    .mega-menu .mega-vi { padding: 8px 6px; }
    .mega-menu .mega-vi-img { height: 60px; }
    .mega-menu .mega-vi-img img { max-height: 60px; }
    .mega-menu .mega-col-title { font-size: 9px; letter-spacing: 2px; margin-bottom: 12px; }
    .mega-menu .mega-vn { font-size: 10px; }
    .nav-links>li.active .mega-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .mega-menu-inner { display: flex; width: 100%; overflow: hidden; }
    .mega-vehicles {
      display: flex; flex: 1; gap: 8px; padding: 12px; background: #f3f4f5;
      overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab;
    }
    .mega-vehicles::-webkit-scrollbar { display: none; }
    .mega-vehicles:active { cursor: grabbing; }
    .mega-vehicles::after { content: ''; min-width: 1px; flex-shrink: 0; }
    .mega-vehicle {
    min-width: calc((100vw - 72px - 16px) / 3);
    max-width: calc((100vw - 72px - 16px) / 3);
    scroll-snap-align: start;
    flex-shrink: 0;
    background: #ececec;
    border-radius: 10px;
    text-decoration: none;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    transition: background .2s;
    min-height: 0;
    position: relative;
}
    .mega-vehicle:nth-child(even) { background: #e8e8e8; }
    .mega-vehicle:hover { background: #e0e0e0; }
    .mega-vehicle::before {
        content: none;
         display: none;
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(244,245,247,0.95) 0%, rgba(244,245,247,0.75) 35%, rgba(244,245,247,0.2) 65%, transparent 100%);
        z-index: 1;
        border-radius: 10px;
        pointer-events: none;
    }
    .mv-top { flex-shrink: 0; display: flex; flex-direction: column; gap: 2px; }
    .mv-name { font-family: var(--FD); font-size: 19px; color: var(--navy); margin-bottom: 0; line-height: 1.05; }
    .mv-desc { font-family: var(--FB); font-size: 10px; color: var(--muted); margin-bottom: 0; line-height: 1.3; }
    .mv-price { font-family: var(--F); font-size: 10px; color: var(--muted); margin-bottom: 0; }
.mv-card-link{
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 14px 10px;
    justify-content: flex-start;
    min-height: 280px;
    background: none;
    position: relative;
    z-index: 2;
    border-radius: 10px 10px 0 0;
}

.mv-image{
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: unset;
    max-height: unset;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.mv-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.mv-btns { display: flex; align-items: center; gap: 12px; padding: 0 14px 14px; flex-shrink: 0; position: relative; z-index: 2; margin-top: auto; background: none; border-radius: 0 0 10px 10px; }
    .mv-btn-primary { background: var(--navy); color: #fff; font-family: var(--F); font-size: 10px; font-weight: 600; padding: 9px 15px; border-radius: 50px; cursor: pointer; white-space: nowrap; }
    .mv-btn-link { font-family: var(--F); font-size: 10px; font-weight: 600; color: var(--navy); text-decoration: underline; cursor: pointer; }

    /* MOBILE: hide mega menu */
    @media(max-width:768px) { .mega-menu { display: none !important; } }

    /* Premium Mega Drawer */
.mega-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1100; backdrop-filter: blur(4px); }
.mega-overlay.open { display: block; }

.mega-drawer {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 1200;
    transform: translateY(-100%);
    transition: transform .5s cubic-bezier(0.16,1,0.3,1);
    display: flex; flex-direction: column; overflow: hidden;
}
.mega-drawer.open { transform: translateY(0); }
.mega-close { position: absolute; top: 20px; right: 24px; font-size: 20px; background: none; border: none; cursor: pointer; color: #999; z-index: 10; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .2s; }
.mega-close:hover { background: #f0f0f0; color: #000; }
.mega-drawer-inner { display: grid; grid-template-columns: 1fr 1px 1fr; height: 100%; overflow: hidden; }
.mega-vgrid-wrap { padding: 48px 32px 32px 48px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #ddd transparent; max-height: 100vh; }
.mega-vgrid-wrap::-webkit-scrollbar { width: 4px; }
.mega-vgrid-wrap::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.mega-col-title { font-family: var(--F); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #aaa; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 8px; }
.mega-vgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px 16px; }
.mega-vi { display: flex; flex-direction: column; text-decoration: none; color: var(--navy); padding: 12px 8px; border-radius: 10px; transition: background .2s; align-items: center; text-align: center; }
.mega-vi:hover { background: #f5f5f5; }
.mega-vi-img img { max-width: 100%; max-height: 80px; object-fit: cover; display: block; border-radius: 8px; }.mega-vn { font-family: var(--F); font-size: 11px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 2px; line-height: 1.3; }
.mega-vp { font-family: var(--FB); font-size: 10px; color: var(--muted); display: block; }
.mega-drawer-divider { width: 1px; background: #eee; margin: 40px 0; }
.mega-links-wrap { padding: 48px 48px 32px 32px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 32px; overflow-y: auto; max-height: 100vh; align-content: start; }
.mega-col { display: flex; flex-direction: column; gap: 16px; }
.mega-col a { font-family: var(--F); font-size: 16px; font-weight: 600; color: var(--navy); text-decoration: none; transition: color .2s; line-height: 1.2; }
.mega-col a:hover { color: var(--blue); }

    /* NAV RIGHT */
    .nav-right { display: flex; align-items: center; gap: 10px; }
    .btn-nav { font-family: var(--FB); font-size: 13px; font-weight: 600; padding: 8px 20px; background: #f5a623; color: #fff; border: none; border-radius: 50px; cursor: pointer; text-decoration: none; transition: background .2s, transform .15s; white-space: nowrap; }
    .btn-nav:hover { background: #e09510; transform: scale(1.03); }
    .nav-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
    .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }


    /* --- PREMIUM CARD BUTTONS --- */
.card-actions { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 16px 20px; 
  border-top: 1px solid #f0f0f0; 
  margin-top: auto; 
  background: #fff;
}

.btn-card-quote { 
  background: var(--navy); 
  color: #fff; 
  font-family: var(--F); 
  font-size: 12px; 
  font-weight: 600; 
  padding: 10px 20px; 
  border-radius: 50px; /* Gives the premium pill shape */
  border: none; 
  cursor: pointer; 
  white-space: nowrap; 
  flex-shrink: 0; 
  position: relative; 
  z-index: 10; 
  transition: background .2s; 
}

.btn-card-quote:hover { 
  background: var(--blue); 
}

.btn-card-explore { 
  font-family: var(--F); 
  font-size: 12px; 
  font-weight: 600; 
  color: var(--navy); 
  text-decoration: underline; 
  cursor: pointer; 
  white-space: nowrap; 
  position: relative; 
  z-index: 10;
}

    /* HERO */
    .hero-wrap { margin-top: 0; position: relative; overflow: hidden; background: #dfe3e8; }
.hero-slide { display: none; position: relative; min-height: 100vh; overflow: hidden; }
.hero-slide.active { display: flex; flex-direction: column; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg,#d4d8df 0%,#bfc5ce 35%,#9aa3ae 65%,#626e7c 100%); }
.hero-slide[data-color="green"] .hero-bg { background: linear-gradient(135deg,#cdd6d0 0%,#b4c2b8 35%,#8fa898 65%,#4a6356 100%); }
.hero-slide[data-color="yellow"] .hero-bg { background: linear-gradient(135deg,#ddd9cc 0%,#cec8b4 35%,#b0a882 65%,#7a6e40 100%); }
.hero-slide[data-color="teal"] .hero-bg { background: linear-gradient(135deg,#cdd6d8 0%,#b4c2c6 35%,#8ca4aa 65%,#456066 100%); }

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

/* bottom-left */
.hero-slide[data-pos="bottom-left"] .hero-content {
    justify-content: flex-end; align-items: flex-start;
    text-align: left; padding: 0 0 60px clamp(24px,6vw,80px);
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}

/* bottom-center */
.hero-slide[data-pos="bottom-center"] .hero-content {
    justify-content: flex-end; align-items: center;
    text-align: center; padding: 0 24px 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}
.hero-slide[data-pos="bottom-center1"] .hero-content {
    justify-content: flex-end; align-items: center;
    text-align: center; padding: 0 24px 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    padding: 0 clamp(24px,6vw,80px) 250px 20px;
}

/* bottom-right */
.hero-slide[data-pos="bottom-right"] .hero-content {
    justify-content: flex-end; align-items: flex-end;
    text-align: right; padding: 0 clamp(24px,6vw,80px) 60px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}
.hero-slide[data-pos="bottom-right1"] .hero-content {
    justify-content: flex-end; align-items: flex-end;
    text-align: right; padding: 0 clamp(24px,6vw,80px) 60px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
    padding: 0 clamp(24px,6vw,80px) 270px 0;
}
.hero-slide[data-pos="bottom-center1"] .hero-content {
    justify-content: flex-start;
    align-items: flex-end;
    text-align: right;

    padding-top: 110px;
    padding-right: 80px;
    padding-bottom: 0;
    padding-left: 0;
}
/* center-left */
.hero-slide[data-pos="center-left"] .hero-content {
    justify-content: center; align-items: flex-start;
    text-align: left; padding: 80px 0 0 clamp(24px,6vw,80px);
    background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, transparent 60%);
}
.hero-slide[data-pos="left-center"] .hero-content {
    justify-content: center;      /* vertical center */
    align-items: flex-start;      /* left side */
    text-align: left;

    padding: 0 0 0 clamp(24px,6vw,80px);
}

/* center-right */
.hero-slide[data-pos="center-right"] .hero-content {
    justify-content: center; align-items: flex-end;
    text-align: right; padding: 80px clamp(24px,6vw,80px) 0 0;
    background: linear-gradient(to left, rgba(0,0,0,0.65) 0%, transparent 60%);
}

/* top-left */
.hero-slide[data-pos="top-left"] .hero-content {
    justify-content: flex-start; align-items: flex-start;
    text-align: left; padding: 120px 0 0 clamp(24px,6vw,80px);
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 60%);
}

/* top-right */
.hero-slide[data-pos="top-right"] .hero-content {
    justify-content: flex-end; align-items: flex-start;
    text-align: right; padding: 120px clamp(24px,6vw,80px) 0 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 60%);
    
}

.hero-slide[data-pos="bottom-left"] .hero-actions,
.hero-slide[data-pos="center-left"] .hero-actions,
.hero-slide[data-pos="top-left"] .hero-actions { justify-content: flex-start; }

.hero-slide[data-pos="bottom-right"] .hero-actions,
.hero-slide[data-pos="center-right"] .hero-actions { justify-content: flex-end; }

.hero-slide[data-pos="bottom-center"] .hero-actions { justify-content: center; }
.hero-eyebrow { font-family: var(--F); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.hero-name { font-family: var(--FD); font-size: clamp(42px,5vw,72px); line-height: 1.0; color: #fff; margin-bottom: 10px; }
.hero-tagline { font-family: var(--FB); font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 24px; line-height: 1.5; max-width: 480px; }
.hero-specs-row { display: flex; align-items: center; gap: 0; margin-bottom: 28px; background: rgba(255,255,255,.15); border-radius: 10px; overflow: hidden; backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.2); }
.hero-spec-item { padding: 12px 24px; border-right: 1px solid rgba(255,255,255,.15); }
.hero-spec-item:last-child { border-right: none; }
.hero-spec-label { font-family: var(--F); font-size: 8px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); display: block; margin-bottom: 3px; }
.hero-spec-val { font-family: var(--F); font-size: 18px; font-weight: 600; color: #fff; }
.hero-spec-val sup { font-size: 10px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.btn-call { font-family: var(--F); font-size: 13px; font-weight: 600; padding: 13px 26px; background: var(--white); color: var(--navy); border: none; border-radius: 50px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: background .2s, transform .2s; box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.btn-call:hover { background: #f0f0f0; transform: translateY(-1px); }
.btn-quote { font-family: var(--F); font-size: 13px; font-weight: 600; padding: 13px 26px; background: var(--navy); color: #fff; border: none; border-radius: 50px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: background .2s, transform .2s; }
.btn-quote:hover { background: var(--blue); transform: translateY(-1px); }
.btn-details { font-family: var(--F); font-size: 13px; font-weight: 600; padding: 13px 22px; background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); border-radius: 50px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: border-color .2s, background .2s; }
.btn-details:hover { border-color: #fff; background: rgba(255,255,255,.12); }

.hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.slide-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.85); border: 1px solid rgba(0,0,0,.1); border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; color: var(--navy); box-shadow: 0 2px 10px rgba(0,0,0,.1); transition: background .2s; user-select: none; }
.slide-arrow:hover { background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.15); }
.arrow-prev { left: 16px; }
.arrow-next { right: 16px; }
.slide-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 10; }
.s-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(10,22,40,.25); cursor: pointer; transition: background .3s, transform .3s; }
.s-dot.active { background: var(--navy); transform: scale(1.4); }
.slide-counter { position: absolute; bottom: 20px; right: 48px; font-family: var(--F); font-size: 10px; font-weight: 500; letter-spacing: 2px; color: rgba(10,22,40,.4); z-index: 10; }

@media(max-width:768px){
    .hero-content { padding: 40px 20px 0; }
    .hero-name { font-size: 36px; }
    .hero-right img { object-position: center center; }
    .hero-tagline { font-size: 13px; }
    .hero-eyebrow {display: none;}
    .hero-specs-row { flex-wrap: wrap; }
    .hero-spec-item { padding: 10px 16px; }
    .hero-spec-val { font-size: 16px; }
    .btn-call, .btn-quote, .btn-details { padding: 11px 20px; font-size: 12px; }
    .hero-right img { max-height: 280px; }
    .cs-arrow { display: none; }
    .cs-track img { width: 92vw; height: 92vw; }
}


.cg2-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 36px;
}
.cg2-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 4/3;
}
.cg2-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media(max-width:900px){
    .cg2-strip { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:480px){
    .cg2-strip { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 0;
}
.community-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s ease;
}
.community-grid img:hover {
  transform: scale(1.03);
  z-index: 1;
  position: relative;
}
@media(max-width:860px) {
  .community-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:480px) {
  .community-grid { grid-template-columns: repeat(2, 1fr); }
}

.community-slider-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.cs-track-wrap { overflow: hidden; flex: 1; border-radius: 8px; }
.cs-track { display: flex; gap: 8px; transition: transform 0.4s cubic-bezier(.16,1,.3,1); }
.cs-track img { width: calc(33.333% - 6px); height: 260px; object-fit: cover; object-position: top; flex-shrink: 0; border-radius: 8px; }.cs-arrow { width: 43px; height: 44px; border-radius: 50%; background: #0a1628; color: #fff; border: none; font-size: 1.8rem; cursor: pointer; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.cs-arrow:hover { background: #1a3ed4; }
.cs-track-wrap::after {
  content: '<‹ ›>';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  color:var(--white);
  animation: swipe-hint 1.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes swipe-hint {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
.community-slider-wrap { position: relative; }
@media(max-width:860px) { .cs-track img { width: 200px; height: 200px; } .cs-arrow { display: none; } }
@media(max-width:480px) { .cs-track img { width: 92vw; height: 92vw; } }

    @keyframes float-v { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    .slide-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.85); border: 1px solid rgba(0,0,0,.1); border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; color: var(--navy); box-shadow: 0 2px 10px rgba(0,0,0,.1); transition: background .2s; user-select: none; }
    .slide-arrow:hover { background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.15); }
    .arrow-prev { left: 16px; }
    .arrow-next { right: 16px; }
    .slide-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 10; }
    .s-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(10,22,40,.25); cursor: pointer; transition: background .3s, transform .3s; }
    .s-dot.active { background: var(--navy); transform: scale(1.4); }
    .slide-counter { position: absolute; bottom: 26px; right: 48px; font-family: var(--F); font-size: 10px; font-weight: 500; letter-spacing: 2px; color: rgba(10,22,40,.4); z-index: 10; }

    /* TICKER */
    .ticker-band { background: var(--navy); color: #fff; padding: 9px 0; overflow: hidden; white-space: nowrap; }
    .ticker-inner { display: inline-flex; animation: ticker 28s linear infinite; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    .ticker-item { font-family: var(--F); font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 0 22px; color: rgba(255,255,255,.7); }
    .ticker-item::after { content: '·'; margin-left: 22px; color: rgba(255,255,255,.3); }

    /* SECTIONS */
    .section { padding: 64px 48px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .s-eyebrow { font-family: var(--F); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
    .s-title { font-family: var(--FD); font-size: clamp(26px,3.2vw,38px); color: var(--navy); margin-bottom: 6px; }
    .s-sub { font-family: var(--FB); font-size: 14px; color: var(--muted); margin-bottom: 36px; max-width: 460px; }

    /* VEHICLES GRID */
    .vehicles-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    .vehicle-card { background: #fff; border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; box-shadow: 0 2px 8px rgba(10,22,40,.06),0 6px 24px rgba(10,22,40,.07); transition: transform .3s cubic-bezier(.25,.46,.45,.94),box-shadow .3s; border: 1px solid rgba(10,22,40,.06); }
    .vehicle-card:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(10,22,40,.1),0 20px 52px rgba(10,22,40,.12); }
    .vehicle-card:hover .card-img img { transform: scale(1.05); }
    .card-img { height: 220px; overflow: hidden; background: #f2f3f5; }
    .card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s cubic-bezier(.25,.46,.45,.94); }
    .card-body { padding: 15px 16px 6px; flex: 1; }
    .card-cat { font-family: var(--F); font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #aaa; display: block; margin-bottom: 4px; }
    .card-name { font-family: var(--FD); font-size: 19px; line-height: 1.1; color: var(--navy); margin-bottom: 4px; }
    .card-price { font-family: var(--F); font-size: 12px; font-weight: 500; color: var(--muted); }
    .card-cta { display: none; }
    .card-actions { display: flex; border-top: 1px solid #f0f0f0; margin-top: 12px; }
    .card-btn-q { flex: 1; padding: 11px 8px; font-family: var(--F); font-size: 11px; font-weight: 700; text-align: center; cursor: pointer; background: none; border: none; color: var(--navy); border-right: 1px solid #f0f0f0; transition: background .18s, color .18s; }
    .card-btn-q:hover { background: var(--navy); color: #fff; }
    .card-btn-e { flex: 1; padding: 11px 8px; font-family: var(--F); font-size: 11px; font-weight: 600; text-align: center; color: var(--blue); text-decoration: none; display: block; transition: background .18s, color .18s; }
    .card-btn-e:hover { background: var(--blue); color: #fff; }

    @media(max-width:1100px) { .vehicles-grid { grid-template-columns: repeat(3,1fr); } }
    @media(max-width:768px) {
      .vehicles-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
      .card-img { height: 150px; }
      .card-name { font-size: 15px; }
      .card-body { padding: 11px 12px 4px; }
      .card-btn-q, .card-btn-e { font-size: 10px; padding: 9px 4px; }
    }
    @media(max-width:400px) { .vehicles-grid { grid-template-columns: 1fr; } .card-img { height: 200px; } }

    /* ABOUT BAND */
    .about-band { background: var(--navy); color: #fff; padding: 64px 48px; position: relative; overflow: hidden; }
    .about-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 80% 50%,rgba(26,62,212,.13) 0%,transparent 70%),radial-gradient(ellipse 40% 60% at 8% 80%,rgba(26,62,212,.08) 0%,transparent 60%); pointer-events: none; z-index: 0; }
    .about-band::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent 0%,rgba(26,62,212,.55) 30%,rgba(255,255,255,.12) 50%,rgba(26,62,212,.55) 70%,transparent 100%); z-index: 1; }
    .about-band-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
    .ab-eyebrow { font-family: var(--F); font-size: 10px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .ab-eyebrow::before { content: ''; display: inline-block; width: 20px; height: 1px; background: rgba(26,62,212,.9); flex-shrink: 0; }
    .ab-title { font-family: var(--FD); font-size: clamp(28px,3.2vw,42px); color: #fff; margin-bottom: 16px; line-height: 1.08; letter-spacing: -.5px; }
    .ab-body { font-family: var(--FB); font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 24px; max-width: 400px; }
    .ab-quote { border-left: 2px solid rgba(26,62,212,.85); padding: 2px 0 2px 16px; margin-bottom: 28px; font-family: var(--FD); font-size: 17px; font-style: italic; color: rgba(255,255,255,.72); line-height: 1.55; }
    .ab-cta { font-family: var(--F); font-size: 12px; font-weight: 600; padding: 11px 22px; background: rgba(26,62,212,.18); color: #fff; border: 1px solid rgba(26,62,212,.5); border-radius: 4px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: background .25s, border-color .25s, transform .2s; }
    .ab-cta:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-1px); }
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border-radius: 14px; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,.05); }
    .stat-box { background: rgba(255,255,255,.04); padding: 28px 24px; position: relative; overflow: hidden; transition: background .3s; cursor: default; }
    .stat-box::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,62,212,.15) 0%,transparent 60%); opacity: 0; transition: opacity .35s; pointer-events: none; }
    .stat-box:hover { background: rgba(255,255,255,.07); }
    .stat-box:hover::before { opacity: 1; }
    .stat-box:nth-child(1) { border-radius: 11px 0 0 0; }
    .stat-box:nth-child(2) { border-radius: 0 11px 0 0; }
    .stat-box:nth-child(3) { border-radius: 0 0 0 11px; }
    .stat-box:nth-child(4) { border-radius: 0 0 11px 0; }
    .stat-num { font-family: var(--FD); font-size: 36px; color: #fff; margin-bottom: 5px; line-height: 1; position: relative; z-index: 1; }
    .stat-label { font-family: var(--F); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); position: relative; z-index: 1; transition: color .3s; }
    .stat-box:hover .stat-label { color: rgba(255,255,255,.55); }
    .stat-box-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,rgba(26,62,212,.9),rgba(26,62,212,.15)); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: 2; }
    .stat-box:hover .stat-box-accent { transform: scaleX(1); }

    /* DEALER */
    .dealer-section { padding: 64px 48px; background: var(--cream); }
    .dealer-inner { max-width: 1200px; margin: 0 auto; }
    .dealer-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 36px; }
    .dealer-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 26px 22px; transition: box-shadow .3s, border-color .3s; }
    .dealer-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,.08); border-color: #bbb; }
    .d-icon { width: 42px; height: 42px; background: var(--blue-l); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
    .d-icon svg { width: 20px; height: 20px; fill: var(--blue); }
    .d-title { font-family: var(--FD); font-size: 19px; color: var(--navy); margin-bottom: 8px; }
    .d-body { font-family: var(--FB); font-size: 13px; line-height: 1.65; color: var(--muted); margin-bottom: 14px; }
    .d-detail { font-family: var(--F); font-size: 11px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
    .btn-dealer { font-family: var(--F); font-size: 11px; font-weight: 600; letter-spacing: .5px; padding: 9px 18px; border-radius: 4px; border: 1.5px solid var(--navy); background: transparent; color: var(--navy); cursor: pointer; text-decoration: none; display: inline-block; transition: background .2s, color .2s; }
    .btn-dealer:hover { background: var(--navy); color: #fff; }
    .btn-dealer.primary { background: var(--navy); color: #fff; border-color: var(--navy); }
    .btn-dealer.primary:hover { background: var(--blue); border-color: var(--blue); }

    /* DISTRICTS */
    .districts-section { padding: 64px 48px; background: var(--white); position: relative; overflow: hidden; }
    .districts-inner { max-width: 1200px; margin: 0 auto; }
    .districts-header { display: grid; grid-template-columns: 1fr 1fr; align-items: start; margin-bottom: 36px; gap: 32px; }
    .districts-headline { font-family: var(--FD); font-size: clamp(28px,3.2vw,42px); color: var(--navy); line-height: 1.1; }
    .districts-headline span { color: var(--blue); font-style: italic; }
    .districts-right p { font-family: var(--FB); font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 12px; }
    .districts-right a { font-family: var(--F); font-size: 12px; font-weight: 600; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
    .districts-right a:hover { gap: 10px; }
    .districts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
    .district-card { border-radius: 11px; overflow: hidden; position: relative; height: 140px; cursor: pointer; background: linear-gradient(135deg,#d4d8df,#626e7c); }
    .district-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.65) 0%,rgba(0,0,0,.1) 50%,transparent 100%); z-index: 1; }
    .district-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
    .district-card:hover img { transform: scale(1.08); }
    .district-name { position: absolute; bottom: 12px; left: 14px; z-index: 2; font-family: var(--FD); font-size: 16px; color: #fff; line-height: 1; }
    .dc-chennai { background: linear-gradient(135deg,#c8b89a,#8a6e4a); }
    .dc-coimbatore { background: linear-gradient(135deg,#a8b89a,#4a6e5a); }
    .dc-madurai { background: linear-gradient(135deg,#c8a89a,#8a4e3a); }
    .dc-tirunelveli { background: linear-gradient(135deg,#aab8c8,#4a5a7a); }
    .dc-kancheepuram { background: linear-gradient(135deg,#a8c8c8,#3a7a7a); }

    /* COMMUNITY */
    .community-section { padding: 64px 48px; background: var(--white); }
    .community-inner { max-width: 1200px; margin: 0 auto; }
    .testimonials-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 16px; }
    .tcard { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 22px 20px; transition: box-shadow .3s, border-color .3s; }
    .tcard:hover { box-shadow: 0 5px 18px rgba(0,0,0,.08); border-color: #bbb; }
    .tcard-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 10px; }
    .tcard-text { font-family: var(--FB); font-size: 13.5px; line-height: 1.65; color: var(--dark); margin-bottom: 16px; font-style: italic; }
    .tcard-author { display: flex; align-items: center; gap: 10px; }
    .tcard-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#d4d8df,#9aa3ae); display: flex; align-items: center; justify-content: center; font-family: var(--FD); font-size: 14px; color: var(--navy); flex-shrink: 0; }
    .tcard-name { font-family: var(--F); font-size: 12px; font-weight: 600; color: var(--navy); }
    .tcard-role { font-family: var(--F); font-size: 10px; color: var(--muted); margin-top: 2px; }

    /* FOOTER */
    footer { background: #1a1c22; color: #fff; padding: 0; padding-bottom: 72px; }
    .footer-top { max-width: 1200px; margin: 0 auto; padding: 48px 48px 36px; display: grid; grid-template-columns: 200px 1fr auto; gap: 48px; align-items: start; }
    .footer-brand-logo { display: flex; align-items: center; gap: 8px; }
    .footer-brand-word { font-family: var(--F); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; }
    .footer-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
    .f-col-title { font-family: var(--F); font-size: 11px; font-weight: 600; letter-spacing: .5px; color: #fff; margin-bottom: 16px; }
    .f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .f-col a { font-family: var(--FB); font-size: 12px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
    .f-col a:hover { color: #fff; }
    .footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; min-width: 180px; }
    .footer-socials { display: flex; align-items: center; gap: 16px; }
    .social-link { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; display: flex; align-items: center; }
    .social-link:hover { color: #fff; }
    .social-link svg { width: 18px; height: 18px; fill: currentColor; }
    .footer-phone { display: flex; align-items: center; gap: 8px; font-family: var(--F); font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); }
    .footer-phone-num { color: #4d8df5; font-weight: 600; text-decoration: none; }
    .footer-phone-num:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 48px; }
    .footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; align-items: center; }
    .f-copy { font-family: var(--F); font-size: 11px; color: rgba(255,255,255,.3); }

    /* STICKY BAR */
    .sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; display: flex; align-items: stretch; background: var(--navy); border-top: 2px solid rgba(255,255,255,.18); height: 52px; }
    .sticky-item { flex: 1; height: 100%; display: flex; align-items: center; justify-content: center; gap: 7px; font-family: var(--F); font-size: 11px; font-weight: 600; letter-spacing: .5px; color: #fff; text-decoration: none; cursor: pointer; border-right: 1px solid rgba(255,255,255,.15); transition: background .2s; }
    .sticky-item:last-child { border-right: none; background: var(--blue); height: 100%; }
    .sticky-item:last-child:hover { background: #2348f0; }
    .sticky-item:not(:last-child):hover { background: rgba(255,255,255,.06); }
    .sticky-item.wa { color: #25d366; }
    @keyframes ring { 0%, 100% { transform: rotate(0); } 10% { transform: rotate(-15deg); } 20% { transform: rotate(12deg); } 30% { transform: rotate(-10deg); } 40% { transform: rotate(8deg); } 50% { transform: rotate(0); } }
    .icon-ring { display: inline-block; animation: ring 3s ease-in-out infinite; }

    /* POPUP */
    .popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); z-index: 2000; align-items: center; justify-content: center; }
    .popup-overlay.active { display: flex; }
    .popup-box { background: #fff; border-radius: 14px; padding: 32px; width: 100%; max-width: 400px; margin: 16px; position: relative; animation: pop-in .3s cubic-bezier(.34,1.56,.64,1); }
    @keyframes pop-in { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    .p-close { position: absolute; top: 14px; right: 16px; font-size: 20px; color: #999; cursor: pointer; background: none; border: none; }
    .p-title { font-family: var(--FD); font-size: 22px; color: var(--navy); margin-bottom: 4px; }
    .p-sub { font-family: var(--FB); font-size: 13px; color: var(--muted); margin-bottom: 20px; }
    .p-field { width: 100%; margin-bottom: 10px; padding: 11px 13px; border: 1.5px solid #e0e0e0; border-radius: 7px; font-family: var(--FB); font-size: 13px; color: var(--dark); outline: none; transition: border-color .2s; background: #fafafa; }
    .p-field:focus { border-color: var(--blue); background: #fff; }
    .phone-row { display: flex; gap: 8px; margin-bottom: 10px; }
    .phone-pre { padding: 11px 13px; border: 1.5px solid #e0e0e0; border-radius: 7px; font-family: var(--FB); font-size: 13px; color: var(--muted); background: #f5f5f5; white-space: nowrap; }
    .p-submit { width: 100%; padding: 12px; background: var(--navy); color: #fff; border: none; border-radius: 7px; font-family: var(--F); font-size: 13px; font-weight: 600; letter-spacing: .5px; cursor: pointer; transition: background .2s; }
    .p-submit:hover { background: var(--blue); }

    /* FADE UP */
    .fade-up { opacity: 0; transform: translateY(20px); transition: opacity .55s, transform .55s; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* TABLET PORTRAIT — closes the 768–860px gap */
    @media(max-width:860px) {
      .about-band-inner { grid-template-columns: 1fr; gap: 28px; }
      .testimonials-row { grid-template-columns: 1fr 1fr; }
      .dealer-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
      .districts-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
      .district-card { height: 120px; }
      .districts-header { grid-template-columns: 1fr; gap: 14px; }
      .footer-top { padding: 36px 24px 28px; }
    }

    /* TABLET */
    @media(max-width:1024px) {
      .hero-content { padding: 0; gap: 0; }
      .hero-left { flex: 0 0 340px; max-width: 340px; margin-left: 32px; padding: 32px 0; }
      .hero-name { font-size: clamp(36px,4.5vw,52px); }
      .hero-right img { transform: scale(1.12); }
      .section, .about-band, .dealer-section, .districts-section, .community-section { padding: 52px 32px; }
      .footer-top { padding: 40px 32px 28px; gap: 36px; }
      .footer-bottom { padding: 14px 32px; }
    }

    /* MOBILE */
    @media(max-width:768px) {
      body { padding-bottom: 50px; }
      nav { padding: 0 14px; height: 52px; }
      .btn-nav { display: none; }
      
      .popup-box { padding: 24px 20px; margin: 12px; }
      .p-title { font-size: 18px; }
      .p-sub { font-size: 12px; margin-bottom: 14px; }
      .p-field { padding: 9px 11px; font-size: 12px; }
      .p-submit { padding: 10px; }
      .logo-word { font-size: 11px; letter-spacing: 1.5px; }
      .nav-links { display: none; }
      .hero-wrap { margin-top: 0; }
      .hero-slide { min-height: 92svh; }
      .hero-content { flex-direction: column; justify-content: flex-end; padding: 0; gap: 0; min-height: 92svh; }
      .hero-content::before { background: linear-gradient(0deg,rgba(244,245,247,.96) 0%,rgba(244,245,247,.88) 34%,rgba(244,245,247,.32) 62%,rgba(244,245,247,0) 82%); }
      .hero-right { order: 0; min-height: 100%; width: 100%; margin-bottom: 0; }
      .hero-right img { width: 100%; height: 100%; max-height: none; object-position: 62% center; transform: scale(1.18); }
      .hero-left { flex: none; max-width: 100%; width: calc(100% - 32px); margin-left: 0; padding: 0 0 72px; align-self: flex-start; }
      .hero-name { font-size: 32px; margin-bottom: 6px; }
      .hero-tagline { font-size: 13px; margin-bottom: 12px; }
      .hero-price-card { padding: 10px 14px; margin-bottom: 12px; }
      .price-value { font-size: 20px; }
      .hero-keys { gap: 14px; margin-bottom: 16px; }
    .hero-actions { display: none; }
      .btn-call, .btn-quote, .btn-details { padding: 10px 15px; font-size: 11px; }
      .slide-arrow { width: 32px; height: 32px; font-size: 13px; }
      .arrow-prev { left: 4px; }
      .arrow-next { right: 4px; }
      .slide-dots { bottom: 16px; }
      .slide-counter { display: none; }
      .section { padding: 40px 16px; }
      .s-title { font-size: 24px; }
      .vehicles-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .card-img { height: 140px; }
      .card-name { font-size: 15px; }
      .card-body { padding: 12px 14px 14px; }
      .community-section { padding: 40px 16px; }
      .testimonials-row { grid-template-columns: 1fr; gap: 10px; margin-top: 10px; }
      .about-band { padding: 40px 16px; }
      .about-band-inner { grid-template-columns: 1fr; gap: 24px; }
      .ab-title { font-size: 24px; }
      .stats-grid { gap: 2px; }
      .stat-num { font-size: 26px; }
      .stat-box { padding: 20px 16px; }
      .districts-section { padding: 40px 16px; }
      .districts-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
      .districts-headline { font-size: 24px; }
      .districts-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
      .district-card { height: 100px; border-radius: 8px; }
      .district-name { font-size: 13px; bottom: 8px; left: 10px; }
      .dealer-section { padding: 40px 16px; }
      .dealer-cards { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
      footer { padding: 0; }
      .footer-top { grid-template-columns: 1fr; gap: 24px; padding: 32px 16px 24px; }
      .footer-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
      .footer-right { align-items: flex-start; }
      .footer-bottom { padding: 12px 16px; }
      .sticky-bar { height: 50px; }
      .sticky-item { font-size: 10px; gap: 5px; }
      .mega-drawer { padding: 0; overflow-y: auto; overflow-x: hidden; }
      .mega-drawer-inner { grid-template-columns: 1fr; height: auto; overflow: visible; }
.mega-vgrid-wrap { padding: 52px 16px 16px; overflow-y: visible; max-height: none; }
.mega-vgrid { grid-template-columns: repeat(3,1fr); gap: 6px; }
.mega-vi-img { height: 60px; }
.mega-vi-img img { max-height: 60px; }
.mega-vn { font-size: 10px; }
.mega-vp { display: none; }
.mega-drawer-divider { display: block; width: auto; height: 1px; margin: 0 16px; }
.mega-links-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 8px; padding: 20px 16px 80px; overflow-y: visible; max-height: none; }
.mega-col a { font-size: 13px; }


    }

    @media(max-width:380px) {
      .hero-name { font-size: 27px; }
      .vehicles-grid { grid-template-columns: 1fr; }
      .districts-grid { grid-template-columns: 1fr 1fr; }
      .dealer-cards { grid-template-columns: 1fr; }
      .footer-cols { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
      .btn-call, .btn-quote, .btn-details { width: 100%; justify-content: center; }
    }
    