/* ================================================================
   DEALER CONNECTION TRADING LTD — site.css
   Single unified stylesheet. Replaces: styles.css, index.css,
   services.css, contact.css, menu.css
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── TOKENS ───────────────────────────────────────────────────── */
:root {
  --bg:           #080c10;
  --bg-2:         #0d1219;
  --bg-3:         #111820;
  --bg-card:      #0f1823;
  --surface:      #162030;
  --surface-2:    #1c2a3a;
  --primary:      #c9a84c;
  --primary-glow: rgba(201,168,76,0.18);
  --text-1:       #f0ece4;
  --text-2:       #9aa5b4;
  --text-3:       #556677;
  --border:       rgba(201,168,76,0.14);
  --border-soft:  rgba(255,255,255,0.07);
  --ff-display:   'Cormorant Garamond', serif;
  --ff-sans:      'DM Sans', sans-serif;
  --med:          0.35s cubic-bezier(0.4,0,0.2,1);
  --slow:         0.7s  cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--text-1); font-family: var(--ff-sans); font-size: 15px; line-height: 1.65; overflow-x: hidden; }
a     { color: inherit; text-decoration: none; }
img   { display: block; max-width: 100%; }
ul    { list-style: none; }
input, textarea, select { font-family: var(--ff-sans); }

/* ── ACCESSIBILITY ────────────────────────────────────────────── */
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible,
select:focus-visible { outline: 1px solid var(--primary); outline-offset: 4px; }

/* ── NAVIGATION ───────────────────────────────────────────────── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 52px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--med), padding var(--med), border-color var(--med);
}
nav.scrolled {
  padding: 14px 52px;
  background: rgba(8,12,16,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--ff-display); font-size: 18px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-1);
  line-height: 1.4;
  text-decoration: none;
  transition: opacity var(--med);
}
.nav-logo:hover { opacity: 0.9; }
.nav-logo span {
  color: var(--primary); font-style: italic; font-weight: 500;
  letter-spacing: 0.08em;
}
.nav-links { display: flex; gap: 46px; }
.nav-links li a {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-2); position: relative; transition: color var(--med);
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 1px; background: var(--primary); transition: width var(--med);
}
.nav-links li a:hover, .nav-links li a.active { color: var(--text-1); }
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--text-1); transition: transform var(--med), opacity var(--med); }

/* Ensure the Navbar doesn't collapse */
.navbar {
    position: relative;
    z-index: 1000;
    height: 80px;
    background: #0b111a; /* solid dark background so it's always visible */
}

@media screen and (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

    /* FORCE BUTTON TO FRONT */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 45px;
        height: 45px;
        z-index: 99999 !important; /* Higher than the engine image */
        cursor: pointer;
        background: transparent;
        border: none;
        pointer-events: auto !important; /* Force clickability */
    }

    .menu-toggle .bar {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #c5a059 !important; /* Gold bars */
        border-radius: 2px;
    }

    /* The Menu itself */
    .nav-links {
        display: none; 
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0b111a;
        flex-direction: column;
        padding: 20px 0;
        z-index: 99998;
    }

    .nav-links.active {
        display: flex !important;
    }
}

/* ── SHARED TYPOGRAPHY ────────────────────────────────────────── */
.section-label { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--primary); display: inline-block; margin-bottom: 14px; }
.section-title { font-family: var(--ff-display); font-size: 54px; font-weight: 300; color: var(--text-1); line-height: 1.1; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--primary); }
.section-intro { font-size: 15px; color: var(--text-2); line-height: 1.8; max-width: 560px; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* ── MOBILE MENU BUTTON ──────────────────────────────────────── */

.menu-toggle {
    display: none; /* Hidden on desktop */
    position: relative; /* Essential for z-index to work */
    z-index: 9999; /* Forces it to the front */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px; /* Makes the "hit area" larger for thumbs */
}



.menu-toggle .bar {
    height: 2px;
    width: 100%;
    background-color: #ffffff; /* Make sure this isn't black or it will vanish! */
    transition: all 0.3s ease;
}

/* SHOW ON MOBILE */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Shows the button on phones/tablets */
    }

    .nav-links {
        display: none; /* Hide the full list until the button is clicked */
    }
}

