@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════
   HAJARI — Global CSS Design System
   ═══════════════════════════════════════════════════════════ */
:root {
  --primary:         #008A73;
  --primary-dark:    #005f50;
  --primary-light:   #00b894;
  --primary-glow:    rgba(0, 138, 115, 0.3);
  --secondary:       #E07A2D;
  --secondary-dark:  #c4621a;
  --secondary-light: #f0923d;
  --dark-bg:         #0D1F1C;
  --dark-bg-2:       #091815;
  --card-bg:         #152820;
  --card-bg-2:       #1a3530;
  --card-bg-3:       #1f3d37;
  --glass:           rgba(255,255,255,0.05);
  --glass-md:        rgba(255,255,255,0.08);
  --glass-border:    rgba(255,255,255,0.10);
  --glass-border-md: rgba(255,255,255,0.15);
  --text-primary:    #ffffff;
  --text-muted:      rgba(255,255,255,0.55);
  --text-accent:     #00d4b4;
  --border-r:        12px;
  --border-r-lg:     20px;
  --border-r-sm:     8px;
  --shadow-green:    0 8px 32px rgba(0, 138, 115, 0.25);
  --shadow-orange:   0 8px 32px rgba(224, 122, 45, 0.25);
  --shadow-deep:     0 20px 60px rgba(0,0,0,0.5);
  --transition:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* Light theme */
[data-theme="light"] {
  --dark-bg:      #f0faf8;
  --dark-bg-2:    #e8f5f2;
  --card-bg:      #ffffff;
  --card-bg-2:    #f8fffe;
  --card-bg-3:    #f0faf8;
  --glass:        rgba(0,138,115,0.04);
  --glass-md:     rgba(0,138,115,0.08);
  --glass-border: rgba(0,138,115,0.15);
  --text-primary: #0D1F1C;
  --text-muted:   rgba(13,31,28,0.55);
  --text-accent:  #006a5a;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--primary) var(--card-bg); }
html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--card-bg); }
html::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ───────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
.font-inter { font-family: 'Inter', sans-serif; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.section-title span { color: var(--primary-light); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ── Layout sections ──────────────────────────────────── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Buttons ──────────────────────────────────────────── */
.btn-hajari-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-hajari-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--primary-glow);
  color: #fff;
}

.btn-hajari-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--shadow-orange);
}
.btn-hajari-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--shadow-orange);
  color: #fff;
}

.btn-outline-hajari {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-hajari:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Cards ────────────────────────────────────────────── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-r);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--glass-md);
  border-color: var(--glass-border-md);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.dark-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--border-r);
  transition: var(--transition);
}
.dark-card:hover {
  background: var(--card-bg-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

/* ── Food Cards ───────────────────────────────────────── */
.food-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--border-r-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.food-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,138,115,0.2);
  border-color: rgba(0,138,115,0.3);
}
.food-card .food-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.food-card .food-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.food-card:hover .food-img-wrap img { transform: scale(1.08); }
.food-card .food-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--card-bg-2), var(--card-bg-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
}
.food-card .food-body { padding: 20px; }
.food-card .food-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.food-card .food-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.food-card .food-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Inter', sans-serif;
}
.food-card .food-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.veg-dot {
  width: 18px; height: 18px;
  border: 2px solid #22c55e;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.veg-dot::after {
  content: '';
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
}
.nonveg-dot {
  width: 18px; height: 18px;
  border: 2px solid #ef4444;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nonveg-dot::after {
  content: '';
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
}

