:root {
  /* Color Palette */
  --primary: #E4A51A;        /* Warm Gold */
  --primary-dark: #F3B52B;   /* Gold Hover (Soft Amber) */
  --primary-light: #F7E8D0;  /* Off White (Light Cream Text) */
  --bg-dark: #5B0000;        /* Deep Maroon */
  --bg-card: #6A1200;        /* Dark Brown Red */
  --bg-light: #F7E8D0;       /* Off White */
  --text-main: #F7E8D0;      /* Off White */
  --text-muted: #C98C3A;     /* Muted Gold Brown */
  --text-dark: #3D0000;      /* Dark Burgundy */
  --accent-gold: #E4A51A;    /* Warm Gold */
  --glass: rgba(106, 18, 0, 0.4); /* Based on Dark Brown Red */
  --glass-border: #3D0000;   /* Dark Burgundy */
  
  /* Outlet Network Palette */
  --maroon: #5B0000;         /* Deep Maroon */
  --maroon-dark: #3D0000;    /* Dark Burgundy */
  --gold-accent: #E4A51A;    /* Warm Gold */
  --card-dark: #6A1200;      /* Dark Brown Red */
  
  /* Additional */
  --btn-dark: #8C4A00;       /* Burnt Brown */
  
  /* Luxury Palette */
  --luxury-maroon: #2D0000;
  --luxury-gold: #E4A51A;
  --luxury-gold-glow: rgba(228, 165, 26, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(228, 165, 26, 0.15);
  
  /* Typography */
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: 'Times New Roman', Times, serif;
  --font-accent: 'Times New Roman', Times, serif;
  
  /* Transitions */
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  z-index: 2000;
  transition: width 0.1s ease-out;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { 
  font-family: var(--font-heading); 
  font-weight: 700;
  letter-spacing: 0.01em;
}

em { font-family: var(--font-accent); font-style: italic; }

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

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(91, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo { display: flex; align-items: center; gap: 0.75rem; }

.logo-image {
  height: 50px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.navbar.scrolled .logo-image {
  height: 40px;
}

.nav-links { display: flex; list-style: none; gap: 2.5rem; }

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active { opacity: 1; color: var(--primary); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1.5rem; }

.btn-order {
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-order:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: -10%; left: -10%;
  width: 120%; height: 120%;
  background-image: url('../assets/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  animation: zoomHero 20s infinite alternate linear;
  will-change: transform;
}

@keyframes zoomHero {
  from { transform: scale(1.1) translateY(0); }
  to { transform: scale(1.2) translateY(0); }
}

@media (max-width: 768px) {
  .hero-bg {
    width: 140%;
    height: 120%;
    left: -20%;
    top: -10%;
    background-position: center center;
    animation: none;
    transform: none !important; /* Prevent conflicts with dynamic styles */
  }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: linear-gradient(to bottom, rgba(61, 0, 0, 0.4), rgba(91, 0, 0, 0.9)); */
  /* backdrop-filter:blur(4px); */
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 6rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: bolder;
  color: var(--text-main);
}
.hero-title span {
  color: var(--primary);
  
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1.5rem; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

.btn-ghost {
  background: rgba(247, 232, 208, 0.2);
  color: var(--text-main);
  border: 2px solid rgba(247, 232, 208, 0.2);
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-ghost:hover {
  background: rgba(247, 232, 208, 0.1);
  border-color: var(--text-main);
}


.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--text-main);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { transform: translate(-50%, -5px) scale(0.8); opacity: 0; }
  50% { transform: translate(-50%, 5px) scale(1.1); opacity: 1; }
  100% { transform: translate(-50%, 15px) scale(0.8); opacity: 0; }
}

/* ========== MARQUEE ========== */
.marquee-strip {
  background: var(--primary);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin: 0 2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTIONS ========== */
/* section { padding: 8rem 0; } */

.section-header { text-align: center; margin-bottom: 5rem; }

.section-eyebrow {
  color: var(--primary);
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title { font-size: 4rem; line-height: 1.1;  }
.section-title-sm { font-size: 3rem; line-height: 1.2; }

/* ========== MENU SECTION ========== */
.menu-section {
  position: relative;
  background: transparent;
  padding-bottom: 6rem;
  overflow: hidden;
}

/* Video Background */
.menu-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.menu-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.menu-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(91, 0, 0, 0.85) 0%,
    rgba(91, 0, 0, 0.8) 30%,
    rgba(91, 0, 0, 0.8) 70%,
    rgba(91, 0, 0, 0.9) 100%
  );
  z-index: 1;
}

.menu-content-wrapper {
  position: relative;
  z-index: 2;
}

.menu-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-section-header .section-eyebrow,
.menu-section-header .section-title {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* --- Floating Center Trigger --- */
.floating-trigger-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.center-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--btn-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--font-body);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.center-pill-btn:hover {
  border-color: var(--accent-gold);
  background: var(--maroon-dark);
}

.pill-chevron {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

/* --- Menu Grid --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Menu Cards --- */
.menu-item {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border-color: rgba(212, 175, 55, 0.3);
  background: var(--bg-card);
}

.card-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #222;
}

.card-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.9);
}

.menu-item:hover .card-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 12px;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.03);
  background: rgba(61, 0, 0, 0.25);
}

.item-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Navigation Overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: Dropdown from top */
@media (min-width: 768px) {
  .nav-panel {
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: rgba(61, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 70vh;
    overflow-y: auto;
    padding: 2rem;
  }

  body.nav-open .nav-panel {
    transform: translateY(0);
  }

  .nav-backdrop { display: none; }
}

/* Mobile: Slide up drawer */
@media (max-width: 767px) {
  .nav-panel {
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    top: auto;
    height: 85vh;
    background: rgba(91, 0, 0, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.5rem;
    overflow-y: auto;
  }

  body.nav-open .nav-panel {
    transform: translateY(0);
  }

  .nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(61, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
}

.page-section-offset {
  margin-top: 80px;
}

.footer-inline-icon {
  display: inline-block;
  vertical-align: middle;
}

.nav-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.nav-panel-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-main);
}

.nav-close-btn {
  padding: 0.5rem;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  color: var(--text-main);
}

.nav-close-btn:hover { background: rgba(255,255,255,0.1); }

.nav-close-btn svg {
  width: 24px;
  height: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
}

.cat-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: rgba(255,255,255,0.05);
  color: #aaa;
}

.cat-btn:hover { background: rgba(255,255,255,0.1); }

.cat-btn.active {
  background: var(--accent-gold);
  color: #000;
  font-weight: 600;
}

/* Card fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.fade-in { animation: fadeIn 0.3s ease forwards; }

/* ========== OUTLET NETWORK SECTION ========== */
.outlet-network-section {
  background-color: var(--maroon);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  color: var(--text-main);
  border-bottom: 2px solid var(--gold-accent);
}

.outlet-network-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 4rem;
}

