/* ==========================================================================
   A1 SOMESHWAR MISAL - PREMIUM STYLE SYSTEM (VANILLA CSS)
   ========================================================================== */

/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Rozha+One&family=Yatra+One&display=swap");

/* Color Variables & Styling Tokens */
:root {
  --bg-primary: #661f1f;
  --bg-secondary: #310505;
  --bg-tertiary: #222222;
  --color-maroon: #7a001e;
  --color-maroon-light: #9e0027;
  --color-orange: #f57c00;
  --color-orange-glow: rgba(245, 124, 0, 0.4);
  --color-gold: #ffc107;
  --color-gold-glow: rgba(255, 193, 7, 0.3);

  --text-white: #fdfdfd;
  --text-pure: #f5f5f5;
  --text-gray: #e0e0e0;
  --text-muted: #bcbbbb;

  --font-sans: "Outfit", sans-serif;
  --font-marathi: "Rozha One", serif;
  --font-accent: "Yatra One", cursive;

  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  --border-glass: rgba(255, 255, 255, 0.08);
  --bg-glass: rgba(22, 22, 22, 0.7);
  --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Reset & Base Rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--bg-primary);
  color: var(--text-pure);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-maroon);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

/* Common Typography & Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-white);
  font-weight: 700;
}

.marathi-title {
  font-family: var(--font-marathi);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-orange) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.accent-text {
  font-family: var(--font-accent);
  color: var(--color-orange);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-subtitle {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-size: 1.5rem;
  font-weight: 500;
}

.glow-text {
  text-shadow: 0 0 10px var(--color-orange-glow);
}

/* Layout Utilities */
section {
  padding: 7rem 8% 7rem 8%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

@media (max-width: 1024px) {
  section {
    padding: 6rem 5% 6rem 5%;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  gap: 0.5rem;
  box-shadow: var(--shadow-glow);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-maroon) 0%,
    var(--color-maroon-light) 100%
  );
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(122, 0, 30, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 25px rgba(122, 0, 30, 0.6),
    0 0 10px var(--color-orange-glow);
  background: linear-gradient(
    135deg,
    var(--color-maroon-light) 0%,
    var(--color-orange) 100%
  );
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--text-white);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-gold) 100%
  );
  color: var(--bg-primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245, 124, 0, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

/* Header & Glassmorphism Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(14, 14, 14, 0.65);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(14, 14, 14, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-text {
  color: white;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.logo-text-below {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-top: 4px;
  letter-spacing: 1px;
}

.hero-plate {
  transition: opacity 0.4s ease;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--color-maroon) 0%,
    var(--color-orange) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-marathi);
  font-size: 1.6rem;
  color: var(--text-white);
  box-shadow: 0 0 15px var(--color-orange-glow);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--text-white) 30%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-gold));
  transition: width var(--transition-normal);
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-gold);
}

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

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

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-white);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

/* SECTION 1 - HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8rem;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(122, 0, 30, 0.15) 0%,
    rgba(14, 14, 14, 1) 70%
  );
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(122, 0, 30, 0.2);
  border: 1px solid rgba(122, 0, 30, 0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.hero-badge i {
  color: var(--color-orange);
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content h1 span.marathi {
  font-family: var(--font-marathi);
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-orange) 50%,
    var(--color-maroon-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 4.5rem;
  margin-top: 0.5rem;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-media {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.hero-plate-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  z-index: 2;
}

.hero-plate {
  width: 100%;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.8));
  animation: floatPlate 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

/* Floating particles */
.floating-particle {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.particle-chilli {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
  animation: floatChilli 8s ease-in-out infinite;
}

.particle-spice {
  width: 20px;
  height: 20px;
  animation: floatSpice 10s ease-in-out infinite;
}

/* Steam particles */
.steam-container {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  height: 200px;
  width: 150px;
  pointer-events: none;
  opacity: 0.7;
}

.steam-bubble {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 12px;
  height: 30px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(5px);
  border-radius: 50%;
  animation: riseSteam 4s infinite linear;
}

.steam-bubble:nth-child(2) {
  left: 40%;
  width: 18px;
  height: 40px;
  animation-delay: 1s;
  animation-duration: 4.5s;
}

.steam-bubble:nth-child(3) {
  left: 60%;
  width: 15px;
  height: 35px;
  animation-delay: 2.2s;
  animation-duration: 3.8s;
}

.hero-glow-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--color-maroon) 0%,
    rgba(122, 0, 30, 0) 70%
  );
  filter: blur(40px);
  z-index: 1;
  opacity: 0.6;
}

