/* ==========================================================================
   अस्सल चहाप्रेमी (Assal Chaha Premi) - Modern Premium Stylesheet
   Theme: Warm Terracotta, Amber Gold, Cream & Soft Charcoal
   Language: Marathi (Devanagari Optimized)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Mukta:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Primary Brand Colors — Warm Terracotta */
  --primary: #C0392B;
  --primary-dark: #922B21;
  --primary-light: #E74C3C;
  --primary-soft: rgba(192, 57, 43, 0.08);
  --primary-softer: rgba(192, 57, 43, 0.04);

  /* Accent — Amber Gold */
  --accent: #F39C12;
  --accent-bright: #F1C40F;
  --accent-dark: #D68910;
  --accent-soft: rgba(243, 156, 18, 0.12);

  /* Neutral Palette — Warm Tones */
  --bg-main: #FBF7F0;
  --bg-alt: #F5EDE1;
  --bg-warm: #FFF8F0;
  --surface: #FFFFFF;
  --surface-hover: #FEFCF9;

  /* Text Colors */
  --text-primary: #2C2C2C;
  --text-secondary: #555555;
  --text-muted: #7F8C8D;
  --text-light: #F8F9FA;
  --text-on-primary: #FFFFFF;

  /* Status */
  --veg-green: #27AE60;
  --success: #2ECC71;

  /* Shadows — Layered and color-aware */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-primary: 0 4px 20px rgba(192, 57, 43, 0.2);
  --shadow-accent: 0 4px 20px rgba(243, 156, 18, 0.25);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-heading: 'Outfit', 'Mukta', sans-serif;
  --font-body: 'Mukta', 'Inter', sans-serif;
  --font-ui: 'Inter', 'Mukta', sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.4s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

/* ==========================================================================
   Base Setup
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.brand-font {
  font-family: var(--font-heading);
  font-weight: 800;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-alt);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selection */
::selection {
  background: var(--accent);
  color: var(--text-primary);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-alt) 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-smooth), visibility 0.6s var(--ease-smooth);
}

.tea-cup-loader {
  position: relative;
  width: 72px;
  height: 82px;
  border: 3px solid var(--primary);
  border-radius: 0 0 18px 18px;
  background: rgba(192, 57, 43, 0.05);
}

.tea-cup-loader::after {
  content: '';
  position: absolute;
  top: 14px;
  right: -18px;
  width: 18px;
  height: 32px;
  border: 3px solid var(--primary);
  border-left: none;
  border-radius: 0 14px 14px 0;
}

.steam-particle {
  position: absolute;
  top: -22px;
  width: 6px;
  height: 18px;
  background: var(--accent);
  border-radius: 10px;
  filter: blur(1.5px);
  animation: steamRise 1.8s infinite ease-in-out;
}
.steam-particle:nth-child(1) { left: 14px; animation-delay: 0s; }
.steam-particle:nth-child(2) { left: 32px; animation-delay: 0.4s; }
.steam-particle:nth-child(3) { left: 50px; animation-delay: 0.8s; }

@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0; }
  50% { opacity: 0.7; transform: translateY(-14px) scaleX(1.4); }
  100% { transform: translateY(-28px) scaleX(1.8); opacity: 0; }
}

#preloader .brand-font {
  color: var(--primary) !important;
}

#preloader .text-light {
  color: var(--text-muted) !important;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--text-on-primary);
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: none;
}

.top-bar a {
  color: var(--accent-bright);
  font-weight: 500;
}

.top-bar a:hover {
  color: #FFFFFF;
}

.top-bar .badge {
  background: var(--accent) !important;
  color: var(--text-primary) !important;
  font-weight: 700;
}

.top-bar .brand-font {
  color: var(--accent-bright) !important;
}

.top-bar .text-warning {
  color: var(--accent-bright) !important;
}

/* Navbar */
.navbar-custom {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  transition: all 0.4s var(--ease-smooth);
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar-custom.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(192, 57, 43, 0.08);
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand-logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s var(--ease-bounce);
}

.navbar-brand-logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.brand-text-container {
  display: flex;
  flex-direction: column;
}

.brand-title {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-subtitle {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Nav Links */
.nav-link-custom {
  color: var(--text-primary) !important;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.3s var(--ease-out);
  letter-spacing: -0.2px;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
  transform: translateX(-50%);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--primary) !important;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 60%;
}

/* CTA Button — Gold */
.btn-gold {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: var(--shadow-accent);
  transition: all 0.35s var(--ease-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.2px;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s var(--ease-smooth);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(243, 156, 18, 0.45);
  color: var(--text-primary);
}

.btn-gold:hover::before {
  left: 100%;
}

/* CTA Button — Primary (was btn-maroon) */
.btn-maroon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  font-family: var(--font-ui);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  transition: all 0.35s var(--ease-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
}

.btn-maroon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s var(--ease-smooth);
}

.btn-maroon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.4);
  color: #FFFFFF;
}

