/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  /* Exact Workshop Wall Turquoise & Cyan Palette */
  --cyan: #00c2cb;
  --cyan-light: #48f0fa;
  --cyan-dark: #008f99;
  --cyan-glow: rgba(0, 194, 203, 0.4);
  
  /* Genesis Luxury Gold & Silver Chrome */
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-dark: #a07830;
  --silver: #e2e8f0;
  --silver-muted: #94a3b8;

  /* Hydraulic Lift Blue */
  --lift-blue: #0266cc;

  /* Kia Red Accent */
  --kia-red: #e52428;
  --kia-red-glow: rgba(229, 36, 40, 0.3);
  
  /* Workshop Dark Industrial Palette (Ceiling & Upper Walls) */
  --dark: #0a0d14;
  --dark-2: #101520;
  --dark-3: #161d2b;
  --dark-4: #1e2638;
  --dark-5: #273147;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --border: rgba(0, 194, 203, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);
  --font: 'Tajawal', 'Cairo', sans-serif;
  --font-display: 'Cairo', 'Tajawal', sans-serif;
  --transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-cyan: 0 12px 36px rgba(0, 194, 203, 0.18);
  --radius: 14px;
  --radius-sm: 10px;
}
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { 
  font-family: var(--font); 
  background: var(--dark); 
  color: var(--text); 
  direction: inherit; 
  overflow-x: hidden; 
  line-height: 1.75; 
  font-weight: 400;
  -webkit-tap-highlight-color: transparent;
  background-image: 
    radial-gradient(circle at 12% 10%, rgba(0, 194, 203, 0.05) 0%, transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(2, 102, 204, 0.04) 0%, transparent 40%);
}
html[dir="rtl"] { direction: rtl; }
html[dir="ltr"] {
  direction: ltr;
  --font: 'Cairo', 'Tajawal', sans-serif;
  --font-display: 'Cairo', 'Tajawal', sans-serif;
}
h1, h2, h3, h4, .section-title, .hero-title, .logo-name, .footer-name, .brand-name, .nav-cta, .btn {
  font-family: var(--font-display);
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ===== ICON SYSTEM ===== */
.icon-svg {
  width: 1.25em;
  height: 1.25em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-svg.star { width: 1rem; height: 1rem; fill: currentColor; stroke: none; }
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.btn .icon-svg { width: 1.1rem; height: 1.1rem; }
.footer-contact-link .icon-svg { width: 1.05rem; height: 1.05rem; }
.whatsapp-float .wa-icon { width: 28px; height: 28px; color: #fff; }
.whatsapp-float .wa-icon path { fill: currentColor; stroke: none; }

/* ===== WORKSHOP GEOMETRIC STRIPE (IDENTICAL TO WORKSHOP WALL DESIGN) ===== */
.workshop-stripe {
  width: 100%;
  height: 14px;
  background-color: #0d121b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='22' viewBox='0 0 36 22'%3E%3Cpath d='M0 11 L7 0 L15 0 L8 11 L15 22 L7 22 Z M18 11 L25 0 L33 0 L26 11 L33 22 L25 22 Z' fill='%2300c2cb'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 100%;
  border-top: 1px solid rgba(0, 194, 203, 0.55);
  border-bottom: 1px solid rgba(0, 194, 203, 0.55);
  box-shadow: 0 0 12px rgba(0, 194, 203, 0.2);
  position: relative;
  z-index: 10;
  opacity: 0.9;
}

/* Thicker decorative wall band for section breaks */
.workshop-wall-band {
  width: 100%;
  padding: 16px 0;
  background: #0d121b;
  border-top: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  box-shadow: 0 0 25px rgba(0, 194, 203, 0.2);
  position: relative;
  overflow: hidden;
}
.workshop-wall-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='24' viewBox='0 0 36 24'%3E%3Cpath d='M0 12 L7 0 L15 0 L8 12 L15 24 L7 24 Z M18 12 L25 0 L33 0 L26 12 L33 24 L25 24 Z' fill='%2300c2cb'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.85;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

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

/* ===== BUTTONS ===== */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px; 
  padding: 14px 28px; 
  border-radius: 50px; 
  font-size: 0.95rem; 
  font-weight: 700; 
  cursor: pointer; 
  transition: var(--transition); 
  border: none; 
  text-align: center;
  min-height: 48px;
  letter-spacing: 0.02em;
}
.btn-primary { 
  background: linear-gradient(135deg, var(--cyan-light), var(--cyan) 45%, var(--cyan-dark)); 
  color: #0a0d14; 
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(0, 194, 203, 0.28); 
}
.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 10px 28px rgba(0, 194, 203, 0.4); 
  color: #0a0d14; 
}
.btn-outline { 
  background: rgba(255, 255, 255, 0.03); 
  color: var(--text); 
  border: 1px solid rgba(0, 194, 203, 0.35); 
  backdrop-filter: blur(8px);
}
.btn-outline:hover { 
  border-color: var(--cyan); 
  color: var(--cyan); 
  background: rgba(0, 194, 203, 0.06);
  transform: translateY(-2px); 
}
.section-cta { margin-top: 28px; }
.section-cta.center { text-align: center; margin-top: 40px; }
.btn-secondary { 
  background: var(--dark-4); 
  color: var(--text); 
  border: 1px solid var(--border); 
}
.btn-secondary:hover { 
  border-color: var(--cyan); 
  color: var(--cyan); 
  transform: translateY(-3px); 
}
.full-width { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ===== GRADIENT TEXT ===== */
.gold-text, .cyan-text { 
  background: linear-gradient(135deg, var(--cyan), var(--cyan-light)); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text; 
}
.gold-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION BADGE ===== */
.section-badge { 
  display: inline-flex; 
  align-items: center;
  gap: 8px;
  background: rgba(0, 194, 203, 0.08); 
  color: var(--cyan); 
  border: 1px solid rgba(0, 194, 203, 0.28); 
  padding: 6px 16px; 
  border-radius: 50px; 
  font-size: 0.78rem; 
  font-weight: 700; 
  letter-spacing: 0.06em; 
  margin-bottom: 14px; 
}
.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.light-badge { background: rgba(0, 194, 203, 0.12); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-title { font-size: clamp(1.75rem, 3.8vw, 2.55rem); font-weight: 900; line-height: 1.35; margin-bottom: 14px; color: var(--text); letter-spacing: -0.01em; }
.light-title { color: #fff; }
.section-desc { color: var(--text-muted); font-size: 1.02rem; max-width: 560px; margin: 0 auto; font-weight: 400; line-height: 1.8; }

/* ===== NAVBAR ===== */
.navbar { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1000; 
  padding: 14px 0; 
  transition: var(--transition); 
  background: rgba(10, 13, 20, 0.92); 
  backdrop-filter: blur(20px); 
  border-bottom: 1px solid var(--border); 
}
.navbar.scrolled { 
  background: rgba(10, 13, 20, 0.98); 
  padding: 10px 0; 
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6); 
  border-bottom-color: rgba(0, 194, 203, 0.35);
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 20px; }
.nav-logo a { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-img { 
  height: 48px; 
  width: auto; 
  max-width: 54px;
  object-fit: contain; 
  border: none; 
  box-shadow: none;
  background: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 12px rgba(0, 194, 203, 0.4));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}
.nav-logo a:hover .logo-img {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 22px rgba(0, 194, 203, 0.75));
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { 
  font-size: 1.25rem; 
  font-weight: 900; 
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan-light) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15; 
  letter-spacing: 0.5px;
}
.logo-sub { 
  font-size: 0.68rem; 
  color: var(--cyan); 
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Luxury Hero Brand Presentation */
.hero-brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.hero-crest-container {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.hero-crest-glow {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 194, 203, 0.28) 0%, rgba(2, 102, 204, 0.1) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(28px);
  z-index: 1;
}
.hero-crest-emblem {
  width: 260px;
  max-width: 72vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 22px rgba(0, 194, 203, 0.35));
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}
.hero-crest-emblem:hover {
  transform: scale(1.03) translateY(-3px);
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 32px rgba(0, 194, 203, 0.55));
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  opacity: 0.95;
}
.hero-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s infinite;
}
.hero-crest-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 13, 20, 0.85);
  border: 1px solid rgba(0, 194, 203, 0.4);
  color: var(--cyan);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 194, 203, 0.25);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}
