/* =============================================
   SOMTAŞ Design System — Shared Styles
   ============================================= */

:root {
  --amber: #E8750A;
  --amber-hover: #D06A08;
  --amber-light: #F59E0B;
  --amber-glow: rgba(232,117,10,0.15);
  --ink: #0A0A0A;
  --ink-soft: #1A1A1A;
  --ink-mid: #2A2A2A;
  --smoke: #F5F3F0;
  --smoke-dark: #E8E4DF;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --text: #333333;
  --text-light: #777777;
  --text-inv: #E0DDD8;
  --renault-yellow: #FFCC00;
  --dacia-green: #646B52;
  --radius: 4px;
  --radius-lg: 6px;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.10);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ========== CURSOR RIPPLE WAVE (dark sections) ========== */
.ripple-zone {
  position: relative;
  cursor: none;
}
/* Custom amber cursor glow */
.ripple-cursor {
  position: fixed;
  width: 24px; height: 24px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.3s ease, background 0.2s ease;
  opacity: 0;
  mix-blend-mode: screen;
  box-shadow: 0 0 16px rgba(232,117,10,0.3), inset 0 0 8px rgba(232,117,10,0.15);
}
.ripple-cursor.visible {
  opacity: 1;
}
.ripple-cursor::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,10,0.1) 0%, transparent 70%);
}
/* Grow on hover over interactive elements */
.ripple-zone a:hover ~ .ripple-cursor,
.ripple-zone button:hover ~ .ripple-cursor {
  width: 40px; height: 40px;
}
/* Hide default cursor on links/buttons inside ripple-zone too */
.ripple-zone a, .ripple-zone button {
  cursor: none;
}
.ripple-zone .ripple-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.ripple-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(232,117,10,0.25);
  background: radial-gradient(circle, rgba(232,117,10,0.08) 0%, rgba(232,117,10,0.03) 40%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleWave 2.5s ease-out forwards;
  pointer-events: none;
  filter: blur(2px);
  box-shadow: 0 0 20px rgba(232,117,10,0.06), inset 0 0 20px rgba(232,117,10,0.04);
}
@keyframes rippleWave {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--amber), #D06A08);
  border-radius: 10px;
  border: 2px solid var(--ink);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--amber-light), var(--amber));
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--amber) var(--ink);
}

/* ========== CUSTOM SELECTION ========== */
::selection {
  background: var(--amber);
  color: white;
}
::-moz-selection {
  background: var(--amber);
  color: white;
}

/* ========== GRAIN OVERLAY ========== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ========== PAGE LOADER ========== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
body.loading {
  overflow: hidden;
}
/* Prevent layout shift when scrollbar hides */
body.loading {
  padding-right: 10px;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.loader-logo-icon {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.loader-logo-text {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 4px;
  color: white;
  text-transform: uppercase;
}
.loader-bar-track {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--amber);
  border-radius: 3px;
  animation: loaderProgress 1.2s ease-out forwards;
}
@keyframes loaderProgress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 2px 32px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.logo-renault-icon {
  height: 36px;
  width: auto;
}
.logo-divider {
  width: 1.5px;
  height: 34px;
  background: var(--smoke-dark);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-weight: 800; font-size: 19px; letter-spacing: 2.5px; text-transform: uppercase; }
.logo-sub { font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); font-weight: 500; }

