/* ============================================================
   LUXURIA CARS — Premium Import Stylesheet
   Germany → Morocco · Ultra-Luxury Automotive Experience
   ============================================================
   Table of Contents:
   1.  Design Tokens (CSS Custom Properties)
   2.  Reset & Base
   3.  Container
   4.  Header & Navigation
   5.  Mobile Menu
   6.  Hero
   7.  Trust Bar
   8.  Section Headers (Reusable)
   9.  Brands
   10. Categories
   11. Excellence
   12. Services
   13. Process / Timeline
   14. Testimonials
   15. FAQ
   16. CTA Section
   17. Footer
   18. Scroll Reveal Animations
   19. Utilities
   20. Responsive Breakpoints
   ============================================================ */


/* ==========================================================
   1. DESIGN TOKENS
   ========================================================== */

:root {
  /* ── Gold Palette ────────────────────────────────────── */
  --gold: #C9A84C;
  --gold-dark: #9A7B2F;
  --gold-light: #E8D5A3;
  --gold-lighter: #F5EDD6;
  --gold-gradient: linear-gradient(135deg, #B8860B 0%, #DAA520 40%, #C9A84C 100%);
  --gold-gradient-hover: linear-gradient(135deg, #9A7200 0%, #C49B1A 40%, #A8892C 100%);

  /* ── Neutrals ────────────────────────────────────────── */
  --white: #FFFFFF;
  --off-white: #FFFFFF;
  --bg-section: #FFFFFF;
  --bg-dark: #1A1A1A;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #888888;

  /* ── Borders ─────────────────────────────────────────── */
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  /* ── Shadows ─────────────────────────────────────────── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);

  /* ── Radii ───────────────────────────────────────────── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* ── Typography ──────────────────────────────────────── */
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-accent: 'Oswald', sans-serif;

  /* ── Motion ──────────────────────────────────────────── */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Layout ──────────────────────────────────────────── */
  --max-width: 1440px;
  --header-height: 72px;
}


/* ==========================================================
   2. RESET & BASE
   ========================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

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

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.2;
}

::selection {
  background-color: var(--gold-light);
  color: var(--text-primary);
}


/* ==========================================================
   3. CONTAINER
   ========================================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 42px;
  }
}


/* ==========================================================
   4. HEADER & NAVIGATION
   ========================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

/* Subtle shadow on scroll — toggled via JS adding .scrolled */
.header.scrolled {
  background: #000000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

@media (min-width: 768px) {
  .header__inner {
    padding: 0 42px;
  }
}

/* ── Logo ─────────────────────────────────────────────── */

.header__logo img {
  height: 56px;
  width: auto;
}

.header__logo {
  flex-shrink: 0;
}

/* ── Desktop Navigation ──────────────────────────────── */

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.header__nav a:hover {
  color: var(--gold-light);
}

.header__nav a:hover::after {
  width: 100%;
}

/* ── Phone CTA Button ────────────────────────────────── */

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.header__phone:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  background: #1ebd56;
  color: #ffffff;
}

.header__phone-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Mobile Toggle (Hamburger) ───────────────────────── */

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}

.header__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  border-radius: 2px;
  display: block;
}

/* Hamburger → X animation */
.header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}


/* ==========================================================
   5. MOBILE MENU
   ========================================================== */

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
  z-index: 999;
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}

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

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--gold-dark);
  padding-left: 8px;
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #16a34a !important;
  font-weight: 600;
  margin-top: 8px;
  border-bottom: none !important;
}

.trust-item__icon-row {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--gold);
}

/* Active nav link */
.header__nav a.active {
  color: var(--gold-light);
}

.header__nav a.active::after {
  width: 100%;
}


/* ==========================================================
   6. HERO
   ========================================================== */

.hero {
  padding: 140px 0 80px;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind hero content */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

/* ── Badge ────────────────────────────────────────────── */

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-lighter);
  color: var(--gold-dark);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero__image {
  margin-bottom: 32px;
  text-align: center;
}

.hero__cars-img {
  width: 100%;
  max-width: 750px;
  height: auto;
  display: inline-block;
}

/* ── Title ────────────────────────────────────────────── */

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Subtitle ─────────────────────────────────────────── */

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero__stock-title {
  font-family: var(--font-accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-dark);
  margin-bottom: 16px;
  font-weight: 600;
  text-align: center;
}

/* ── Hero Stock Buttons ───────────────────────────────── */
.hero__stock-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  min-width: 220px;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.hero__btn-flag {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.hero__btn--primary {
  background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(170, 130, 10, 0.35);
}

.hero__btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #e5be48 0%, #b88d0c 100%);
  box-shadow: 0 8px 25px rgba(170, 130, 10, 0.5);
  color: #ffffff;
}