/* Base Button Style */
.btn {
    display: inline-block;
    padding: 15px 32px;
    font-family: var(--ff-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none; /* Removes underline from links */
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-align: center;
    border: 1px solid transparent; /* Keeps sizing consistent */
}

/* The Gold Button (Left) */
.btn-solid {
    background-color: var(--primary);
    color: #0b111a !important; /* Forces text to be dark */
    border-color: var(--primary);
}

.btn-solid:hover {
    background-color: #dcb66f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* The Outline Button (Right) */
.btn-outline {
    background-color: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
}
/* Thin white border for secondary action buttons */
#hero .btn:not(.btn-solid), 
#locations .btn:not(.btn-solid), 
#reviews .btn {
    border: 1px solid rgba(255, 255, 255, 0.4); /* Thin, slightly transparent white */
    background: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Hover effect to make them feel interactive */
#hero .btn:not(.btn-solid):hover, 
#locations .btn:not(.btn-solid):hover, 
#reviews .btn:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ── REVEAL ANIMATIONS ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── UTILITY ──────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ── FINAL UPGRADED FOOTER ────────────────────────────────── */
.main-footer {
    background: #070b11;
    color: #ffffff;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px;
}

.main-footer h4 {
    color: #c5a059;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-nav a:hover {
    color: #c5a059;
    padding-left: 5px;
}

.location-block p {
    font-size: 13px;
    line-height: 1.5;
    color: #a0a0a0;
}

.location-block strong {
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.3s, background 0.3s;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding: 20px 5%;
    border-top: 1px solid rgba(59, 63, 68, 0.301);
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
}

/* Responsive Edges */
@media screen and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 650px) {
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 0 10%;
    }
    .main-footer {
        text-align: center;
    }
    .footer-brand p {
        margin: 15px auto;
    }
}
/* ================================================================
   INDEX — PORSCHE STYLE HERO
   ================================================================ */
#hero { 
  position: relative; 
  width: 100%; 
  height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden; 
  background-color: #0b111a; /* Fallback color */
}

/* The Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Darker cinematic overlay */
.hero-overlay { 
  position: absolute; 
  inset: 0; 
  z-index: 1; 
  background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%); 
}

/* Content Container with Glass Effect */
.hero-content { 
  position: relative; 
  z-index: 3; 
  text-align: center; 
  padding: 60px; 
  max-width: 900px;
  background: rgba(11, 17, 26, 0.3); /* Transparent dark tint */
  backdrop-filter: blur(8px); /* The "Porsche" glass blur */
  border: 1px solid rgba(197, 160, 89, 0.1); /* Very subtle gold border */
  border-radius: 4px;
}

.hero-eyebrow { 
  font-size: 11px; 
  letter-spacing: 0.5em; 
  text-transform: uppercase; 
  color: var(--primary); 
  display: block; 
  margin-bottom: 20px; 
  font-weight: 600;
}

.hero-title { 
  font-family: var(--ff-display); 
  font-size: clamp(48px, 8vw, 95px); 
  font-weight: 700; 
  line-height: 1; 
  letter-spacing: 0.05em; /* Spaced out for luxury feel */
  color: var(--text-1); 
  margin-bottom: 20px; 
  text-transform: uppercase;
}

.hero-title em { 
  font-style: normal; 
  color: var(--primary); 
  display: block; 
  font-weight: 300; 
  letter-spacing: 0.2em;
}