.nav-main { display: flex; align-items: center; gap: 2px; }
.nav-link {
  text-decoration: none;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.nav-link:hover { background: var(--smoke); color: var(--amber); }
.nav-cta {
  background: var(--amber);
  color: white !important;
  font-weight: 600;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { background: var(--amber-hover) !important; }

/* ========== MOBILE TOGGLE ========== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== OFFCANVAS MOBILE MENU ========== */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.offcanvas-overlay.open {
  opacity: 1;
  visibility: visible;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: white;
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  overflow-y: auto;
}
.offcanvas.open {
  transform: translateX(0);
}

/* Staggered entrance for menu items */
.offcanvas .offcanvas-link,
.offcanvas .offcanvas-brand,
.offcanvas .offcanvas-cta .btn {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease, color 0.25s ease;
}
.offcanvas.open .offcanvas-link,
.offcanvas.open .offcanvas-brand,
.offcanvas.open .offcanvas-cta .btn {
  opacity: 1;
  transform: translateX(0);
}
.offcanvas.open .offcanvas-link:nth-child(1) { transition-delay: 0.08s; }
.offcanvas.open .offcanvas-link:nth-child(2) { transition-delay: 0.12s; }
.offcanvas.open .offcanvas-link:nth-child(3) { transition-delay: 0.16s; }
.offcanvas.open .offcanvas-link:nth-child(4) { transition-delay: 0.20s; }
.offcanvas.open .offcanvas-link:nth-child(5) { transition-delay: 0.24s; }
.offcanvas.open .offcanvas-link:nth-child(6) { transition-delay: 0.28s; }
.offcanvas.open .offcanvas-link:nth-child(7) { transition-delay: 0.32s; }
.offcanvas.open .offcanvas-brand { transition-delay: 0.36s; }
.offcanvas.open .offcanvas-cta .btn { transition-delay: 0.40s; }

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--smoke);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.offcanvas.open .offcanvas-header {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.05s;
}
.offcanvas-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.offcanvas-logo-mark {
  width: 36px; height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: white;
}
.offcanvas-logo-title {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--ink);
}
.offcanvas-close {
  width: 36px; height: 36px;
  border: none;
  background: var(--smoke);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text);
  font-size: 18px;
}
.offcanvas-close:hover { background: var(--smoke-dark); }

.offcanvas-nav {
  padding: 12px 16px;
  flex: 1;
}
.offcanvas-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
}
.offcanvas-link:hover {
  background: var(--smoke);
  color: var(--amber);
}
.offcanvas-link svg {
  width: 20px; height: 20px;
  color: var(--text-light);
  flex-shrink: 0;
}
.offcanvas-link:hover svg { color: var(--amber); }
.offcanvas-link.active {
  background: var(--amber-glow);
  color: var(--amber);
}
.offcanvas-link.active svg { color: var(--amber); }

.offcanvas-divider {
  height: 1px;
  background: var(--smoke);
  margin: 8px 16px;
}