/* ── Badges ───────────────────────────────────────────── */
.badge-bestseller {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-trending {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ── Navbar ───────────────────────────────────────────── */
.hajari-nav {
  background: rgba(13, 31, 28, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
  padding: 16px 0;
}
.hajari-nav.scrolled {
  background: rgba(9, 24, 21, 0.97);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hajari-nav .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: 3px;
}
.hajari-nav .navbar-brand span { color: var(--secondary); }
.hajari-nav .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  padding: 8px 16px !important;
}
.hajari-nav .nav-link:hover { color: var(--primary-light) !important; }
.hajari-nav .nav-link.active { color: var(--primary-light) !important; }
.dark-mode-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.dark-mode-btn:hover { background: var(--glass-md); }

/* ── Hero V2 — Premium Split Layout ───────────────────── */
.hero-v2 {
  min-height: 100vh;
  background: var(--dark-bg);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px; /* clear fixed navbar */
}

/* Grid dot background */
.hero-v2__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,138,115,0.18) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Radial glow blobs */
.hero-v2__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.hero-v2__glow--green {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,138,115,0.22) 0%, transparent 70%);
  top: -120px; left: -180px;
}
.hero-v2__glow--orange {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(224,122,45,0.18) 0%, transparent 70%);
  bottom: -100px; right: 100px;
}

/* Two-column inner layout */
.hero-v2__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 80px;
  min-height: calc(100vh - 80px);
}

/* ── LEFT: Text ───────────────────────────────────────── */
.hero-v2__text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Animated badge */
.hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,138,115,0.18);
  border: 1px solid rgba(0,184,148,0.45);
  color: var(--primary-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px 7px 10px;
  border-radius: 50px;
  margin-bottom: 1.6rem;
  width: fit-content;
  animation: fadeInUp 0.6s ease both;
}
.hero-v2__badge i { font-size: 0.75rem; color: #f59e0b; }
.hero-v2__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: badge-pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes badge-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,184,148,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(0,184,148,0); }
}

/* Headline */
.hero-v2__title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.7s ease 0.15s both;
}
.hero-v2__title span { color: var(--secondary); }

/* Typing effect elements */
.hero-typed-wrap {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.hero-typed {
  color: var(--secondary);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  min-width: 4px; /* prevent collapsing when empty */
}
.hero-cursor {
  display: inline-block;
  color: var(--secondary-light);
  font-weight: 300;
  margin-left: 2px;
  animation: cursor-blink 0.75s step-end infinite;
  -webkit-text-fill-color: var(--secondary-light);
}
@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Subtitle */
.hero-v2__subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.2rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}

/* Buttons */
.hero-v2__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
  animation: fadeInUp 0.7s ease 0.45s both;
}
.hero-v2__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.hero-v2__btn--primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: #fff;
  box-shadow: 0 6px 28px rgba(224,122,45,0.4);
}
.hero-v2__btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(224,122,45,0.55);
  color: #fff;
}
.hero-v2__btn--outline {
  background: rgba(0,138,115,0.12);
  border: 2px solid rgba(0,184,148,0.5);
  color: var(--primary-light);
}
.hero-v2__btn--outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-4px);
}

/* Trust strip */
.hero-v2__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.6s both;
}
.hero-v2__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-v2__trust-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,138,115,0.2);
  border: 1px solid rgba(0,184,148,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light);
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-v2__trust-icon--orange {
  background: rgba(224,122,45,0.18);
  border-color: rgba(224,122,45,0.3);
  color: var(--secondary-light);
}
.hero-v2__trust-val {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.2;
}
.hero-v2__trust-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.hero-v2__trust-sep {
  width: 1px;
  height: 36px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* ── RIGHT: Visual ────────────────────────────────────── */
.hero-v2__visual {
  flex: 0 0 480px;
  max-width: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.9s ease 0.2s both;
}

/* Rotating glow rings */
.hero-v2__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0,184,148,0.25);
  width: 430px; height: 430px;
  animation: ring-spin 18s linear infinite;
  background: transparent;
}
.hero-v2__ring--inner {
  width: 350px; height: 350px;
  border-color: rgba(224,122,45,0.18);
  animation-direction: reverse;
  animation-duration: 12s;
  border-style: dashed;
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

/* Image frame */
.hero-v2__img-wrap {
  width: 380px; height: 380px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 6px rgba(0,138,115,0.25),
    0 0 60px rgba(0,138,115,0.3),
    0 30px 80px rgba(0,0,0,0.5);
  animation: float-img 5s ease-in-out infinite;
}
@keyframes float-img {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-v2__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Orbiting icon bubbles */
.hero-v2__orbit {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-v2__orb-item {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--glass-border-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}
.hero-v2__orb-item--1 { top: 8%; left: 12%; animation: orb-float 4.5s ease-in-out infinite; }
.hero-v2__orb-item--2 { top: 14%; right: 8%; animation: orb-float 5s ease-in-out 0.8s infinite; color: var(--secondary-light); }
.hero-v2__orb-item--3 { bottom: 18%; left: 6%; animation: orb-float 4s ease-in-out 1.2s infinite; color: #f59e0b; }
.hero-v2__orb-item--4 { bottom: 12%; right: 12%; animation: orb-float 5.5s ease-in-out 0.4s infinite; color: var(--primary-light); }
@keyframes orb-float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-10px) scale(1.08); }
}

/* Floating info chips */
.hero-v2__float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,31,28,0.85);
  border: 1px solid var(--glass-border-md);
  backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 8px 18px 8px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.hero-v2__float i { font-size: 1rem; }