/* The Gold Divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin: 25px auto;
}

.hero-sub { 
  font-size: 14px; 
  letter-spacing: 0.1em; 
  color: var(--text-2); 
  margin: 0 auto 40px; 
  max-width: 500px; 
  line-height: 1.8; 
  text-transform: uppercase;
}

.hero-ctas { 
  display: flex; 
  gap: 20px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

/* Scroll Hint Adjustment */
.scroll-hint {
  position: absolute; 
  bottom: 40px; 
  left: 50%; 
  transform: translateX(-50%); 
  z-index: 4;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 12px;
  font-size: 10px; 
  letter-spacing: 0.4em; 
  text-transform: uppercase; 
  color: #fff; 
  opacity: 0.5;
}

.scroll-hint span {
  display: block; 
  width: 1px; 
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
/* ================================================================
   INDEX — LOCATIONS
   ================================================================ */
#locations { padding: 100px 24px; background: var(--bg-3); }
.locations-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 36px; }

.location-card {
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 4px; padding: 44px;
  transition: border-color var(--med), box-shadow var(--med);
}
.location-card:hover { border-color: var(--border); box-shadow: 0 16px 60px rgba(0,0,0,0.5); }
.location-card h2 { font-family: var(--ff-display); font-size: 30px; font-weight: 300; margin-bottom: 10px; color: var(--text-1); }
.location-address { font-size: 13px; color: var(--text-3); margin-bottom: 24px; line-height: 1.7; letter-spacing: 0.04em; }
.map-embed { width: 100%; height: 280px; border-radius: 2px; overflow: hidden; margin-bottom: 22px; border: 1px solid var(--border-soft); }
.map-placeholder { width: 100%; height: 100%; background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 13px; letter-spacing: 0.1em; }
.location-phone, .location-hours { font-size: 13px; margin-bottom: 8px; color: var(--text-2); letter-spacing: 0.03em; }
.location-card .btn { margin-top: 24px; width: 100%; }



/* ================================================================
   INDEX — REVIEWS (3D COVERFLOW)
   ================================================================ */
#reviews { background: var(--bg-2); padding: 100px 0 120px; overflow: hidden; position: relative; }
#reviews::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 68%);
  pointer-events: none;
}

.reviews-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.reviews-header .section-title { font-size: 52px; }
.reviews-header::after { content: ''; display: block; width: 44px; height: 1px; background: var(--primary); margin: 18px auto 0; opacity: 0.7; }

.reviews-loading, .reviews-error { text-align: center; padding: 40px; color: var(--text-3); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.reviews-error { color: #c0392b; }

.reviews-swiper {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0 80px;
  overflow: hidden;
}

.reviews-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  transform: scale(0.88);
  filter: brightness(0.35) saturate(0.2);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.reviews-swiper .swiper-slide-active {
  transform: scale(1);
  filter: brightness(1) saturate(1);
}

.review-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 36px 36px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.review-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transition: width 0.6s ease;
}

.swiper-slide-active .review-card {
  border-color: rgba(201,168,76,0.5);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.15),
    0 0 50px rgba(201,168,76,0.2),
    0 30px 70px rgba(0,0,0,0.8);
}

.swiper-slide-active .review-card::before { width: 100%; }