.offcanvas-brands {
  padding: 16px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.offcanvas-brand {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid var(--smoke-dark);
  border-radius: 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  transition: var(--transition);
}
.offcanvas-brand img { height: 18px; }
.offcanvas-brand:hover { border-color: var(--amber); color: var(--amber); }

.offcanvas-cta {
  padding: 16px 24px 24px;
}
.offcanvas-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ========== BRAND BAR ========== */
.brand-bar {
  position: fixed;
  top: 76px; left: 0; right: 0;
  z-index: 999;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand-bar-inner { display: flex; align-items: center; height: 52px; gap: 0; }
.brand-tab {
  text-decoration: none;
  color: var(--text-inv);
  font-size: 13px;
  font-weight: 600;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand-tab img { height: 20px; filter: brightness(0) invert(1); transition: var(--transition); }
.brand-tab.active { background: var(--amber); color: white; }
.brand-tab:hover:not(.active) { background: rgba(255,255,255,0.06); }
.brand-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ========== PARALLAX ========== */
.parallax-section { position: relative; overflow: hidden; }
.parallax-bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}
.parallax-overlay { position: absolute; inset: 0; z-index: 1; }

/* ========== HERO ========== */
.hero {
  margin-top: 128px;
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero .parallax-bg {
  background-image: url('../images/modern_automotive_dealership_renault_dacia_showro1.png');
  inset: -30% 0;
  transform-origin: center;
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.hero .parallax-overlay {
  background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 45%, rgba(10,10,10,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 0;
  width: 100%;
}
.hero-left { animation: fadeInUp 0.8s ease-out; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,117,10,0.15);
  border: 1px solid rgba(232,117,10,0.3);
  color: var(--amber-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  color: white;
  line-height: 0.95;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-title em { font-style: normal; color: var(--amber-light); }

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}
.hero-car-wrapper { position: relative; width: 100%; }
.hero-car-glow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 80px;
  background: radial-gradient(ellipse, rgba(232,117,10,0.2), transparent 70%);
  filter: blur(25px);
}
.hero-car-img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 800; color: white; letter-spacing: -0.5px; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; text-transform: uppercase; margin-top: 4px; }

@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* Sweep line effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: none;
  z-index: 2;
  pointer-events: none;
}
.btn:hover::before {
  animation: btnSweep 0.6s ease forwards;
}
@keyframes btnSweep {
  0% { left: -60px; }
  100% { left: calc(100% + 60px); }
}
/* Vertical + horizontal lines on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(255,255,255,0);
  transition: var(--transition);
  pointer-events: none;
  z-index: 2;
}
.btn:hover::after {
  border-color: rgba(255,255,255,0.2);
  inset: 4px;
}

.btn-primary {
  background: var(--amber);
  color: white;
  box-shadow: 0 4px 20px rgba(232,117,10,0.3);
}
.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,117,10,0.4);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}
.btn-outline:hover::after { border-color: rgba(255,255,255,0.1); }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--smoke-dark);
}
.btn-outline-dark:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn-outline-dark:hover::after { border-color: rgba(232,117,10,0.15); }
.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover {
  background: var(--ink-mid);
  transform: translateY(-2px);
}
.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ========== SECTIONS ========== */
.section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 2; }
.section-label {
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400; color: var(--ink); line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-title-light { color: white; }
.section-desc {
  font-size: 18px; line-height: 1.7;
  color: var(--text-light);
  max-width: 560px; margin: 18px auto 0;
}

/* ========== VEHICLE FILTERS ========== */
.filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 56px; flex-wrap: wrap; }
.filter-btn {
  padding: 12px 28px;
  border: 1.5px solid var(--smoke-dark);
  background: white;
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px; font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.filter-btn:hover { border-color: var(--amber); color: var(--amber); }
.filter-btn.active { background: var(--amber); border-color: var(--amber); color: white; }

/* ========== VEHICLE CARDS ========== */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.vehicle-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.vehicle-card-top {
  padding: 32px 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.vehicle-brand-logo { height: 30px; margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.vehicle-brand-logo img { height: 100%; width: auto; }

.vehicle-name {
  font-size: 18px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--ink); margin-bottom: 6px;
}
.vehicle-tagline { font-size: 13px; color: var(--text-light); margin-bottom: 18px; line-height: 1.5; }
.vehicle-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}
.vehicle-price-note { font-size: 11.5px; color: var(--text-light); margin-top: 2px; }

.vehicle-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  overflow: hidden;
}
.vehicle-card-img img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.05); }

.vehicle-card-footer { padding: 0 28px 28px; text-align: center; }
.btn-incele {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 13.5px;
  background: var(--smoke);
  color: var(--ink);
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.btn-incele:hover { background: var(--amber); color: white; }

/* ========== PARALLAX DIVIDER ========== */
.parallax-divider {
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-divider .parallax-bg {
  background-image: url('../images/empty_asphalt_road_stretching_to_horizon_golden_h2.png');
  inset: -40% 0;
}
.parallax-divider .parallax-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.7) 100%);
}
.parallax-divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.parallax-divider-content h3 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 400;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.parallax-divider-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

