@import url("mc-icons.css");

/* ════════════════════════════════════════════════════════════
   Auto Hookup — Global Stylesheet (mc-global.css)
   Vibe: Premium Luxury Dark Theme (Black & Charcoal + Gold Accents)
   ════════════════════════════════════════════════════════════ */

:root {
  --black: #000000;
  --charcoal: #0B0C10;
  --charcoal2: #1F2833;
  --gold: #ff6b00;
  --gold-dim: rgba(255, 107, 0, 0.15);
  --gold-hover: #ff5100;
  --accent: #ff6b00;
  --accent-dim: rgba(255, 107, 0, 0.12);
  --blue: var(--accent);
  --blue-dim: var(--accent-dim);
  --white: #ffffff;
  --gray: #C5C6C7;
  --gray2: #8A8B8C;
  --card: rgba(255, 255, 255, 0.035);
  --card-border: rgba(255, 255, 255, 0.07);
  --card-hover: rgba(255, 255, 255, 0.06);
  --glass: rgba(11, 12, 16, 0.72);
  
  /* Responsive Typography & System Defaults */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 3rem);
  --text-4xl: clamp(2.25rem, 1.85rem + 2vw, 4rem);
  --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 5rem);
  
  /* Touch Targets */
  --touch-target: 44px;
}

/* ── 0  PREMIUM SCROLLBAR ── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--charcoal);
}
::-webkit-scrollbar-thumb {
  background: var(--card-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray2);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--card-border) var(--charcoal);
}

/* Global Touch Targets & Accessibility Focus */
button, 
select, 
input[type="text"], 
input[type="email"], 
input[type="password"], 
input[type="number"], 
input[type="tel"] {
  min-height: var(--touch-target, 44px);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── 1  SPLASH LOADER (Dark Redesign) ── */
#mcLoader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
  overflow: hidden;
}

#mcLoader.mc-out {
  opacity: 0;
  visibility: hidden;
}

#mcLoader.mc-gone {
  display: none;
}

/* Gold glow orb */
.mcL-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 65%);
  animation: mcGlowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes mcGlowPulse {

  0%,
  100% {
    transform: scale(.8);
    opacity: .4;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Scan line */
.mcL-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.25) 35%, rgba(255, 255, 255, 0.1) 65%, transparent);
  animation: mcScanMove 2.8s linear infinite;
  pointer-events: none;
}

@keyframes mcScanMove {
  0% {
    top: -1px;
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  96% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Logo in loader */
.mcL-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  animation: mcLogoReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes mcLogoReveal {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mcL-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  animation: mcFadeUp 0.6s ease 0.15s both;
}

@keyframes mcFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Spinning ring */
.mcL-ring {
  position: relative;
  width: 68px;
  height: 68px;
  margin-bottom: 26px;
}

.mcL-ring-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mcL-ring-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: #ff6b00;
  border-right-color: rgba(255, 107, 0, 0.35);
  animation: mcSpin 1.1s cubic-bezier(.6, .2, .4, 1) infinite;
}

@keyframes mcSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Centre logo icon pulse */
.mcL-logo-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: url("../images/logo.png") no-repeat center/contain;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  animation: mcLogoIconPulse 1.5s ease-in-out infinite;
}

@keyframes mcLogoIconPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
    filter: drop-shadow(0 2px 10px rgba(255, 107, 0, 0.5)) brightness(0) invert(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.65;
    filter: drop-shadow(0 0px 2px rgba(255, 107, 0, 0.1)) brightness(0) invert(1);
  }
}

/* Status text */
.mcL-text {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  animation: mcTextBlink 2.2s ease-in-out infinite;
}

@keyframes mcTextBlink {

  0%,
  100% {
    opacity: .2;
  }

  50% {
    opacity: .9;
  }
}

/* ── 2  CUSTOM CURSOR ── */
#mcDot {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: width .12s, height .12s, background .12s, opacity .2s;
}

#mcRing {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(255, 107, 0, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99996;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: width .2s, height .2s, border-color .2s, opacity .15s;
}

#mcDot.mc-link {
  width: 4px;
  height: 4px;
  background: var(--gold);
}

