@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&family=Afacad:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  --primary-purple: #50297C;
  --deep-purple: #2A1241;
  --accent-yellow: #F4B62C;
  --light-yellow: #FFD881;
  --light-purple: #BF87FF;
  --text-white: #FFFFFF;
  --font-heading: 'Belanosima', sans-serif;
  --font-body: 'Afacad', sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--primary-purple);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, button, a.btn, .nav-links a {
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.btn-yellow {
  background: var(--accent-yellow);
  color: var(--primary-purple);
}
.btn-yellow:hover { transform: scale(0.96); box-shadow: 0 8px 30px rgba(244,182,44,0.5); }
.btn-dive, .btn-apply {
  background: var(--primary-purple);
  color: var(--accent-yellow);
}
.btn-hero {
  background: var(--accent-yellow);
  color: var(--primary-purple);
}
.btn:hover { transform: scale(0.96); }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  transition: var(--transition);
}
header.scrolled {
  background: rgba(42,18,65,0.97);
  backdrop-filter: blur(12px);
  padding: 10px 5%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
/* Wave shape under sticky header */
header.scrolled::after {
  content: '';
  position: absolute;
  bottom: -18px; left: 0;
  width: 100%; height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 20' preserveAspectRatio='none'%3E%3Cpath d='M0,10 C320,20 640,0 960,10 C1280,20 1600,0 1920,10 L1920,0 L0,0 Z' fill='rgba(42,18,65,0.97)'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 999;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
}
.nav-links li a {
  background: var(--primary-purple);
  color: var(--text-white);
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.nav-links li a:hover {
  background: var(--accent-yellow);
  color: var(--primary-purple);
}
.logo-container img { height: 90px; filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3)); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1A0B2E;
}
.hero-video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 8, 50, 0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
.hero-title {
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.85;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  animation: heroIn 1.2s cubic-bezier(0.4,0,0.2,1) both;
  position: relative;
  z-index: 10;
}
@keyframes heroIn { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }


.wave-divider-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
  pointer-events: none;
}
.wave-divider-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ── ABOUT ── */
.about {
  background: var(--accent-yellow);
  color: var(--primary-purple);
  position: relative;
  padding: 100px 0 140px;
  overflow: hidden;
}
.about-wave-top { position: absolute; top: -2px; left: 0; width: 100%; line-height: 0; }
.about-wave-top svg { display: block; width: 100%; }
.about-svg-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
  pointer-events: none;
}
.about-inner {
  position: relative; z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 5%;
}
.about-content h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--primary-purple);
  margin-bottom: 2rem;
}
.about-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.about-content .btn { margin-top: 1rem; }
.uniquely-wails { position: relative; z-index: 1; padding: 4rem 5%; }
.uniquely-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.uniquely-text { position: relative; z-index: 10; background: rgba(255,255,255,0.85); padding: 1.5rem; border-radius: 16px; backdrop-filter: blur(8px); }
.uniquely-text h3 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--primary-purple); margin-bottom: 1.5rem; }
.uniquely-text p { font-size: 1rem; color: var(--primary-purple); line-height: 1.6; }
.blob-image-container {
  position: relative;
  border-radius: 50% 40% 60% 40%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(80,41,124,0.4);
  aspect-ratio: 1;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.blob-image-container img { 
  display: block;
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.wave-divider-about-bottom { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; }
.wave-divider-about-bottom svg { display: block; width: 100%; }

/* ── FOOD MENU ── */
.food-menu { 
  padding: 100px 0 140px; 
  background: var(--primary-purple); 
  position: relative; 
}
.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-white);
}
.section-subtitle {
  text-align: center;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  text-transform: uppercase;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--deep-purple);
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--accent-yellow);
  color: var(--primary-purple);
}
.menu-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.category-header, .menu-sub-header {
  display: flex; align-items: center; gap: 15px;
  margin-bottom: 1.5rem; margin-top: 2rem;
}
.category-header h3, .menu-sub-header h3 {
  font-size: 2.5rem; color: var(--accent-yellow);
}
.star-cross-icon {
  width: 40px; height: 40px;
  position: relative; flex-shrink: 0;
}
.star-cross-icon .star-h, .star-cross-icon .star-v {
  position: absolute; background: var(--accent-yellow);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.star-cross-icon .star-h { width: 30px; height: 10px; border-radius: 3px; }
.star-cross-icon .star-v { width: 10px; height: 30px; border-radius: 3px; }
.menu-items { display: flex; flex-direction: column; gap: 1rem; transition: opacity 0.3s, transform 0.3s; }
.menu-item {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-size: 1.1rem; gap: 8px;
}
.item-dots {
  flex-grow: 1; border-bottom: 2px dotted rgba(255,255,255,0.25);
  margin: 0 8px; height: 12px;
}
.price { color: var(--accent-yellow); font-weight: 600; }
.menu-visual { position: sticky; top: 120px; }
.menu-visual img { width: 100%; height: 500px; object-fit: cover; border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

/* ── BEYOND WAILS ── */
.beyond-wails { 
  padding: 100px 0 140px; 
  background: var(--deep-purple); 
  position: relative; 
}
.beyond-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: center;
}
.beyond-images { position: relative; height: 550px; }
.beyond-img-1, .beyond-img-2 {
  position: absolute; border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  object-fit: cover;
}
.beyond-img-1 { width: 320px; height: 380px; top: 0; left: 0; transform: rotate(-6deg); z-index: 2; }
.beyond-img-2 { width: 280px; height: 340px; bottom: 0; right: 0; transform: rotate(4deg); z-index: 1; }
.beyond-text h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 1.5rem; line-height: 1.1; }
.beyond-text > p { font-size: 1rem; line-height: 1.7; opacity: 0.9; margin-bottom: 2rem; }
.beyond-list { list-style: none; margin-bottom: 2.5rem; }
.beyond-list li { padding: 0.5rem 0; font-size: 1rem; display: flex; align-items: flex-start; gap: 10px; }
.bullet-star { color: var(--light-purple); font-size: 1.2rem; flex-shrink: 0; }