.btn-maroon:hover::before {
  left: 100%;
}

/* Navbar Toggler */
.navbar-toggler {
  border: 2px solid var(--primary);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(192, 57, 43, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(192, 57, 43, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-main) 40%, var(--bg-alt) 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px 0;
  overflow: hidden;
  color: var(--text-primary);
}

/* Decorative geometric shapes */
.hero-overlay-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-overlay-shapes::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
  animation: floatSlow 8s infinite ease-in-out;
}

.hero-overlay-shapes::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.06) 0%, transparent 70%);
  animation: floatSlow 10s infinite ease-in-out reverse;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  border: 1px solid rgba(192, 57, 43, 0.15);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 35px;
  max-width: 580px;
  line-height: 1.8;
}

/* Hero Stats */
.hero-stats-row {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat-card {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  min-width: 135px;
  transition: all 0.35s var(--ease-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.hero-stat-card:hover::before {
  opacity: 1;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-heading);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  text-align: center;
}

.hero-main-img {
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: none;
  transition: transform 0.6s var(--ease-smooth);
}

.hero-main-img:hover {
  transform: scale(1.02) rotate(-0.5deg);
}

.floating-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--surface);
  color: var(--text-primary);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatAnim 3.5s infinite ease-in-out;
}

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

.floating-badge i {
  font-size: 2rem;
  color: var(--accent-dark);
}

/* ==========================================================================
   Section Title Stylings (Shared)
   ========================================================================== */
.section-subtitle {
  color: var(--primary);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 10px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

/* Decorative Divider */
.custom-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 15px 0 30px 0;
}

.custom-divider span {
  height: 2px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.custom-divider i {
  color: var(--accent-dark);
  font-size: 1.1rem;
}

/* ==========================================================================
   Mission & Vision Section
   ========================================================================== */
.mission-vision-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.mv-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 0 4px 4px 0;
  transition: width 0.35s var(--ease-smooth);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.mv-card:hover::before {
  width: 6px;
}

.mv-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-primary);
  transition: transform 0.3s var(--ease-bounce);
}

.mv-card:hover .mv-icon-wrapper {
  transform: scale(1.05);
}

.mv-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.mv-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.about-img-box:hover img {
  transform: scale(1.04);
}

.about-experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--surface);
  color: var(--primary);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-experience-badge .years {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
  color: var(--primary);
}

.about-experience-badge .small {
  color: var(--accent-dark) !important;
  font-weight: 600 !important;
}

/* Timeline */
.about-timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 30px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent), var(--primary-light));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(192, 57, 43, 0.15);
}

.timeline-year {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}

.timeline-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Highlight Quote Box */
.quote-box {
  background: var(--primary-soft);
  border-left: 4px solid var(--primary);
  padding: 22px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 25px 0;
  font-style: italic;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
  padding: 100px 0;
  background: var(--bg-main);
  position: relative;
}

.features-section .section-subtitle {
  color: var(--primary);
}

.features-section .section-title {
  color: var(--text-primary);
}

.feature-box {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-smooth);
  transform-origin: left;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.feature-box:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px auto;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.35s var(--ease-smooth);
  border: none;
}

.feature-box:hover .feature-icon {
  transform: scale(1.08) rotate(3deg);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #FFFFFF;
  box-shadow: var(--shadow-primary);
}

.feature-title {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Features section overrides for text-white class used in HTML */
.features-section .text-white {
  color: var(--text-primary) !important;
}

.features-section .text-warning {
  color: var(--primary) !important;
}

.features-section .text-light {
  color: var(--text-muted) !important;
}

.features-section .opacity-75 {
  opacity: 1 !important;
}

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.menu-tab-btn {
  background: var(--surface);
  border: 2px solid rgba(0, 0, 0, 0.06);
  color: var(--text-secondary);
  font-family: var(--font-ui);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.98rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

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

.menu-tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.menu-card-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-xs);
  transition: all 0.35s var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.menu-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.menu-card-item:hover::before {
  opacity: 1;
}

.menu-item-info {
  flex-grow: 1;
}

.veg-icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--veg-green);
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 3px;
}

.veg-icon::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--veg-green);
}

.menu-item-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: none;
}

/* ==========================================================================
   Branches Network Section
   ========================================================================== */
.branches-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.branch-search-box {
  max-width: 500px;
  margin: 0 auto 40px auto;
  position: relative;
}

.branch-search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(0, 0, 0, 0.08);
  font-family: var(--font-body);
  font-size: 1.02rem;
  box-shadow: var(--shadow-sm);
  outline: none;
  background: var(--surface);
  transition: all 0.3s var(--ease-smooth);
}

