/* ============================================================
   VELOFORGE — SECTIONS CSS (Pearl White Luxury Theme)
   ============================================================ */

.sec {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .sec { padding: 80px 0; } }

/* ============================================================
   1. NAVIGATION HEADER — Floating Pearl White Glass
   ============================================================ */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  z-index: 500;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: all 0.5s var(--ease);
}
header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  height: 68px;
}
header.hidden {
  transform: translateY(-100%);
}
@media (max-width: 768px) {
  header { padding: 0 24px; }
}

.logo {
  font-family: var(--font-d);
  font-size: 24px; letter-spacing: 0.08em;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}
header.scrolled .logo { color: var(--black); }
.logo span { color: var(--red); }

.nav-links {
  display: flex; gap: 38px; align-items: center;
}
@media (max-width: 900px) { .nav-links { display: none; } }

.nav-link {
  font-family: var(--font-b); font-size: 11px;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey2); text-decoration: none;
  transition: color 0.3s; position: relative;
}
header.scrolled .nav-link { color: var(--grey2); }
.nav-link:hover { color: var(--red); }
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0%; height: 1.5px; background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after { width: 100%; }

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

.nav-reserve-btn {
  background: var(--red); color: var(--white);
  border: none; padding: 10px 24px; border-radius: 1px;
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.nav-reserve-btn:hover {
  background: var(--red2);
  box-shadow: 0 6px 20px var(--rglow);
}

.nav-icon-btn {
  background: transparent; border: none;
  color: var(--grey2);
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer; transition: all 0.3s;
  position: relative;
}
header.scrolled .nav-icon-btn { color: var(--grey2); }
.nav-icon-btn:hover { color: var(--red); }

.nav-badge {
  position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   2. HERO SECTION — Full-bleed with Dark Overlay
   ============================================================ */
#hero {
  height: 100vh; min-height: 700px;
  background: var(--white);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}

#hero-particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}

/* Diagonal split background (white left strip) */
.hero-bg-split {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.035) 0%, rgba(0,0,0,0) 50%, transparent 100%);
  z-index: 2; pointer-events: none;
}

/* Dramatic red accent line */
.hero-red-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  z-index: 10;
}

/* Hero Content */
#hero-content {
  position: relative; z-index: 5;
  padding: 100px 0 60px 80px;
  max-width: 640px;
}
.hero-model-tag {
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-model-tag::before {
  content: ''; display: inline-block;
  width: 30px; height: 2px; background: var(--red);
}

.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.92;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-quote {
  font-family: var(--font-p);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(0,0,0,0.5);
  margin-bottom: 36px;
  line-height: 1.5;
  max-width: 460px;
}

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

/* Inline spec pill next to buttons */
.hero-inline-pill {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8px 18px;
  border-left: 2px solid var(--red);
  margin-left: 6px;
}
.hero-inline-pill .fp-val {
  font-family: var(--font-d); font-size: 26px; color: var(--red); line-height: 1;
}
.hero-inline-pill .fp-lbl {
  font-family: var(--font-b); font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey3);
  margin-top: 2px;
}

/* Hero Bike Visual - Right side */
.hero-bike-side {
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  width: 56%; z-index: 4;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
#hero-bike-img {
  width: 100%; height: auto;
  object-fit: contain;
  animation: floatBike 6s ease-in-out infinite;
}
@keyframes floatBike {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Floating Spec Pills */
.f-pill {
  position: absolute;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--pearl3);
  backdrop-filter: blur(16px);
  padding: 12px 20px;
  border-radius: 60px;
  display: flex; align-items: center; gap: 12px;
  pointer-events: auto; z-index: 15;
  animation: pillFloat 5s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.f-pill.a { top: 22%; left: 10%; animation-delay: 0s; }
.f-pill.b { bottom: 25%; right: 18%; animation-delay: -2.5s; }

@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fp-val {
  font-family: var(--font-d); font-size: 22px; color: var(--red3);
}
.fp-lbl {
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey3);
}