.badge-text-short { display: none; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-right: auto; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); transition: var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--cyan); }
.nav-link::after { content: ''; position: absolute; bottom: 4px; right: 50%; transform: translateX(50%); width: 0; height: 2px; background: var(--cyan); border-radius: 2px; transition: var(--transition); box-shadow: 0 0 8px var(--cyan); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-cta { 
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)); 
  color: #0a0d14; 
  padding: 10px 22px; 
  border-radius: 50px; 
  font-size: 0.9rem; 
  font-weight: 800; 
  transition: var(--transition); 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  white-space: nowrap; 
  box-shadow: 0 0 15px rgba(0, 194, 203, 0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(0, 194, 203, 0.6); color: #0a0d14; }
.menu-toggle { 
  display: none; 
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  gap: 6px; 
  background: rgba(0, 194, 203, 0.08); 
  border: 1px solid rgba(0, 194, 203, 0.25); 
  border-radius: 10px;
  cursor: pointer; 
  width: 44px;
  height: 44px;
  padding: 8px; 
  transition: var(--transition);
}
.menu-toggle:hover, .menu-toggle.active {
  background: rgba(0, 194, 203, 0.18);
  border-color: var(--cyan);
}
.menu-toggle span { 
  display: block; 
  width: 22px; 
  height: 2px; 
  background: var(--cyan); 
  border-radius: 2px; 
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease; 
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== INNER HERO (SUBPAGES) ===== */
.inner-hero { 
  position: relative; 
  padding: 160px 0 80px; 
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark) 100%); 
  overflow: hidden; 
  border-bottom: 1px solid var(--border); 
}
.inner-hero-glow { 
  position: absolute; 
  top: -100px; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 600px; 
  height: 600px; 
  background: radial-gradient(circle, rgba(0, 194, 203, 0.12) 0%, transparent 70%); 
  pointer-events: none; 
}
.inner-hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.breadcrumbs { display: flex; justify-content: center; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumbs a { color: var(--text-muted); transition: var(--transition); }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs span { color: var(--cyan); }
.inner-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 16px; }
.inner-hero-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; }

