/* ============================= */
/*         RESET & BASE          */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #fff;
  height: 100%;
  width: 100%;
  background: transparent;
}

/* ============================= */
/*         TOP HEADER BAR        */
/* ============================= */
.top-bar {
  background: linear-gradient(to right, #0a0a0a, #1d2b44);
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.top-logo {
  height: 150px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ============================= */
/*         HAMBURGER MENU        */
/* ============================= */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  position: fixed;
  top: 25px;
  right: 35px;
  z-index: 1002;
}

.hamburger-menu span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center;
}

body.menu-open .hamburger-menu span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .hamburger-menu span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger-menu span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================= */
/*       FULLSCREEN MENU         */
/* ============================= */
.fullscreen-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  max-height: 400px;
  background: linear-gradient(to bottom right, rgba(0, 38, 77, 0.85), rgba(0, 0, 0, 0.7));
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1001;
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-family: 'Poppins', sans-serif;
  padding: 30px 60px 0;
}

.fullscreen-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-items {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.menu-items li a {
  font-size: 24px;
  font-weight: 500;
  color: #e0e0e0;
  text-decoration: none;
  letter-spacing: 1.5px;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.menu-items li a:hover {
  color: #f4c10f;
}

.menu-close {
  position: fixed;
  top: 22px;
  right: 35px;
  font-size: 28px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ============================= */
/*         HERO SECTION          */
/* ============================= */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 0; /* ✅ Add this */
}



.hero-headline {
  position: relative;
  text-align: center;
  z-index: 2;
  color: white;
  padding: 0 20px;
  top: -2%;
  right:2.5%;
}

.main-title {
  font-family: 'Satoshi', 'Unbounded', sans-serif;
  font-size: clamp(32px, 4.5vw, 42px);
  color: #b8c2e4;
  text-shadow:
    0 0 3px rgba(184, 194, 228, 0.25),
    0 0 6px rgba(184, 194, 228, 0.15);
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-button {
  padding: 16px 50px;
  background-color: #1E3A8A;
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  margin-top: 25px;
  font-size: 16px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: #1c357c;
}

/* ============================= */
/*          ANIMATIONS           */
/* ============================= */
@keyframes fadeSlideUp {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-headline h1,
.hero-headline .cta-button {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards;
  animation-fill-mode: both;
}

.hero-headline h1 { animation-delay: 1s; }
.hero-headline .cta-button { animation-delay: 1.5s; }

@keyframes pulseGlow {
  0% { box-shadow: 0 0 6px rgba(0, 123, 255, 0.4); }
  50% { box-shadow: 0 0 20px rgba(0, 123, 255, 0.9); }
  100% { box-shadow: 0 0 6px rgba(0, 123, 255, 0.4); }
}

/* ============================= */
/*       NAV & EXTRAS            */
/* ============================= */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f4c10f;
}

.top-links {
  list-style: none;
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  margin: 0;
}

.top-links li a {
  color: #ffffff;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-links li a:hover {
  color: #f4c10f;
}

.setting {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.setting-toggle {
  padding: 6px 14px;
  font-size: 15px;
  border: 1px solid white;
  border-radius: 4px;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.setting-toggle:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.icons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.icons i:hover {
  color: #f4c10f;
}

.divider-bolt {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #f4c10f, #fff700);
  box-shadow: 0 0 6px #f4c10f, 0 0 12px #f4c10f;
  animation: pulse 1.6s infinite ease-in-out alternate;
  z-index: 2;
}

@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}



.hero-bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 195vh;
  height: 100vh;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0; /* ✅ Make it at same level, not behind body */
}


@media screen and (max-height: 720px) {
  .hero-bg-image {
    object-fit: contain;
    object-position: center bottom;
  }
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(0, 100, 200, 0.4));
  z-index: 1;
}




/* ============================= */
/*        AMG G63 SECTION        */
/* ============================= */
/* ============================= */
/*        AMG G63 SECTION        */
/* ============================= */
/* AMG G63 Section Improvements */
.amg-g63-section {
  border-top: 1px solid rgba(255, 0, 0, 0.1);
  background: linear-gradient(to bottom, #000000, #0a0d12, #11141b); /* matte black to dark blue */
  padding: 60px 20px 40px;
  text-align: center;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
}


.amg-headline {
  max-width: 1200px;
  margin: 0 auto 40px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
}

.amg-headline hr {
  border: none;
  border-top: 1px solid #666;
  width: 80%;
  margin: 20px auto;
}

.amg-specs-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: nowrap;
}

.amg-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
  flex: 1;
}

.amg-stat h1 {
  font-size: 120px;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

.amg-stat span {
  font-size: 18px;
  color: #aaa;
  margin: 10px 0 30px;
}

.amg-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 16px;
  color: white;
  margin-top: 20px;
  white-space: nowrap;
}

.amg-icon-row img,
.amg-icon-row i {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: inline-block;
  color: #c10000;
  filter: brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(7480%) hue-rotate(357deg) brightness(96%) contrast(119%);
}


.amg-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: inline-block;
  position: relative;
  top: px; /* adjust this to perfectly align */
  filter: brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(7480%) hue-rotate(357deg) brightness(96%) contrast(119%);
}


