
:root {
  --color-primary: #183829; /* Forest Green */
  --color-accent: #c88f2c;  /* Golden Mustard */
  --color-accent-hover: #b07d22;
  --color-dark: #0a1711;    
  --color-light: #f9f9f9;   
  --color-white: #ffffff;
  --color-text-dark: #333;
  --color-text-muted: #444;
  --color-text-light: #aaa;
  --color-whatsapp: #25d366;
  --color-star: #ffb800;
  --color-badge-red: #ef4444;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  align-items: stretch;
  scroll-margin-top: 120px;
}

.split-card-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.split-card .text-lead {
  margin: 0 0 2rem 0;
}

.split-card-media {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.split-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-card.reverse .split-card-media {
  order: 2;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Typography Utilities */
.text-accent { 
  background: linear-gradient(135deg, #e5b95a 0%, #c88f2c 50%, #966718 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}
.text-primary { color: var(--color-primary) !important; }
.text-white { color: var(--color-white) !important; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
.mt-4 { margin-top: 4rem; }

.section-title-large { font-size: clamp(2rem, 4vw, 4rem); line-height: 1; margin-bottom: 2rem; overflow-wrap: break-word; word-wrap: break-word; }
.section-title-xl { font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; overflow-wrap: break-word; word-wrap: break-word; }
.text-lead { font-size: clamp(1rem, 1.2vw, 1.2rem); max-width: 600px; margin-left: auto; margin-right: auto; color: var(--color-text-muted); }
.text-center .text-lead { max-width: 750px; }

/* Layout */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-2 > div {
  min-width: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.btn-primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(200, 143, 44, 0.5); /* Glow effect */
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn:active {
  transform: translateY(1px) !important;
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-white);
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.nav-logo {
  height: 80px;
  width: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 2rem;
}

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

.nav-links a {
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
  width: 100%;
}

.nav-links a:not(.btn):hover, 
.nav-links a:not(.btn).active {
  color: var(--color-accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--color-primary);
}

/* Page Header (Internal Pages) */
.page-header {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 85px 0 0 0; /* Offsets fixed header for perfect visual centering */
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

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

.page-header h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 6vw, 6rem);
  margin-bottom: 0;
}

.page-header .sub {
  color: var(--color-accent);
  font-size: clamp(2.5rem, 7vw, 7rem);
  margin-top: -1rem;
}

/* Hero Section (Homepage) */
.hero {
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.4);
}

.hero-content {
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  margin-top: 8vh;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 6rem);
  color: var(--color-white);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero .sub {
  background: linear-gradient(135deg, #e5b95a 0%, #c88f2c 50%, #966718 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: clamp(2rem, 7vw, 7rem);
  display: block;
}

.hero .btn-group {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Marquee */
.marquee-container {
  background-color: var(--color-primary);
  color: var(--color-accent);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-container.accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

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

/* Accent Bullets List */
.accent-bullets {
  list-style: none;
  display: inline-block;
  text-align: left;
}
.accent-bullets li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.accent-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

/* Ticket Stub Cards */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 3rem;
}

.ticket-card {
  background-color: var(--color-white);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  -webkit-mask-image: radial-gradient(circle 20px at top left, transparent 0, transparent 20px, black 21px),
                      radial-gradient(circle 20px at top right, transparent 0, transparent 20px, black 21px),
                      radial-gradient(circle 20px at bottom left, transparent 0, transparent 20px, black 21px),
                      radial-gradient(circle 20px at bottom right, transparent 0, transparent 20px, black 21px);
  -webkit-mask-position: top left, top right, bottom left, bottom right;
  -webkit-mask-size: 51% 51%;
  -webkit-mask-repeat: no-repeat;
  mask-image: radial-gradient(circle 20px at top left, transparent 0, transparent 20px, black 21px),
              radial-gradient(circle 20px at top right, transparent 0, transparent 20px, black 21px),
              radial-gradient(circle 20px at bottom left, transparent 0, transparent 20px, black 21px),
              radial-gradient(circle 20px at bottom right, transparent 0, transparent 20px, black 21px);
  mask-position: top left, top right, bottom left, bottom right;
  mask-size: 51% 51%;
  mask-repeat: no-repeat;
  transition: transform 0.3s ease;
  border-top: 5px solid var(--color-accent);
  text-align: center;
}

.ticket-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.ticket-card h2 {
  font-size: clamp(1.4rem, 6vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.ticket-img {
  margin-bottom: 1.5rem;
}

.ticket-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

/* Food Section (Primary Background) */
.food-section {
  background-color: var(--color-primary);
  padding: 10rem 0 8rem;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 1;
}

.food-section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.food-section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  margin-bottom: -0.5rem;
}

.food-section-title h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--color-accent);
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

.carousel-container {
  overflow: hidden;
  width: auto;
  padding: 60px 20px;
  margin: -60px -20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}

.carousel-slide {
  min-width: calc(33.333% - 1.33rem);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  border-radius: 200px 200px 24px 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  cursor: pointer;
}

.carousel-slide:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.carousel-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}

.carousel-slide:hover img {
  transform: scale(1.08);
}

/* Match zoom level for Paneer Wrapz */
.carousel-slide:nth-child(3) img {
  transform: scale(1.35);
}
.carousel-slide:nth-child(3):hover img {
  transform: scale(1.45);
}

.slide-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 20px 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  transform: translateY(15px);
  opacity: 0.9;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.carousel-slide:hover .slide-title {
  transform: translateY(0);
  opacity: 1;
  color: var(--color-accent);
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* Team/Story Overlap Image */
.overlap-image-container {
  position: relative;
  margin-bottom: 2rem;
}

.overlap-image-container img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.overlap-name {
  position: absolute;
  bottom: -2.5rem;
  left: 20px;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #e5b95a 0%, #c88f2c 50%, #966718 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 25px rgba(0,0,0,0.15);
  line-height: 1;
  letter-spacing: 2px;
  pointer-events: none;
  z-index: 2;
}

/* Features/About Section */
.overlap-section {
  margin-top: -4rem;
  padding-bottom: 8rem;
  position: relative;
  z-index: 2;
}

/* Testimonial Stacking */
.review-stack {
  position: relative;
  height: 350px;
}

.review-card {
  position: absolute;
  width: 90%;
  padding: 3rem;
  background-color: var(--color-white);
  border: 4px solid var(--color-primary);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  transform: rotate(-3deg) translateY(-10px);
}

.review-card.back {
  background-color: var(--color-accent);
  border: none;
  transform: rotate(5deg) translate(30px, 20px);
  z-index: -1;
  height: 100%;
}

.review-card h3 {
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.review-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

/* Minimalist Form */
.minimal-form .form-group {
  margin-bottom: 2.5rem;
}

.minimal-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.form-control-minimal {
  border: none;
  border-bottom: 2px solid var(--color-primary);
  background: transparent;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-family: var(--font-body);
  width: 100%;
  border-radius: 0;
  transition: all 0.3s ease;
  color: var(--color-dark);
}

.form-control-minimal:focus {
  outline: none;
  border-bottom-color: var(--color-accent);
}

textarea.form-control-minimal {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 6rem 0 2rem;
  margin-top: 0;
  position: relative;
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.footer-grid h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #e5b95a 0%, #c88f2c 50%, #966718 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 0; }
.footer-grid ul li a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  padding: 1rem 0;
  display: block;
}
.footer-grid ul li a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-family: var(--font-heading);
  color: var(--color-text-light);
  position: relative;
  z-index: 10;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background-color: var(--color-whatsapp);
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); transform: scale(1); }
  50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-10deg);
  animation: none;
}

/* Header scrolled state */
header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 5px 30px rgba(0,0,0,0.12);
  background-color: var(--color-white);
}

/* Light Button (for dark backgrounds) */
.btn-light {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn-light:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(200, 143, 44, 0.5); /* Glow effect */
}

.btn-large {
  padding: 1.5rem 4rem;
  font-size: 1.25rem;
}

/* Contact Form Card */
.premium-card {
  background-color: var(--color-white);
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Spacing & Background Utilities */
.bg-light { background-color: var(--color-light); }
.pt-header { padding-top: 0; }
.pt-0 { padding-top: 0; }
.pb-3 { padding-bottom: 3rem; }
.gap-2 { gap: 2rem; }

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.95rem; }
}

@media (max-width: 992px) {
  .grid-2 { grid-template-columns: 1fr; gap: 4rem; }
  .carousel-slide { min-width: calc(50% - 1rem); }
  .section { padding: 6rem 0; }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(24, 56, 41, 0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 6rem;
    z-index: 1000;
    gap: 0.5rem;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease 0.3s, visibility 0.4s ease 0.3s;
  }
  
  .nav-links.active { 
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .nav-links li { 
    margin: 0.8rem 0; 
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
  }
  
  .nav-links li:nth-child(1) { transition-delay: 0.2s; }
  .nav-links li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links li:nth-child(3) { transition-delay: 0.1s; }
  .nav-links li:nth-child(4) { transition-delay: 0.05s; }
  .nav-links li:nth-child(5) { transition-delay: 0s; }
  
  .nav-links.active li {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }

  .nav-links a:not(.btn) { 
    font-size: 1.5rem; 
    font-weight: 300; 
    letter-spacing: 3px;
    color: var(--color-white); 
  }
  .nav-links a:not(.btn):hover,
  .nav-links a:not(.btn).active { 
    color: var(--color-accent); 
  }
  .nav-links a:not(.btn)::after {
    display: none; /* Disable underline on mobile menu */
  }
  
  .nav-links .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }
  
  .mobile-menu-btn { 
    display: block; 
    z-index: 1001; 
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-menu-btn.active {
    color: var(--color-white);
  }
  
  /* Sections & Spacing */
  .container { padding: 0 1.5rem !important; }
  .section { padding: 4rem 0; }
  .page-header { min-height: 350px; padding: 80px 0 0 0; }
  .food-section { padding: 8rem 0 6rem; clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 100%); }
  .overlap-section { margin-top: -2rem; padding-bottom: 4rem; }
  .carousel-wrapper { padding: 0 1rem; }
  .carousel-slide { min-width: 100%; }

  /* Split Card Stacking */
  .split-card { grid-template-columns: 1fr; }
  .split-card.reverse .split-card-media { order: 0; }
  .split-card-content { padding: 1.5rem; text-align: center; align-items: center; }
  .split-card-media { min-height: 280px; }

  /* Layout Alignments */
  .grid-2 > div:not(.form-group) { text-align: center; }
  .text-lead { margin-left: auto; margin-right: auto; }
  
  /* Overlapping Fixes */
  .overlap-name { 
    bottom: -1.5rem; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 100%; 
    text-align: center; 
  }
  
  /* Stacked Review Card Fix */
  .review-stack { height: auto; padding-bottom: 2rem; }
  .review-card { position: relative; width: 100%; transform: none; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
  .review-card.back { display: none; }
  
  /* Footer Fixes */
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .footer-grid > div { display: flex; flex-direction: column; align-items: center; }

  .premium-card { padding: 2rem; }
}

@media (max-width: 480px) {
  .btn { padding: 1rem 1.5rem; font-size: 1rem; }
  .hero .btn-group { flex-direction: column; gap: 1rem; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
  .hero .btn-group .btn { width: 100%; }
  .whatsapp-float { width: 55px; height: 55px; bottom: 15px; right: 15px; }
  .ticket-card { padding: 2rem 1.5rem; }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-primary);
  color: var(--color-accent);
  transform: translateY(-5px);
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 20px;
    left: 15px;
    width: 45px;
    height: 45px;
  }
}

/* Scroll-triggered entrance animations */
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--color-accent);
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: -10px;
}

.social-links a:hover {
  color: var(--color-white);
  transform: translateY(-3px);
}

.mobile-only {
  display: none !important;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}

.mobile-socials-container {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    overflow-y: auto;
  }
  
  .mobile-socials-container {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin-top: 0 !important;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .mobile-socials-container .mobile-only {
    display: flex !important;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
    transition-delay: 0s;
  }
  
  .nav-links.active .mobile-socials-container .mobile-only {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
  position: fixed;
  bottom: 45px;
  right: 110px;
  background: var(--color-white);
  color: var(--color-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}

.whatsapp-tooltip.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.whatsapp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--color-badge-red);
  color: white;
  font-size: 11px;
  font-weight: bold;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.whatsapp-badge.show {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-width: 8px 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-white);
}

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

@media (max-width: 480px) {
  .whatsapp-tooltip {
    bottom: 22px;
    right: 100px;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}