/* SECTION 2 - ABOUT SOMESHWAR */
.about {
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-left {
  position: relative;
}

.about-journey-title {
  margin-top: 1rem;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(122, 0, 30, 0.4);
  margin-bottom: 3rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.6rem;
  top: 0.2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-orange);
  border: 4px solid var(--bg-primary);
  box-shadow: 0 0 10px var(--color-orange-glow);
}

.timeline-item.active .timeline-dot {
  background: var(--color-gold);
  transform: scale(1.2);
}

.timeline-year {
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.timeline-desc {
  font-size: 1.3rem;
  color: var(--text-muted);
}

.about-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  border-radius: 20px;
  overflow: hidden;
  max-width: 500px;
  height: 350px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-glass);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(14, 14, 14, 0.9) 0%,
    rgba(14, 14, 14, 0) 50%
  );
}

.about-image-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.about-image-tag h4 {
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.about-image-tag p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

@media (max-width: 768px) {
  .about-grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .about-left,
  .about-right {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .about-left * {
    max-width: 100%;
  }
}

/* Counters section inside About */
.about-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.3rem;
}

.counter-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTION 3 - WHY PEOPLE LOVE US */
.why-us {
  background: var(--bg-secondary);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-maroon), var(--color-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 124, 0, 0.3);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(245, 124, 0, 0.1);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon-container {
  width: 75px;
  height: 75px;
  background: rgba(122, 0, 30, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(122, 0, 30, 0.3);
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon-container {
  background: var(--color-maroon);
  box-shadow: 0 0 20px rgba(122, 0, 30, 0.5);
}

.why-icon-container i {
  font-size: 2rem;
  color: var(--color-orange);
  transition: color var(--transition-normal);
}

.why-card:hover .why-icon-container i {
  color: var(--text-white);
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--text-gray);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
}

/* SECTION 4 - OUR SPECIALITIES (MENU) */
.menu-section {
  background: var(--bg-primary);
  text-align: center;
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.7rem 1.8rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(
    135deg,
    var(--color-maroon) 0%,
    var(--color-orange) 100%
  );
  color: var(--text-white);
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(122, 0, 30, 0.4);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(233px, 1fr));
  gap: 2.5rem;
}

.menu-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  border: 1px solid var(--border-glass);
  overflow: hidden;
  text-align: left;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 193, 7, 0.2);
}

.menu-image-container {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-card:hover img {
  transform: scale(1.08);
}

.menu-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(5px);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--border-glass);
}

.badge-popular {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.badge-new {
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.menu-details {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.menu-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.menu-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-gold);
}

.menu-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
}

.spice-level {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.spice-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-right: 0.2rem;
}

.spice-level i {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.spice-level i.spicy {
  color: #e53935;
}

.btn-add-item {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-add-item:hover {
  background: var(--text-white);
  color: var(--bg-primary);
  border-color: var(--text-white);
}

/* SECTION 5 - FOOD EXPERIENCE GALLERY */
.gallery-section {
  background: var(--bg-secondary);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.gallery-item.col-2 {
  grid-column: span 2;
}

.gallery-item.row-2 {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-item.col-2,
  .gallery-item.row-2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 14, 14, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(3px);
  text-align: left;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
  transform: translateY(15px);
  transition: transform var(--transition-normal);
}

.gallery-overlay p {
  font-size: 0.9rem;
  color: var(--color-gold);
  transform: translateY(15px);
  transition: transform var(--transition-normal) 0.1s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* SECTION 6 - FUN MARATHI DIALOGUES */
.dialogues-section {
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.dialogues-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  width: 100%;
  margin-top: 4rem;
  align-items: center;
}

@media (max-width: 800px) {
  .dialogues-container {
    grid-template-columns: 1fr;
  }
}

.mascot-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mascot-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    var(--color-orange-glow) 0%,
    rgba(245, 124, 0, 0) 70%
  );
  filter: blur(30px);
  z-index: 1;
}

.mascot-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  animation: floatMascot 4s ease-in-out infinite;
}

.dialogues-comic {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  text-align: left;
}

.comic-bubble {
  background: var(--bg-secondary);
  border: 2px solid var(--color-orange);
  border-radius: 25px;
  padding: 1.8rem 2.2rem;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transform-origin: left bottom;
  animation: bubblePop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.comic-bubble::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50px;
  border-width: 15px 15px 0;
  border-style: solid;
  border-color: var(--color-orange) transparent;
  display: block;
  width: 0;
}

.comic-bubble::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 52px;
  border-width: 13px 13px 0;
  border-style: solid;
  border-color: var(--bg-secondary) transparent;
  display: block;
  width: 0;
}