.amg-icon-row i {
  font-size: 22px;
  color: #c10000;
}

.amg-divider {
  width: 2px;
  height: 120px;
  background-color: #c10000;
  transform: rotate(20deg);
  transform-origin: center;
  margin-top: px; /* moves it higher */
  align-self: flex-start; /* aligns to the top of each stat block */
}


/* ============================= */
/*    FOOTER GRADIENT WRAPPER    */
/* ============================= */
.footer-gradient-wrapper {
  background: linear-gradient(to top, #000000, #11141b, #1a1d25);
}

/* ============================= */
/*     FERRARI STYLE FOOTER      */
/* ============================= */
.footer.ferrari-footer {
  background: linear-gradient(to top, #0e1014, #16181e); /* matte bluish-black */
  color: #ccc;
  padding: 60px 30px;
  font-family: 'Helvetica Neue', sans-serif;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-social ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.footer-social li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-social li i {
  font-size: 16px;
}

.footer-separator {
  height: 10px;
  background: linear-gradient(to bottom, #16181e 0%, #0c0d11 100%);
  opacity: 0.8;
}


/* ============================= */
/*     SOCIAL ICON COLORS        */
/* ============================= */
.footer-social li i.fa-facebook-f { color: #1877F2; }
.footer-social li i.fa-instagram { color: #E1306C; }


.footer-social li i.fa-tiktok { color: white; }


.footer-social li:hover {
  color: #f4c10f;
}

.footer-social li i.fa-tiktok {
  color: white !important;
}

.footer-meta {
  font-size: 13px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #888;
}

.footer-social li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social li a:hover {
  color: #f4c10f;
}

.footer-social li a:hover i.fa-instagram {
  color: #E1306C;
}






.snapchat-icon img {
  height: 20px;
  width: 20px;
  filter: drop-shadow(0 0 1px #FFFC00);
  margin-right: 8px;
  vertical-align: middle;
}

.footer-social li:hover .snapchat-icon img {
  filter: drop-shadow(0 0 3px #f4c10f) brightness(1.2);
}

/* ============================= */
/*   WORKING HOURS SECTION       */
/* ============================= */
.footer-hours {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #aaa;
  margin-top: 10px;
  margin-bottom: 25px; /* Add spacing below the timing section */

}

.hours-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ✅ Hide the "Free Website Translator Widget" footer text */
.elfsight-app [class*="elfsight-app"], 
.elfsight-app [class*="eapps-widget-toolbar"],
.elfsight-app a[href*="elfsight.com"] {
  display: none !important;
}

/* ✅ Style the widget content for dark backgrounds */
.elfsight-app {
  color: white !important;
  font-weight: 500;
}

.elfsight-app select,
.elfsight-app option {
  background-color: #111 !important;
  color: white !important;
  border: none;
  padding: 5px 10px;
}



/* ============================= */
/*   FERRARI BOTTOM BAR STYLING  */
/* ============================= */
.footer-links-bottom {
  background-color: transparent;
  padding: 60px 50px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 80px;
  margin-bottom: 30px;
}

.footer-links-row span {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 400;
}

.footer-links-row .region {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links-row a {
  color: white;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links-row a:hover {
  color: #f4c10f;
}

.footer-links-row a:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f4c10f;
}

.footer-links-row a.active {
  color: #f4c10f;
}

.footer-links-row a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f4c10f;
}


/* ============================= */
/*      WHATSAPP FLOAT ICON      */
/* ============================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  border-radius: 12px;         /* ✅ Rounded corners but not circular */
  width: 55px;                 /* ✅ Fixed square dimensions */
  height: 55px;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;

  display: flex;               /* ✅ Center icon inside */
  align-items: center;
  justify-content: center;
}


.whatsapp-float:hover {
  background-color: #1ebc59;
  transform: scale(1.1);
}

/* ============================= */
/*       PAYMENT METHODS BAR     */
/* ============================= */
.footer-payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 25px 0;
  margin-top: 20px;
}

.footer-payment-icons img {
  height: 50px;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  display: inline-block;
  transition: transform 0.3s ease;
  filter: none !important;
  opacity: 1;
  visibility: visible;
}

.footer-payment-icons img[alt*="amex"],
.footer-payment-icons img[alt*="express"] {
  height: 58px;
}

.footer-payment-icons img:hover {
  transform: scale(1.1);
}
.footer-links-bottom {
  background-color: #131821; /* Deep Navy Matte Blue */
}

/* ============================= */
/*       COOKIE BANNER           */
/* ============================= */
.cookie-banner {
  display: none; /* Prevent initial flash */
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(20, 20, 20, 0.95);
  color: #fff;
  padding: 18px 25px;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 99999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: #f4c10f;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner button {
  background-color: #f4c10f;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #e0b200;
}

.brand-selection {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, rgba(0, 1, 0, 0.7), white 155%);
}


.choose-brand-heading {
  color: white; /* Keeps it clean */
  font-size: 2.5rem; /* Or whatever size you're using */
  text-align: center;
  margin-bottom: 30px;

  /* 💡 Improves readability on light gradient */
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}


.choose-brand-heading {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.brand-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 50px; /* add padding instead of calculating arrow space */
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}


.brand-scroll-wrapper {
  overflow-x: hidden; /* 🔒 Disable horizontal scroll by user */
  overflow-y: hidden;
  flex-shrink: 0;
  width: calc(160px * 6 + 20px * 5); /* 6 cards + 5 gaps of 20px */
  margin: 0 auto;
}

.brand-cards {
  display: flex;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
  flex-grow: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
  min-width: fit-content;
  overflow-x: auto;         /* ✅ allow JS-controlled horizontal scroll */
  overflow-y: hidden;
  pointer-events: none;     /* 🔒 disables manual drag */
}

.brand-cards > * {
  pointer-events: auto;     /* ✅ keeps brand cards clickable */
}

.brand-cards::-webkit-scrollbar {
  display: none;
}

.brand-card {
  flex: 0 0 auto;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: #000;
}

.brand-card .logo-box {
  width: 80px;
  height: 80px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px;
}

.brand-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-card p {
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

.brand-card:hover {
  transform: scale(1.05);
}


.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f2f2f2;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}



/* Left and right positioning */
.arrow-btn.left {
  left: 15px;
}

.arrow-btn.right {
  right: 15px;
}



.arrow-btn:hover {
  background: #e0e0e0;
}

.logo-box.audi img {
  transform: scale(1.25);
}

.logo-box.chevrolet img {
  transform: scale(1.25);
}



.logo-box.rolls img {
  transform: scale(1.3);
}

.logo-box.bentley img {
  transform: scale(1.3);
}

.logo-box.mercedes img {
  transform: scale(1.3);
}

.logo-box.lamborghini img {
  transform: scale(1.3);
}


.menu-overlay {
  display: none;
}


.logo-intro {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 2s ease forwards 1.2s;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.custom-e {
  display: inline-block;
  width: 63px;                         /* ✅ Balanced with bold text */
  height: 65px;                        /* ✅ Matches the font-size visually */
  background-image: url('../images/e.png'); /* 🔵 Your 3-bar blue E */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;             /* ✅ Aligns perfectly with baseline */
  margin: 0 1px;                       /* ✅ Equal space between letters */
}





@media screen and (max-width: 768px) {
  .top-bar {
    flex-direction: row;
    flex-wrap: wrap;
    height: 80px;
    padding: 0 20px;
    justify-content: space-between;
  }

  .top-logo {
    height: auto;
    max-height: 140px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
  }

  .nav-links {
    flex-direction: row;
    gap: 15px;
    margin-top: 0;
  }

  .hero-section {
    position: relative;
    width: 100vw;
    height: 90vh;
    overflow: hidden;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .hero-images-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }



.hero-bg-image {
  content: url('../images/mercedes/merce1.webp');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85); /* ✅ Reset scale to original */
  height: 106vh;             /* ✅ Exact height of hero */
  width: auto;               /* ✅ Let width grow naturally */
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  background-color: transparent;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  will-change: transform;
}






  .hero-headline h1.main-title {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .cta-button {
    margin: 4px auto 0;
    font-size: 14px;
    padding: 10px 26px;
    border-radius: 30px;
    background-color: #1E3A8A;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    pointer-events: auto;
    z-index: 10;
  }

  .brand-card {
    flex: 0 0 25.5vw;
    max-width: 26vw;
    height: 80px;
    background-color: white;
    padding: 8px 6px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
  }

  .brand-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
  }

  @supports (-webkit-touch-callout: none) {
    .brand-card img {
      padding-right: 2px;
    }
  }

  .menu-bottom-grid-wrapper {
    display: none !important;
  }

  .amg-specs-wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 40px;
    justify-content: flex-start;
    padding: 0 20px;
    scroll-snap-type: x mandatory;
  }

  .amg-stat {
    min-width: 250px;
    scroll-snap-align: center;
  }

  .amg-divider {
    height: 100px;
    transform: rotate(20deg);
    width: 2px;
    margin: 0 20px;
  }

  .amg-stat h1 {
    font-size: 72px;
  }

  .footer-links-row {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .footer-payment-icons {
    gap: 20px;
    flex-wrap: wrap;
  }

  .fullscreen-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 80px);
    background: linear-gradient(to bottom, rgba(0, 30, 60, 0.95), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px 60px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-family: 'Poppins', sans-serif;
  }

  .fullscreen-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }

  .top-links {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 10px;
  }

  .dashboard-content {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .menu-bottom-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
  }

  .menu-column,
  .menu-column.center,
  .menu-column.right {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .scroll-indicator {
    position: absolute;
    top: 10px;
    font-size: 24px;
    color: #f4c10f;
    opacity: 0.8;
    animation: bounce 1.5s infinite;
  }

  .scroll-indicator.left {
    left: 10px;
  }

  .scroll-indicator.right {
    right: 10px;
  }

  @keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
  }

  .brand-carousel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  .brand-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    flex-direction: row;
    gap: 16px;
    padding: 10px 16px 20px;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .brand-cards {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-right: 16px;
    width: auto;
    min-width: max-content;
  }

  .brand-scroll-wrapper::after {
    display: none;
  }

  .arrow-controls {
    display: none !important;
  }

  .choose-brand-heading {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .contact-box {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }

  .map-box {
    max-width: 100%;
    height: 280px;
  }

  .contact-form {
    padding: 0 10px;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-hero p {
    font-size: 1rem;
    margin-top: 18px;
  }

  .contact-form-section h2 {
    font-size: 1.6rem;
  }

  .contact-numbers a {
    text-decoration: none;
    border-bottom: 1px solid #1a73e8;
    color: #1a73e8;
  }

  .contact-numbers a:hover {
    opacity: 0.8;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    border-radius: 12px;
    font-size: 22px;
  }

  .logo-box.cadillac img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 70px;
    padding: 10px 0;
  }

  body {
    overflow-x: hidden;
  }
}