/* ── FRANCHISE ── */
.franchise { 
  padding: 100px 0 140px; 
  background: var(--primary-purple); 
  position: relative; 
}
.franchise-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3rem; margin: 4rem 0 3rem;
  align-items: stretch;
}
.franchise-card {
  background: var(--primary-purple);
  border-radius: 24px; overflow: hidden;
  transition: var(--transition);
}
.franchise-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.card-img img { width: 100%; height: 240px; object-fit: cover; }
.card-info { padding: 1.8rem; }
.card-info h4 { font-size: 1.1rem; color: var(--accent-yellow); margin-bottom: 0.8rem; }
.card-info p { font-size: 0.9rem; line-height: 1.6; opacity: 0.85; }
.franchise-cta { text-align: center; }

/* ── FRANCHISE FORM ── */
.franchise-form {
  background: var(--primary-purple);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.franchise-form h3 {
  color: var(--accent-yellow);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.5px;
}
.form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-yellow);
  background: rgba(255,255,255,0.1);
}
.form-control::placeholder {
  color: rgba(255,255,255,0.4);
}
.form-submit {
  margin-top: 1rem;
  width: 100%;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

/* ── PARTNER ── */
.contact-section { 
  padding: 100px 0; 
  background-image: linear-gradient(rgba(42, 18, 65, 0.85), rgba(42, 18, 65, 0.85)), url('assets/secback.png');
  background-size: cover;
  background-position: center;
  position: relative; 
  z-index: 1;
}
.partner-layout {
  display: flex; justify-content: space-between;
  align-items: center; gap: 4rem;
}
.partner-food-img { width: 320px; flex-shrink: 0; }
.partner-food-img img {
  width: 100%; border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  aspect-ratio: 1; object-fit: cover;
}
.partner-text { text-align: center; flex: 1; }
.partner-text h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 2rem; }
.partner-text p { font-size: 1rem; line-height: 1.7; opacity: 0.9; margin-bottom: 2.5rem; }