.branch-search-input:focus {
  border-color: var(--primary);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(192, 57, 43, 0.08);
}

.branch-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.branch-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.branch-card.main-headquarters {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF0 100%);
}

.branch-card.main-headquarters:hover {
  box-shadow: var(--shadow-accent), var(--shadow-lg);
}

.branch-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFFFFF;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.branch-badge.bg-secondary {
  background: linear-gradient(135deg, var(--text-muted), #6c757d) !important;
}

.branch-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.branch-address {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.branch-address i {
  color: var(--primary);
  margin-top: 4px;
}

/* ==========================================================================
   Franchise & ROI Calculator Section
   ========================================================================== */
.franchise-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-main) 100%);
}

.franchise-banner-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #1a1a2e 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: #FFFFFF;
  border: none;
  box-shadow: var(--shadow-xl);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.franchise-banner-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, transparent 70%);
}

.franchise-banner-box .badge {
  background: var(--accent) !important;
  color: var(--text-primary) !important;
}

.roi-calc-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.roi-calc-card:hover {
  box-shadow: var(--shadow-lg);
}

.calc-slider-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.calc-slider-val {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
}

.custom-range {
  accent-color: var(--primary);
  height: 6px;
}

.roi-result-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin-top: 28px;
  border: none;
  box-shadow: var(--shadow-primary);
}

.roi-profit-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-bright);
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* Form Controls */
.form-control-custom {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s var(--ease-out);
  background: var(--surface);
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.08);
  outline: none;
}

/* ==========================================================================
   Testimonials & FAQ Sections
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  position: relative;
  transition: all 0.35s var(--ease-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.quote-icon {
  font-size: 2.2rem;
  color: rgba(243, 156, 18, 0.2);
  position: absolute;
  top: 20px;
  right: 20px;
}

.star-rating {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  gap: 2px;
}

/* FAQ */
.faq-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.accordion-custom .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow 0.3s ease;
}

.accordion-custom .accordion-item:hover {
  box-shadow: var(--shadow-sm);
}

.accordion-custom .accordion-button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  background-color: var(--surface);
  padding: 20px 24px;
  border: none;
  transition: all 0.3s var(--ease-out);
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFFFFF;
  box-shadow: none;
}

.accordion-custom .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(24%) sepia(72%) saturate(2500%) hue-rotate(349deg) brightness(80%) contrast(95%);
  transition: transform 0.35s var(--ease-smooth), filter 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(103%) contrast(103%);
}

.accordion-custom .accordion-body {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 24px;
  background: var(--surface);
}

/* ==========================================================================
   Contact & Footer
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: var(--bg-alt);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  height: 100%;
  border: none;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.contact-info-card h3 {
  color: var(--accent-bright) !important;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.contact-item h4 {
  color: var(--accent-bright) !important;
}

/* Footer */
.site-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px 0;
  border-top: none;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-logo img {
  height: 55px;
  margin-bottom: 12px;
}

.footer-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-bright);
  transform: translateX(5px);
}

.footer-links a .text-warning {
  color: var(--accent) !important;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s var(--ease-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #FFFFFF;
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 50px;
  padding-top: 25px;
}

/* ==========================================================================
   Floating Buttons
   ========================================================================== */

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-smooth);
  animation: pulseGreen 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  color: #FFFFFF;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

@keyframes pulseGreen {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  background: var(--surface);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-smooth);
  z-index: 998;
  box-shadow: var(--shadow-sm);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary);
  border-color: transparent;
}

/* ==========================================================================
   Responsive Tweaks
   ========================================================================== */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 100px 0 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .floating-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    justify-content: center;
  }

  .navbar-custom {
    background: rgba(255, 255, 255, 0.96);
  }

  .franchise-banner-box {
    padding: 40px 28px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-stats-row {
    gap: 10px;
  }

  .hero-stat-card {
    min-width: 46%;
    padding: 14px 16px;
  }

  .hero-stat-num {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .mv-card, .feature-box, .roi-calc-card {
    padding: 24px 18px;
  }

  .franchise-banner-box {
    padding: 32px 20px;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .back-to-top {
    bottom: 18px;
    left: 18px;
    width: 40px;
    height: 40px;
  }

  .contact-info-card {
    padding: 30px 22px;
  }
}

/* ==========================================================================
   Utility Overrides — Bootstrap Class Compatibility
   ========================================================================== */
.text-warning {
  color: var(--accent) !important;
}

.bg-warning {
  background-color: var(--accent) !important;
}

.text-dark {
  color: var(--text-primary) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.min-height-350 {
  min-height: 350px;
}

.max-width-700 {
  max-width: 700px;
}
