/* ════════════════════════════════════════════════════════════
   CALICUT STREET — Premium Restaurant Website Stylesheet
   Theme: Dark Luxury | Glassmorphism | Malabar Cuisine
   ════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --brand-dark:     #002E29;
  --brand-dark-2:   #001f1b;
  --brand-dark-3:   #00231f;
  --gold:           #D69C00;
  --gold-light:     #f0b400;
  --gold-dim:       rgba(214, 156, 0, 0.15);
  --gold-glow:      rgba(214, 156, 0, 0.25);

  --bg:             #080f0e;
  --bg-2:           #0c1614;
  --bg-3:           #0f1a18;

  --glass-bg:       rgba(255, 255, 255, 0.07);
  --glass-border:   rgba(255, 255, 255, 0.16);
  --glass-hover:    rgba(255, 255, 255, 0.11);

  --text-primary:   #f5f0e8;
  --text-secondary: rgba(245, 240, 232, 0.6);
  --text-dim:       rgba(245, 240, 232, 0.38);

  --radius-sm:      10px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      36px;

  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font:           'Google Sans', 'Segoe UI', system-ui, sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

/* ─── Utility ────────────────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.section-pad { padding: 100px 0; }

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(180%) brightness(1.05);
  border-radius: var(--radius-md);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.28);
  position: relative;
  transition: var(--transition);
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.glass-card > * { position: relative; z-index: 1; }

.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 12px 40px rgba(0, 0, 0, 0.32);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #0a0a00;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffc107 0%, var(--gold-light) 100%);
  color: #0a0a00;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--gold-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ─── Section Typography ─────────────────────────────────────── */
.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  position: relative;
  padding-left: 22px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.7;
}

.section-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── Scroll Animations ──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s);
}

.reveal-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(30px);
  transition: opacity 0.9s ease var(--delay, 0s),
              filter 0.9s ease var(--delay, 0s),
              transform 0.9s ease var(--delay, 0s);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-visible.reveal-up,
.is-visible.reveal-blur,
.is-visible.reveal-left,
.is-visible.reveal-right,
.is-visible.reveal-scale {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
#navbar {
  background: transparent;
  padding: 20px 0;
  transition: var(--transition);
  z-index: 1000;
}

#navbar.scrolled {
  background: rgba(8, 15, 14, 0.85);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  height: 62px;
  width: auto;
}

.navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.8);
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold);
  background: var(--gold-dim);
}

.toggler-icon {
  color: var(--text-primary);
  font-size: 1.2rem;
}

.navbar-toggler {
  border: 1px solid var(--glass-border);
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--glass-bg);
}

.navbar-toggler:focus { box-shadow: none; }

/* ════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 60px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0, 46, 41, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(214, 156, 0, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero-section .container-xl,
.hero-section .row {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 90px);
}

/* Hero Content */
.hero-content { padding: 40px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(214, 156, 0, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-heading {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 22px;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--glass-border);
}

/* Hero Image */
.hero-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.hero-image-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(214, 156, 0, 0.12);
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
  inset: -16px;
  animation-delay: 0s;
}

.ring-2 {
  inset: -40px;
  border-color: rgba(214, 156, 0, 0.06);
  animation-delay: 1s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.6; }
}

.hero-food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(214, 156, 0, 0.2);
  box-shadow: 0 0 80px rgba(214, 156, 0, 0.15), 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  min-width: 180px;
  animation: floatCard 3.5s ease-in-out infinite;
}

.hero-float-card i { font-size: 1.3rem; flex-shrink: 0; }