.review-header { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 18px; font-weight: 300; font-family: var(--ff-display); flex-shrink: 0; overflow: hidden; }
.reviewer-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.reviewer-info { flex: 1; min-width: 0; }
.reviewer-name { font-size: 13px; font-weight: 500; color: var(--text-1); letter-spacing: 0.06em; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-date { font-size: 11px; color: var(--text-3); letter-spacing: 0.08em; display: block; margin-top: 3px; }
.review-google-badge { flex-shrink: 0; }
.review-google-badge svg { width: 18px; height: 18px; }
.review-stars { display: flex; gap: 4px; }
.review-stars i { font-size: 12px; color: var(--primary); }
.review-stars i.empty { color: var(--surface-2); }
.review-divider { width: 100%; height: 1px; background: var(--border-soft); }
.review-text { font-family: var(--ff-display); font-size: 17px; font-weight: 300; font-style: italic; color: var(--text-2); line-height: 1.8; display: -webkit-box; -webkit-line-clamp: 5; line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; position: relative; padding-left: 22px; }
.review-text::before { content: '\201C'; position: absolute; top: -10px; left: -4px; font-size: 60px; line-height: 1; color: var(--primary); opacity: 0.25; font-family: var(--ff-display); font-style: normal; }

.reviews-swiper .swiper-button-next, .reviews-swiper .swiper-button-prev { width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--primary); top: calc(50% - 20px); transition: background var(--med), border-color var(--med), box-shadow var(--med); }
.reviews-swiper .swiper-button-next:hover, .reviews-swiper .swiper-button-prev:hover { background: var(--surface-2); border-color: var(--primary); box-shadow: 0 0 24px var(--primary-glow); }
.reviews-swiper .swiper-button-next::after, .reviews-swiper .swiper-button-prev::after { font-size: 12px; font-weight: 700; }
.reviews-swiper .swiper-pagination { bottom: 22px; }
.reviews-swiper .swiper-pagination-bullet { width: 6px; height: 6px; background: var(--text-3); opacity: 1; border-radius: 3px; transition: all 0.3s ease; }
.reviews-swiper .swiper-pagination-bullet-active { background: var(--primary); width: 28px; box-shadow: 0 0 12px var(--primary-glow); }

/* ================================================================
   PAGE HERO (services + contact)
   ================================================================ */
.page-hero { position: relative; width: 100%; height: 55vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.services-hero, .contact-hero { background: linear-gradient(135deg, #0a1a2a 0%, #0d2035 100%); }
.page-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%); }
.page-hero-content { position: relative; z-index: 3; text-align: center; padding: 0 40px; }
.page-title { font-family: var(--ff-display); font-size: clamp(44px, 7vw, 84px); font-weight: 300; color: var(--text-1); margin-bottom: 16px; letter-spacing: 0.02em; }
.page-intro { font-size: 14px; color: var(--text-2); letter-spacing: 0.08em; }

/* ================================================================
   SERVICES PAGE
   ================================================================ */
#services-main { background: var(--bg-3); }

.services-section { padding: 80px 24px; border-bottom: 1px solid var(--border-soft); max-width: 1200px; margin: 0 auto; }
.services-section:last-child { border-bottom: none; }

.section-header { margin-bottom: 52px; }
.section-header h2 { font-family: var(--ff-display); font-size: 38px; font-weight: 300; color: var(--text-1); margin-bottom: 8px; }
.section-header p { font-size: 13px; color: var(--text-3); letter-spacing: 0.04em; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

.service-card {
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 4px;
  padding: 30px; display: flex; flex-direction: column;
  transition: border-color var(--med), box-shadow var(--med), transform var(--med);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 1px; background: var(--primary);
  transition: width var(--slow);
}
.service-card:hover::before { width: 100%; }
.service-card:hover { border-color: var(--border); box-shadow: 0 8px 40px rgba(0,0,0,0.4); transform: translateY(-3px); }
.service-card h3 { font-family: var(--ff-display); font-size: 21px; font-weight: 400; color: var(--text-1); margin-bottom: 10px; }
.service-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; flex-grow: 1; }
.service-price { font-family: var(--ff-display); font-size: 20px; font-weight: 300; color: var(--primary); margin-bottom: 16px; letter-spacing: 0.02em; }
.service-card.call-to-inquire { border-color: var(--border); background: var(--surface); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
#contact-main { background: var(--bg-3); padding: 80px 24px; }

.contact-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }

/* Form section */
.contact-form-section h2,
.contact-info-section h2 {
  font-family: var(--ff-display); font-size: 32px; font-weight: 300;
  color: var(--text-1); margin-bottom: 36px; letter-spacing: 0.02em;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-3);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  color: var(--text-1);
  font-size: 14px;
  transition: border-color var(--med), box-shadow var(--med);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23556677' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: var(--bg-card); color: var(--text-1); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(201,168,76,0.08); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { margin-top: 8px; align-self: flex-start; }

/* Info section */
.contact-info-section {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 44px;
}

.location-info { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border-soft); }
.location-info:last-of-type { border-bottom: none; margin-bottom: 0; }
.location-info h3 { font-family: var(--ff-display); font-size: 20px; font-weight: 400; color: var(--primary); margin-bottom: 16px; }
.location-info p { font-size: 13px; color: var(--text-2); line-height: 1.9; margin-bottom: 10px; }
.location-info strong { color: var(--text-1); font-weight: 500; display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px; }
.location-info a { color: var(--primary); transition: opacity var(--med); }
.location-info a:hover { opacity: 0.75; }