#mcRing.mc-link {
  width: 44px;
  height: 44px;
  border-color: rgba(255, 107, 0, 0.75);
}

#mcDot.mc-press {
  transform: translate(-50%, -50%) scale(.5);
}

@media (hover: none) {

  #mcDot,
  #mcRing {
    display: none !important;
  }
}

/* ── 3  WHATSAPP FLOATING BUTTON ── */
#mcWa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

#mcWaBtn {
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: transform .3s, box-shadow .3s;
  flex-shrink: 0;
  animation: mcWaPop .5s .8s ease both;
}

#mcWaBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .6);
}

@keyframes mcWaPop {
  from {
    transform: scale(.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

#mcWaLabel {
  background: rgba(11, 12, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  font-family: inherit;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#mcWa:hover #mcWaLabel {
  opacity: 1;
  transform: translateX(0);
}

/* ── 4  SCROLL-TO-TOP BUTTON ── */
#mcTop {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9989;
  width: 46px;
  height: 46px;
  background: rgba(11, 12, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity .35s, transform .35s, border-color .25s, background .25s;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#mcTop.mc-vis {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#mcTop:hover {
  border-color: var(--gold);
  background: rgba(11, 12, 16, 0.95);
}

#mcTop:hover svg {
  transform: translateY(-2px);
  stroke: var(--gold);
}

#mcTop svg {
  transition: transform .2s, stroke .2s;
}

/* ── 5  MOBILE RESPONSIVE ADJUSTMENTS ── */

/* ─ All pages: reserve bottom space so content never hides behind the fixed pill nav ─ */
@media (max-width: 768px) {
  body {
    padding-bottom: 0;
  }

  /* Push floating buttons above the pill nav */
  #mcWa {
    bottom: 24px;
    right: 24px;
  }

  #mcTop {
    bottom: 24px;
    left: 24px;
  }

  /* filter FAB: standard bottom position */
  .filter-fab {
    bottom: 24px !important;
  }

  /* Footer: standard bottom room */
  footer,
  footer.mc-footer-premium {
    padding-bottom: 40px !important;
  }

  /* Global section padding tightening */
  section,
  .section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Hero sections: reduce oversized padding on mobile */
  .sv-hero {
    min-height: 55vh !important;
    padding: 110px 20px 60px !important;
  }

  /* Reduce large headings for narrow screens */
  .sv-hero-title {
    font-size: clamp(36px, 9vw, 60px) !important;
    letter-spacing: -1px !important;
    margin: 16px 0 20px !important;
  }

  .sv-hero-sub {
    font-size: 15px !important;
    margin-bottom: 32px !important;
  }

  /* Hero pills: smaller on mobile */
  .hero-pill {
    font-size: 12px !important;
    padding: 7px 12px !important;
  }

  /* Service drawer: full-width on small screens */
  .service-drawer {
    width: 100% !important;
  }

  /* Services grid: always 1 column on mobile */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer: collapse to single column on small screens */
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer-brand {
    grid-column: 1 !important;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-legal {
    gap: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  #mcCookie {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .mcCk-btns {
    width: 100%;
  }

  .mcCk-yes,
  .mcCk-no {
    flex: 1;
    text-align: center;
  }
}

/* ── 6  FLOATING GLASS PILL NAVBAR (Consolidated & Premium Dark) ── */
#mcNav {
  position: fixed;
  top: 18px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  height: auto;
  width: auto;
  max-width: calc(100% - 32px);
  background: rgba(11, 12, 16, 0.72);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 4px 4px 4px 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: box-shadow .4s ease, border-color .4s ease, background .35s ease;
  white-space: nowrap;
}

#mcNav.mc-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, .6), 0 4px 15px rgba(0, 0, 0, .3);
  border-color: rgba(255, 107, 0, 0.2);
  background: rgba(0, 0, 0, 0.85);
}

/* Logo styling */
.nav-logo,
.mobile-menu-logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

#mcNav .nav-logo {
  padding-right: 16px;
  margin-right: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  border: none !important;
  color: #000 !important;
  font-weight: 900;
  font-size: 14px;
}