.comic-bubble p.marathi {
  font-family: var(--font-marathi);
  font-size: 1.6rem;
  color: var(--color-gold);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.comic-bubble p.translation {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-style: italic;
}

/* Comic bubble bubble styles */
.comic-bubble:nth-child(2) {
  border-color: var(--color-gold);
  transform-origin: right bottom;
  align-self: flex-end;
}
.comic-bubble:nth-child(2)::before {
  left: auto;
  right: 50px;
  border-color: var(--color-gold) transparent;
}
.comic-bubble:nth-child(2)::after {
  left: auto;
  right: 52px;
  border-color: var(--bg-secondary) transparent;
}

/* SECTION 7 - CUSTOMER LOVE (TESTIMONIALS) */

.testimonials-section {
  background: var(--bg-secondary);
  text-align: center;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0 auto;
  overflow: hidden;
  padding: 1rem;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-normal);
  gap: 0;
}

.testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  text-align: left;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 1.5rem;
  }
}

.testimonial-user-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-orange);
  box-shadow: 0 0 15px var(--color-orange-glow);
  flex-shrink: 0;
}

.testimonial-text-area {
  flex-grow: 1;
}

.rating-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.3rem;
  color: var(--text-pure);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-orange);
  width: 25px;
  border-radius: 5px;
}

/* SECTION 8 - BRANCH LOCATOR */
.locator-section {
  background: var(--bg-secondary);
}

.locator-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  margin-top: 4rem;
  height: 600px;
}

@media (max-width: 900px) {
  .locator-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  height: 100%;
  min-height: 400px;
  z-index: 10;
}

/* Customize Leaflet dark theme wrapper styling */
.leaflet-container {
  background-color: var(--bg-primary) !important;
}

.branches-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
  padding-right: 0.5rem;
  height: 100%;
}

.branch-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: left;
}

.branch-card:hover,
.branch-card.active {
  background: rgba(122, 0, 30, 0.15);
  border-color: var(--color-orange);
  box-shadow: 0 8px 20px rgba(122, 0, 30, 0.2);
}

.branch-card h3 {
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.branch-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.branch-info-row i {
  color: var(--color-orange);
  margin-top: 0.2rem;
  font-size: 1rem;
}

.branch-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
}

.branch-btn {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all var(--transition-fast);
}

.branch-btn-primary {
  background: var(--color-maroon);
  color: var(--text-white);
}

.branch-btn-primary:hover {
  background: var(--color-orange);
}

.branch-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-gray);
}

.branch-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}

/* SECTION 9 - FRANCHISE OPPORTUNITY */
.franchise-section {
  background: linear-gradient(135deg, #3c000b 0%, #7a001e 50%, #0e0e0e 100%);
}

.franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .franchise-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.franchise-info {
  text-align: left;
}

.franchise-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--text-white) 30%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.franchise-intro {
  font-size: 1.1rem;
  color: var(--text-pure);
  margin-bottom: 2.5rem;
}

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

@media (max-width: 480px) {
  .franchise-benefits {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  gap: 1rem;
}

.benefit-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--text-white);
}

.benefit-content p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.franchise-form-container {
  background: rgba(14, 14, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  text-align: left;
}

@media (max-width: 480px) {
  .franchise-form-container {
    padding: 2rem 1.5rem;
  }
}

.franchise-form-container h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-gold);
}