.hero-float-card div { display: flex; flex-direction: column; }
.hero-float-card strong { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.hero-float-card span { font-size: 0.75rem; color: var(--text-dim); }

.card-biriyani {
  bottom: 8%;
  left: -8%;
  animation-delay: 0.5s;
}

.card-delivery {
  top: 12%;
  right: -8%;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Hero Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ════════════════════════════════════════════════════════════
   DELIVERY STRIP
   ════════════════════════════════════════════════════════════ */
.delivery-strip {
  padding: 20px 0;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 52px;
  flex-wrap: wrap;
  background: rgba(0, 46, 41, 0.3);
  border-color: rgba(214, 156, 0, 0.15);
  border-radius: 100px;
  position: relative;
  overflow: visible;
}

.strip-notch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-notch-l { left: -20px; }
.strip-notch-r { right: -20px; }

.strip-left { flex: 1; min-width: 200px; }

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.strip-left p {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin: 0;
}

.strip-platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.platform-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.platform-logos { display: flex; gap: 10px; }

.platform-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.platform-img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 6px;
}

/* ════════════════════════════════════════════════════════════
   MENU / SPECIALTIES SECTION
   ════════════════════════════════════════════════════════════ */
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}

.menu-tab {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a0a00;
  border-color: transparent;
  font-weight: 700;
}

/* Food Cards */
.food-card {
  height: 100%;
  overflow: hidden;
  cursor: default;
}

.food-card.glass-card {
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.4s ease, border-color 0.4s ease;
}

.food-card.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.food-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.food-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.food-card:hover .food-card-img-wrap img {
  transform: scale(1.06);
}

.food-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: #0a0a00;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.food-badge.badge-new { background: var(--brand-dark); color: var(--gold); border: 1px solid var(--gold); }
.food-badge.badge-spicy { background: #c0392b; color: #fff; }

.food-card-body {
  padding: 20px;
}

.food-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.food-card-body p {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 14px;
}

.food-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.food-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Menu filter animation */
.menu-item { transition: opacity 0.4s ease, transform 0.4s ease; }
.menu-item.hidden { opacity: 0; transform: scale(0.95); pointer-events: none; display: none; }

/* ════════════════════════════════════════════════════════════
   SIGNATURE SECTION
   ════════════════════════════════════════════════════════════ */
.signature-section { position: relative; overflow: hidden; }

.signature-section .reveal-up {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s),
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s);
}

.sig-bg-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 46, 41, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.signature-list { display: flex; flex-direction: column; gap: 28px; }

.sig-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
}

.sig-item.glass-card {
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.4s ease, border-color 0.4s ease;
}

.sig-item:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(214, 156, 0, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.sig-item-reverse { flex-direction: row-reverse; }

.sig-img-wrap {
  position: relative;
  flex-shrink: 0;
  width: min(280px, 100%);
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sig-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sig-item:hover .sig-img-wrap img { transform: scale(1.06); }

.sig-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 46, 41, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.glow-orange { background: linear-gradient(135deg, rgba(180, 60, 0, 0.35) 0%, transparent 60%); }
.glow-cyan   { background: linear-gradient(135deg, rgba(0, 80, 80, 0.35) 0%, transparent 60%); }

.sig-content { flex: 1; }

.sig-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(214, 156, 0, 0.12);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -2px;
}

.sig-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.25;
}

.sig-content p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 20px;
}

.sig-tags { display: flex; gap: 10px; flex-wrap: wrap; }

.sig-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--gold-dim);
  border: 1px solid rgba(214, 156, 0, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}

/* ════════════════════════════════════════════════════════════
   EXPERIENCE SECTION
   ════════════════════════════════════════════════════════════ */
.experience-section { background: var(--bg-2); }
.experience-section .container-xl { position: relative; z-index: 1; }

.exp-image-stack {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
}

.exp-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.exp-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid var(--bg-2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.exp-img-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
}

.exp-img-badge div { display: flex; flex-direction: column; }
.exp-img-badge strong { font-size: 0.85rem; font-weight: 700; }
.exp-img-badge span { font-size: 0.72rem; color: var(--text-dim); }

.exp-features { display: flex; flex-direction: column; gap: 20px; }