/* Auto Hookup brand logo — white-bg PNG on dark site */
/* mix-blend-mode: screen makes white bg transparent on dark surfaces
   while preserving the orange and gray logo colors */
.mc-brand-logo {
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: screen;
}

.mc-brand-logo--nav {
  height: 48px;
  max-width: 200px;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen; /* white bg becomes invisible on dark navbar */
}

.mc-brand-logo--footer {
  height: auto;
  max-width: 400px;
  width: 100%;
  display: block;
  margin-top: -55px; /* Offset whitespace margin in the image asset */
  margin-bottom: -25px;
  mix-blend-mode: screen; /* white bg becomes invisible on dark footer */
}

.footer-brand p {
  margin-top: -55px !important; /* Pull paragraph up closer to the logo */
}

/* Global Footer Sizing Reductions */
footer, footer.mc-footer-premium {
  padding: 50px 40px 30px !important;
}

.footer-top {
  padding-bottom: 36px !important;
  margin-bottom: 24px !important;
}

.mc-brand-logo--loader {
  height: auto;
  max-width: min(300px, 80vw);
  width: 100%;
  mix-blend-mode: screen; /* white bg transparent on dark loader overlay */
  filter: drop-shadow(0 4px 24px rgba(255,107,0,0.35));
  animation: mcLogoPulse 2.4s ease-in-out infinite;
}

@keyframes mcLogoPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.92;
  }
}

.mobile-menu-logo .mc-brand-logo--nav {
  height: 68px;
  max-width: 280px;
  mix-blend-mode: screen;
}

#mcNav .nav-logo:has(.mc-brand-logo) {
  gap: 0;
  font-size: 0;
  line-height: 0;
  padding-right: 12px;
}

.nav-logo-text {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.nav-logo-motion {
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.nav-logo-car {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* Links */
#mcNav .nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 2;
}

#mcNav .nav-links li {
  position: relative;
}

#mcNav .nav-item-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  transition: color 0.3s ease;
  background: transparent;
  z-index: 2;
}

#mcNav .nav-item-link:hover {
  color: var(--white);
}

#mcNav .nav-item-link.active {
  color: var(--gold);
}

/* Hide icons on desktop */
#mcNav .nav-item-link .nav-icon {
  display: none;
}

#mcNav .nav-item-link .nav-text {
  display: inline;
}

/* Home link is mobile-only, Blog link is desktop-only */
.nav-home-only {
  display: none !important;
}

/* Sliding active lamp background and neon glow */
.nav-lamp {
  position: absolute;
  background: rgba(255, 107, 0, 0.08); /* light fill behind active tab */
  border-radius: 100px;
  z-index: 1;
  pointer-events: none;
  transition: left 0.35s cubic-bezier(0.25, 1, 0.5, 1), top 0.35s cubic-bezier(0.25, 1, 0.5, 1), width 0.35s cubic-bezier(0.25, 1, 0.5, 1), height 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  opacity: 0;
}

/* Neon glow bar */
.nav-lamp-glow-bar {
  position: absolute;
  top: -4px; /* sits right at the top edge of active tab */
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 100px;
}

/* Glow blurs */
.nav-lamp-blur-1 {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 10px;
  background: rgba(255, 107, 0, 0.35);
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.nav-lamp-blur-2 {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 6px;
  background: rgba(255, 107, 0, 0.25);
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

/* Right navigation elements */
#mcNav .nav-right {
  display: flex;
  align-items: center;
  gap: 3px;
  padding-left: 8px;
  margin-left: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

#mcNav .nav-signin {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 100px;
  transition: color .2s, background .2s;
  background: transparent;
  border: none;
  cursor: pointer;
}

#mcNav .nav-signin:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

#mcNav .nav-signin.active {
  color: var(--gold);
}

/* Premium Gold Pill CTA */
#mcNav .nav-cta {
  background: var(--gold);
  color: #000;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s;
}

#mcNav .nav-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.4);
}

/* Mobile Hamburger Menu (hidden on mobile since bottom navigation replaces it) */
#mcNav .nav-hamburger {
  display: none;
}