.franchise-form-container p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-orange);
  box-shadow: 0 0 12px var(--color-orange-glow);
}

.form-select option {
  background-color: var(--bg-primary);
  color: var(--text-white);
}

.btn-submit {
  width: 100%;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .franchise-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.contact-direct-call a {
  color: var(--color-gold);
  text-decoration: none;
}

/* SECTION 10 - INSTAGRAM WALL */
.instagram-section {
  background: var(--bg-primary);
  text-align: center;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (max-width: 1024px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .insta-grid {
    grid-template-columns: 1fr;
  }
}

.insta-item {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--bg-secondary);
}
.insta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* We use video-like placeholder layouts */
.insta-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.insta-item:hover .insta-video {
  transform: scale(1.03);
}

.insta-video {
  transition: transform var(--transition-slow);
}

.insta-play-btn {
  display: none;
}

.insta-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.insta-header {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 5;
}
.insta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.insta-overlay-gradient {
  z-index: 1;
}

.insta-header,
.insta-footer {
  z-index: 2;
}

.insta-footer {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 5;
  text-align: left;
}

.insta-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.insta-user i {
  color: var(--color-orange);
}

.insta-icon {
  color: var(--text-white);
  font-size: 1.2rem;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.insta-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 2px solid var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.5rem;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  transition: all var(--transition-normal);
}

.insta-footer {
  z-index: 2;
  text-align: left;
  color: var(--text-white);
}

.insta-caption {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.insta-likes {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

@media (max-width: 480px) {
  .insta-item {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .insta-item {
    max-width: 320px;
    min-height: 500px;
    margin: 0 auto;
  }
}
/* SECTION 11 - SPECIAL FEATURES */
.features-section {
  background: var(--bg-secondary);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: left;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 193, 7, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 193, 7, 0.2);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--color-gold);
  color: var(--bg-primary);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--color-gold-glow);
}
.mute-btn {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);

  color: white;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 20;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--text-white);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-weight: 300;
}

/* SECTION 12 - CONTACT SECTION */
.contact-section {
  background: var(--bg-primary);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
  text-align: left;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  display: flex;
  gap: 1.2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 1.8rem;
  border-radius: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(245, 124, 0, 0.3);
}

.contact-info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--color-gold);
}

.contact-info-content p {
  font-size: 0.95rem;
  color: var(--text-gray);
}

.contact-info-content a {
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-info-content a:hover {
  color: var(--color-orange);
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.social-circle:hover {
  background: var(--color-orange);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--color-orange-glow);
}

.whatsapp-cta-banner {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  border-radius: 20px;
  padding: 2.2rem;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 15px 30px rgba(7, 94, 84, 0.3);
}

.whatsapp-cta-banner h4 {
  font-size: 1.35rem;
  font-weight: 700;
}

.whatsapp-cta-banner p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.btn-whatsapp {
  background: var(--text-white);
  color: #075e54;
  font-weight: 700;
  border: none;
}

.btn-whatsapp:hover {
  background: #ece5dd;
  color: #075e54;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.contact-form-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 3rem;
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

.contact-form-wrapper h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-orange);
}

.contact-form-wrapper p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* PREMIUM FOOTER */
footer {
  background: #070707;
  padding: 5rem 10% 2.5rem 10%;
  border-top: 1px solid var(--border-glass);
}

@media (max-width: 1024px) {
  footer {
    padding: 4rem 5% 2rem 5%;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto 4rem auto;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand-column p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 1.5rem 0 2rem 0;
  max-width: 320px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  text-decoration: none;
  color: var(--text-gray);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--text-gray);
}

/* Success Modal Alert */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(10px);
}

.success-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.success-modal-content {
  background: var(--bg-secondary);
  border: 2px solid var(--color-gold);
  border-radius: 24px;
  padding: 3.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.8),
    0 0 30px var(--color-gold-glow);
  transform: scale(0.85);
  transition: transform var(--transition-normal);
}

.success-modal.active .success-modal-content {
  transform: scale(1);
}

.success-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 2.5rem;
  margin: 0 auto 2rem auto;
  box-shadow: 0 0 20px var(--color-gold-glow);
}

