/* ============================================================
   SAYYAM DEALS ON WHEELS v2
   Black + Gold Minimalist Luxury · Glassmorphism · Animations
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --bg: #080808;
  --surface: #0e0e0e;
  --surface-2: #141414;
  --text: #f0f0f0;
  --text-muted: #666666;
  --text-body: #999999;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #9a7830;
  --white: #ffffff;
  --black: #000000;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(201, 168, 76, 0.12);
  --glass-blur: 16px;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --nav-h: 76px;
  --pad-v: clamp(80px, 10vw, 130px);
  --pad-h: clamp(24px, 5vw, 80px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --dur: 0.8s;
}

/* ── RESET ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 76px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: auto;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

strong {
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-h);
}



/* ── PAGE LOADER ─────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.loader-brand {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 2.8rem);
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  /* Fixes visual centering */
  color: var(--white);
  text-transform: uppercase;
  opacity: 0;
  animation: loaderTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  /* Fixes visual centering */
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: loaderTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

@keyframes loaderTextReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(15px) scale(0.95);
    text-shadow: none;
  }

  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0) scale(1);
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
  }
}

/* ── SHARED HELPERS ──────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.gold-word {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
}

.section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* ── GLASS CARDS ─────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  padding: clamp(24px, 3vw, 40px);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.glass-card:hover {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.25);
}

.glass-card-sm {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 2px;
}

/* ── SCROLL REVEAL SYSTEM ────────────────────────────────────── */
.reveal-up,
.reveal-fade,
.reveal-scale {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

.reveal-fade {
  transform: translateY(20px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-up.in-view,
.reveal-fade.in-view,
.reveal-scale.in-view {
  opacity: 1;
  transform: none;
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: border-color 0.4s ease;
}

#navbar.scrolled {
  border-bottom-color: rgba(201, 168, 76, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--pad-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: brightness(1.1);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--white);
}

.nav-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s var(--ease-out);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  right: 0;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-muted);
  transition: 0.35s var(--ease-out);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: var(--gold);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(4, 4, 4, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad-h);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 8px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 9vw, 5rem);
  font-weight: 300;
  color: var(--white);
  transition: color 0.3s;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.mobile-nav-link:hover {
  color: var(--white);
}

.mn-num {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.mobile-footer {
  position: absolute;
  bottom: 36px;
  left: var(--pad-h);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.06);
  transition: transform 8s ease;
  will-change: transform;
}

.hero.loaded .hero-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(8, 8, 8, 0.68) 50%,
      rgba(8, 8, 8, 0.95) 100%);
  z-index: 2;
}

/* Frosted glass blur overlay on hero bg */
.hero-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px) saturate(0.85);
  -webkit-backdrop-filter: blur(3px) saturate(0.85);
  z-index: 1;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  padding: var(--nav-h) 24px 0;
}

.hero-logo-img {
  width: clamp(72px, 14vw, 108px);
  height: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.5)) brightness(1.1);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.2rem;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.eyebrow-text {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  white-space: nowrap;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 6.5vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

.split-line {
  display: block;
  overflow: hidden;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(240, 208, 128, 0.7);
  letter-spacing: 0.06em;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.4rem;
  padding: 14px 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.05);
  backdrop-filter: blur(8px);
  transition: background 0.4s, border-color 0.4s, color 0.4s;
}

.btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

.hero-scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
  position: relative;
  overflow: hidden;
  padding: var(--pad-v) 0;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(8, 8, 8, 0.96) 45%,
      rgba(8, 8, 8, 0.85) 70%,
      rgba(8, 8, 8, 0.6) 100%);
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-label-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.vertical-label .section-label {
  writing-mode: horizontal-tb;
}

.about-us-label {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--gold);
}

.about-accent-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.18;
  filter: grayscale(1) brightness(3);
}

.about-text-col .glass-card {
  position: relative;
}

.about-body p {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.gold-name {
  color: var(--gold);
  font-weight: 400;
}

/* ── CAR MARQUEE (Infinite CSS Band) ───────────────────── */
.brands {
  padding: var(--pad-v) 0;
  background: var(--surface);
  overflow: hidden;
}

.brands-header {
  margin-bottom: 2.5rem;
}

/* Outer wrapper — clips the scrolling band */
.car-marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Soft fade edges */
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(40px, 8vw, 100px);
  z-index: 2;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

/* The scrolling track — all items inline */
.car-marquee-track {
  display: flex;
  width: max-content;
  animation: carMarquee 32s linear infinite;
  will-change: transform;
}

/* Pause on hover for accessibility */
.car-marquee-outer:hover .car-marquee-track {
  animation-play-state: running;
  /* keep running — user asked no pauses */
}

@keyframes carMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* half = one full set of 8 items */
}