/* Hotspots */
.hotspot {
  position: absolute; width: 22px; height: 22px;
  cursor: pointer; z-index: 10; pointer-events: auto;
}
.hotspot-dot {
  position: absolute; inset: 0;
  background: var(--red); border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  box-shadow: 0 0 10px var(--red);
}
.hotspot-dot::after {
  content: ''; position: absolute; inset: -6px;
  border: 1px solid var(--red3); border-radius: 50%;
  animation: pulse 2s infinite ease-out;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hotspot-tooltip {
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.97);
  background: var(--dark);
  border: 1px solid rgba(200,16,46,0.3);
  backdrop-filter: blur(20px);
  padding: 14px 18px; border-radius: 8px;
  width: 230px; opacity: 0; pointer-events: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 20;
}
.hotspot:hover .hotspot-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}
.hotspot-tooltip h4 {
  font-family: var(--font-b); font-size: 11px;
  color: var(--red3); margin-bottom: 4px; letter-spacing: 0.05em;
}
.hotspot-tooltip p {
  font-family: var(--font-o); font-size: 11px;
  color: rgba(255,255,255,0.6); line-height: 1.5;
}

/* Slide Thumb Selector */
.hero-thumbs {
  position: absolute; right: 48px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
  z-index: 10;
}
.h-thumb {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px; padding: 6px 10px;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all 0.3s;
  white-space: nowrap;
}
.h-thumb.active, .h-thumb:hover {
  background: var(--red); border-color: var(--red);
}
.h-thumb-n {
  font-family: var(--font-d); font-size: 12px;
  color: rgba(0,0,0,0.5);
}
.h-thumb.active .h-thumb-n, .h-thumb:hover .h-thumb-n { color: var(--white); }

/* Hero bottom slide arrows */
.hero-arrows {
  position: absolute; bottom: 38px; left: 80px;
  display: flex; gap: 12px; z-index: 10;
}
.h-arr {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--black); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
}
.h-arr:hover {
  background: var(--red); border-color: var(--red); color: var(--white);
}

/* ============================================================
   3. MARQUEE RIBBON
   ============================================================ */
.marquee-ribbon {
  background: var(--red);
  padding: 14px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 60px;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-item {
  font-family: var(--font-b); font-size: 12px;
  font-weight: 600; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 20px;
}
.marquee-item::after {
  content: '✦'; color: rgba(255,255,255,0.4);
}

/* ============================================================
   4. NUMBERS SECTION (Bold Stats on White)
   ============================================================ */
#numbers {
  background: var(--white);
  border-bottom: 1px solid var(--pearl3);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}
.num-cell {
  padding: 60px 40px;
  border-right: 1px solid var(--pearl3);
  text-align: center;
  transition: background 0.3s;
}
.num-cell:last-child { border-right: none; }
.num-cell:hover { background: var(--pearl); }
.num-val {
  font-family: var(--font-d);
  font-size: clamp(50px, 6vw, 90px);
  color: var(--black); line-height: 1;
  margin-bottom: 6px;
}
.num-val span { color: var(--red); }
.num-label {
  font-family: var(--font-b); font-size: 11px;
  font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--grey3);
}

/* ============================================================
   5. PRODUCT CARDS (White background editorial)
   ============================================================ */
#products {
  background: var(--pearl);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  margin-top: 50px;
}
.product-card {
  background: var(--white);
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.product-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  z-index: 2;
  transform: scale(1.01);
}
.product-card:hover .pc-img img {
  transform: scale(1.06);
}
.pc-img {
  height: 240px;
  overflow: hidden;
  background: var(--pearl);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.pc-img img {
  width: 82%; height: auto;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}

/* Red hover flash overlay */
.pc-overlay {
  position: absolute; inset: 0;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex; align-items: center; justify-content: center;
}
.product-card:hover .pc-overlay { opacity: 0.08; }

.pc-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--red); color: var(--white);
  font-family: var(--font-b); font-size: 9px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}

.pc-body { padding: 24px 28px 28px; border-top: 2px solid var(--pearl); }
.pc-cat {
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
}
.pc-name {
  font-family: var(--font-d); font-size: 32px;
  line-height: 1; margin-bottom: 10px; color: var(--black);
}
.pc-desc {
  font-family: var(--font-o); font-size: 13px; color: var(--grey2);
  line-height: 1.6; margin-bottom: 18px;
  height: 54px; overflow: hidden;
}
.pc-specs {
  display: flex; gap: 16px; margin-bottom: 20px;
}
.pc-spec {
  font-family: var(--font-b); font-size: 11px; color: var(--grey3);
}
.pc-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--pearl3); padding-top: 16px;
}
.pc-price {
  font-family: var(--font-d); font-size: 28px; color: var(--black);
}