/* ========== BRAND SHOWCASE ========== */
.brand-showcase {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.brand-showcase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: saturate(0.2);
}
.brand-showcase::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.7) 100%),
    radial-gradient(ellipse at 30% 0%, rgba(232,117,10,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(100,107,82,0.06) 0%, transparent 50%);
  z-index: 1;
}
.brands-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.brand-card-lg {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.brand-card-lg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 3px 3px;
}
.brand-card-lg.renault::before { background: var(--renault-yellow); }
.brand-card-lg.dacia::before { background: var(--dacia-green); }
.brand-card-lg:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.brand-card-lg-logo { height: 40px; margin-bottom: 20px; }
.brand-card-lg-logo img { height: 100%; filter: brightness(0) invert(1); }
.brand-card-lg-name {
  font-size: 30px; font-weight: 800;
  color: white; letter-spacing: 5px;
  text-transform: uppercase; margin-bottom: 10px;
}
.brand-card-lg-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 340px;
}
.brand-card-lg-visual {
  width: 100%; height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.brand-card-lg-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.brand-card-lg:hover .brand-card-lg-visual img { transform: scale(1.05); }
.btn-brand { padding: 14px 30px; border-radius: 2px; font-weight: 600; font-size: 14px; letter-spacing: 0.5px; }
.btn-renault { background: var(--renault-yellow); color: var(--ink); }
.btn-renault:hover { background: #e6b800; }
.btn-dacia { background: var(--dacia-green); color: white; }
.btn-dacia:hover { background: #566344; }

/* ========== FEATURED VEHICLE ========== */
.featured {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.featured::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(50,80,120,0.15) 0%, transparent 60%);
}
.featured-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.featured-info { padding: 20px 0; }
.featured-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 10px;
  margin-bottom: 28px;
}
.featured-brand-badge img { height: 24px; filter: brightness(0) invert(1); }
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  color: white;
  line-height: 0.95;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.featured-subtitle { font-size: 20px; color: var(--amber); font-weight: 600; margin-bottom: 22px; }
.featured-desc { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.featured-visual {
  position: relative;
}
/* Ambient color glow — simulates image colors bleeding out */
.featured-visual::before {
  content: '';
  position: absolute;
  top: -5%;
  left: -20%;
  width: 65%;
  height: 110%;
  background: radial-gradient(ellipse, rgba(200,150,80,0.4) 0%, rgba(220,170,90,0.2) 35%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.featured-visual::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 60%;
  height: 110%;
  background: radial-gradient(ellipse, rgba(70,120,170,0.45) 0%, rgba(50,90,140,0.2) 35%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.featured-car-img {
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  filter:
    drop-shadow(0 0 80px rgba(180,140,80,0.2))
    drop-shadow(0 0 140px rgba(70,110,160,0.15))
    drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.featured-dots { display: flex; gap: 8px; margin-top: 36px; }
.featured-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); cursor: pointer; transition: var(--transition); }
.featured-dot.active { background: var(--amber); width: 36px; border-radius: 5px; }

/* ========== SECOND HAND ========== */
.secondhand { position: relative; overflow: hidden; }
.secondhand .parallax-bg {
  background-image: url('../images/happy_Turkish_family_receiving_car_keys_at_dealer_2.png');
  inset: -30% 0;
}
.secondhand .parallax-overlay {
  background: linear-gradient(135deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.85) 50%, rgba(10,10,10,0.75) 100%);
}
.sh-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber-light); margin-bottom: 22px;
}
.sh-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: white; line-height: 0.95;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.sh-desc { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 28px; }
.sh-right { display: flex; flex-direction: column; gap: 28px; }
.sh-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.sh-filter-chip {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  font-family: inherit;
}
.sh-filter-chip:hover,
.sh-filter-chip.active {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(232,117,10,0.08);
}
.sh-brands { display: flex; gap: 20px; align-items: center; }
.sh-brand-icon {
  width: 68px; height: 68px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  padding: 15px;
}
.sh-brand-icon:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.sh-brand-icon img { height: 100%; width: auto; filter: brightness(0) invert(0.6); transition: var(--transition); }
.sh-brand-icon:hover img { filter: brightness(0) invert(0.9); }
.sh-section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ========== SERVICES ========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--amber);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.service-icon {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--amber), #C45A06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transform: rotate(45deg);
  border-radius: 4px;
  position: relative;
  box-shadow:
    0 8px 32px rgba(232,117,10,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}
.service-icon::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
}
.service-icon svg {
  width: 32px; height: 32px;
  transform: rotate(-45deg);
}
.service-title {
  font-size: 18px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink); margin-bottom: 16px; line-height: 1.3;
}
.service-desc { font-size: 15px; line-height: 1.7; color: var(--text-light); margin-bottom: 28px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px; font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; }
.service-link svg { width: 18px; height: 18px; }