/* FAQ */
.faq-info { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--border-soft); }
.faq-info h3 { font-family: var(--ff-display); font-size: 20px; font-weight: 400; color: var(--text-1); margin-bottom: 24px; }
.faq-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item h4 { font-size: 13px; font-weight: 500; color: var(--text-1); margin-bottom: 8px; letter-spacing: 0.04em; }
.faq-item p { font-size: 13px; color: var(--text-2); line-height: 1.75; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-section { padding: 36px; }
}

@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,12,16,0.98); padding: 24px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .section-title { font-size: 38px; }
  .btn { padding: 12px 28px; }

  #hero { height: 100svh; }
  .hero-title { font-size: clamp(42px, 8vw, 72px); }

  #locations { padding: 70px 16px; }
  .locations-container { grid-template-columns: 1fr; }
  .location-card { padding: 28px; }

  #reviews { padding: 70px 0 90px; }
  .reviews-swiper .swiper-slide { width: 300px; }
  .reviews-swiper .swiper-button-next, .reviews-swiper .swiper-button-prev { display: none; }

  .page-hero { height: 44vh; }
  .services-section { padding: 52px 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .section-header h2 { font-size: 28px; }

  #contact-main { padding: 60px 16px; }
  .contact-info-section { padding: 28px; }
}

#service-hub {
    padding: 60px 20px;
    background: #0b111a;
}

.hub-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hub-card {
    background: #161d26;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #c5a05933;
}

.hub-card:hover {
    transform: translateY(-10px);
    border-color: #c5a059;
    background: #1c2531;
}

.hub-card i {
    font-size: 3rem;
    color: #c5a059;
    margin-bottom: 20px;
}

.hub-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hub-card p {
    color: #aaa;
}