/* ============================================================
   6. EDITORIAL FEATURE SECTION (Black Panel) 
   ============================================================ */
#feature-banner {
  background: var(--pearl);
  padding: 140px 0;
  border-top: 1px solid var(--pearl3);
  border-bottom: 1px solid var(--pearl3);
}
.fb-inner {
  display: flex; gap: 80px; align-items: center;
}
@media (max-width: 768px) { .fb-inner { flex-direction: column; gap: 40px; } }
.fb-left { flex: 1; }
.fb-right {
  flex: 1.2;
  background: var(--white);
  border: 1px solid var(--pearl3);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.fb-eyebrow {
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.fb-title {
  font-family: var(--font-d);
  font-size: clamp(42px, 5.5vw, 80px);
  line-height: 0.92; color: var(--black);
  margin-bottom: 20px;
}
.fb-desc {
  font-family: var(--font-o);
  font-size: 15px; color: var(--grey2);
  line-height: 1.7; margin-bottom: 32px;
}
.fb-stat { margin-bottom: 20px; }
.fb-stat-val {
  font-family: var(--font-d);
  font-size: 52px; color: var(--red); line-height: 1;
}
.fb-stat-lbl {
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: 0.15em; color: var(--grey3);
  text-transform: uppercase;
}

/* ============================================================
   7. CONFIGURATOR (White Background Studio)
   ============================================================ */
#configurator { background: var(--white); }

.config-layout {
  display: flex; gap: 60px; align-items: flex-start; margin-top: 50px;
}
@media (max-width: 992px) { .config-layout { flex-direction: column; } }

.config-stage {
  flex: 1.4;
  background: var(--pearl);
  border: 1px solid var(--pearl3);
  border-radius: 6px;
  min-height: 440px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
#cfg-bike-img {
  width: 80%; height: auto; object-fit: contain;
  position: relative; z-index: 2;
}

.config-controls {
  flex: 0 1 380px;
}
.cc-section { margin-bottom: 28px; }
.cc-title {
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey3); margin-bottom: 12px;
  border-bottom: 1px solid var(--pearl3); padding-bottom: 10px;
}

.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: var(--white); border: 1.5px solid var(--pearl3);
  padding: 9px 16px; border-radius: 2px;
  font-family: var(--font-b); font-size: 11px; font-weight: 500;
  color: var(--grey2); cursor: pointer; transition: all 0.3s;
}
.pill.on, .pill:hover {
  border-color: var(--red); color: var(--red);
  background: rgba(200,16,46,0.02);
}

.swatch-group { display: flex; gap: 10px; }
.swatch {
  width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.3s;
}
.swatch.on { border-color: var(--red); transform: scale(1.1); }

.config-price-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 20px 0;
  border-top: 1.5px solid var(--pearl3); padding-top: 20px;
}
.cpb-lbl {
  font-family: var(--font-b); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey4); margin-bottom: 4px;
}
.cpb-val {
  font-family: var(--font-d); font-size: 32px; color: var(--black);
}

/* ============================================================
   8. TECHNOLOGY SECTION (Pearl Background)
   ============================================================ */
#tech { background: var(--pearl2); }

.tech-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0; margin-top: 50px;
  border: 1px solid var(--pearl3);
}
.tech-item {
  padding: 40px 35px;
  border-right: 1px solid var(--pearl3);
  border-bottom: 1px solid var(--pearl3);
  transition: background 0.3s;
}
.tech-item:hover { background: var(--white); }
.ti-num {
  font-family: var(--font-d); font-size: 42px;
  color: var(--red); margin-bottom: 18px;
}
.ti-title {
  font-family: var(--font-b); font-size: 17px;
  font-weight: 600; margin-bottom: 12px; color: var(--black);
}
.ti-desc {
  font-family: var(--font-o); font-size: 13px;
  color: var(--grey2); line-height: 1.65;
}