/* Breakpoints for Navigation */
@media (max-width: 1060px) {
  #mcNav .nav-signin {
    display: none;
  }
}

@media (max-width: 768px) {
  nav#mcNav {
    position: fixed !important;
    top: 18px !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    border-radius: 100px !important;
    padding: 6px 16px 6px 14px !important;
    background: rgba(11, 12, 16, 0.8) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    height: auto !important;
  }

  /* Show Logo & Hamburger on Mobile in a tight capsule layout */
  #mcNav .nav-logo {
    display: flex !important;
    padding-right: 14px !important;
    margin-right: 12px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  #mcNav .mc-brand-logo--nav {
    height: 72px !important;
    max-width: 280px !important;
    margin-top: -6px;
    margin-bottom: -6px;
  }

  #mcNav .nav-logo:has(.mc-brand-logo) {
    padding-right: 14px !important;
  }

  #mcNav .nav-hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-end !important;
    gap: 6px !important;
    width: var(--touch-target, 44px) !important;
    height: var(--touch-target, 44px) !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 8px !important;
    z-index: 10002 !important;
  }

  #mcNav .nav-hamburger span {
    display: block !important;
    height: 2px !important;
    background: var(--white) !important;
    border-radius: 4px !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s ease, opacity 0.3s ease !important;
  }

  /* Modern 2-line styling: top is 22px, bottom is 15px */
  #mcNav .nav-hamburger span:nth-child(1) {
    width: 22px !important;
  }
  #mcNav .nav-hamburger span:nth-child(2) {
    width: 15px !important;
  }
  #mcNav .nav-hamburger span:nth-child(3) {
    display: none !important;
  }

  /* Morphing transition into X when nav-hamburger is open */
  #mcNav .nav-hamburger.open span:nth-child(1) {
    width: 22px !important;
    transform: translateY(4px) rotate(45deg) !important;
  }
  #mcNav .nav-hamburger.open span:nth-child(2) {
    width: 22px !important;
    transform: translateY(-4px) rotate(-45deg) !important;
  }

  /* Hide Desktop links, CTA buttons, and indicators on Mobile */
  #mcNav .nav-links,
  #mcNav .nav-right,
  #mcNav .nav-lamp {
    display: none !important;
  }
}


/* ── 7  COOKIE CONSENT BANNER ── */
#mcCookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(11, 12, 16, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

#mcCookie.mc-show {
  transform: translateY(0);
}

.mcCk-text {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.5;
  max-width: 850px;
  margin: 0;
}

.mcCk-text strong {
  color: var(--white);
}

.mcCk-text a {
  color: var(--gold);
  text-decoration: underline;
}

.mcCk-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.mcCk-yes {
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.mcCk-yes:hover {
  background: var(--gold-hover);
}

.mcCk-no {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.mcCk-no:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* ── 8  MOBILE NAVIGATION OVERLAY ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(11, 12, 16, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px; /* space below top floating header */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* Premium radial backdrop brand glow */
.mobile-menu::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 70%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: none; /* hidden since floating top navbar handles logo + active X button */
}

.mobile-close {
  display: none !important; /* hidden since hamburger toggle morphs into close X */
}

.mobile-links {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-links li {
  overflow: hidden;
}

.mobile-links li a {
  color: var(--gray);
  font-size: 26px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: -0.5px;
}

/* Micro-animation: slide and glow active/hover links */
.mobile-links li a:hover,
.mobile-links li a.active {
  color: var(--gold);
  transform: translateX(6px);
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

.mobile-footer-links {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.mobile-footer-links a {
  color: var(--gray2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-footer-links a:hover {
  color: var(--white);
}

/* ── 8  NAV UNIFICATION OVERRIDES ── */
@media (min-width: 769px) {
  nav#mcNav {
    top: 18px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    height: auto !important;
    border-bottom: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 6px 6px 6px 16px !important;
  }

  nav#mcNav.mc-scrolled {
    transform: translateX(-50%) !important;
  }
}

/* ── 9  NAV TOOLS (Saved + Compare) ── */
#mcNav .nav-tools {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 2px;
}

#mcNav .nav-tool {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

#mcNav .nav-tool:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

#mcNav .nav-tool svg {
  display: block;
}

.nav-tool-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  border-radius: 100px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-tool-badge.mc-show {
  display: flex;
}

.mobile-nav-tools {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--card-border);
}

.mobile-nav-tool {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s;
}

.mobile-nav-tool:hover {
  border-color: rgba(255, 107, 0, 0.35);
  color: var(--gold);
}

.mobile-nav-tool .nav-tool-badge {
  position: static;
  display: none;
}

.mobile-nav-tool .nav-tool-badge.mc-show {
  display: flex;
}

/* ── 10  SOCIAL ICON BUTTONS (SVG) ── */
.social-btn svg,
.footer-social .social-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 11  Showroom FILTER DRAWER ── */
.filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.filter-overlay.mc-open {
  opacity: 1;
  visibility: visible;
}

.filter-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.35);
}