.success-modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.success-modal-content p {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

/* Animations */
@keyframes floatPlate {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes floatChilli {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-20px) rotate(-15deg) scale(1.05);
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}

@keyframes floatSpice {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(45deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes riseSteam {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }
  15% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-80px) scaleX(1.3) skewX(5deg);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-160px) scaleX(1.6) skewX(-10deg);
    opacity: 0;
  }
}

@keyframes floatMascot {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes bubblePop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Navigation */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: right var(--transition-normal);
    z-index: 999;
    border-left: 1px solid var(--border-glass);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero {
    flex-direction: column;
    padding-top: 7rem;
    text-align: center;
    gap: 4rem;
  }

  .hero-badge {
    margin: 0 auto 1.8rem auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

/* ==========================================
   UPDATED/NEW LUXURY STYLE SYSTEM ADDITIONS
   ========================================== */

/* Hero Instagram Badge & Buttons */
.btn-insta-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-orange);
  color: var(--color-gold);
  backdrop-filter: blur(10px);
}

.btn-insta-outline:hover {
  background: linear-gradient(135deg, #e1306c 0%, #c13584 50%, #f57c00 100%);
  color: var(--text-white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.hero-insta-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  z-index: 10;
  text-decoration: none;
  display: block;
  transition: all var(--transition-normal);
  animation: floatBadge 5s ease-in-out infinite;
}

.hero-insta-badge:hover {
  transform: scale(1.05) translateY(-5px);
}

.insta-badge-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(135deg, #e1306c, #c13584, #ffc107);
  filter: blur(8px);
  opacity: 0.5;
  z-index: 1;
  transition: opacity var(--transition-fast);
}

.hero-insta-badge:hover .insta-badge-glow {
  opacity: 0.9;
}

.insta-badge-content {
  position: relative;
  z-index: 2;
  background: rgba(14, 14, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  backdrop-filter: blur(10px);
}

.insta-badge-content i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #e1306c, #c13584, #f57c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.insta-badge-text {
  display: flex;
  flex-direction: column;
}

.insta-badge-text span {
  font-size: 0.75rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insta-badge-text strong {
  font-size: 0.85rem;
  color: var(--text-white);
  font-weight: 700;
}

/* Floating Particle Positioning Adjustments */
.p-chilli-1 {
  top: 10%;
  left: 15%;
}
.p-chilli-2 {
  bottom: 15%;
  right: 10%;
}
.p-spice-1 {
  top: 50%;
  left: -5%;
}
.p-spice-2 {
  top: 30%;
  right: -5%;
}

/* Section 3: Vision, Mission & Values */
.vision-section {
  background: var(--bg-secondary);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
}

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}
.vision-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.vision-card {
  padding: 3.5rem 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vision-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 193, 7, 0.05);
}

.vision-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(122, 0, 30, 0.2);
  border: 1px solid rgba(122, 0, 30, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 2rem;
}

.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--text-white);
  font-weight: 700;
}

.vision-card p {
  font-size: 1.5rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 300;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  color: var(--text-gray);
  font-weight: 400;
}

.values-list li i {
  color: var(--color-orange);
  font-size: 0.9rem;
}

.vision-glow-gold {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--color-gold-glow) 0%,
    rgba(255, 193, 7, 0) 70%
  );
  filter: blur(15px);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.vision-card:hover .vision-glow-gold {
  opacity: 1;
}

/* Section 5: Menu CTA */
.watch-prep-cta {
  font-size: 0.85rem;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
  border-bottom: 1px dashed var(--color-gold);
  padding-bottom: 2px;
}

.watch-prep-cta:hover {
  color: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateX(3px);
}