/* Styling for Service Detail Pages */
.page-header {
    padding: 100px 20px 60px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.page-header h1 { font-size: 3rem; margin-bottom: 10px; }
.page-header em { color: #c5a059; font-style: normal; }

.content-section { padding: 80px 20px; background: #05080c; }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-list { list-style: none; padding: 0; margin: 25px 0; }
.feature-list li { margin-bottom: 15px; font-size: 1.1rem; }
.feature-list i { color: #c5a059; margin-right: 10px; }

.placeholder-img {
    background: #161d26;
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c5a05933;
}

.placeholder-img i { font-size: 5rem; color: #c5a059; opacity: 0.3; }

.inventory-notice {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: #161d26;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .service-detail-grid { grid-template-columns: 1fr; text-align: center; }
    .page-header h1 { font-size: 2.2rem; }
}

/* Premium WhatsApp Section */
.whatsapp-container {
    margin-top: 30px;
    padding: 30px;
    background: #161d26; /* Matches your form background */
    border: 1px solid #c5a05933; /* Subtle gold border */
    border-radius: 4px;
    text-align: center;
}

.whatsapp-container p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #25D366; /* WhatsApp Green text only */
    border: 1px solid #25D366;
    font-family: 'Roboto', sans-serif;
}

/* ================================================================
   INVENTORY PAGE STYLES
   ================================================================ */

/* Inventory Grid - 2 columns */
.inv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .inv-grid {
        grid-template-columns: 1fr;
    }
}

/* Inventory Card */
.inv-card {
    border-radius: 12px;
    overflow: hidden;
    background: #161d26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    min-height: 450px;
}

.inv-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

/* Card Image */
.inv-card-img {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #0b111a;
    flex-shrink: 0;
}

.inv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.3s ease;
}

/* Image hover overlay */
.inv-card-img::after {
    content: 'Click for more info';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5a059;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.inv-card:hover .inv-card-img img {
    opacity: 0.3;
}

.inv-card:hover .inv-card-img::after {
    opacity: 1;
}

.inv-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #556677;
}

.inv-no-image i {
    font-size: 32px;
    margin-bottom: 8px;
}

.inv-no-image span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Status Badge */
.inv-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(12px);
}

.inv-status.available {
    background: rgba(34, 197, 94, 0.25);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.inv-status.sold {
    background: rgba(239, 68, 68, 0.25);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.inv-status.pending {
    background: rgba(251, 191, 36, 0.25);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

/* Featured Badge */
.inv-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(197, 160, 89, 0.25);
    color: #c5a059;
    border: 1px solid rgba(197, 160, 89, 0.4);
}

/* Card Body */
.inv-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    overflow: hidden;
}

.inv-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #f0ece4;
    margin: 0;
    line-height: 1.3;
}

.inv-card-desc {
    font-size: 36px;
    color: #9aa5b4;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
}

/* Hide description if empty */
.inv-card-desc:empty {
    display: none;
}

/* Specs */
.inv-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.inv-spec {
    font-size: 19px;
    color: #9aa5b4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inv-spec i {
    font-size: 24px;
    color: #c5a059;
}

/* Card Footer */
.inv-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.inv-price {
    font-size: 34px;
    font-weight: 700;
    color: #c5a059;
    font-family: var(--ff-display);
}

.inv-price-label {
    font-size: 18px;
    color: #556677;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.inv-enquire {
    padding: 16px 36px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: #c5a059;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.inv-enquire:hover {
    background: rgba(197, 160, 89, 0.25);
    border-color: #c5a059;
    transform: translateY(-2px);
}

/* Empty State */
.inv-empty {
    text-align: center;
    padding: 60px 20px;
    color: #556677;
}

.inv-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #c5a059;
    opacity: 0.5;
}

.inv-empty h3 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 300;
    color: #f0ece4;
    margin-bottom: 12px;
}

.inv-empty p {
    font-size: 14px;
    color: #9aa5b4;
    line-height: 1.6;
    margin-bottom: 24px;
}

.inv-empty .btn-group {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Filter Bar */
.inv-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inv-filter-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #556677;
}

.inv-filter {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: #9aa5b4;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inv-filter:hover {
    border-color: rgba(197, 160, 89, 0.4);
    color: #f0ece4;
}

.inv-filter.active {
    background: rgba(197, 160, 89, 0.2);
    border-color: #c5a059;
    color: #c5a059;
}

/* Results Bar */
.inv-results-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.inv-count-text {
    font-size: 12px;
    color: #9aa5b4;
}

/* Popup Modal */
.car-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.car-popup-overlay.active {
    display: flex;
}

.car-popup-card {
    background: #161d26;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.car-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #c5a059;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.car-popup-close:hover {
    background: rgba(197, 160, 89, 0.3);
    border-color: #c5a059;
}

.car-popup-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #0b111a;
    padding: 20px;
}

.car-popup-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #0b111a;
}

.car-popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #c5a059;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 5;
}

.car-popup-nav:hover {
    background: rgba(197, 160, 89, 0.4);
    border-color: #c5a059;
    transform: translateY(-50%) scale(1.1);
}

.car-popup-nav-prev {
    left: 16px;
}

.car-popup-nav-next {
    right: 16px;
}