.hero-v2__float--tl { top: 6%; left: -18px; animation: chip-float 4s ease-in-out infinite; }
.hero-v2__float--tl i { color: var(--primary-light); }
.hero-v2__float--br { bottom: 6%; right: -18px; animation: chip-float 5s ease-in-out 1s infinite; }
.hero-v2__float--br i { color: var(--secondary-light); }
@keyframes chip-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* Scroll indicator */
.hero-v2__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.hero-v2__scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── Responsive: hero-v2 ────────────────────────────── */
@media (max-width: 1100px) {
  .hero-v2__visual { flex: 0 0 380px; max-width: 380px; }
  .hero-v2__img-wrap { width: 300px; height: 300px; }
  .hero-v2__ring { width: 340px; height: 340px; }
  .hero-v2__ring--inner { width: 270px; height: 270px; }
}
@media (max-width: 860px) {
  .hero-v2 {
    min-height: auto;
    padding-top: 100px;
  }
  .hero-v2__inner {
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 50px;
    gap: 30px;
    text-align: center;
    min-height: auto;
  }
  .hero-v2__text { align-items: center; }
  .hero-v2__badge { align-self: center; margin-bottom: 1.2rem; }
  .hero-v2__title { margin-bottom: 1rem; }
  .hero-v2__subtitle { max-width: 100%; margin-bottom: 1.8rem; font-size: 1rem; }
  .hero-v2__btns { justify-content: center; margin-bottom: 2rem; gap: 10px; }
  .hero-v2__trust { justify-content: center; gap: 15px; }
  .hero-v2__trust-sep { display: none; }
  .hero-v2__visual {
    flex: 0 0 auto;
    max-width: 320px;
    width: 100%;
    margin-top: 15px;
  }
  .hero-v2__img-wrap {
    width: 220px;
    height: 220px;
    box-shadow:
      0 0 0 5px rgba(0,138,115,0.2),
      0 0 40px rgba(0,138,115,0.25),
      0 20px 50px rgba(0,0,0,0.4);
  }
  .hero-v2__ring { width: 250px; height: 250px; }
  .hero-v2__ring--inner { width: 195px; height: 195px; }
  
  /* Floating elements adjustments */
  .hero-v2__float {
    font-size: 0.72rem;
    padding: 6px 12px 6px 8px;
  }
  .hero-v2__float--tl { top: -6px; left: -10px; }
  .hero-v2__float--br { bottom: -6px; right: -10px; }
  
  .hero-v2__orb-item {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  
  .hero-v2__scroll { display: none; }
}
@media (max-width: 480px) {
  .hero-v2__title { font-size: clamp(1.8rem, 8.5vw, 2.4rem); }
  .hero-v2__btn { padding: 12px 24px; font-size: 0.85rem; width: 100%; justify-content: center; }
  .hero-v2__btns { flex-direction: column; width: 100%; max-width: 280px; }
  .hero-v2__visual { max-width: 280px; }
  .hero-v2__img-wrap { width: 180px; height: 180px; }
  .hero-v2__ring { width: 205px; height: 205px; }
  .hero-v2__ring--inner { width: 160px; height: 160px; }
  .hero-v2__float--tl { top: -6px; left: -15px; }
  .hero-v2__float--br { bottom: -6px; right: -15px; }
  .hero-v2__trust-item { flex-direction: column; gap: 4px; text-align: center; }
  .hero-v2__trust-icon { margin: 0 auto; width: 34px; height: 34px; font-size: 0.9rem; }
}

/* ── Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--card-bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 32px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--glass-border);
  margin: 0 auto;
}

/* ── Timeline ──────────────────────────────────────────── */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  border: 4px solid var(--dark-bg);
  z-index: 1;
  box-shadow: 0 0 0 4px var(--primary-glow);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
  display: block;
  margin-bottom: 4px;
}
.timeline-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--border-r);
  padding: 24px;
  max-width: 420px;
}
.timeline-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.timeline-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── Gallery ───────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--border-r);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-deep); }
.gallery-item img { width: 100%; display: block; }
.gallery-placeholder {
  background: linear-gradient(135deg, var(--card-bg-2), var(--card-bg-3));
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── Why Choose Us Cards ───────────────────────────────── */
.why-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--border-r-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  background: var(--card-bg-2);
  transform: translateY(-8px);
  box-shadow: var(--shadow-green);
  border-color: rgba(0,138,115,0.3);
}
.why-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary-glow), rgba(0,138,115,0.1));
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-light);
  margin: 0 auto 24px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