.exp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.exp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  border: 1px solid rgba(214, 156, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.exp-feature-item h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.exp-feature-item p {
  font-size: 0.83rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════
   TEA SECTION
   ════════════════════════════════════════════════════════════ */
.tea-section { background: var(--bg); }

.tea-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.tea-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.tea-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(214, 156, 0, 0.2) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.tea-snack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tea-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  text-align: center;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.35s ease, border-color 0.35s ease;
  cursor: default;
}

.tea-item:hover {
  border-color: rgba(214, 156, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.tea-item i { font-size: 1.5rem; }
.tea-item span { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); line-height: 1.3; }

/* ════════════════════════════════════════════════════════════
   DELIVERY SECTION
   ════════════════════════════════════════════════════════════ */
.delivery-section { background: var(--bg-2); }

.delivery-card {
  padding: 52px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background: rgba(0, 46, 41, 0.2);
  border-color: rgba(214, 156, 0, 0.12);
}

.delivery-card.glass-card:hover {
  background: rgba(0, 46, 41, 0.2);
  border-color: rgba(214, 156, 0, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22),
              inset 0 -1px 0 rgba(255, 255, 255, 0.04),
              0 8px 32px rgba(0, 0, 0, 0.28);
}

.delivery-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(214, 156, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  cursor: default;
  transition: none;
}

.platform-card.glass-card:hover {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22),
              inset 0 -1px 0 rgba(255, 255, 255, 0.04),
              0 8px 32px rgba(0, 0, 0, 0.28);
}

.platform-card-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.platform-card > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.platform-card strong { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.platform-card span { font-size: 0.78rem; color: var(--text-dim); }

.delivery-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.delivery-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.experience-juice-wrap {
  position: relative;
  overflow: hidden;
}

.juice-corner-bg {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
}


.juice-bg-img {
  position: absolute;
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(8px) saturate(1.4);
  mix-blend-mode: luminosity;
}

.juice-radial-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(214, 156, 0, 0.12) 0%, rgba(180, 100, 0, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.review-card {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.35s ease, border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 156, 0, 0.2);
}

.review-card-featured {
  background: rgba(0, 46, 41, 0.25);
  border-color: rgba(214, 156, 0, 0.2);
  box-shadow: 0 0 40px rgba(214, 156, 0, 0.06);
}

.review-stars { display: flex; gap: 3px; font-size: 0.82rem; }

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.reviewer { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  border: 1px solid rgba(214, 156, 0, 0.2);
  flex-shrink: 0;
}

.reviewer strong { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); display: block; }
.reviewer span { font-size: 0.75rem; color: var(--text-dim); }

/* ════════════════════════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg-2); }

.contact-info { display: flex; flex-direction: column; gap: 12px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: rgba(214, 156, 0, 0.2);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  border: 1px solid rgba(214, 156, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 3px;
}

.contact-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  display: block;
}

.contact-link:hover { color: var(--gold); }

/* Social Buttons */
.social-row { display: flex; gap: 10px; }

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  color: var(--gold);
  border-color: rgba(214, 156, 0, 0.3);
  background: var(--gold-dim);
}

/* Contact Form */
.contact-form-card {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
}

.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.form-sub {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 6px;
}

.form-group-custom { display: flex; flex-direction: column; gap: 6px; }

.form-group-custom label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.form-control-custom {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--font);
  width: 100%;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-control-custom:focus {
  border-color: rgba(214, 156, 0, 0.4);
  background: rgba(214, 156, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(214, 156, 0, 0.08);
}

.form-control-custom::placeholder { color: var(--text-dim); }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--brand-dark-2);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
}

.footer-top-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(214, 156, 0, 0.5), transparent);
}

.footer-logo { height: 68px; width: auto; }