.hero__btn--secondary {
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1.5px solid #d4af37;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero__btn--secondary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(170, 130, 10, 0.4);
}

.hero__btn:active {
  transform: translateY(0);
}

/* ── Trust Badges (within Hero) ──────────────────────── */

.hero__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.hero__badges .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero__badges .badge:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.badge__icon {
  width: 36px;
  height: 36px;
  background: var(--gold-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge__icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
  stroke: var(--gold-dark);
}

.badge__text {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

/* ── CTA Button ───────────────────────────────────────── */

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  background: #1ebd56;
  color: #ffffff;
}

.hero__cta:active {
  transform: translateY(0);
}


/* ==========================================================
   7. TRUST BAR
   ========================================================== */

.trust-bar {
  padding: 48px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .trust-bar__inner {
    padding: 0 42px;
  }
}

.trust-item {
  text-align: center;
}

.trust-item__value {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: -0.5px;
}

.trust-item__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}


/* ==========================================================
   8. SECTION HEADERS (Reusable)
   ========================================================== */

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ==========================================================
   9. BRANDS
   ========================================================== */

.brands {
  padding: 96px 0;
  background: var(--white);
}

.brands__wrapper {
  position: relative;
  width: 100%;
}

.brands__nav-btn {
  display: none;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}

.brand-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.brand-card__logo {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition);
}

.brand-card:hover .brand-card__logo {
  filter: grayscale(0%) opacity(1);
}

.brand-card__name {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.brand-card__count {
  font-size: 13px;
  color: var(--text-muted);
}

.brand-card__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: var(--transition);
  color: var(--gold);
}

.brand-card:hover .brand-card__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}





/* ==========================================================
   11. EXCELLENCE
   ========================================================== */

.excellence {
  padding: 96px 0;
  background: var(--white);
}

.excellence__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.excellence__card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}

.excellence__card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.excellence__card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-lighter);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.excellence__card:hover .excellence__card-icon {
  background: var(--gold-light);
}

.excellence__card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-dark);
}