/* Section 7: Founder's Message */
.founders-section {
  background: radial-gradient(
    circle at 10% 50%,
    rgba(122, 0, 30, 0.1) 0%,
    rgba(14, 14, 14, 1) 75%
  );
  padding: 8rem 10%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.founders-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .founders-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.founders-card {
  padding: 4.5rem 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.founders-quote-icon {
  font-size: 3.5rem;
  color: rgba(255, 193, 7, 0.15);
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.founders-quote {
  font-size: 1.7rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  color: var(--text-pure);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.founders-profiles {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.founder-profile h4 {
  font-size: 1.25rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.founder-profile span {
  font-size: 0.85rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founders-divider {
  width: 2px;
  height: 40px;
  background: rgba(255, 193, 7, 0.2);
}

.founders-tagline {
  margin-top: 2.5rem;
  font-family: var(--font-accent);
  color: var(--color-orange);
  font-size: 1.2rem;
}

.founders-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.founders-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  border: 2px solid var(--color-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  z-index: 2;
  animation: floatMascot 6s ease-in-out infinite;
}

.founders-overlay-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(
    circle,
    rgba(245, 124, 0, 0.12) 0%,
    rgba(245, 124, 0, 0) 70%
  );
  filter: blur(25px);
  z-index: 1;
}

/* Section 8: Customer Experience Counters */
.stats-section {
  background: var(--bg-secondary);
  padding: 5rem 10%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-box {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all var(--transition-normal);
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 193, 7, 0.2);
}

.stat-icon {
  font-size: 2.2rem;
  color: var(--color-orange);
  margin-bottom: 1.2rem;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Section 9: Mascot area speech bubbles styling */
.comic-bubble.b-left {
  align-self: flex-start;
  border-color: var(--color-orange);
  transform-origin: left bottom;
}
.comic-bubble.b-left::before {
  left: 50px;
  right: auto;
  border-color: var(--color-orange) transparent;
}
.comic-bubble.b-left::after {
  left: 52px;
  right: auto;
  border-color: var(--bg-secondary) transparent;
}

.comic-bubble.b-right {
  align-self: flex-end;
  border-color: var(--color-gold);
  transform-origin: right bottom;
}
.comic-bubble.b-right::before {
  left: auto;
  right: 50px;
  border-color: var(--color-gold) transparent;
}
.comic-bubble.b-right::after {
  left: auto;
  right: 52px;
  border-color: var(--bg-secondary) transparent;
}

/* Section 11: Quality & Hygiene */
.quality-section {
  background: var(--bg-primary);
  text-align: center;
  padding: 8rem 10%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .quality-grid {
    grid-template-columns: 1fr;
  }
}

.quality-card {
  padding: 3rem 2rem;
  text-align: left;
  height: 100%;
}

.quality-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-orange);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.q-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(245, 124, 0, 0.15);
  border: 1px solid rgba(245, 124, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  font-size: 1.3rem;
  margin-bottom: 1.8rem;
}

.quality-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-white);
}

.quality-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* Section 12: Operational Excellence */
.operations-section {
  background: var(--bg-secondary);
  padding: 8rem 10%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ops-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 4.5rem auto 0 auto;
  gap: 1rem;
}

@media (max-width: 900px) {
  .ops-flow {
    flex-direction: column;
    gap: 3rem;
  }
  .ops-connector {
    transform: rotate(90deg);
  }
}

.ops-step {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  transition: all var(--transition-normal);
}

.ops-step:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.ops-num {
  width: 45px;
  height: 45px;
  background: var(--color-maroon);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 10px rgba(122, 0, 30, 0.6);
}

.ops-step h4 {
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.ops-step p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.5;
  font-weight: 300;
}

.ops-connector {
  font-size: 1.5rem;
  color: var(--text-muted);
  animation: pulseConnector 2s infinite ease-in-out;
}

@keyframes pulseConnector {
  0% {
    transform: scale(1) translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1) translateX(5px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateX(0);
    opacity: 0.5;
  }
}

/* Section 13: Instagram Ecosystem Stats Dock */
.insta-stats-dock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  margin-top: 3.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  padding: 2rem 3rem;
  border-radius: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .insta-stats-dock {
    gap: 2rem;
    padding: 1.5rem;
  }
}

.insta-stat {
  text-align: left;
}

.insta-stat h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-gold);
}

.insta-stat p {
  font-size: 0.85rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section 14: User Generated Content */
.ugc-section {
  background: var(--bg-primary);
  padding: 8rem 10%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ugc-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (max-width: 1024px) {
  .ugc-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .ugc-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .ugc-gallery {
    grid-template-columns: 1fr;
  }
}

.ugc-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  aspect-ratio: 1;
  transition: all var(--transition-normal);
}

.ugc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.ugc-card:hover {
  transform: translateY(-8px) scale(1.03) rotate(2deg);
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(255, 193, 7, 0.15);
}

.ugc-card:hover img {
  transform: scale(1.05);
}

.ugc-user {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  color: var(--text-white);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: left;
}

/* Branch Geolocation Button */
.geolocation-btn {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  padding: 0.7rem 1.6rem;
  border: none;
}

/* Section 16: Franchise updates */
.franchise-highlights {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  flex-wrap: wrap;
}

.highlight-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--color-gold);
  font-weight: 800;
}