/* ========== ABOUT ========== */
.about { background: linear-gradient(180deg, var(--smoke) 0%, var(--cream) 100%); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; }
.about-image {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-year-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 130px; height: 130px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
/* Permanent wave rings radiating out */
.about-year-badge::before,
.about-year-badge::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  opacity: 0;
  animation: yearWave 3s ease-out infinite;
}
.about-year-badge::after {
  animation-delay: 1.5s;
}
@keyframes yearWave {
  0% {
    inset: 0;
    opacity: 0.5;
  }
  100% {
    inset: -40px;
    opacity: 0;
  }
}
.about-year-badge .year { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 30px; font-weight: 800; color: white; }
.about-year-badge .since { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

.about-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--ink); line-height: 0.95;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about-text { font-size: 16px; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--smoke-dark);
}
.about-stat { text-align: center; }
.about-stat-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: var(--amber); letter-spacing: -0.5px; }
.about-stat-label { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* ========== PAGE HEADER (sub pages) ========== */
.page-hero {
  margin-top: 128px;
  padding: 80px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: saturate(0.3);
}
.page-hero-overlay {
  display: none;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,117,10,0.06) 0%, transparent 60%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 3;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: var(--transition);
}
.page-hero .breadcrumb a:hover { color: var(--amber); }
.page-hero .breadcrumb svg { width: 14px; height: 14px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  color: white;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: var(--text-inv);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-about { padding-right: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-mark {
  width: 40px; height: 40px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px; color: white;
}
.footer-logo-title { font-weight: 800; font-size: 22px; color: white; letter-spacing: 3px; text-transform: uppercase; }
.footer-about-text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-brand-logos { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.footer-brand-logos img { height: 24px; filter: brightness(0) invert(0.45); }

.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}
.social-icon:hover { background: var(--amber); color: white; border-color: var(--amber); }

.footer-col-title { font-size: 13px; font-weight: 700; color: white; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.45); text-decoration: none; transition: var(--transition); letter-spacing: 0.2px; }
.footer-links a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  /* extra bottom padding for mobile bottom nav */
  padding-bottom: 28px;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-hours {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-hours-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; }

/* ========== FLOATING ELEMENTS ========== */
.floating-chat {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chat-bubble {
  background: white;
  padding: 16px 22px;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  color: var(--text);
  max-width: 250px;
  animation: fadeInUp 0.5s ease-out 1.5s both;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
}
.chat-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -60px;
  width: 60px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232,117,10,0.08), transparent);
  transform: skewX(-20deg);
  animation: chatSweep 3s ease-in-out 2s infinite;
}
@keyframes chatSweep {
  0% { left: -60px; }
  30% { left: calc(100% + 60px); }
  100% { left: calc(100% + 60px); }
}
.chat-bubble-close {
  position: absolute;
  top: 6px; right: 6px;
  width: 20px; height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
}
.chat-bubble-close:hover { color: var(--amber); }
.chat-bubble.hidden { display: none; }
.chat-btn {
  width: 60px; height: 60px;
  border-radius: 2px;
  background: var(--amber);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(232,117,10,0.35);
  transition: var(--transition);
  color: white;
}
.chat-btn:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(232,117,10,0.45); }
.chat-btn svg { width: 26px; height: 26px; }

.scroll-top {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 900;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--amber); }
.scroll-top svg { width: 20px; height: 20px; }

/* ========== COOKIE ========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: white;
  padding: 20px 0;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-text { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.cookie-text a { color: var(--amber); text-decoration: none; font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 12px 28px;
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.cookie-accept { background: var(--amber); color: white; }
.cookie-accept:hover { background: var(--amber-hover); }
.cookie-reject { background: var(--smoke); color: var(--text); }
.cookie-reject:hover { background: var(--smoke-dark); }

/* ========== MOBILE BOTTOM NAV ========== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 980;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.06);
  border-radius: 16px 16px 0 0;
}
.bottom-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  max-width: 480px;
  margin: 0 auto;
  height: 60px;
}

/* Side items (Araçlar, Menü) */
.bottom-nav-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex: 1;
  min-height: 44px;
}
.bottom-nav-side svg { width: 22px; height: 22px; }
.bottom-nav-side.active { color: var(--amber); }