/* ============================================================
   9. DEALERS SECTION (White)
   ============================================================ */
#dealers { background: var(--white); }

.city-tabs {
  display: flex; gap: 0; margin-top: 40px; margin-bottom: 0;
  border-bottom: 1px solid var(--pearl3);
  flex-wrap: wrap;
}
.city-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 26px;
  font-family: var(--font-b); font-size: 11px;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey3); cursor: pointer; transition: all 0.3s;
  margin-bottom: -1px;
}
.city-tab.active { color: var(--red); border-bottom-color: var(--red); }
.city-tab:hover { color: var(--red); }

.city-pane {
  display: none;
  padding: 40px 0;
  border-bottom: 1px solid var(--pearl3);
}
.city-pane.active { display: flex; gap: 60px; align-items: flex-start; }
@media (max-width: 768px) { .city-pane.active { flex-direction: column; gap: 24px; } }

.cp-info { flex: 1; }
.cp-name {
  font-family: var(--font-d); font-size: 32px;
  color: var(--black); margin-bottom: 12px;
}
.cp-address {
  font-family: var(--font-o); font-size: 14px;
  color: var(--grey2); line-height: 1.6; margin-bottom: 16px;
}
.cp-hotline {
  font-family: var(--font-b); font-size: 11px;
  letter-spacing: 0.1em; color: var(--grey3);
}
.cp-avail {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,100,0.08);
  border: 1px solid rgba(0,200,100,0.2);
  color: #00aa55; font-family: var(--font-b); font-size: 10px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-top: 14px;
}
.cp-avail::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: #00aa55;
  box-shadow: 0 0 6px #00aa55;
}

/* ============================================================
   10. GALLERY SECTION (Pearl)
   ============================================================ */
#gallery { background: var(--pearl2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3px; margin-top: 50px;
}
.gal-item {
  overflow: hidden; cursor: pointer;
  position: relative;
}
.gal-inner {
  height: 230px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--pearl3);
  transition: transform 0.6s var(--ease);
}
.gal-inner img {
  width: 80%; height: auto; object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.gal-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--red);
  padding: 12px 18px;
  font-family: var(--font-d); font-size: 20px; color: var(--white);
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.gal-item:hover .gal-inner { transform: scale(1.04); }
.gal-item:hover .gal-inner img { transform: scale(1.06); }
.gal-item:hover .gal-label { transform: translateY(0); }

/* ============================================================
   11. TESTIMONIALS (White)
   ============================================================ */
#testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px; margin-top: 50px;
}
.testi-card {
  background: var(--pearl);
  border: 1px solid var(--pearl3);
  border-top: 3px solid var(--red);
  padding: 36px;
  transition: box-shadow 0.3s;
}
.testi-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.07); }
.t-stars { color: var(--red); font-size: 14px; margin-bottom: 16px; }
.t-text {
  font-family: var(--font-p); font-style: italic;
  font-size: 15px; color: var(--grey1); line-height: 1.6;
  margin-bottom: 22px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-family: var(--font-b); font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.t-name { font-family: var(--font-b); font-size: 14px; font-weight: 600; }
.t-city { font-size: 11px; color: var(--grey3); margin-top: 2px; }

/* ============================================================
   12. CONTACT (White Theme)
   ============================================================ */
#contact { 
  background: var(--pearl); 
  padding: 120px 0; 
  border-top: 1px solid var(--pearl3);
}

.contact-split {
  display: flex; gap: 80px; align-items: flex-start;
}
@media (max-width: 768px) { .contact-split { flex-direction: column; gap: 40px; } }

