/* ============================================================
   THE CAR PLAZA — Main Stylesheet
   Theme: Dark Automotive (Black + Red + Silver)
   ============================================================ */

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

:root {
  --red:       #e31e25;
  --red-dark:  #b91218;
  --red-glow:  rgba(227,30,37,0.25);
  --black:     #0a0a0a;
  --dark:      #111111;
  --dark2:     #1a1a1a;
  --dark3:     #222222;
  --dark4:     #2a2a2a;
  --silver:    #c0c0c0;
  --light:     #e8e8e8;
  --white:     #ffffff;
  --text-muted:#888888;
  --border:    rgba(255,255,255,0.08);
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h:     112px;
  --font:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section       { padding: 96px 0; }
.section-sm    { padding: 60px 0; }
.mt-md         { margin-top: 32px; }
.mt-lg         { margin-top: 48px; }
.text-center   { text-align: center; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header.light .section-label { color: var(--red); }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.06);
  color: var(--light);
  border-color: transparent;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--light);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
/* Nav buttons */
.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--light);
  transition: var(--transition);
}
.btn-outline-sm:hover { border-color: var(--red); color: var(--red); }
.btn-primary-sm {
  display: inline-flex; align-items: center;
  padding: 8px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  background: var(--red); color: var(--white);
  transition: var(--transition);
}
.btn-primary-sm:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text-wrap { display: none; }
.logo-main { font-size: 15px; font-weight: 800; color: var(--white); line-height: 1.1; }
.logo-sub  { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--light);
  border-radius: 1px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.92) 0%,
    rgba(10,10,10,0.85) 50%,
    rgba(30,0,0,0.7) 100%);
  z-index: 1;
}
.hero-animated-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(227,30,37,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(227,30,37,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
}
.hero-video-bg { position: absolute; inset: 0; }
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text-col { display: flex; flex-direction: column; }
.hero-img-col { display: flex; align-items: center; justify-content: center; }
.hero-shop-img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  border: 2px solid var(--red);
  box-shadow: 0 0 40px rgba(227,30,37,0.3), 0 20px 60px rgba(0,0,0,0.6);
  display: block;
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,30,37,0.12);
  border: 1px solid rgba(227,30,37,0.3);
  color: var(--red);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-content h1 {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-accent { color: var(--red); }
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  font-size: 14px;
  color: var(--silver);
}
.stars-row { display: flex; gap: 2px; }
.star { font-size: 18px; color: var(--dark4); }
.star.filled { color: #f5a623; }
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollDown 1.5s infinite;
}
@keyframes scrollDown {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
}
.stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-suffix { font-size: 28px; font-weight: 900; color: var(--red); }
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.stat-divider {
  width: 1px; height: 60px;
  background: var(--border);
}

/* ===== FEATURED SERVICES GRID ===== */
.featured { background: var(--dark); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--dark2);
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feat-card .feat-link {
  margin-top: auto;
  align-self: flex-start;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: var(--transition);
  z-index: 2;
}
.feat-card:hover {
  border-color: rgba(227,30,37,0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.feat-card:hover::before { background: var(--red); }
.feat-card-highlight {
  border-color: rgba(227,30,37,0.3);
}
/* Background image cards */
.feat-card[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.feat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.88) 60%,
    rgba(20,0,0,0.85) 100%);
  border-radius: var(--radius-lg);
  z-index: 0;
  transition: var(--transition);
}
.feat-card:hover .feat-card-overlay {
  background: linear-gradient(160deg,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.72) 60%,
    rgba(50,0,0,0.75) 100%);
}
/* Brighter sub-text on image cards */
.feat-card[style*="background-image"] p {
  color: rgba(220,220,220,0.92);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.feat-card .feat-badge,
.feat-card .feat-icon,
.feat-card h3,
.feat-card p,
.feat-card .feat-link { position: relative; z-index: 1; }
.feat-card-wrap {
  position: relative;
  padding-top: 20px;
}
.feat-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px 6px 12px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(227,30,37,0.8), 0 4px 12px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.feat-badge::before {
  content: '★';
  font-size: 13px;
}
.feat-icon {
  width: 52px; height: 52px;
  margin-bottom: 20px;
  color: var(--red);
}
.feat-icon svg { width: 100%; height: 100%; }
.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feat-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feat-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1.5px solid var(--red);
  border-radius: 6px;
  background: rgba(227,30,37,0.08);
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.feat-link:hover {
  background: var(--red);
  color: var(--white);
  gap: 10px;
}

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--dark2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-label { color: var(--red); margin-bottom: 12px; }
.why-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.why-text > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}
.why-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-check {
  width: 24px; height: 24px;
  background: rgba(227,30,37,0.15);
  border: 1px solid rgba(227,30,37,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong { font-size: 15px; color: var(--white); display: block; margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--text-muted); }
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-stat-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.why-stat-card:hover { border-color: rgba(227,30,37,0.3); transform: translateY(-4px); }
.wsc-icon { font-size: 24px; margin-bottom: 12px; }
.wsc-icon.red { color: var(--red); }
.wsc-icon.dark { color: var(--silver); }
.wsc-num { font-size: 32px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.wsc-label { font-size: 12px; color: var(--text-muted); }

/* ===== BRANDS ===== */
.brands-section { background: var(--dark); border-top: 1px solid var(--border); }
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.brand-pill {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 1px;
  transition: var(--transition);
}
.brand-pill:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(227,30,37,0.08);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark2); overflow: hidden; }
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.or-num { font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.or-right { display: flex; flex-direction: column; gap: 4px; }
.or-count { font-size: 13px; color: var(--text-muted); }
.testimonials-slider { overflow: hidden; margin: 0 -24px; padding: 0 24px; }
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
  min-width: 380px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
  transition: var(--transition);
}
.testi-card:hover { border-color: rgba(227,30,37,0.3); }
.testi-stars { color: #f5a623; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--white);
  flex-shrink: 0;
}
.testi-author strong { font-size: 14px; color: var(--white); display: block; }
.testi-author span { font-size: 12px; color: var(--text-muted); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 44px; height: 44px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-btn svg { display: block; }
.slider-btn:hover { background: var(--red); border-color: var(--red); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  background: var(--dark4);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { background: var(--dark); }
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gp-item { border-radius: var(--radius-lg); overflow: hidden; }
.gp-tall { grid-row: span 2; }
.gp-wide { grid-column: span 2; }
.gp-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--red);
}
.gp-placeholder:hover { transform: scale(1.02); }
.gp-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.gp-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 0;
}