.network-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-main);
}

.network-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}

.btn-network-map {
  background: var(--gold-accent);
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-network-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  filter: brightness(1.1);
}

/* Filter Buttons */
.filter-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--maroon-dark);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
}

.filter-btn svg {
  width: 16px;
  height: 16px;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.filter-btn.active {
  background: var(--gold-accent);
  color: #000;
  border-color: var(--gold-accent);
}

/* Network Grid */
.network-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

@media (min-width: 640px) {
  .network-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .network-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Outlet Card */
.network-card {
  background: var(--card-dark);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.network-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(255, 190, 47, 0.3);
}

.card-img-box {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.network-card:hover .card-img-box img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold-accent);
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.feature-item svg {
  width: 14px;
  height: 14px;
  color: var(--gold-accent);
}

.btn-directions {
  width: 100%;
  background: transparent;
  color: var(--gold-accent);
  border: 1px solid var(--gold-accent);
  padding: 0.75rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto;
}

.btn-directions:hover {
  background: var(--gold-accent);
  color: #000;
}

/* Experience Banner */
.experience-banner {
  background: var(--maroon-dark);
  border-radius: 40px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.experience-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.experience-tags {
  display: flex;
  gap: 1.5rem;
}

.experience-tags .tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

.experience-tags .tag svg {
  color: var(--gold-accent);
}

.experience-image {
  position: relative;
}

.experience-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .outlet-network-header { flex-direction: column; gap: 2rem; }
  .experience-banner { grid-template-columns: 1fr; padding: 2.5rem; text-align: center; }
  .experience-tags { justify-content: center; flex-wrap: wrap; }
  .experience-title { font-size: 2.2rem; }
}

/* ========== FRANCHISE ========== */
.franchise-section {
  background: var(--bg-dark);
  overflow: hidden;
}

.franchise-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.franchise-title { font-size: 5rem; margin-bottom: 2rem; line-height: 1.1; }

.franchise-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
 
  max-width: 600px;
}

.pillars h4 { font-size: 1.2rem; margin-bottom: 1.5rem; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.pillar { display: flex; flex-direction: column; gap: 0.5rem; }
.pillar-icon { 
  margin-bottom: 1rem; 
  color: var(--primary);
  display: flex;
  align-items: center;
}
.pillar-name { font-weight: 700; font-size: 1.1rem; }
.pillar-sub { font-size: 0.85rem; color: var(--text-muted); }

.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial-avatar {
  width: 60px; height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-text p { font-style: italic; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-author { display: block; font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.testimonial-stars { color: var(--accent-gold); margin-top: 0.5rem; }

.franchise-actions { display: flex; gap: 1.5rem; }

.btn-ghost-dark {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
}

.btn-ghost-dark:hover { background: var(--glass); border-color: var(--text-main); }

.franchise-right { position: relative; }

.franchise-img {
  width: 100%;
  border-radius: 30px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

.franchise-stats {
  position: absolute;
  bottom: -2rem; right: -2rem;
  background: var(--primary);
  padding: 2rem;
  border-radius: 30px;
  display: flex;
  gap: 2rem;
}

.fstat { display: flex; flex-direction: column; text-align: center; }
.fstat-num { font-size: 2rem; font-weight: 700; color: var(--bg-dark); }
.fstat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.8); }

/* ========== CONTACT ========== */
.contact-section { background: var(--bg-light); color: var(--text-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }

.contact-icon {
  background: white;
  width: 60px; height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  flex-shrink: 0;
  color: var(--primary);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.9rem; }

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: inherit;
  transition: var(--transition);
  font-size: 0.95rem;
  background: white;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.full-width { width: 100%; justify-content: center; }

/* ========== FOOTER ========== */
.footer {
  background: #2D0000;
  padding: 6rem 0 3rem;
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-tagline { font-family: var(--font-heading); font-size: 1.5rem; margin: 1.5rem 0 2rem; }
.footer-socials { display: flex; gap: 1rem; }

.social-btn {
  width: 45px;
  height: 45px;
  background: var(--glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon {
  width: 24px;
  height: 24px;
  filter: invert(74%) sepia(64%) saturate(740%) hue-rotate(345deg) brightness(95%) contrast(89%);
}

.social-btn:hover {
  
  transform: translateY(-5px);
}

.footer-links-group h5 { font-size: 1.1rem; margin-bottom: 2rem; color: var(--primary); }
.footer-links-group ul { list-style: none; }
.footer-links-group li { margin-bottom: 1rem; }

.footer-links-group a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links-group a:hover { color: var(--text-main); padding-left: 5px; }

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: inherit; text-decoration: none; }

/* ========== CART TOAST ========== */
.cart-toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--bg-dark);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateY(200%);
  transition: var(--transition);
  z-index: 2000;
  border: 1px solid var(--primary);
}

.cart-toast.show { transform: translateY(0); }

/* ========== MOBILE ADAPTATION ========== */
@media (max-width: 1024px) {
  .outlets-grid, .franchise-grid, .contact-grid, .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .franchise-stats { position: static; margin-top: 2rem; }
  .section-title { font-size: 3rem; }
  .franchise-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.show { display: flex; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 5rem 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .franchise-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-scale { transform: scale(0.9); }

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger Logic */
.stagger-container .reveal {
  transition-delay: calc(var(--stagger-index, 0) * 0.15s);
}

/* Parallax Utilities */
.parallax {
  will-change: transform;
}

/* ========== LUXURY FRANCHISE LANDING PAGE STYLES ========== */

.franchise-portal-wrapper {
  background: url('../assets/franchise_bg.png') center/cover no-repeat fixed;
  position: relative;
}

.franchise-page-body {
  background-color: var(--luxury-maroon);
  color: white;
}

.luxury-section {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  background: rgba(61, 0, 0, 0.4); /* Glass Maroon */
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  /* border-bottom: 1px solid rgba(228, 165, 26, 0.1); */
  box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
}

.luxury-section:nth-child(even) {
  background: rgba(45, 0, 0, 0.5); /* Slightly Darker Glass */
}

.bg-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35vw;
  font-weight: 900;
  color: rgba(228, 165, 26, 0.03);
  z-index: 0;
  -webkit-user-select: none;
  user-select: none;
  font-family: var(--font-heading);
}

.luxury-container {
  position: relative;
  z-index: 1;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 2.5rem;
  transition: var(--transition);
}

.franchise-intro {
  padding-bottom: 5rem;
}

.franchise-intro-container {
  text-align: center;
}

.franchise-kicker {
  color: var(--luxury-gold);
  letter-spacing: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

.franchise-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 1rem 0;
}

.franchise-intro-text {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  opacity: 0.8;
}

.franchise-section-heading {
  text-align: center;
  margin-bottom: 5rem;
}

.franchise-grid-gap {
  gap: 5rem;
  align-items: center;
}

.section-title-left {
  text-align: left;
  margin-bottom: 2rem;
}

.franchise-highlight-card {
  border-left: 4px solid var(--luxury-gold);
  background: rgba(228, 165, 26, 0.05);
}

.franchise-highlight-number {
  font-size: 2.5rem;
  color: var(--luxury-gold);
}

.franchise-benefits-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.franchise-benefit-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.franchise-benefit-icon {
  color: var(--luxury-gold);
  width: 20px;
}

.franchise-support-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.franchise-support-card {
  padding: 1.5rem;
  text-align: center;
}

.franchise-support-icon {
  margin: 0 auto 1rem;
}

.franchise-support-title {
  font-size: 0.9rem;
}

.franchise-roi-highlight {
  background: rgba(0, 255, 127, 0.1);
  color: #00ff7f;
  grid-column: span 2;
  border-radius: 20px;
}

.franchise-plan-grid {
  margin-bottom: 5rem;
}

.franchise-plan-title {
  margin-bottom: 2rem;
  color: var(--luxury-gold);
}

.franchise-plan-row {
  display: flex;
  justify-content: space-between;
}

.franchise-plan-row--separated {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.franchise-requirements-list {
  list-style: none;
  font-size: 0.9rem;
}

.franchise-requirements-item {
  margin-bottom: 0.5rem;
}

.franchise-requirements-icon {
  width: 14px;
  color: var(--luxury-gold);
}

.roadmap-step-node--orange {
  background: #f39c12;
  box-shadow: 0 0 15px #f39c12;
}

.roadmap-step-node--green {
  background: #2ecc71;
  box-shadow: 0 0 15px #2ecc71;
}

.franchise-form-container {
  max-width: 800px;
  text-align: center;
}

.franchise-form-title {
  margin-bottom: 50px;
}

.franchise-form-card {
  padding: 3rem;
  text-align: left;
}

.franchise-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.franchise-form-email {
  margin-bottom: 1rem;
}

.franchise-form-message {
  margin-bottom: 1.5rem;
}

.franchise-submit-btn {
  width: 100%;
}

.outlet-card-image {
  width: 100%;
}

.outlet-image--sepia-light {
  filter: brightness(0.8) sepia(0.2);
}

.outlet-image--contrast {
  filter: brightness(0.9) contrast(1.1);
}

.outlet-image--hue {
  filter: hue-rotate(15deg);
}

.outlet-image--saturate {
  filter: saturate(0.8);
}

.outlet-image--bright-contrast {
  filter: brightness(1.1) contrast(0.9);
}

.outlet-image--sepia-strong {
  filter: sepia(0.3);
}

.outlet-image--bright-wide {
  filter: brightness(0.85) contrast(1.15);
}

.outlet-image--saturate-high {
  filter: brightness(1.1) saturate(1.2);
}

.outlet-image--grayscale {
  filter: grayscale(0.2) contrast(1.1);
}

.outlet-image--blurred {
  filter: blur(2px) grayscale(0.5);
}

.card-badge--coming-soon {
  background: #333;
  color: #fff;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: var(--luxury-gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--luxury-gold-glow);
}

/* Feature Grid */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.luxury-icon {
  width: 50px;
  height: 50px;
  color: var(--luxury-gold);
  margin-bottom: 1.5rem;
}

/* ROI Dashboard */
.roi-dashboard {
  background: #1a0000;
  border-radius: 40px;
  padding: 4rem;
  border: 1px solid rgba(228, 165, 26, 0.1);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.metric-card {
  padding: 2rem;
  text-align: center;
}

.metric-card.gold { background: rgba(228, 165, 26, 0.1); color: var(--luxury-gold); border-radius: 20px; }
.metric-card.purple { background: rgba(138, 43, 226, 0.1); color: #a29bfe; border-radius: 20px; }

.metric-val { font-size: 2.5rem; font-weight: 700; margin: 0.5rem 0; }
.metric-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; }

/* Timeline Roadmap */
.roadmap-container {
  position: relative;
  padding-left: 3rem;
}

.roadmap-container::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--luxury-gold), transparent);
}

.roadmap-step {
  position: relative;
  margin-bottom: 4rem;
}

.step-node {
  position: absolute;
  left: -43px;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--luxury-gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--luxury-gold);
}

/* Form Styles */
.luxury-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(228, 165, 26, 0.2);
  padding: 1.2rem;
  border-radius: 12px;
  color: white;
  font-family: var(--font-body);
  transition: var(--transition);
}

.luxury-input:focus {
  outline: none;
  border-color: var(--luxury-gold);
  background: rgba(255, 255, 255, 0.08);
}

/* ========== PAGE TRANSITION OVERLAY ========== */
.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-transition-overlay.fade-out {
  opacity: 0;
}

/* Page entrance animation for main content */
.page-content {
  animation: pageEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact section needs padding top on its own page */
.contact-section {
  padding: 8rem 0 6rem;
}

/* Franchise wrapper needs padding when standalone */
.franchise-portal-wrapper {
  padding-top: 0;
}

/* Ensure sections have proper spacing as standalone pages */
.outlet-network-section {
  min-height: 100vh;
}

.menu-section {
  padding-top: 6rem;
}