/* ===== HERO (MAIN HOME) ===== */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); filter: brightness(0.62) contrast(1.12) saturate(1.05); }
.hero-overlay { 
  position: absolute; 
  inset: 0; 
  background:
    linear-gradient(105deg, rgba(8, 10, 16, 0.94) 0%, rgba(10, 13, 20, 0.72) 48%, rgba(10, 13, 20, 0.88) 100%),
    linear-gradient(180deg, rgba(10, 13, 20, 0.35) 0%, transparent 35%, rgba(10, 13, 20, 0.75) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 130px 24px 100px; max-width: 1100px; margin: 0 auto; width: 100%; }
.badge-dot { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 8px var(--cyan); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.35)} }
.hero-title { font-size: clamp(2.35rem, 6.2vw, 4.6rem); font-weight: 900; line-height: 1.12; margin-bottom: 18px; letter-spacing: -0.02em; }
.title-line { display: block; }
.title-line.sub { font-size: clamp(1.15rem, 2.8vw, 1.85rem); color: var(--text-muted); font-weight: 600; margin-top: 8px; letter-spacing: 0; }
.hero-desc { font-size: 1.08rem; color: var(--text-muted); max-width: 540px; margin-bottom: 28px; line-height: 1.85; font-weight: 400; }
.hero-desc strong { color: var(--text); font-weight: 700; }
.hero-brands { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.brand-badge { padding: 8px 18px; border-radius: 6px; font-weight: 800; letter-spacing: 0.14em; font-size: 0.78rem; }
.genesis-b { background: rgba(201, 168, 76, 0.08); border: 1px solid rgba(201, 168, 76, 0.55); color: var(--gold); }
.hyundai-b { background: rgba(0, 194, 203, 0.08); border: 1px solid rgba(0, 194, 203, 0.5); color: var(--cyan); }
.kia-b { background: rgba(229, 36, 40, 0.08); border: 1px solid rgba(229, 36, 40, 0.5); color: #ff7a7a; }
.brand-divider { width: 1px; height: 28px; background: var(--border-light); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }
.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.04em; animation: bounce 2.4s infinite; z-index: 3; }
.scroll-mouse { width: 22px; height: 34px; border: 1.5px solid rgba(148, 163, 184, 0.5); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 3px; height: 7px; background: var(--cyan); border-radius: 2px; animation: scrollWheel 1.5s infinite; }
@keyframes scrollWheel { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(10px)} }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* Stats bar below hero */
.stats-bar {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-bar .hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--cyan); }
.stat-plus { font-size: 1.25rem; font-weight: 900; color: var(--cyan); }
.stat-label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-sep { width: 1px; height: 44px; background: var(--border-light); }

.facilities-highlight {
  padding: 56px 0;
  background: var(--dark);
}
.facilities-highlight .facilities-grid { margin-top: 0; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--dark-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); }
.about-exp-card { 
  position: absolute; 
  bottom: -20px; 
  right: -20px; 
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)); 
  color: #0a0d14; 
  padding: 20px 28px; 
  border-radius: var(--radius); 
  text-align: center; 
  box-shadow: 0 10px 40px rgba(0, 194, 203, 0.4); 
}
.exp-num { display: block; font-size: 2.2rem; font-weight: 900; }
.exp-label { font-size: 0.85rem; font-weight: 700; opacity: 0.9; }
.about-text { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 16px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.feature-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--dark-3); border-radius: var(--radius-sm); border: 1px solid var(--border); transition: var(--transition); }
.feature-item:hover { border-color: var(--cyan); transform: translateX(-4px); box-shadow: 0 4px 20px rgba(0, 194, 203, 0.15); }
.feature-item span { font-size: 0.9rem; font-weight: 600; }