.car-popup-image-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #c5a059;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 5;
}

.car-popup-content {
    padding: 32px;
}

.car-popup-status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.car-popup-status.available {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.car-popup-status.sold {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.car-popup-status.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.car-popup-title {
    font-size: 32px;
    font-weight: 700;
    color: #f0ece4;
    margin: 0 0 16px 0;
    font-family: var(--ff-display);
}

.car-popup-price {
    font-size: 36px;
    font-weight: 700;
    color: #c5a059;
    margin: 0 0 24px 0;
    font-family: var(--ff-display);
}

.car-popup-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.car-popup-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.car-popup-detail-label {
    font-size: 11px;
    color: #556677;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.car-popup-detail-value {
    font-size: 15px;
    color: #f0ece4;
    font-weight: 600;
}

.car-popup-description {
    color: #9aa5b4;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
}

.car-popup-cta {
    display: inline-block;
    padding: 16px 36px;
    background: #c5a059;
    color: #0b111a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.car-popup-cta:hover {
    background: #d4b069;
}

@media (max-width: 768px) {
    .car-popup-details {
        grid-template-columns: 1fr;
    }
    .car-popup-content {
        padding: 24px;
    }
    .car-popup-image {
        height: 250px;
    }
    .car-popup-title {
        font-size: 24px;
    }
    .car-popup-price {
        font-size: 28px;
    }
}

.btn-whatsapp:hover {
    background: #25D366;
    color: #0b111a;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* ================================================================
   BODY SHOP PAGE STYLES
   ================================================================ */

/* This only affects the Body Shop page */
.body-shop-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4)), url('pexels-mikebirdy-244212.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hub-image-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

/* Specific Page Background */
.body-shop-page {
    background-color: #0b111a;
    color: #ffffff;
}

/* Luxury Header Section */
.body-shop-page .page-header {
    position: relative;
    height: 55vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Update this path to your chosen header image */
    background: linear-gradient(rgba(11, 17, 26, 0.85), rgba(11, 17, 26, 0.7)), 
                url('images/body-shop.jpg'); 
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.body-shop-page .header-content h1 {
    font-family: var(--ff-display); /* Uses your main display font */
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}

.body-shop-page .header-content h1 em {
    font-style: normal;
    color: var(--primary); /* Uses your gold variable */
    font-weight: 300;
    letter-spacing: 6px;
}

/* Content Grid Layout */
.body-shop-page .content-section {
    padding: 100px 0;
}

.body-shop-page .service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Typography & Lists */
.body-shop-page .detail-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.body-shop-page .detail-text p {
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 30px;
}

.body-shop-page .feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.body-shop-page .feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-1);
}

.body-shop-page .feature-list i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* Image Presentation */
.body-shop-page .detail-image img {
    width: 100%;
    border-radius: 2px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.body-shop-page .detail-image img:hover {
    transform: scale(1.02) translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 40px 80px rgba(197, 160, 89, 0.1);
}

/* Responsive Fixes */
@media (max-width: 968px) {
    .body-shop-page .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .body-shop-page .page-header {
        height: 45vh;
    }
}

/* ================================================================
   MECHANIC HERO - "EXPERT STYLE" MATCH
   ================================================================ */

.mechanic-hero {
    position: relative;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(11, 17, 26, 0.75), rgba(11, 17, 26, 0.75)), 
                url('https://images.pexels.com/photos/190574/pexels-photo-190574.jpeg'); 
    background-size: cover;
    background-position: center;
}

/* "Engineering Excellence" */
.mechanic-hero .hero-eyebrow {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 20px;
    display: block;
    font-weight: 400;
}

/* The Main Heading Container */
.hero-title-main {
    font-size: clamp(40px, 8vw, 90px);
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* "CERTIFIED" - Matching the "EXPERT" Serif font */
.hero-title-main .serif-text {
    font-family: 'Playfair Display', 'Times New Roman', serif; /* Use a high-end serif */
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.05em;
    margin-right: 15px;
}

/* "MECHANIC" - Matching the "BODY SHOP" Gold style */
.hero-title-main .gold-text {
    font-family: 'Inter', sans-serif; /* Keep your clean brand font */
    font-weight: 300;
    color: #c5a059; /* Your Brand Gold */
    letter-spacing: 0.2em; /* This creates the luxury spread-out look */
}

/* The Tagline below the title */
.hero-sub-tagline {
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.05em;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-title-main {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .hero-title-main .gold-text {
        letter-spacing: 0.1em;
    }
}

/* ================================================================
   SALES HERO - EDITORIAL STYLE
   ================================================================ */

.sales-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* This uses your uploaded VW engine photo */
    background: linear-gradient(rgba(11, 17, 26, 0.82), rgba(11, 17, 26, 0.82)), 
                url('images/diagnostic.jpg'); 
    background-size: cover;
    background-position: center;
}

.mechanic-hero {
    height: 65vh;
}

.body-shop-hero {
    height: 65vh;
}

.sales-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Extra layer of darkness for depth */
    z-index: 1;
}

.sales-hero .header-container {
    position: relative;
    z-index: 2;
    /* Extra shadow to make the white/gold text "float" above the car */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.sales-hero .gold-text {
    color: #c5a059;
    letter-spacing: 0.25em;
    font-weight: 300;
}

/* Typography matching your 'EXPERT' screenshot */
.sales-hero .hero-title-main {
    font-size: clamp(40px, 8vw, 85px);
    margin: 15px 0 25px;
    text-transform: uppercase;
}

.sales-hero .serif-text {
    font-family: 'Playfair Display', serif; /* Ensure this is in your Google Fonts link */
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.sales-hero .hero-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #ffffff;
    opacity: 0.9;
}

.sales-hero .hero-sub-tagline {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

/* ================================================================
   SALES GALLERY STYLES
   ================================================================ */

.gallery-section {
    padding: 80px 0;
    background-color: #080c12; /* Slightly darker to separate from the notice box */
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.project-card {
    background: #0b111a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-image img {
    width: 100%;
    height: 400px;
    object-fit: cover; /* This crops the photos perfectly so the grid stays level */
    display: block;
}

.card-info {
    padding: 25px;
}

.card-info h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-info p {
    color: #a0a0a0;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
    .card-image img {
        height: 300px;
    }
}

/* ================================================================
   CLEANER SHOWROOM BOX (NO DARK SHADE)
   ================================================================ */

.showroom-notice-box {
    /* Removed the heavy rgba(11, 17, 26, 0.4) */
    background: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 8px;
    /* This ensures nothing inside is "hidden" */
    position: relative; 
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    /* This moves the buttons to the very top layer so they are clickable */
    position: relative;
    z-index: 10; 
}

/* Brighten the text so it's clear against the background */
.showroom-notice-box h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.showroom-notice-box p {
    color: #e0e0e0; /* Brighter grey */
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ── CONTACT HERO ENHANCED ────────────────────────────────────── */
.contact-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Using your new key image */
    background: url('images/keys.jpg') no-repeat center center;
    background-size: cover;
    
    /* ENHANCEMENT FILTERS */
    filter: contrast(1.1) brightness(0.85) saturate(1.1);
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Deep blue/black tint to match your brand */
    background: linear-gradient(rgba(11, 17, 26, 0.92), rgba(11, 17, 26, 0.7));
    z-index: 1;
}

.contact-hero .header-container {
    position: relative;
    z-index: 2;
}

/* Matching the "EXPERT" typography from Sales/Body Shop */
.contact-hero .serif-text {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    color: #fff;
}

.contact-hero .gold-text {
    font-family: 'Inter', sans-serif;
    color: #c5a059;
    letter-spacing: 0.25em;
    font-weight: 300;
}