/* ── Testimonials ──────────────────────────────────────── */
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--border-r-lg);
  padding: 36px;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.star-rating { color: #f59e0b; letter-spacing: 2px; }

/* ── Footer ────────────────────────────────────────────── */
.hajari-footer {
  background: var(--dark-bg-2);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.footer-brand span { color: var(--secondary); }
.footer-heading {
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-link:hover { color: var(--primary-light); padding-left: 4px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 1rem;
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  margin-top: 60px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── Float Button ──────────────────────────────────────── */
.float-order-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(224,122,45,0.4);
  animation: pulse-orange 2.5s infinite;
  transition: var(--transition);
}
.float-order-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
  animation: none;
  box-shadow: 0 12px 40px rgba(224,122,45,0.5);
}

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse-orange {
  0%,100% { box-shadow: 0 8px 30px rgba(224,122,45,0.4); }
  50%      { box-shadow: 0 8px 50px rgba(224,122,45,0.7); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll-triggered fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── Reservation form card ─────────────────────────────── */
.reservation-section {
  background: linear-gradient(135deg, var(--dark-bg-2), var(--card-bg));
  position: relative;
  overflow: hidden;
}
.reservation-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}
.form-control-dark {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  border-radius: var(--border-r-sm);
  padding: 12px 16px;
  transition: var(--transition-fast);
  font-family: 'Inter', sans-serif;
  width: 100%;
}
.form-control-dark:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--glass-md);
  box-shadow: 0 0 0 3px var(--primary-glow);
  color: var(--text-primary);
}
.form-control-dark::placeholder { color: var(--text-muted); }
.form-control-dark option { background: var(--card-bg); color: var(--text-primary); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 991px) {
  .timeline::before { left: 28px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 80px;
  }
  .timeline-dot { left: 28px; }
  .gallery-grid { columns: 2; }
  .section-pad { padding: 70px 0; }
}
@media (max-width: 767px) {
  /* Hero mobile fixes */
  .hero-section { min-height: 100dvh; }
  .hero-slide   { min-height: 100dvh; align-items: center; }
  .hero-content {
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .hero-btns {
    justify-content: center;
    gap: 12px;
  }
  .hero-btns a {
    padding: 12px 24px;
    font-size: 0.88rem;
  }
  .hero-label { font-size: 0.65rem; padding: 5px 14px; }
  /* General mobile */
  .gallery-grid { columns: 1; }
  .stat-divider { display: none; }
  .section-pad { padding: 50px 0; }
}