/* ===== VALUES & PROCESS CARDS ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.value-card { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: var(--transition); }
.value-card:hover { border-color: var(--cyan); transform: translateY(-6px); box-shadow: var(--shadow-cyan); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; color: var(--cyan); }
.value-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ===== WORKSHOP REAL GALLERY SECTION ===== */
.workshop-gallery { padding: 100px 0; background: var(--dark-3); position: relative; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.gallery-card { 
  background: var(--dark-4); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  overflow: hidden; 
  transition: var(--transition); 
  position: relative; 
}
.gallery-card:hover { 
  transform: translateY(-8px); 
  border-color: var(--cyan); 
  box-shadow: 0 15px 40px rgba(0, 194, 203, 0.25); 
}
.gallery-img-wrap { position: relative; width: 100%; height: 260px; overflow: hidden; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-card:hover .gallery-img { transform: scale(1.08); }
.gallery-badge { 
  position: absolute; 
  top: 14px; 
  right: 14px; 
  background: rgba(10, 13, 20, 0.85); 
  backdrop-filter: blur(8px); 
  color: var(--cyan); 
  border: 1px solid rgba(0, 194, 203, 0.4); 
  padding: 4px 14px; 
  border-radius: 50px; 
  font-size: 0.75rem; 
  font-weight: 700; 
}
.gallery-info { padding: 20px 24px; }
.gallery-info h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; color: #fff; }
.gallery-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Workshop Facilities Highlights */
.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.facility-item { 
  background: rgba(22, 29, 43, 0.6); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-sm); 
  padding: 28px 20px; 
  text-align: center; 
  transition: var(--transition); 
}
.facility-item:hover { 
  border-color: rgba(0, 194, 203, 0.45); 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-cyan); 
  background: var(--dark-3);
}
.facility-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: rgba(0, 194, 203, 0.1);
  border: 1px solid rgba(0, 194, 203, 0.22);
  font-size: 1.25rem;
}
.facility-icon .icon-svg { width: 22px; height: 22px; }
.facility-item h4 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.facility-item p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* Facilities Showcase (home page) */
.facilities-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.showcase-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.showcase-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 15px 40px rgba(0, 194, 203, 0.25);
}
.showcase-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.showcase-card:hover .showcase-img { transform: scale(1.08); }
.showcase-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cyan);
  border: 1px solid rgba(0, 194, 203, 0.4);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.showcase-body { padding: 20px 22px 24px; }
.showcase-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.4;
}
.showcase-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.services-grid-auto { grid-template-columns: repeat(3, 1fr); }
.service-card { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 22px; transition: var(--transition); position: relative; overflow: hidden; }
.service-card:hover { border-color: rgba(0, 194, 203, 0.45); transform: translateY(-5px); box-shadow: var(--shadow-cyan); background: var(--dark-4); }
.service-icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(0, 194, 203, 0.1);
  border: 1px solid rgba(0, 194, 203, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  font-size: 1.25rem;
}
.service-icon-wrap .icon-svg { width: 22px; height: 22px; }
.service-card:hover .service-icon-wrap { transform: translateY(-2px); }
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.service-hover-line { position: absolute; bottom: 0; right: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--cyan-light)); transition: width 0.4s ease; }
.service-card:hover .service-hover-line { width: 100%; }

