/* ============================================
   KKR Car Garage — v2 Design System
   Premium Dark Theme
   ============================================ */

/* --- Variables -------------------------------- */
:root {
  --bg-primary:   #1B1B1B;
  --bg-alt:       #252525;
  --bg-card:      #2C2C2C;
  --bg-nav:       rgba(27, 27, 27, 0.92);

  --gold:         #D4AF37;
  --gold-hover:   #F2C94C;
  --gold-glow:    rgba(212, 175, 55, 0.22);
  --gold-subtle:  rgba(212, 175, 55, 0.07);

  --white:        #F4F4F4;
  --text-heading: #FFFFFF;
  --text-body:    #BDBDBD;
  --text-muted:   #787878;
  --border:       rgba(255, 255, 255, 0.07);

  --radius-btn:   14px;
  --radius-card:  18px;
  --radius-img:   20px;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --max-w:        1280px;
  --section-py:   clamp(72px, 10vw, 120px);

  --ease-luxury:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:   0.4s var(--ease-luxury);
}

/* --- Reset ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* --- Noise texture overlay -------------------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Utility ---------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--text-heading);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.section-sub {
  font-size: 16px;
  color: var(--text-body);
  max-width: 520px;
  margin-top: 16px;
  line-height: 1.7;
}
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

/* --- Buttons ---------------------------------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0E0E0E;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  box-shadow: 0 0 20px var(--gold-glow);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(212, 175, 55, 0.38);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--gold);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #0E0E0E;
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ============================================
   NAVIGATION
   ============================================ */
.v2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}
.v2-nav.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.25s, background 0.25s;
  letter-spacing: 0.03em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-cta { flex-shrink: 0; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: #111111;
  z-index: 999;
  flex-direction: column;
  padding: 32px 32px;
  gap: 8px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 24px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--text-body);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn-gold { margin-top: 16px; justify-content: center; }

/* ============================================
   HERO
   ============================================ */
.v2-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.v2-hero:hover .hero-bg img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,15,15,0.88) 0%,
    rgba(15,15,15,0.70) 55%,
    rgba(15,15,15,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 100px clamp(20px, 5vw, 60px) 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 156px);
  line-height: 0.95;
  color: var(--text-heading);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-h1 .gold { color: var(--gold); }
.hero-desc {
  font-size: 16px;
  color: var(--text-body);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroScrollBounce 2s infinite;
}
.hero-scroll i { font-size: 18px; color: var(--gold); }
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   WHY KKR
   ============================================ */
.v2-why {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.why-item {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.why-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}
.why-item:hover::after { transform: scaleX(1); }
.why-item:hover { background: #303030; }
.why-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 4px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-heading);
  letter-spacing: 0.03em;
}
.why-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ============================================
   SERVICES
   ============================================ */
.v2-services {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.1);
}
.service-visual {
  height: 180px;
  background: linear-gradient(135deg, #222222 0%, #181818 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-visual::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  border-radius: 0;
}
.service-visual-icon {
  font-size: 2.4rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  opacity: 0.85;
  transition: transform 0.4s var(--ease-luxury), opacity 0.4s;
}
.service-card:hover .service-visual-icon {
  transform: scale(1.1);
  opacity: 1;
}
.service-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-heading);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ============================================
   CAR BRANDS
   ============================================ */
.v2-brands {
  padding: var(--section-py) 0 60px;
  background: var(--bg-primary);
  overflow: hidden;
}
.brands-marquee-wrap {
  margin: 48px 0 0;
  overflow: hidden;
  position: relative;
}
.brands-marquee-wrap::before,
.brands-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brands-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary), transparent);
}
.brands-marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary), transparent);
}
.brands-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: brandScroll 28s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-item {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0 28px;
  transition: color 0.3s;
}
.brands-track:hover .brand-item:hover { color: var(--gold); }
.brand-sep {
  color: var(--gold);
  font-size: 20px;
  opacity: 0.5;
  flex-shrink: 0;
}
.brands-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.brands-note {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   CHATBOT — v2 Dark Premium Skin
   (overrides chatbot.css via #thanag-chatbot specificity)
   ============================================ */
#thanag-chatbot {
  font-family: var(--font-body);
  z-index: 9998;
}

/* Toggle button */
#thanag-chatbot .circular-avatar {
  background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.25);
}
#thanag-chatbot .circular-text-path-top,
#thanag-chatbot .circular-text-path-bottom {
  fill: var(--gold);
}
#thanag-chatbot .bot-pulse {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

/* Chat window */
#thanag-chatbot .chatbot-window {
  background: #1E1E1E;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212,175,55,0.08);
  border-radius: 18px;
}
#thanag-chatbot .chatbot-header {
  background: #252525;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 18px 18px 0 0;
}
#thanag-chatbot .chatbot-header h3,
#thanag-chatbot .bot-details h3 {
  color: var(--white);
  font-family: var(--font-body);
}
#thanag-chatbot .chatbot-header p,
#thanag-chatbot .bot-details p,
#thanag-chatbot .bot-details span {
  color: var(--text-muted);
}
#thanag-chatbot .chatbot-close {
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
#thanag-chatbot .chatbot-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

/* Messages area */
#thanag-chatbot .chatbot-messages {
  background: #1B1B1B;
}
#thanag-chatbot .message.bot .message-bubble {
  background: #2C2C2C;
  color: var(--text-body);
  border: 1px solid var(--border);
  border-radius: 4px 16px 16px 16px;
}
#thanag-chatbot .message.user .message-bubble {
  background: var(--gold);
  color: #0E0E0E;
  font-weight: 600;
  border-radius: 16px 4px 16px 16px;
}