.filter-fab-count {
  display: none;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #000;
  color: var(--gold);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
}

.filter-fab-count.mc-show {
  display: inline-flex;
}

@media (max-width: 900px) {
  .filter-fab {
    display: flex;
  }

  .Showroom-layout .sidebar {
    position: fixed !important;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 88vw) !important;
    z-index: 1200;
    margin: 0 !important;
    padding: 88px 16px 24px !important;
    background: var(--charcoal);
    border-right: 1px solid var(--card-border);
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.32s ease;
    display: block !important;
  }

  .Showroom-layout .sidebar.mc-open {
    transform: translateX(0);
  }

  .filter-drawer-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
  }

  .filter-drawer-actions button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: none;
  }

  .filter-apply-btn {
    background: var(--gold);
    color: #000;
  }

  .filter-reset-btn {
    background: transparent;
    color: var(--gray);
    border: 1px solid var(--card-border) !important;
  }
}

@media (min-width: 901px) {
  .filter-drawer-actions {
    display: none;
  }
}

/* ── 12  EMPTY STATES ── */
.mc-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 72px 24px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
}

.mc-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(255, 107, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.mc-empty-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mc-empty-sub {
  color: var(--gray);
  font-size: 15px;
  max-width: 420px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.mc-empty-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 13  CAR DETAIL SCORE RING ── */
.score-ring-wrap {
  position: relative;
  width: 72px;
  height: 72px;
}

.score-ring-wrap .score-ring {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
}

.score-ring-wrap .score-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 4;
}

.score-ring-wrap .score-ring-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}

.score-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-ring-center .score-num {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.score-ring-center .score-lbl {
  font-size: 8px;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ── 14  GALLERY LIGHTBOX ── */
.mc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mc-lightbox.mc-open {
  opacity: 1;
  visibility: visible;
}

.mc-lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.mc-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: rgba(11, 12, 16, 0.8);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main img {
  cursor: zoom-in;
}

/* ── 15  SEARCH TAB BANNER ── */
.mc-search-banner {
  display: none;
  max-width: 1280px;
  margin: 0 auto 20px;
  padding: 14px 18px;
  background: var(--gold-dim);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 10px;
  font-size: 14px;
  color: var(--gray);
}

.mc-search-banner.mc-show {
  display: block;
}

.mc-search-banner strong {
  color: var(--gold);
}/* --- NEW SIMPLE FOOTER --- */
.footer-simple {
  position: relative;
  background: #050505;
  color: #fff;
  padding: 80px 40px 40px;
  overflow: hidden;
  font-family: 'Inter', system-ui, sans-serif;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25vw;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.footer-simple-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-simple-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-simple-col h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-simple-col p {
  color: #888;
  font-size: 15px;
  line-height: 1.6;
}

.footer-col-title {
  color: #555;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-item:hover {
  color: #fff;
}

.footer-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.footer-simple-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: #555;
}

.footer-simple-legal {
  display: flex;
  gap: 24px;
}

.footer-simple-legal a {
  color: #555;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-simple-legal a:hover {
  color: #aaa;
}

@media (max-width: 900px) {
  .footer-simple-cols {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-simple-bottom {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: flex-start;
  }
}