/* Each card */
.car-marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  /* card width — shows ~3 on desktop, ~2 on tablet, ~1.2 on mobile */
  width: clamp(220px, 30vw, 340px);
  flex-shrink: 0;
  padding: 0 clamp(8px, 1.5vw, 20px);
}

/* Shared image wrap (reused from old slider) */
.car-slide-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.car-slide-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.95) contrast(1.05);
  transition: transform 0.6s ease;
}

.car-marquee-item:hover .car-slide-img-wrap img {
  transform: scale(1.04);
}

/* Brand label below image */
.car-marquee-item .car-brand-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1rem 0 0.6rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  width: 100%;
  text-align: center;
}


/* ── WHY US ──────────────────────────────────────────────────── */
.why-us {
  position: relative;
  overflow: hidden;
  padding: var(--pad-v) 0;
}

.why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.92);
}

.why-inner {
  position: relative;
  z-index: 1;
}

.why-header {
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5px;
  background: rgba(201, 168, 76, 0.08);
}

.why-card {
  background: rgba(8, 8, 8, 0.7);
  border: none;
  border-radius: 0;
  padding: clamp(28px, 3.5vw, 44px);
}

.why-card:hover {
  background: rgba(201, 168, 76, 0.03);
}

.why-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 1.2rem;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.why-card p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact {
  position: relative;
  overflow: hidden;
  padding: var(--pad-v) 0;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.85));
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px;
  background: rgba(201, 168, 76, 0.08);
  margin: 2rem 0 3rem;
}

.contact-card {
  background: rgba(8, 8, 8, 0.75);
  border: none;
  border-radius: 0;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0;
}

.contact-card:hover {
  background: rgba(201, 168, 76, 0.04);
}

.contact-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--white);
  transition: color 0.3s;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.long-email {
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: clamp(0.55rem, 2vw, 0.82rem);
  letter-spacing: 0;
}

a.contact-value:hover {
  color: var(--gold);
}

.coming-soon {
  color: var(--text-muted);
  font-style: italic;
  font-size: 1rem;
}

.contact-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: opacity 0.3s;
  margin-top: 4px;
}

.contact-wa-link:hover {
  opacity: 0.7;
}

.contact-quote {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.5;
  color: rgba(201, 168, 76, 0.08);
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.closing-main {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.8rem;
  position: relative;
}

.closing-sub {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 48px 0;
}

.footer-top {
  position: relative;
  height: 1px;
  background: rgba(201, 168, 76, 0.1);
}

.footer-gold-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 120px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding-top: 40px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: brightness(0.9);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  color: var(--text);
  font-weight: 400;
}

.footer-sub {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: #333;
  letter-spacing: 0.08em;
}

.footer-built-by {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: #2a2a2a;
  letter-spacing: 0.1em;
  margin-top: -0.4rem;
}

.footer-built-name {
  color: var(--gold);
  opacity: 0.6;
  font-weight: 400;
}

/* ── WHATSAPP POPUP (Minimal) ────────────────────────────────── */
.wa-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.wa-popup.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.wa-popup.hide {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.wa-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--surface-2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: border-color 0.3s;
}

.wa-close:hover {
  border-color: var(--gold);
}

.wa-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 11px 18px;
  white-space: nowrap;
  transition: border-color 0.3s;
}

.wa-inner:hover {
  border-color: rgba(201, 168, 76, 0.45);
}

/* WhatsApp logo icon in popup */
.wa-logo-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 4px rgba(37, 211, 102, 0.35));
}

.wa-text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text);
  font-weight: 300;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 450px) {
  .contact-card {
    padding: 1.5rem 1rem;
    gap: 0.8rem;
  }

  .contact-icon-wrap {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 768px) {
  .about-inner {
    grid-template-columns: 80px 1fr;
    align-items: start;
  }

  .about-label-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 0.5rem;
  }

  .vertical-label .section-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 0.3em;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }
}

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .car-marquee-track {
    animation: none;
  }
}