/* ===== VISIT SHOWROOM ===== */
.visit-section { background: var(--dark); }
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.visit-text .section-label { margin-bottom: 12px; }
.visit-text h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.visit-text p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.visit-details { display: flex; flex-direction: column; gap: 12px; }
.visit-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); }
.visit-row svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.visit-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--red);
  box-shadow: 0 8px 40px rgba(227,30,37,0.25), 0 20px 60px rgba(0,0,0,0.5);
  display: block;
}
@media (max-width: 768px) {
  .visit-inner { grid-template-columns: 1fr; gap: 32px; }
  .visit-img { order: -1; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--dark2);
  overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(227,30,37,0.12) 0%, transparent 70%),
    linear-gradient(180deg, var(--dark2) 0%, #1a0505 50%, var(--dark2) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 0 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-hours { display: flex; flex-direction: column; gap: 6px; }
.fh-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); gap: 16px; }
.fh-row span:last-child { color: var(--silver); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li,
.footer-col ul a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--red); }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 3px; color: var(--red); }
.footer-contact-list a { color: var(--text-muted); }
.footer-contact-list a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-payment { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-payment span { font-size: 12px; color: var(--text-muted); }
.pay-chip {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
  color: var(--silver);
  font-weight: 600;
}

/* ===== FLOATING BUTTONS ===== */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(227,30,37,0.5);
  transition: var(--transition);
  animation: floatPulse 3s infinite;
}
.float-call:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(227,30,37,0.7);
}
.float-whatsapp {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 3s infinite 1.5s;
}
.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.7);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(227,30,37,0.5); }
  50% { box-shadow: 0 4px 32px rgba(227,30,37,0.8), 0 0 0 8px rgba(227,30,37,0.08); }
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(227,30,37,0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.contact-hero-inner { display: flex; align-items: center; gap: 60px; }
.contact-hero-text { flex: 1; }
.contact-hero-img { flex: 0 0 420px; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid rgba(227,30,37,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.contact-hero-img img { width: 100%; height: 280px; object-fit: cover; display: block; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: var(--dark4); }

/* Story section */
.story-section { background: var(--dark); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.story-card:hover { border-color: rgba(227,30,37,0.3); transform: translateY(-4px); }
.story-card-wide { grid-column: span 2; }
.sc-year { font-size: 48px; font-weight: 900; color: var(--red); line-height: 1; }
.sc-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.sc-num { font-size: 36px; font-weight: 900; color: var(--white); }
.story-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.story-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-highlight {
  background: rgba(227,30,37,0.08);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--silver);
  font-style: italic;
  line-height: 1.7;
}

/* Values section */
.values-section { background: var(--dark2); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: rgba(227,30,37,0.4); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 64px; height: 64px;
  background: rgba(227,30,37,0.1);
  border: 1px solid rgba(227,30,37,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
}
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Team section */
.team-section { background: var(--dark); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { background: var(--dark); }
.services-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--red); color: var(--white); }
.tab-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.service-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.service-section:last-child { border-bottom: none; }
.service-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-section-grid.reverse { direction: rtl; }
.service-section-grid.reverse > * { direction: ltr; }
.service-visual {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.service-visual svg { width: 120px; height: 120px; color: var(--red); opacity: 0.6; }
.service-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(227,30,37,0.06) 0%, transparent 70%);
}
.service-visual-img {
  padding: 0;
  background: none;
  border: none;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.service-visual-img::before { display: none; }
.service-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.service-info h2 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.service-info p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.service-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.sf-item { display: flex; align-items: flex-start; gap: 12px; }
.sf-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.sf-item span { font-size: 14px; color: var(--silver); line-height: 1.5; }
.service-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(227,30,37,0.1); border: 1px solid rgba(227,30,37,0.2); color: var(--red); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 16px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page { background: var(--dark); }
.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.gallery-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark2);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.gallery-card:hover { transform: scale(1.02); border-color: rgba(227,30,37,0.3); }
.gallery-card-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
}
.gallery-card-inner svg { width: 48px; height: 48px; opacity: 0.3; }
.gallery-card-inner span { font-size: 13px; font-weight: 600; }
.gallery-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-card:hover .gallery-card-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content { color: var(--white); }
.gallery-overlay-content strong { display: block; font-size: 15px; margin-bottom: 4px; }
.gallery-overlay-content span { font-size: 12px; color: var(--silver); }
.gallery-card.span-2 { grid-column: span 2; }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-page { background: var(--dark); }
.review-summary {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 60px;
}
.rs-num { font-size: 80px; font-weight: 900; color: var(--white); line-height: 1; }
.rs-stars { font-size: 28px; color: #f5a623; letter-spacing: 4px; margin-bottom: 8px; }
.rs-count { font-size: 14px; color: var(--text-muted); }
.rs-bars { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.rs-bar-row { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.rs-bar-row span:first-child { width: 30px; color: var(--text-muted); }
.rs-bar-track {
  flex: 1; height: 6px;
  background: var(--dark3);
  border-radius: 3px;
  overflow: hidden;
}
.rs-bar-fill { height: 100%; background: #f5a623; border-radius: 3px; }
.rs-bar-row span:last-child { width: 30px; color: var(--text-muted); text-align: right; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card-full {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card-full:hover { border-color: rgba(227,30,37,0.3); transform: translateY(-3px); }
.rcf-stars { color: #f5a623; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.rcf-text { font-size: 14px; color: var(--silver); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.rcf-author { display: flex; align-items: center; gap: 12px; }
.rcf-avatar { width: 36px; height: 36px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: var(--white); flex-shrink: 0; }
.rcf-author strong { font-size: 14px; color: var(--white); display: block; }
.rcf-author span { font-size: 12px; color: var(--text-muted); }
.rcf-service { display: inline-block; background: rgba(227,30,37,0.1); border: 1px solid rgba(227,30,37,0.2); color: var(--red); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.ci-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.ci-card:hover { border-color: rgba(227,30,37,0.3); }
.ci-icon-box {
  width: 44px; height: 44px;
  background: rgba(227,30,37,0.1);
  border: 1px solid rgba(227,30,37,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.ci-value { font-size: 14px; color: var(--white); line-height: 1.6; }
.ci-value a { color: var(--silver); transition: var(--transition); }
.ci-value a:hover { color: var(--red); }
.open-chip { display: inline-block; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #22c55e; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 10px; margin-left: 8px; }
/* Enquiry Form */
.enquiry-form-wrap {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  z-index: 2;
}
.enquiry-form-wrap h2 { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.enquiry-form-wrap p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.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: 13px; font-weight: 600; color: var(--silver); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  padding: 12px 16px;
  outline: none;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dark4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,30,37,0.1); }
.form-group select option { background: var(--dark2); color: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #22c55e;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}
/* Map */
.map-section { background: var(--dark2); padding: 0; }
.map-wrap {
  height: 480px;
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%) invert(10%); }
.map-overlay-info {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(10,10,10,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  max-width: 300px;
  backdrop-filter: blur(12px);
}
.map-overlay-info h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.map-overlay-info p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.map-overlay-info a { font-size: 12px; color: var(--red); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .service-section-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-section-grid.reverse { direction: ltr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 96px; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; border-radius: var(--radius); font-size: 16px; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: 36px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .stats-grid { flex-direction: column; gap: 0; }
  .stat-divider { width: 80%; height: 1px; }
  .stat-item { padding: 20px; }

  .featured-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gp-tall { grid-row: auto; }
  .gp-wide { grid-column: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid-main { grid-template-columns: 1fr 1fr; }
  .gallery-card.span-2 { grid-column: auto; }
  .contact-hero-inner { flex-direction: column; }
  .contact-hero-img { flex: none; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .testi-card { min-width: 300px; }
  .review-summary { flex-direction: column; align-items: flex-start; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .enquiry-form-wrap { padding: 24px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .gallery-grid-main { grid-template-columns: 1fr; }
  .brands-strip { gap: 8px; }
  .hero-btns .btn { font-size: 14px; padding: 12px 20px; }
  .overall-rating { flex-direction: column; text-align: center; }
}