/* Center item (Ana Sayfa — prominent) */
.bottom-nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--amber);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 16px;
  transition: color 0.2s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  flex: 1;
  min-height: 44px;
}
.bottom-nav-center svg { width: 26px; height: 26px; }
/* Active indicator dot */
.bottom-nav-center::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .vehicles-grid { grid-template-columns: repeat(3, 1fr); }
  .about-layout { gap: 60px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-main { display: none; }
  .mobile-toggle { display: block; }
  .hero-content { grid-template-columns: 1fr; padding: 60px 0; }
  .hero-right { display: none; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-row { grid-template-columns: 1fr; }
  .featured-layout { grid-template-columns: 1fr; gap: 48px; }
  .sh-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-about { grid-column: 1 / -1; padding-right: 0; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { height: 64px; }
  .logo-renault-icon { height: 26px; }
  .logo-title { font-size: 16px; }
  .brand-bar { top: 64px; overflow-x: auto; }
  .brand-bar::-webkit-scrollbar { display: none; }
  .brand-bar-inner { height: 46px; min-width: max-content; }
  .brand-tab { padding: 0 22px; font-size: 12px; }
  .hero { margin-top: 110px; min-height: 500px; }
  .section { padding: 80px 0; }
  .vehicles-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .parallax-divider { height: 300px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cookie-inner { flex-direction: column; text-align: center; }

  /* Bottom nav visible */
  .bottom-nav { display: block; }
  .footer { padding-bottom: 76px; }
  .floating-chat { bottom: 76px; }
  .scroll-top { bottom: 76px; }
  .cookie-banner { bottom: 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 24px; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .about-image { height: 300px; }
  .about-year-badge { width: 100px; height: 100px; bottom: -16px; right: -8px; }
  .about-year-badge .year { font-size: 24px; }
}

/* ========== MOBILE PERFORMANCE ========== */
@media (max-width: 768px) {
  /* Kill heavy animations on mobile */
  .ripple-zone { cursor: auto !important; }
  .ripple-zone a, .ripple-zone button { cursor: pointer !important; }
  .ripple-cursor { display: none !important; }
  .ripple-ring { display: none !important; }

  /* Reduce parallax speed via JS (isMobile * 0.5), keep inset for coverage */

  /* Disable hover transforms on touch — prevent ghost hover states */
  .vehicle-card:hover { transform: none; box-shadow: var(--shadow); }
  .service-card:hover { transform: none; }
  .brand-card-lg:hover { transform: none; }

  /* GPU-accelerate key elements */
  .header, .offcanvas, .bottom-nav, .cookie-banner {
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* Reduce grain overlay opacity (render cost) */
  body::before { opacity: 0.008; }

  /* Touch-friendly tap targets (min 44px) */
  .filter-btn { padding: 14px 24px; min-height: 44px; }
  .sh-filter-chip { padding: 14px 20px; min-height: 44px; }
  .btn { padding: 16px 28px; min-height: 48px; }
  .nav-link { min-height: 44px; }

  /* Cookie banner mobile */
  .cookie-inner { flex-direction: column; text-align: center; gap: 16px; }
  .cookie-actions { width: 100%; justify-content: center; }
  .cookie-btn { flex: 1; padding: 14px 16px; }

  /* Featured visual — reduce blur cost */
  .featured-visual::before,
  .featured-visual::after { filter: blur(30px); }

  /* About year badge — disable wave animation */
  .about-year-badge::before,
  .about-year-badge::after { animation: none; }

  /* Offcanvas — full width on small screens */
  .offcanvas { width: 100%; max-width: 100%; }

  /* Prevent horizontal overflow from any child */
  .hero, .section, .brand-showcase, .featured, .secondhand, .footer, .about {
    overflow: hidden;
  }

  /* Featured ambient glow can bleed out */
  .featured-visual::before,
  .featured-visual::after {
    display: none;
  }
}

/* prefers-reduced-motion intentionally not used — site relies on animations for UX */