.footer-about {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.86rem;
  color: var(--text-dim);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-delivery-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-platform-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-platform-pill img {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  object-fit: cover;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  margin-top: 60px;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   FLOATING ELEMENTS
   ════════════════════════════════════════════════════════════ */

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: waPulse 2.2s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Scroll Top */
.scroll-top-btn {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--gold-dim);
  border-color: rgba(214, 156, 0, 0.3);
  color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   MOBILE NAVBAR MENU
   ════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(8, 15, 14, 0.97);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 12px;
  }

  .navbar-nav .nav-link { padding: 10px 14px !important; }

  .btn-gold.ms-lg-3 { margin-top: 12px; width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════ */

/* ─── 992px – 1199px: add horizontal padding (container-xl is full-width here) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container-xl {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1199.98px) {
  .hero-float-card {
    min-width: 152px;
    padding: 9px 14px;
    font-size: 0.78rem;
    gap: 9px;
  }
  .hero-float-card i { font-size: 1.15rem; }
  .sig-img-wrap { width: min(220px, 100%); height: 180px; }
}

@media (max-width: 991.98px) {
  .section-pad { padding: 70px 0; }

  .hero-section { padding-top: 80px; }
  .hero-section .container-xl,
  .hero-section .row { min-height: unset; }
  .hero-content { text-align: center; padding-top: 40px; }
  .hero-badge { margin: 0 auto 20px; justify-content: center; }
  .hero-subtext { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-col { margin-top: 40px; }
  .hero-image-wrapper { width: min(340px, 90%); }

  .sig-item { flex-direction: column !important; }
  .sig-img-wrap { width: 100%; height: 220px; }

  .exp-image-stack { padding-bottom: 40px; padding-right: 40px; }
  .exp-img-secondary { width: 50%; }
  .exp-img-badge { right: -10px; }

  .delivery-card { padding: 32px 24px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 56px 0; }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.4rem); }

  .hero-section { padding-bottom: 70px; }
  .hero-content { padding-left: 12px; padding-right: 12px; }
  .hero-heading { font-size: clamp(2rem, 8vw, 3.2rem); letter-spacing: -0.8px; }
  .hero-subtext { font-size: 0.95rem; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.5rem; }
  .hero-scroll-hint { display: none; }

  /* Mobile hero image block */
  .hero-mobile-img-block {
    margin: 28px auto;
    width: 100%;
  }

  /* Show float cards inside the mobile hero image block */
  .hero-mobile-img-block .hero-float-card {
    display: flex !important;
    min-width: 138px;
    padding: 8px 12px;
    gap: 8px;
    font-size: 0.76rem;
  }
  .hero-mobile-img-block .hero-float-card i { font-size: 1.1rem; }
  .hero-mobile-img-block .hero-float-card strong { font-size: 0.78rem; }
  .hero-mobile-img-block .hero-float-card span { font-size: 0.7rem; }

  /* Delivery strip — keep coupon style on mobile with top/bottom notches */
  .strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 24px;
    border-radius: 24px;
  }
  .strip-platforms { align-items: flex-start; }
  .strip-notch {
    display: block;
    width: 36px;
    height: 36px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
  }
  .strip-notch-l { top: -18px; }
  .strip-notch-r { bottom: -18px; right: auto; top: auto; }

  .exp-image-stack { padding: 0; }
  .exp-img-secondary { display: none; }
  .exp-img-badge { display: none; }

  .tea-snack-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-form-card { padding: 24px 20px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-logo { height: 42px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
  .scroll-top-btn { bottom: 82px; right: 20px; }
}

@media (max-width: 575.98px) {
  .section-pad { padding: 48px 0; }

  .hero-content { padding-top: 32px; }
  .hero-image-wrapper { width: min(260px, 82%); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 12px; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.7rem; }

  .menu-tabs { gap: 6px; }
  .menu-tab { font-size: 0.78rem; padding: 6px 14px; }

  .platform-logos { flex-direction: column; }

  .delivery-card { padding: 24px 16px; }

  .sig-content h3 { font-size: 1.25rem; }

  .exp-feature-item { gap: 12px; }
  .exp-feature-icon { width: 40px; height: 40px; font-size: 0.95rem; }

  .tea-snack-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .tea-item { padding: 14px 8px; }
  .tea-item span { font-size: 0.72rem; }
}

/* ─── Accessibility ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up, .reveal-blur, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