.excellence__card-label {
  font-family: var(--font-accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
}

.excellence__card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.excellence__card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ==========================================================
   12. SERVICES
   ========================================================== */

.services {
  padding: 96px 0;
  background: var(--bg-section);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__number {
  font-family: var(--font-accent);
  font-size: 40px;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ==========================================================
   13. PROCESS / TIMELINE
   ========================================================== */

.process {
  padding: 96px 0;
  background: var(--white);
}

.process__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

/* Vertical line */
.process__timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

/* ── Step ──────────────────────────────────────────────── */

.process__step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  align-items: flex-start;
}

.process__step:last-child {
  margin-bottom: 0;
}

.process__step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}

.process__step-content {
  flex: 1;
  padding-top: 10px;
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.process__step-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Desktop: alternating left / right layout */
@media (min-width: 768px) {
  .process__timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .process__step {
    width: 50%;
    margin-left: auto;
    padding-left: 40px;
  }

  .process__step:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 40px;
    text-align: right;
  }

  .process__step:nth-child(odd) .process__step-number {
    position: relative;
    right: -24px;
  }

  .process__step:nth-child(even) .process__step-number {
    position: relative;
    left: -24px;
  }
}


/* ==========================================================
   14. TESTIMONIALS
   ========================================================== */

.testimonials {
  padding: 96px 0;
  background: var(--bg-section);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Decorative quotation mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 80px;
  font-family: var(--font-heading);
  color: var(--gold-lighter);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card__stars span {
  color: var(--gold);
  font-size: 16px;
}

.testimonial-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 16px;
  color: var(--gold-dark);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-card__vehicle {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}


/* ==========================================================
   15. FAQ
   ========================================================== */

.faq-section {
  padding: 96px 0;
  background: var(--white);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  gap: 16px;
}

.faq-item__question:hover {
  color: var(--gold-dark);
}

.faq-item__question h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  transition: var(--transition);
}

.faq-item__question:hover h3 {
  color: var(--gold-dark);
}

.faq-item__question .faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__answer p {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-item__answer {
  max-height: 400px;
}


/* ==========================================================
   16. CTA SECTION
   ========================================================== */

.cta-section {
  padding: 96px 0;
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle gold radial glow */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title {
  color: var(--white);
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.cta-section .section-label {
  color: var(--gold);
}

.cta__info {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.cta__info-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.cta__info-item strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 2px;
}

.cta__info-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.cta__btn--primary {
  background: #25D366;
  color: #ffffff;
  border: none;
}

.cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  background: #1ebd56;
  color: #ffffff;
}

.cta__btn--primary:active {
  transform: translateY(0);
}

.cta__btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta__btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ==========================================================
   17. FOOTER
   ========================================================== */

.footer {
  padding: 64px 0 32px;
  background: var(--bg-dark);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer__col-title {
  font-family: var(--font-accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  transition: var(--transition);
}

.footer__col a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ── Footer Bottom ────────────────────────────────────── */

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}


/* ==========================================================
   18. SCROLL REVEAL ANIMATIONS
   ========================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  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;
}

/* Optional scale-up variant */
.reveal--scale {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}


/* ==========================================================
   19. UTILITIES
   ========================================================== */

.text-gold {
  color: var(--gold);
}

.bg-gold {
  background: var(--gold-gradient);
}

/* Screen-reader only — visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ==========================================================
   20. RESPONSIVE BREAKPOINTS
   ========================================================== */

/* ── ≥ 1024px — Large Desktops ────────────────────────── */

@media (min-width: 1024px) {
  .brands__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .excellence__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ── < 768px — Mobile ─────────────────────────────────── */

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }

  .header__phone {
    padding: 8px 16px;
    font-size: 13px;
  }

  .header__mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__stock-title {
    font-size: 13px;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
  }

  .hero__stock-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
  }

  .hero__btn {
    width: calc(50% - 5px);
    max-width: 220px;
    min-width: 0;
    padding: 14px 8px;
    font-size: 13px;
    letter-spacing: 0.02em;
  }

  .hero__btn-flag {
    font-size: 16px;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__badges .badge {
    padding: 10px 12px;
    font-size: 12px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .excellence__grid,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .brands,
  .excellence,
  .services,
  .process,
  .testimonials,
  .faq-section,
  .cta-section {
    padding: 64px 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}


/* ── < 640px — Small Mobile ───────────────────────────── */

@media (max-width: 639px) {
  .brands__grid {
    gap: 12px;
  }

  .brand-card {
    padding: 24px 16px;
  }

  .brand-card__name {
    font-size: 18px;
  }

  .hero__title {
    margin-bottom: 20px;
  }

  .hero__subtitle {
    margin-bottom: 24px;
  }

  .hero__cta {
    padding: 14px 28px;
    font-size: 15px;
  }
}


/* ── < 480px — Extra Small ────────────────────────────── */

@media (max-width: 479px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .trust-item__value {
    font-size: 24px;
  }

  .hero__badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .hero__badges .badge {
    width: 100%;
    max-width: none;
    padding: 10px 8px;
  }

  .header__phone span:not(.header__phone-icon) {
    display: none;
  }

  .header__phone {
    padding: 10px;
    border-radius: 50%;
  }
}


/* ==========================================================
   PRINT STYLES
   ========================================================== */

@media print {
  .header,
  .mobile-menu,
  .cta-section {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  body {
    color: #000;
    background: #fff;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   21. PREMIUM LANGUAGE SELECTOR STYLES & RTL OVERRIDES
   ========================================================== */

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-selector {
  position: relative;
  display: inline-block;
}

.lang-selector__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-selector__toggle:hover,
.lang-selector__toggle.active {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
}

.lang-selector__arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.lang-selector__toggle.active .lang-selector__arrow {
  transform: rotate(180deg);
}

.lang-selector__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

.lang-selector__dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-selector__option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.lang-selector__option:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--white);
}

.lang-selector__option.active {
  color: var(--gold);
  font-weight: 600;
}

/* Mobile Menu Language Selector */
.mobile-menu__lang {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.mobile-menu__lang .lang-selector__option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  padding: 0;
  text-align: center;
}

.mobile-menu__lang .lang-selector__option:hover,
.mobile-menu__lang .lang-selector__option.active {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.05);
}

/* ── RTL & Arabic Typography Overrides ── */
body.lang-ar {
  font-family: 'Cairo', 'Inter', -apple-system, sans-serif;
}

html[dir="rtl"] .lang-selector__dropdown {
  right: auto;
  left: 0;
}

html[dir="rtl"] .lang-selector__option {
  text-align: right;
}

html[dir="rtl"] .lang-selector__arrow {
  margin-right: 6px;
  margin-left: 0;
}

html[dir="ltr"] .lang-selector__arrow {
  margin-left: 6px;
  margin-right: 0;
}

/* Flex layout reversals for RTL on header actions */
html[dir="rtl"] .header__actions {
  flex-direction: row-reverse;
}

/* Custom inline text alignment override for section headers inside RTL context */
html[dir="rtl"] [style*="text-align: left"] {
  text-align: right !important;
}
html[dir="rtl"] [style*="text-align:left"] {
  text-align: right !important;
}