/* Options / quick actions */
#thanag-chatbot .chatbot-input,
#thanag-chatbot .quick-actions {
  background: #252525;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}
#thanag-chatbot .quick-action-btn {
  background: #2C2C2C;
  color: var(--text-body);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
#thanag-chatbot .quick-action-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

/* Hint bubble */
#thanag-chatbot .chat-hint-bubble {
  background: #252525;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border-radius: 14px;
}
#thanag-chatbot .hint-content .hint-text {
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 13px;
}
#thanag-chatbot .hint-close {
  color: var(--text-muted);
}

/* ============================================
   BRANCHES
   ============================================ */
.v2-branches {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}
.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.branch-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.branch-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}
.branch-map {
  height: 240px;
  overflow: hidden;
}
.branch-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(80%) contrast(1.1);
  transition: filter var(--transition);
}
.branch-card:hover .branch-map iframe { filter: grayscale(30%) contrast(1.05); }
.branch-info {
  padding: 28px 32px 32px;
}
.branch-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0E0E0E;
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.branch-name {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--text-heading);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.branch-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.branch-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
}
.branch-detail-item i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

/* ============================================
   REVIEWS
   ============================================ */
.v2-reviews {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}
.reviews-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.reviews-left .section-sub { max-width: 380px; }
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  margin-top: 28px;
}
.google-rating-badge i { color: #EA4335; font-size: 18px; }
.rating-text strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
}
.rating-text span { font-size: 12px; color: var(--text-muted); }
.stars-row { color: var(--gold); font-size: 13px; letter-spacing: 2px; }

/* Slider */
.reviews-slider {
  position: relative;
}
.review-slide {
  display: none;
  animation: reviewFadeIn 0.7s var(--ease-luxury);
}
.review-slide.active { display: block; }
@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-card-v2 {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 32px 36px;
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a07c1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #0E0E0E;
  flex-shrink: 0;
}
.reviewer-name-v2 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}
.review-stars-v2 { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.review-when { font-size: 12px; color: var(--text-muted); }
.review-google-icon { margin-left: auto; }
.review-google-icon i { color: var(--text-muted); font-size: 18px; }
.review-quote {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}
.review-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.review-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
}
.review-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ============================================
   GALLERY
   ============================================ */
.v2-gallery {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-item-v2 {
  position: relative;
  border-radius: var(--radius-img);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item-v2:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item-v2:nth-child(4) {
  grid-column: span 2;
}
.gallery-item-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}
.gallery-item-v2:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.gallery-item-overlay i {
  color: white;
  font-size: 28px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item-v2:hover .gallery-item-overlay { background: rgba(0,0,0,0.35); }
.gallery-item-v2:hover .gallery-item-overlay i { opacity: 1; transform: scale(1); }

/* Lightbox */
.v2-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.v2-lightbox.open { opacity: 1; pointer-events: all; }
.v2-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
}
.lightbox-close:hover { opacity: 1; }

/* ============================================
   BOOK APPOINTMENT
   ============================================ */
.v2-book {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.v2-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.book-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.book-left .section-title { font-size: clamp(48px, 6vw, 80px); }
.book-left .section-sub { max-width: 400px; }
.book-hours {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.book-hours i { color: var(--gold); font-size: 18px; }
.book-hours-text strong { display: block; font-size: 15px; color: var(--text-heading); }
.book-hours-text span { font-size: 13px; color: var(--text-muted); }
.book-right {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 40px;
}
.book-form-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-heading);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.book-form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.form-field {
  margin-bottom: 16px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }
.form-field select { color: var(--text-body); cursor: pointer; }
.form-field select option { background: var(--bg-card); color: var(--white); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; padding: 16px; font-size: 15px; }
.book-divider {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 18px 0;
  position: relative;
}
.book-divider::before,
.book-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--border);
}
.book-divider::before { left: 0; }
.book-divider::after  { right: 0; }
.book-direct {
  display: flex;
  gap: 10px;
}
.book-direct .btn-ghost,
.book-direct .btn-outline-gold { flex: 1; justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */
.v2-footer {
  background: #111111;
  padding: 64px 0 32px;
}
.footer-gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-logo img { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }
.footer-brand-logo span {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 240px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; width: 14px; }
.footer-contact-item a { color: var(--text-muted); transition: color 0.25s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-branch-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  margin-top: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-icon-link {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-icon-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-copy a { color: var(--gold); }
.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-rating .stars-row { font-size: 11px; }

/* ============================================
   BACK TO TOP
   ============================================ */
.v2-back-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-luxury), transform 0.35s var(--ease-luxury),
              border-color 0.25s, box-shadow 0.25s;
}
.v2-back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.v2-back-top:hover {
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
  transform: translateY(-2px);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal].revealed {
  opacity: 1;
  transform: translate(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; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-inner { grid-template-columns: 1fr; gap: 48px; }
  .reviews-left .section-sub { max-width: 100%; }
  .book-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .gallery-grid-v2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item-v2:nth-child(1),
  .gallery-item-v2:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .gallery-item-v2 { height: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2px; }
  .hero-h1 { font-size: clamp(62px, 18vw, 100px); }
  .gallery-grid-v2 { grid-template-columns: 1fr; }
  .gallery-item-v2 { height: 220px; }
  .book-direct { flex-direction: column; }
  .book-right { padding: 28px 22px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
}