/* ── EVENTS ── */
.events { 
  padding: 100px 0 140px; 
  background: var(--deep-purple); 
  position: relative; 
}
.offer-banner {
  background: var(--accent-yellow);
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  min-height: 500px;
}
.offer-banner-content {
  padding: 4rem;
  z-index: 2;
  flex: 1;
}
.offer-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1.1;
  color: var(--primary-purple);
  text-transform: none;
}
.offer-subtitle {
  font-family: var(--font-body);
  color: var(--primary-purple);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 10px;
}
.offer-promo {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}
.promo-buy-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.buy-text-container {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 1;
}
.buy-number {
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 900;
  color: white;
  line-height: 0.8;
}
.promo-burgers {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-purple);
  line-height: 1;
  margin-top: 10px;
}
.promo-get {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-top: 5px;
}
.promo-free {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-purple);
  line-height: 1.2;
}
.promo-free span {
  color: white;
}
.offer-images {
  position: relative;
  flex: 1.2;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.offer-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  z-index: 0;
  opacity: 0.8;
}
.shake-container {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 380px;
  z-index: 1;
  border-radius: 125px / 190px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.offer-shake {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-burger-1 {
  position: absolute;
  bottom: -20px;
  left: 5%;
  height: 280px;
  z-index: 2;
  transform: rotate(-5deg);
}
.offer-burger-2 {
  position: absolute;
  bottom: -20px;
  right: 5%;
  height: 290px;
  z-index: 3;
  transform: rotate(5deg);
}

/* ── BRANCHES ── */
.branches { 
  padding: 100px 0 140px; 
  background: var(--primary-purple); 
  position: relative; 
}
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
.branch-card { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.branch-card img { width: 100%; height: 440px; object-fit: cover; transition: var(--transition); display: block; }
.branch-card:hover img { transform: scale(1.07); }
.branch-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 2rem 1.5rem;
}
.branch-tag {
  display: inline-block;
  background: var(--accent-yellow);
  color: var(--primary-purple);
  padding: 8px 20px; border-radius: 40px;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.95rem; margin-bottom: 0.8rem;
}
.branch-addr { font-size: 0.78rem; opacity: 0.85; line-height: 1.4; }

/* ── VOICES ── */
.voices {
  position: relative; background: var(--primary-purple);
  padding: 6rem 0 8rem;
}
.wave-divider-voices-top { position: absolute; top: -2px; left: 0; width: 100%; line-height: 0; }
.wave-divider-voices-top svg { display: block; width: 100%; }
.voices-slider {
  display: flex; justify-content: center;
  gap: 2rem; margin: 3rem 0;
  flex-wrap: wrap;
}
.voices-slider img {
  width: 220px; height: 320px; border-radius: 24px;
  object-fit: cover; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: var(--transition);
}
.voices-slider img:hover { transform: scale(1.05) rotate(2deg); }
.voices-cta { text-align: center; }

/* ── SOCIAL MEDIA ── */
.social-media { 
  padding: 100px 0 140px; 
  background: var(--accent-yellow); 
  position: relative; 
  overflow-x: hidden; 
}
.social-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; margin: 3rem 0;
}
.social-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.social-grid img:hover { transform: translateY(-8px) scale(1.03); }
.social-cta { text-align: center; }

/* ── FOOTER ── */
footer { background: var(--deep-purple); position: relative; }
.footer-wave-top { line-height: 0; }
.footer-wave-top svg { display: block; width: 100%; }
.footer-yellow-bar { background: var(--accent-yellow); padding: 1rem 0; }
.footer-nav {
  display: flex; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.footer-nav a {
  color: var(--primary-purple); text-decoration: none;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  transition: var(--transition);
}
.footer-nav a:hover { opacity: 0.7; }
.footer-main { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.8fr 1fr;
  gap: 4rem; align-items: flex-start;
}
.footer-brand img { height: 100px; margin-bottom: 1.5rem; display: block; }
.footer-brand p { font-size: 0.9rem; opacity: 0.8; line-height: 1.6; }
.footer-links h4, .footer-contact h4, .footer-social h4 {
  font-family: var(--font-heading); font-size: 1rem;
  color: var(--accent-yellow); margin-bottom: 1.5rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a {
  color: var(--text-white); text-decoration: none;
  font-family: var(--font-heading); font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent-yellow); }
.footer-contact p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; opacity: 0.85; margin-bottom: 1rem; line-height: 1.5;
}
.contact-icon { flex-shrink: 0; }
.social-icons { display: flex; gap: 1.5rem; margin-top: 0.5rem; }
.social-icons a { color: var(--text-white); transition: var(--transition); }
.social-icons a:hover { color: var(--accent-yellow); transform: translateY(-4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 2rem; text-align: center; opacity: 0.6; font-size: 0.85rem; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .partner-layout { flex-direction: column; }
  .partner-food-img { width: 250px; }
}
@media (max-width: 1024px) {
  .branches-grid, .franchise-grid, .menu-content, .uniquely-inner, .beyond-layout { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .beyond-images { height: 350px; }
  .beyond-img-1 { width: 200px; height: 250px; }
  .beyond-img-2 { width: 180px; height: 220px; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 4rem; }
  .offer-banner { flex-direction: column; text-align: center; }
  .offer-banner-content { padding: 3rem 2rem 0; width: 100%; }
  .promo-buy-wrap { justify-content: center; align-items: center; flex-direction: column; }
  .buy-text-container { writing-mode: horizontal-tb; transform: none; font-size: 3rem; }
  .offer-images { height: 350px; width: 100%; align-items: center; margin-top: 2rem; overflow: hidden; }
  .offer-shake { height: 250px; bottom: 50px; }
  .offer-burger-1 { height: 180px; left: -10%; }
  .offer-burger-2 { height: 190px; right: -10%; }
  .circle-border { width: 180px; height: 180px; }
  .footer-grid { grid-template-columns: 1fr; }
  nav { flex-direction: column; gap: 15px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-slider img { width: 160px; height: 240px; }
}

/* ── NAV PHONE ── */
.nav-phone {
  background: var(--accent-yellow) !important;
  color: var(--primary-purple) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.03em;
  white-space: nowrap !important;
}
.nav-phone:hover { background: #fff !important; }

/* ── ORDER POPUP ── */
.order-popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(20,8,40,0.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(6px);
}
.order-popup-overlay.open { opacity: 1; pointer-events: all; }
.order-popup-box {
  background: var(--deep-purple);
  border: 2px solid var(--accent-yellow);
  border-radius: 28px;
  padding: 3rem 3.5rem;
  text-align: center;
  position: relative;
  max-width: 480px; width: 90%;
  animation: popIn 0.4s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes popIn { from { transform: scale(0.8) translateY(30px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.popup-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--text-white);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
  transition: var(--transition);
}
.popup-close:hover { color: var(--accent-yellow); transform: rotate(90deg); }
.popup-logo { height: 70px; margin-bottom: 1rem; }
.popup-title { font-size: 2rem; color: var(--accent-yellow); margin-bottom: 0.5rem; }
.popup-sub { font-size: 0.95rem; opacity: 0.8; margin-bottom: 2rem; }
.popup-btns { display: flex; flex-direction: column; gap: 1rem; }
.popup-platform {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 1rem 2rem; border-radius: 16px;
  text-decoration: none; font-family: var(--font-heading);
  font-weight: 700; font-size: 1.1rem; color: #fff;
  transition: var(--transition);
}
.popup-platform.swiggy { background: linear-gradient(135deg, #FC8019, #f96b00); }
.popup-platform.zomato { background: linear-gradient(135deg, #E23744, #c41c2a); }
.popup-platform:hover { transform: scale(1.04); box-shadow: 0 8px 25px rgba(0,0,0,0.4); }
.popup-platform span { font-size: 1rem; }

/* ── BRANCH COMING SOON ── */
.branch-tag.coming { background: var(--light-purple); color: var(--deep-purple); }

/* ── CONTACT SECTION ── */
/* Contact section layout handled below */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 3rem; margin-top: 3rem; align-items: start;
}
.contact-addresses { display: flex; flex-direction: column; gap: 1.5rem; }
.address-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(244,182,44,0.2);
  border-radius: 18px; padding: 1.5rem;
  transition: var(--transition);
}
.address-card:hover { border-color: var(--accent-yellow); background: rgba(244,182,44,0.08); }
.address-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.address-card h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--accent-yellow); margin-bottom: 0.4rem; }
.address-card p { font-size: 0.9rem; opacity: 0.85; line-height: 1.5; }
.map-link {
  display: inline-block; margin-top: 0.6rem;
  color: var(--accent-yellow); text-decoration: none;
  font-family: var(--font-heading); font-size: 0.85rem;
  transition: var(--transition);
}
.map-link:hover { letter-spacing: 0.05em; }
.contact-tel {
  color: var(--accent-yellow); text-decoration: none;
  font-family: var(--font-heading); font-size: 1.1rem;
  font-weight: 700; transition: var(--transition);
}
.contact-tel:hover { opacity: 0.8; }
.contact-map {
  height: 480px; border-radius: 24px; overflow: hidden;
  border: 2px solid rgba(244,182,44,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── DELIVERY WIDGETS (FOOTER) ── */
.delivery-widgets { margin-top: 1.5rem; }
.delivery-widgets h4 { color: var(--accent-yellow); font-family: var(--font-heading); margin-bottom: 0.8rem; font-size: 0.85rem; }
.delivery-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 12px;
  text-decoration: none; font-family: var(--font-heading);
  font-weight: 700; font-size: 0.9rem; color: #fff;
  margin-bottom: 0.6rem; transition: var(--transition);
}
.swiggy-btn { background: #FC8019; }
.zomato-btn { background: #E23744; }
.delivery-btn:hover { transform: translateX(4px); filter: brightness(1.1); }

/* ── FOOTER BOTTOM LINKS ── */
.footer-bottom a {
  color: var(--accent-yellow); text-decoration: none;
  transition: var(--transition);
}
.footer-bottom a:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
}

/* ── ABOUT FLOATING SHAPES ── */
.about { overflow: hidden; }
.about-float-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.about-float-left {
  width: clamp(180px, 20vw, 300px);
  left: -40px;
  bottom: 120px;
  transform: rotate(-15deg);
  filter: drop-shadow(0 10px 30px rgba(80,41,124,0.25));
}
.about-float-right {
  width: clamp(160px, 18vw, 260px);
  right: -30px;
  top: 60px;
  transform: rotate(12deg);
  filter: drop-shadow(0 10px 30px rgba(80,41,124,0.25));
}
.about-inner { position: relative; z-index: 1; }
.uniquely-wails { position: relative; z-index: 1; }

/* ── SOCIAL MEDIA – YELLOW BG ── */
.social-media-yellow {
  background: var(--accent-yellow) !important;
  padding: 5rem 0 4rem;
}

/* ── INSTAGRAM GRID ── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin: 3rem 0 2.5rem;
}
.insta-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: block;
  box-shadow: 0 12px 35px rgba(80,41,124,0.35);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.insta-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(80,41,124,0.5); }
.insta-card:hover img { transform: scale(1.06); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(80,41,124,0.8) 0%, rgba(80,41,124,0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-card:hover .insta-overlay { opacity: 1; }
.insta-play-icon {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 0.3s;
}
.insta-card:hover .insta-play-icon { transform: scale(1.15); }
.insta-label {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

/* ── INSTAGRAM FOLLOW BUTTON ── */
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(131,58,180,0.4);
}
.btn-insta:hover { transform: scale(0.97); box-shadow: 0 12px 35px rgba(131,58,180,0.6); }

@media (max-width: 1024px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .about-float-left, .about-float-right { display: none; }
}
@media (max-width: 600px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════════ */
.page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--deep-purple);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  overflow: hidden;
}
.page-loader::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #50297C 0%, #2A1241 40%, #F4B62C 100%);
  animation: loaderFlash 1.2s ease-in-out infinite alternate;
  opacity: 0.6;
}
@keyframes loaderFlash {
  0%   { background: linear-gradient(135deg, #2A1241 0%, #50297C 60%, #2A1241 100%); }
  33%  { background: linear-gradient(200deg, #50297C 0%, #F4B62C 50%, #50297C 100%); }
  66%  { background: linear-gradient(60deg,  #F4B62C 0%, #50297C 50%, #F4B62C 100%); }
  100% { background: linear-gradient(135deg, #2A1241 0%, #F4B62C 40%, #50297C 100%); }
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 120px; height: 120px;
  animation: loaderSpin 1.2s ease-in-out infinite alternate,
             loaderBounce 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(244,182,44,0.7));
}
@keyframes loaderSpin {
  from { transform: rotate(-8deg) scale(0.95); }
  to   { transform: rotate(8deg)  scale(1.08); }
}
@keyframes loaderBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.loader-bar {
  width: 160px; height: 4px; background: rgba(255,255,255,0.15);
  border-radius: 4px; margin: 20px auto 0; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-yellow), #ff6b35);
  border-radius: 4px;
  animation: loaderProgress 1.5s ease-in-out forwards;
}
@keyframes loaderProgress { to { width: 100%; } }

/* ══════════════════════════════════════════
   HAMBURGER MENU
══════════════════════════════════════════ */
.ham-btn {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 200; margin-left: auto;
  position: absolute; right: 5%;
}
.ham-btn span {
  display: block; width: 26px; height: 3px;
  background: var(--text-white); border-radius: 3px;
  transition: var(--transition);
}
.ham-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none !important;
  flex-direction: column;
  background: rgba(30,10,55,0.98);
  padding: 1.5rem 2rem;
  gap: 0.8rem;
  border-top: 2px solid var(--accent-yellow);
  position: absolute; top: 100%; left: 0; right: 0;
  z-index: 500; box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  transform: translateY(-10px); opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
}
.mobile-menu.open {
  display: flex !important; opacity: 1; transform: translateY(0); pointer-events: all;
}
.mob-link {
  font-family: var(--font-heading); font-size: 1.1rem;
  color: var(--text-white); text-decoration: none;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition); letter-spacing: 0.05em;
}
.mob-link:hover { color: var(--accent-yellow); padding-left: 8px; }
.mob-phone { color: var(--accent-yellow) !important; }

/* ══════════════════════════════════════════
   HERO CTA BUTTON (no white bg)
══════════════════════════════════════════ */
.hero-cta-btn {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 700; letter-spacing: 0.1em;
  color: var(--primary-purple);
  background: var(--accent-yellow);
  border: none; border-radius: 60px;
  padding: 1rem 3rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(244,182,44,0.5);
  margin-top: 2.5rem;
  position: relative; z-index: 2;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}
.hero-cta-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 14px 40px rgba(244,182,44,0.7);
  background: #ffe76b;
}

/* ══════════════════════════════════════════
   HERO TITLE - push down from header
══════════════════════════════════════════ */
.hero-content { padding-top: 8vh; }

/* ══════════════════════════════════════════
   SECTION WAVE DIVIDERS (consistent shape)
══════════════════════════════════════════ */
.section-wave {
  width: 100%; line-height: 0; overflow: hidden;
  position: relative; z-index: 2;
}
.section-wave svg { display: block; width: 100%; height: auto; }

/* ══════════════════════════════════════════
   FLOATING PNG ANIMATIONS
══════════════════════════════════════════ */
@keyframes floatA {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  33%      { transform: translateY(-14px) rotate(2deg); }
  66%      { transform: translateY(7px) rotate(-1.5deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  40%      { transform: translateY(-10px) rotate(-2deg); }
  70%      { transform: translateY(12px) rotate(1deg); }
}
@keyframes floatC {
  0%,100% { transform: translateY(0px) scale(1); }
  50%      { transform: translateY(-16px) scale(1.03); }
}
.float-a { animation: floatA 6s ease-in-out infinite; }
.float-b { animation: floatB 7s ease-in-out infinite; }
.float-c { animation: floatC 5.5s ease-in-out infinite; }

/* Apply to common image containers */
.about-float-left  { animation: floatA 7s ease-in-out infinite; }
.about-float-right { animation: floatB 8s ease-in-out infinite; }
.blob-image-container img { animation: floatC 6s ease-in-out infinite; }
.event-circle .circle-border { transition: transform 0.4s; }
.event-circle:hover .circle-border { animation: floatC 3s ease-in-out infinite; }
.beyond-img-1 { animation: floatA 7s ease-in-out infinite; }
.beyond-img-2 { animation: floatB 8s ease-in-out infinite 1s; }
.partner-food-img img { animation: floatA 6.5s ease-in-out infinite; }
.partner-food-img:last-child img { animation: floatB 7.5s ease-in-out infinite 0.5s; }

/* ══════════════════════════════════════════
   TITLE SLIDE-UP ANIMATION
══════════════════════════════════════════ */
@keyframes titleSlideUp {
  from { opacity: 0; transform: translateY(50px) skewY(2deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}
.anim-title {
  animation: titleSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reveal.anim-title {
  animation: none; /* handled by IntersectionObserver instead */
}
.anim-title.is-visible {
  animation: titleSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1050px) {
  .footer-yellow-bar { display: none !important; }
  .ham-btn { display: flex; }
  .nav-links { display: none !important; }
  header nav { display: flex; align-items: center; justify-content: center; position: relative; }
  .logo-container { margin: 0 auto; }
  .hero-content { padding-top: 12vh; }
  .hero-title { font-size: clamp(3rem, 14vw, 6rem); }
  .beyond-layout { flex-direction: column; }
  .partner-layout { flex-direction: column; }
  .events-grid { gap: 2rem; flex-wrap: wrap; }
  .franchise-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .phone-side-strip { display: none; }
  .phone-showcase { justify-content: center; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  footer .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.5rem, 16vw, 4.5rem); }
  .hero-cta-btn { padding: 0.9rem 2rem; font-size: 0.9rem; }
  .section-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .popup-btns { gap: 0.8rem; }
  .popup-platform { padding: 0.8rem 1.2rem; font-size: 0.95rem; }
  .events-grid { grid-template-columns: repeat(2, 1fr); display: grid; }
}

/* ══════════════════════════════════════════
   PHONE CAROUSEL SCREEN
══════════════════════════════════════════ */
.phone-showcase {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; margin: 3rem 0;
}
.phone-mockup-wrap { position: relative; flex-shrink: 0; max-width: 100%; }
.phone-frame {
  position: relative; width: 280px; max-width: 100%; margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(80,41,124,0.5));
}
.phone-frame-img { width: 100%; display: block; position: relative; z-index: 2; pointer-events: none; }
.phone-screen {
  position: absolute;
  top: 3.2%; left: 7.7%; right: 7.7%; bottom: 3.6%;
  border-radius: 28px;
  overflow: hidden; z-index: 3;
  background: transparent;
  mix-blend-mode: multiply;
}
.phone-scroll-track {
  display: flex; flex-direction: column;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  height: 100%;
}
.phone-slide {
  flex-shrink: 0; width: 100%; height: 100%;
  display: block; overflow: hidden;
}
.phone-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Side strips */
.phone-side-strip {
  display: flex; flex-direction: column; gap: 1rem;
  flex-shrink: 0;
}
.side-insta-card {
  width: 130px; border-radius: 16px; overflow: hidden;
  aspect-ratio: 9/14; position: relative;
  box-shadow: 0 8px 25px rgba(80,41,124,0.35);
  transition: var(--transition);
}
.side-insta-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.side-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(80,41,124,0.35);
  transition: var(--transition);
}
.side-play svg { width: 40px; height: 40px; }
.side-insta-card:hover { transform: scale(1.05); }
.side-insta-card:hover .side-play { background: rgba(80,41,124,0.6); }

/* Phone left/right strip stagger */
.phone-left-strip .side-insta-card:nth-child(1) { animation: floatA 6s ease-in-out infinite; }
.phone-left-strip .side-insta-card:nth-child(2) { animation: floatB 7s ease-in-out infinite 0.5s; }
.phone-left-strip .side-insta-card:nth-child(3) { animation: floatC 5.5s ease-in-out infinite 1s; }
.phone-right-strip .side-insta-card:nth-child(1) { animation: floatB 7s ease-in-out infinite; }
.phone-right-strip .side-insta-card:nth-child(2) { animation: floatA 6s ease-in-out infinite 0.7s; }
.phone-right-strip .side-insta-card:nth-child(3) { animation: floatC 5.5s ease-in-out infinite 0.3s; }

/* Compact sections */
section { padding: 4rem 0; }

/* ═══════════════════════════════════════════
   FINAL FIXES – OVERRIDES
═══════════════════════════════════════════ */

/* 1. Ensure mobile-menu NEVER shows on desktop */
@media (min-width: 861px) {
  .mobile-menu { display: none !important; }
  .ham-btn     { display: none !important; }
}

/* 2. Header: remove all rectangle feel – transparent by default */
header {
  background: transparent;
}
header nav {
  position: relative;
}
header { position: relative; }  /* needed for mobile-menu absolute positioning */
header { position: fixed; }     /* keep sticky */


/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes spin { 100% { transform: rotate(360deg); } }