.cl-left { flex: 1; }
.cl-eyebrow {
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.cl-title {
  font-family: var(--font-d); font-size: clamp(40px, 5vw, 72px);
  color: var(--black); margin-bottom: 20px; line-height: 0.95;
}
.cl-desc {
  font-family: var(--font-o); font-size: 14px;
  color: var(--grey2); line-height: 1.7; margin-bottom: 30px;
}
.cl-hotline {
  font-family: var(--font-d); font-size: 42px; color: var(--black);
  letter-spacing: 0.05em; margin-bottom: 8px;
}
.cl-addr {
  font-family: var(--font-o); font-size: 12px;
  color: var(--grey2); line-height: 1.6;
}

.cl-right { flex: 1.2; }
.c-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.c-group { display: flex; flex-direction: column; }
.c-group.full { grid-column: span 2; }
.c-label {
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey3); margin-bottom: 8px;
}
.c-input {
  background: var(--white);
  border: 1px solid var(--pearl3);
  padding: 15px 18px; border-radius: 2px;
  color: var(--black); font-family: var(--font-b); font-size: 13px;
  transition: all 0.3s;
}
.c-input:focus {
  border-color: var(--red); outline: none;
  background: var(--white);
}
.c-input::placeholder { color: var(--light2); }
.c-input option { background: var(--white); color: var(--black); }

.c-submit {
  grid-column: span 2;
  background: var(--red); border: none;
  padding: 18px; font-family: var(--font-b); font-size: 11px;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); border-radius: 2px; cursor: pointer;
  transition: all 0.3s;
}
.c-submit:hover {
  background: var(--red2);
  box-shadow: 0 8px 25px var(--rglow);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--white);
  border-top: 1px solid var(--pearl3);
  padding: 36px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: var(--font-d); font-size: 22px;
  letter-spacing: 0.1em; color: var(--black);
}
.footer-logo span { color: var(--red); }
.footer-copy {
  font-family: var(--font-o); font-size: 11px;
  color: var(--grey3);
}
.footer-links {
  display: flex; gap: 24px;
}
.footer-links a {
  font-family: var(--font-o); font-size: 11px;
  color: var(--grey3);
  text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--red); }

/* ============================================================
   RESERVATION / CART DRAWER
   ============================================================ */
#cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 900; opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
}
#cart-overlay.open { opacity: 1; visibility: visible; }

#cart-drawer {
  position: fixed; top: 0; right: -460px;
  width: 440px; height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--pearl3);
  z-index: 1000; padding: 0;
  display: flex; flex-direction: column;
  transition: right 0.5s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,0.12);
}
#cart-drawer.open { right: 0; }

.cd-header {
  padding: 28px 32px; border-bottom: 1px solid var(--pearl3);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white);
}
.cd-title {
  font-family: var(--font-d); font-size: 28px; color: var(--black);
}
.cd-close {
  background: transparent; border: none;
  font-size: 20px; cursor: pointer; color: var(--grey3);
  transition: color 0.3s;
}
.cd-close:hover { color: var(--red); }

.cd-items {
  flex: 1; overflow-y: auto; padding: 20px 32px;
  scrollbar-width: none;
}
.cd-items::-webkit-scrollbar { display: none; }

.cd-item {
  display: flex; gap: 16px; align-items: center;
  border: 1px solid var(--pearl3); border-radius: 4px;
  padding: 16px; margin-bottom: 14px;
  transition: border-color 0.3s;
}
.cd-item:hover { border-color: var(--red); }
.cd-item-img { width: 68px; height: auto; object-fit: contain; }
.cd-item-info { flex: 1; }
.cd-item-name {
  font-family: var(--font-b); font-size: 13px;
  font-weight: 600; color: var(--black); margin-bottom: 4px;
}
.cd-item-sub {
  font-family: var(--font-o); font-size: 11px;
  color: var(--grey3); margin-bottom: 6px;
}
.cd-item-price {
  font-family: var(--font-d); font-size: 18px; color: var(--red);
}
.cd-item-rm {
  background: transparent; border: none;
  color: var(--grey4); cursor: pointer; font-size: 13px;
  transition: color 0.3s;
}
.cd-item-rm:hover { color: var(--red); }

.cd-empty { text-align: center; padding: 60px 20px; color: var(--grey4); font-size: 13px; }

.cd-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--pearl3); background: var(--pearl);
}
.cd-total-row {
  display: flex; justify-content: space-between; margin-bottom: 16px; align-items: baseline;
}
.cd-total-label { font-family: var(--font-b); font-size: 11px; color: var(--grey3); letter-spacing: 0.1em; }
.cd-total-val { font-family: var(--font-d); font-size: 32px; color: var(--black); }
.cd-checkout-btn {
  width: 100%; background: var(--black); color: var(--white);
  border: none; padding: 18px; cursor: pointer;
  font-family: var(--font-b); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.3s;
}
.cd-checkout-btn:hover { background: var(--red); }