.detailed-service-item { 
  display: grid; 
  grid-template-columns: 72px 1fr; 
  gap: 22px; 
  background: var(--dark-3); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 30px; 
  margin-bottom: 20px; 
  transition: var(--transition); 
  border-right: 3px solid var(--cyan);
}
.detailed-service-item:hover { border-color: rgba(0, 194, 203, 0.45); box-shadow: var(--shadow-cyan); transform: translateX(-3px); }
.detailed-service-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 194, 203, 0.08);
  border: 1px solid rgba(0, 194, 203, 0.22);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.5rem;
}
.detailed-service-icon .icon-svg { width: 28px; height: 28px; }
.detailed-service-content h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; color: #fff; }
.detailed-service-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.service-bullets { display: flex; flex-wrap: wrap; gap: 10px; }
.service-bullet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-4);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid rgba(0, 194, 203, 0.18);
}
.service-bullet::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px rgba(0, 194, 203, 0.6);
  flex-shrink: 0;
}
.booking-tip {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  border-right: 3px solid var(--cyan);
}
.booking-tip h4 {
  color: var(--cyan);
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 800;
}
.booking-tip p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.form-intro-title {
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font-display);
}
.form-intro-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.check-icon, .cross-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  font-weight: 900;
  margin-left: 4px;
}
.check-icon { color: var(--cyan); }
.cross-icon { color: #f87171; }

/* ===== BRANDS ===== */
.brands { padding: 100px 0; background: var(--dark-2); }
.brands-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.brand-card { position: relative; background: var(--dark-3); border: 1px solid var(--border); border-radius: 24px; padding: 40px 32px; overflow: hidden; transition: var(--transition); }
.brand-card:hover { transform: translateY(-8px); }
.brand-card-glow { position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; border-radius: 50%; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.genesis-glow { background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 60%); }
.hyundai-glow { background: radial-gradient(circle, rgba(0, 194, 203, 0.15) 0%, transparent 60%); }
.kia-glow { background: radial-gradient(circle, rgba(229, 36, 40, 0.15) 0%, transparent 60%); }
.brand-card:hover .brand-card-glow { opacity: 1; }

.genesis-card { border-color: rgba(201, 168, 76, 0.3); }
.genesis-card:hover { border-color: var(--gold); box-shadow: 0 20px 60px rgba(201, 168, 76, 0.25); }
.hyundai-card { border-color: rgba(0, 194, 203, 0.3); }
.hyundai-card:hover { border-color: var(--cyan); box-shadow: 0 20px 60px rgba(0, 194, 203, 0.25); }
.kia-card { border-color: rgba(229, 36, 40, 0.3); }
.kia-card:hover { border-color: var(--kia-red); box-shadow: 0 20px 60px rgba(229, 36, 40, 0.25); }

.brand-logo-area { font-size: 1.6rem; font-weight: 900; letter-spacing: 3px; padding: 14px 0; margin-bottom: 16px; border-bottom: 1px solid var(--border); }
.genesis-logo-area { color: var(--gold); border-bottom-color: rgba(201, 168, 76, 0.2); }
.hyundai-logo-area { color: var(--cyan); border-bottom-color: rgba(0, 194, 203, 0.2); }
.kia-logo-area { color: #ff6b6b; border-bottom-color: rgba(229, 36, 40, 0.2); }

.brand-name { font-size: 1.6rem; font-weight: 900; margin-bottom: 12px; }
.genesis-card .brand-name { color: var(--gold); }
.hyundai-card .brand-name { color: var(--cyan); }
.kia-card .brand-name { color: #ff6b6b; }

.brand-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.brand-models { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 24px; }
.brand-models li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); }
.model-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.genesis-dot { background: var(--gold); }
.hyundai-dot { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.kia-dot { background: var(--kia-red); box-shadow: 0 0 6px var(--kia-red); }

.brand-tag { display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.genesis-card .brand-tag { background: rgba(201, 168, 76, 0.1); color: var(--gold); border: 1px solid rgba(201, 168, 76, 0.3); }
.hyundai-card .brand-tag { background: rgba(0, 194, 203, 0.1); color: var(--cyan); border: 1px solid rgba(0, 194, 203, 0.3); }
.kia-card .brand-tag { background: rgba(229, 36, 40, 0.1); color: #ff6b6b; border: 1px solid rgba(229, 36, 40, 0.3); }

/* Model cards grid */
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.model-card { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.model-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: var(--shadow-cyan); }
.model-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.genesis-badge-sm { background: rgba(201, 168, 76, 0.15); color: var(--gold); }
.hyundai-badge-sm { background: rgba(0, 194, 203, 0.15); color: var(--cyan); }
.kia-badge-sm { background: rgba(229, 36, 40, 0.15); color: #ff6b6b; }
.model-card h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.model-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: var(--dark-3); }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reason-card { background: var(--dark-4); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.reason-card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: var(--shadow-cyan); }
.reason-number { font-size: 3rem; font-weight: 900; color: rgba(0, 194, 203, 0.15); line-height: 1; margin-bottom: 16px; transition: var(--transition); }
.reason-card:hover .reason-number { color: rgba(0, 194, 203, 0.35); }
.reason-icon-emoji {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(0, 194, 203, 0.1);
  border: 1px solid rgba(0, 194, 203, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.2rem;
}
.reason-icon-emoji .icon-svg { width: 22px; height: 22px; }
.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: rgba(0, 194, 203, 0.1);
  border: 1px solid rgba(0, 194, 203, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.3rem;
}
.value-icon .icon-svg { width: 24px; height: 24px; }
.reason-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.reason-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Comparison table */
.comparison-section { margin-top: 60px; }
.comparison-table-wrap { overflow-x: auto; background: var(--dark-4); border: 1px solid var(--border); border-radius: var(--radius); }
.comparison-table { width: 100%; border-collapse: collapse; text-align: right; }
.comparison-table th, .comparison-table td { padding: 18px 24px; border-bottom: 1px solid var(--border); }
.comparison-table th { background: var(--dark-5); font-weight: 800; font-size: 1rem; color: #fff; }
.comparison-table th.highlight { color: var(--cyan); background: rgba(0, 194, 203, 0.08); }
.comparison-table td.highlight { color: var(--cyan); font-weight: 700; background: rgba(0, 194, 203, 0.03); }

/* ===== TESTIMONIALS ===== */
.real-facilities { padding: 100px 0; background: var(--dark-2); }
.testimonials { padding: 100px 0; background: var(--dark-2); }
.testimonials-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%;
  container-type: inline-size;
  container-name: testimonials;
}
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  flex: 0 0 calc(50cqw - 12px);
  width: calc(50cqw - 12px);
  max-width: calc(50cqw - 12px);
  min-width: 0;
  box-sizing: border-box;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(0, 194, 203, 0.4); box-shadow: var(--shadow-cyan); }
.stars { display: flex; gap: 4px; color: var(--cyan); margin-bottom: 18px; }
.test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark-5);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 194, 203, 0.1);
  border: 1px solid rgba(0, 194, 203, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-icon .icon-svg { width: 20px; height: 20px; }
.footer-meta { margin-top: 12px; }
.feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(0, 194, 203, 0.12);
  color: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon .icon-svg { width: 14px; height: 14px; }
.test-text { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; color: #0a0d14; flex-shrink: 0; }
.test-name { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.test-car { font-size: 0.8rem; color: var(--cyan); margin-top: 2px; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.test-dot.active { background: var(--cyan); border-color: var(--cyan); transform: scale(1.25); box-shadow: 0 0 10px var(--cyan); }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--dark-4) 0%, var(--dark-3) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.cta-banner-content { max-width: 700px; margin: 0 auto; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 16px; }
.cta-banner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 30px; }
.cta-banner-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition); }
.contact-item:hover { border-color: var(--cyan); transform: translateX(-4px); box-shadow: var(--shadow-cyan); }
.contact-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2px; font-weight: 500; }
.contact-value { font-size: 1rem; font-weight: 700; color: var(--text); transition: var(--transition); }
a.contact-value:hover { color: var(--cyan); }
.contact-form { background: var(--dark-3); border: 1px solid var(--border); border-radius: 24px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { 
  background: var(--dark-4); 
  border: 1px solid var(--border); 
  border-radius: var(--radius-sm); 
  padding: 14px 16px; 
  font-family: var(--font); 
  font-size: 16px; /* Prevents auto-zoom on iOS Safari */
  color: var(--text); 
  transition: var(--transition); 
  direction: rtl; 
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.2); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--dark-3); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { display: none; background: rgba(0, 194, 203, 0.1); border: 1px solid rgba(0, 194, 203, 0.4); border-radius: var(--radius-sm); padding: 14px; text-align: center; color: var(--cyan); margin-top: 12px; font-weight: 700; }
.form-success.show { display: block; animation: fadeInDown 0.4s ease; }

/* ===== FOOTER ===== */
.footer-top { background: var(--dark-2); padding: 60px 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo-img { 
  height: 52px; 
  width: auto; 
  max-width: 58px;
  object-fit: contain; 
  border: none; 
  background: transparent; 
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 16px rgba(0, 194, 203, 0.4)); 
  transition: transform 0.3s ease;
}
.footer-logo:hover .footer-logo-img {
  transform: scale(1.08);
}
.footer-name { 
  font-size: 1.2rem; 
  font-weight: 900; 
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan-light) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
}
.footer-tagline { font-size: 0.72rem; color: var(--cyan); font-weight: 700; opacity: 0.85; margin-top: 2px; }
.footer-about { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.footer-links-col h4, .footer-contact-col h4 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); display: inline-block; padding: 4px 0; }
.footer-links-col a:hover { color: var(--cyan); padding-right: 6px; }
.footer-contact-link { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); margin-bottom: 12px; padding: 4px 0; }
.footer-contact-link:hover { color: var(--cyan); }
.footer-contact-link.whatsapp:hover { color: #25d366; }
.footer-bottom { background: var(--dark); padding: 20px 0; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { 
  position: fixed; 
  bottom: max(24px, env(safe-area-inset-bottom, 0px)); 
  left: max(20px, env(safe-area-inset-left, 0px)); 
  width: 56px; 
  height: 56px; 
  background: #25d366; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #fff;
  box-shadow: 0 6px 22px rgba(37,211,102,0.35); 
  z-index: 999; 
  transition: var(--transition); 
  touch-action: manipulation;
}
.whatsapp-float:hover, .whatsapp-float:active { transform: scale(1.06); box-shadow: 0 10px 28px rgba(37,211,102,0.5); }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: waPulse 2s infinite; pointer-events: none; }
@keyframes waPulse { 0%{transform:scale(1);opacity:0.7} 100%{transform:scale(1.55);opacity:0} }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.28s; }
.reveal:nth-child(5) { transition-delay: 0.36s; }
.reveal:nth-child(6) { transition-delay: 0.44s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in, .reveal, .hero-img, .scroll-indicator, .wa-pulse, .badge-dot, .hero-kicker::before {
    animation: none !important;
    transition: none !important;
  }
  .fade-in, .reveal { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
  .services-grid, .services-grid-auto { grid-template-columns: repeat(2, 1fr); }
  .brands-grid-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-showcase-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  /* Layout Spacing */
  .container { padding: 0 16px; }
  .about, .services, .brands, .why-us, .testimonials, .contact, .workshop-gallery, .real-facilities { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-desc { font-size: 0.95rem; }

  /* Mobile Navbar */
  .navbar { padding: 10px 0; }
  .nav-container { padding: 0 16px; position: relative; }
  .logo-img { width: auto; height: 42px; max-width: 48px; }
  .logo-name { font-size: 1.05rem; }
  .logo-sub { font-size: 0.65rem; }
  .menu-toggle { display: flex; flex-shrink: 0; }
  .nav-cta { padding: 8px 14px; font-size: 0.82rem; flex-shrink: 0; min-height: 40px; }
  .lang-switch { flex-shrink: 0; }
  .nav-container { gap: 10px; }

  /* Mobile Navigation Drawer */
  .nav-links { 
    display: flex; 
    position: absolute; 
    top: 100%; 
    right: 0; 
    left: 0; 
    background: rgba(10, 13, 20, 0.98); 
    backdrop-filter: blur(24px); 
    -webkit-backdrop-filter: blur(24px); 
    padding: 16px; 
    flex-direction: column; 
    align-items: stretch;
    gap: 6px; 
    margin: 0;
    border-bottom: 1px solid var(--border); 
    border-top: 1px solid rgba(0, 194, 203, 0.2); 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85); 
    max-height: calc(100vh - 75px); 
    max-height: calc(100dvh - 75px);
    overflow-y: auto; 
    opacity: 0; 
    visibility: hidden; 
    pointer-events: none; 
    transform: translateY(-8px); 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: 1000;
  }
  .nav-links > li { width: 100%; }
  .nav-links.open { 
    opacity: 1; 
    visibility: visible; 
    pointer-events: auto; 
    transform: translateY(0); 
  }
  .nav-links .nav-link { 
    display: flex; 
    align-items: center; 
    width: 100%;
    min-height: 48px;
    padding: 12px 16px; 
    border-radius: var(--radius-sm); 
    font-size: 1rem; 
    font-weight: 700; 
    background: rgba(255, 255, 255, 0.02); 
    border: 1px solid transparent; 
  }
  .nav-links .nav-link:hover, .nav-links .nav-link.active { 
    background: rgba(0, 194, 203, 0.08); 
    border-color: rgba(0, 194, 203, 0.25); 
    color: var(--cyan); 
    padding-right: 20px; 
  }
  .nav-links .nav-link::after { display: none; }

  /* Hero Section Mobile */
  .hero { min-height: auto; }
  .hero-content { padding: 108px 16px 56px; text-align: center; }
  .hero-brand { width: 100%; margin-bottom: 14px; }
  .hero-crest-emblem { width: min(200px, 52vw); }
  .hero-crest-glow { width: 150px; height: 150px; }
  .hero-kicker { justify-content: center; font-size: 0.75rem; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); margin-bottom: 14px; }
  .title-line.sub { font-size: clamp(1.05rem, 4vw, 1.45rem); }
  .hero-desc { font-size: 0.95rem; margin-bottom: 22px; margin-left: auto; margin-right: auto; }
  .hero-brands { gap: 8px; justify-content: center; margin-bottom: 26px; }
  .brand-badge { padding: 7px 14px; font-size: 0.72rem; }
  .brand-divider { display: none; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 360px; margin: 0 auto; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .stats-bar { padding: 20px 0; }
  .stats-bar .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
  }
  .stat-sep { display: none; }
  .stat-num { font-size: 1.55rem; }
  .stat-plus { font-size: 1rem; }
  .stat-label { font-size: 0.7rem; }
  .scroll-indicator { display: none; }
  .facilities-highlight { padding: 40px 0; }

  /* Subpages Inner Hero */
  .inner-hero { padding: 110px 0 45px; }
  .inner-hero-title { font-size: clamp(1.7rem, 6vw, 2.5rem); margin-bottom: 12px; }
  .inner-hero-desc { font-size: 0.95rem; }

  /* About Grid */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img { height: 260px; }
  .about-exp-card { bottom: 12px; right: 12px; padding: 12px 18px; border-radius: 12px; }
  .exp-num { font-size: 1.6rem; }
  .exp-label { font-size: 0.75rem; }
  .about-features { grid-template-columns: 1fr; gap: 10px; }

  /* Grids */
  .brands-grid-3 { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; gap: 16px; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .models-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 18px; }
  .facilities-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .facilities-showcase-grid { grid-template-columns: 1fr; gap: 18px; max-width: none; }
  .showcase-img-wrap { height: 200px; }
  .showcase-body { padding: 16px 18px 20px; }
  .showcase-body h3 { font-size: 1.05rem; }
  .detailed-service-item { grid-template-columns: 1fr; padding: 22px 18px; gap: 16px; }
  .detailed-service-icon { width: 56px; height: 56px; font-size: 1.8rem; }

  /* Cards Padding */
  .brand-card { padding: 28px 20px; border-radius: 20px; }
  .reason-card { padding: 24px 20px; }
  .testimonials-track { gap: 16px; }
  .testimonial-card {
    flex: 0 0 100cqw;
    width: 100cqw;
    max-width: 100cqw;
    padding: 24px 18px;
  }
  .test-text { font-size: 0.92rem; }

  /* Table Horizontal Scrolling */
  .comparison-table-wrap { 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    margin: 0 -4px; 
    border-radius: var(--radius-sm); 
  }
  .comparison-table { min-width: 520px; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; font-size: 0.85rem; }

  /* Contact Page */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 24px 18px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .contact-item { padding: 14px 16px; }
  .contact-value { font-size: 0.92rem; word-break: break-word; }

  /* CTA Banner */
  .cta-banner { padding: 50px 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner p { font-size: 0.95rem; }
  .cta-banner-btns { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; gap: 12px; }
  .cta-banner-btns .btn { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { padding: 40px 0; }
}

@media (max-width: 480px) {
  .logo-sub { display: none; }
  .nav-cta { padding: 7px 12px; font-size: 0.78rem; }
  .nav-logo a { gap: 10px; }
  .facilities-grid { grid-template-columns: 1fr; gap: 12px; }
  .facility-item { padding: 18px 16px; }
  .services-grid, .services-grid-auto { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 22px 18px; }
  .stats-bar .hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .stat { display: flex; align-items: baseline; justify-content: center; gap: 6px; flex-wrap: wrap; }
  .stat-label { margin-top: 0; font-size: 0.85rem; }
  .stat-num { font-size: 1.85rem; }
  .btn { padding: 13px 24px; }
  .whatsapp-float { width: 52px; height: 52px; }
  .whatsapp-float .wa-icon { width: 26px; height: 26px; }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 194, 203, 0.3);
  border-radius: 50px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0, 194, 203, 0.06);
}
.lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}
.lang-opt:hover { color: var(--cyan); background: rgba(0, 194, 203, 0.1); }
.lang-opt.active {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #0a0d14;
}