.highlight-stat span {
  font-size: 0.85rem;
  color: var(--text-gray);
  text-transform: uppercase;
}

.franchise-hotlines {
  margin-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  font-size: 0.9rem;
}

.franchise-hotlines span {
  display: block;
  color: var(--text-gray);
  margin-bottom: 0.3rem;
}

.franchise-hotlines strong {
  color: var(--color-gold);
  font-size: 1.15rem;
  display: block;
}

/* FLOATING SOCIAL ACTION HUB */
.floating-social-hub {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hub-main-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-maroon) 0%,
    var(--color-maroon-light) 100%
  );
  border: 2px solid var(--color-gold);
  color: var(--text-white);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(122, 0, 30, 0.6),
    0 0 15px var(--color-gold-glow);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 10;
}

.hub-main-btn:hover {
  transform: scale(1.08);
}

.hub-main-btn .close-icon {
  display: none;
}

.floating-social-hub.active .hub-main-btn {
  transform: rotate(135deg);
  background: var(--bg-tertiary);
  border-color: var(--text-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.floating-social-hub.active .hub-main-btn i {
  color: var(--text-white);
}

.hub-dock {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.floating-social-hub.active .hub-dock {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hub-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.25rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-glow);
  position: relative;
}

.hub-item span {
  position: absolute;
  right: 65px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hub-item:hover span {
  opacity: 1;
  transform: translateX(0);
}

.item-wa {
  background: #128c7e;
  border-color: #075e54;
}
.item-wa:hover {
  background: #075e54;
  box-shadow: 0 0 15px rgba(18, 140, 126, 0.6);
}

.item-call {
  background: var(--color-orange);
  border-color: #d86900;
}
.item-call:hover {
  background: #d86900;
  box-shadow: 0 0 15px rgba(245, 124, 0, 0.6);
}

.item-insta {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: transparent;
}
.item-insta:hover {
  box-shadow: 0 0 15px rgba(220, 39, 67, 0.6);
}

.item-map {
  background: var(--color-maroon);
  border-color: #580014;
}
.item-map:hover {
  background: #580014;
  box-shadow: 0 0 15px rgba(122, 0, 30, 0.6);
}

/* REAL-TIME SOCIAL PROOF TOASTS */
.toast-notification-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 320px;
  pointer-events: none;
}

@media (max-width: 600px) {
  .toast-notification-container {
    left: 20px;
    bottom: 110px;
    max-width: calc(100% - 40px);
  }
}

.toast-notification {
  background: rgba(23, 23, 23, 0.85);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(15px);
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(-120%);
  opacity: 0;
}

.toast-notification.active {
  transform: translateX(0);
  opacity: 1;
}

.toast-icon {
  font-size: 1.3rem;
  margin-top: 0.1rem;
}

.toast-body {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.toast-body strong {
  font-size: 0.88rem;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.toast-body span {
  font-size: 0.82rem;
  color: var(--text-gray);
  line-height: 1.4;
}

/* Custom DivIcon Pin style for dark Leaflet map integration */
.custom-map-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.custom-map-pin:hover {
  transform: scale(1.15);
}

.language-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.lang-label {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

.lang-btn {
  width: auto;
  min-width: 120px;
  padding: 0.7rem 1.4rem;

  border-radius: 14px;
  border: 1px solid rgba(255, 193, 7, 0.4);

  background: linear-gradient(
    135deg,
    rgba(122, 0, 30, 0.9),
    rgba(255, 140, 0, 0.25)
  );

  color: white;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  border-color: #ffc107;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.35);
}

@media (max-width: 480px) {
  .language-toggle {
    flex-wrap: wrap;
  }

  .lang-btn {
    min-width: 100px;
  }
}