/* ============================================================
   QUICK VIEW MODAL
   ============================================================ */
#qv-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  z-index: 1100; opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
}
#qv-overlay.open { opacity: 1; visibility: visible; }

#qv-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%; max-width: 880px;
  background: var(--white);
  border-radius: 4px; z-index: 1200;
  padding: 0; overflow: hidden;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
#qv-modal.open {
  opacity: 1; visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.qvm-close {
  position: absolute; top: 20px; right: 24px;
  background: transparent; border: none;
  font-size: 22px; cursor: pointer; color: var(--grey3); z-index: 5;
}
.qvm-close:hover { color: var(--red); }

.qvm-grid {
  display: flex; min-height: 420px;
}
.qvm-visual {
  flex: 1.1; background: var(--pearl); padding: 40px;
  display: flex; align-items: center; justify-content: center;
}
.qvm-img { width: 90%; height: auto; object-fit: contain; }

.qvm-info { flex: 1; padding: 40px; }
.qvm-cat {
  font-family: var(--font-b); font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.qvm-title {
  font-family: var(--font-d); font-size: 48px; color: var(--black);
  margin-bottom: 14px; line-height: 1;
}
.qvm-desc {
  font-family: var(--font-o); font-size: 13px; color: var(--grey2);
  line-height: 1.6; margin-bottom: 22px;
}
.qvm-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  border-top: 1px solid var(--pearl3); border-bottom: 1px solid var(--pearl3);
  padding: 16px 0; margin-bottom: 22px;
}
.qvm-spec-lbl { font-size: 10px; color: var(--grey4); margin-bottom: 3px; letter-spacing: 0.1em; }
.qvm-spec-val { font-family: var(--font-b); font-size: 13px; font-weight: 600; color: var(--black); }
.qvm-footer { display: flex; align-items: center; justify-content: space-between; }
.qvm-price { font-family: var(--font-d); font-size: 36px; color: var(--black); }

/* ============================================================
   AOS animate on scroll
   ============================================================ */
[data-aos] {
  opacity: 0;
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 0.9s var(--ease);
  filter: blur(6px);
  will-change: transform, opacity;
}
[data-aos="up"] { transform: translateY(35px); }
[data-aos="left"] { transform: translateX(-35px); }
[data-aos="right"] { transform: translateX(35px); }
[data-aos="scale"] { transform: scale(0.96); }
[data-aos="text"] { transform: translateY(25px) rotate(0.6deg); transform-origin: left; }
[data-aos].aos-in { opacity: 1; transform: none; filter: blur(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.55s; }
[data-delay="6"] { transition-delay: 0.7s; }

/* Glint sweep for buttons */
.btn-r::after {
  content: ''; position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-25deg); z-index: -1;
}
.btn-r:hover::after { left: 150%; transition: left 0.7s var(--ease); }

/* ============================================================
   WHY CHOOSE US SECTION STYLES
   ============================================================ */
#why-us {
  background: var(--white);
  border-top: 1px solid var(--pearl3);
  border-bottom: 1px solid var(--pearl3);
  padding: 120px 0;
}

.why-us-header {
  margin-bottom: 60px;
  position: relative;
}

.why-us-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px var(--rglow);
}

.why-us-subtitle {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Mukta Malar', 'Noto Sans Tamil', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--red);
  margin-top: -10px;
  margin-bottom: 16px;
}

.why-us-desc {
  font-family: var(--font-o);
  font-size: 15px;
  color: var(--grey2);
  max-width: 580px;
  line-height: 1.7;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--pearl);
  border: 1px solid var(--pearl3);
  border-radius: 6px;
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--red);
  opacity: 0.2;
  transition: opacity 0.3s;
}

.why-card:hover {
  background: var(--white);
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

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

.why-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  transition: all 0.3s;
}

.why-card:hover .why-icon-box {
  background: var(--red);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 6px 20px var(--rglow);
}

.why-title {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.1;
}

.why-text {
  font-family: var(--font-o);
  font-size: 13px;
  color: var(--grey2);
  line-height: 1.6;
}