/* ===== LTR (ENGLISH) OVERRIDES ===== */
html[dir="ltr"] .nav-links { margin-right: 0; margin-left: auto; }
html[dir="ltr"] .nav-link::after { right: auto; left: 50%; transform: translateX(-50%); }
html[dir="ltr"] .feature-item:hover { transform: translateX(4px); }
html[dir="ltr"] .detailed-service-item {
  border-right: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
}
html[dir="ltr"] .detailed-service-item:hover { transform: translateX(3px); }
html[dir="ltr"] .booking-tip {
  border-right: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
}
html[dir="ltr"] .contact-item:hover { transform: translateX(4px); }
html[dir="ltr"] .footer-links-col a:hover { padding-right: 0; padding-left: 6px; }
html[dir="ltr"] .about-exp-card { right: auto; left: -20px; }
html[dir="ltr"] .showcase-badge,
html[dir="ltr"] .gallery-badge { right: auto; left: 14px; }
html[dir="ltr"] .form-group input,
html[dir="ltr"] .form-group select,
html[dir="ltr"] .form-group textarea { direction: ltr; text-align: left; }
html[dir="ltr"] .comparison-table { text-align: left; }
html[dir="ltr"] .whatsapp-float {
  left: auto;
  right: max(20px, env(safe-area-inset-right, 0px));
}
html[dir="ltr"] .hero-content { text-align: left; }
html[dir="ltr"] .hero-brands { justify-content: flex-start; }
@media (max-width: 768px) {
  html[dir="ltr"] .hero-content { text-align: center; }
  html[dir="ltr"] .hero-brands { justify-content: center; }
  html[dir="ltr"] .hero-kicker { justify-content: center; }
  html[dir="ltr"] .nav-links .nav-link:hover,
  html[dir="ltr"] .nav-links .nav-link.active { padding-right: 16px; padding-left: 20px; }
  html[dir="ltr"] .about-exp-card { left: 12px; }
}
@media (max-width: 480px) {
  .lang-opt { min-width: 34px; min-height: 32px; padding: 0 9px; font-size: 0.72rem; }
}
