/* 
  One of a Kind Play & Cafe
*/

:root {
  --color-green: #5A9E3A;
  --color-orange: #F0A500;
  --color-blue: #2A7FC1;
  --color-magenta: #F05A8D;
  --color-teal: #1AADA0;
  --color-purple: #7B4FA0;
  --color-red: #D93A2B;
  --color-brown: #4A2E1A;
  
  --color-bg-light: #FFFDF7;
  --color-text-main: #333333;
  --color-text-muted: #666666;
  
  --font-heading: 'Baloo 2', cursive;
  --font-body: 'Quicksand', sans-serif;
  
  --border-radius-large: 9999px;
  --border-radius-card: 30px;
  --box-shadow-soft: 0 8px 0 rgba(0,0,0,0.08);
  --box-shadow-hover: 0 12px 0 rgba(0,0,0,0.12);
}

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

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

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--color-brown); line-height: 1.2; margin-bottom: 1rem;}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--border-radius-large);
  font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; /* Enforce 800 weight for optimal contrast */
  border: 3px solid rgba(0,0,0,0.1); cursor: pointer; transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); color: white;
  text-align: left; line-height: 1.2; box-shadow: 0 6px 0 rgba(0,0,0,0.15);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25); /* Increase visual contrast for white text on brand colors */
  min-height: 48px; min-width: 48px; /* Strict compliance with Google Lighthouse tap-target sizes */
}
.btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 10px 0 rgba(0,0,0,0.2); }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(0,0,0,0.2); }
.btn:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 2px; }

.btn-blue { background-color: var(--color-blue); }
.btn-magenta { background-color: var(--color-magenta); }
.btn-orange { background-color: var(--color-orange); }
.btn-green { background-color: var(--color-green); }
.btn-purple { background-color: var(--color-purple); }
.btn-teal { background-color: var(--color-teal); }

/* Navbar */
.navbar {
  position: absolute; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent; padding: 0; box-shadow: none;
}
.navbar-container { display: flex; justify-content: space-between; align-items: flex-start; }
.logo-container { cursor: pointer; display: flex; align-items: center; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { font-weight: 800; color: white; transition: color 0.3s; font-size: 1.1rem; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.nav-links a:hover { color: var(--color-orange); }
.navbar-inner { 
  background: var(--color-green); 
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}
.navbar-inner .nav-links a:hover { color: var(--color-orange); }
.nav-actions { display: flex; gap: 1rem; align-items: center; }
.lang-toggle {
  background: white; color: var(--color-green); border: none; padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius-large); cursor: pointer; font-family: var(--font-heading);
  font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-height: 48px; min-width: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.lang-toggle:hover { transform: scale(1.05); }
.lang-toggle:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 2px; }

/* Sections */
.section { padding: 5rem 0; position: relative; }
.bg-alt { background-color: #f0fdfa; } /* very soft mint */
.bg-alt-blue { background-color: #f0f9ff; } /* very soft blue */

.hero {
  padding: 6rem 0 8rem;
  background: radial-gradient(circle at center, #FFFDF7 0%, #e0f2fe 100%);
  position: relative;
}

/* CTA Zone */
.cta-zone {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1rem;
  background: transparent; padding: 0; border-radius: 0;
  box-shadow: none; max-width: 1000px;
  margin: 0 auto; position: relative; z-index: 20;
}
.cta-card {
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3)); flex: 1; min-width: 200px; position: relative; margin-top: 50px; cursor: pointer; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cta-card:hover { transform: translateY(-10px) scale(1.05); }
.cta-card:hover .cta-img { transform: translateX(-50%) translateY(-10px) scale(1.1); }
.cta-img {
  height: 120px; object-fit: contain; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); z-index: 2; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cta-bg {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; justify-content: flex-start; gap: 0.5rem; padding: 5rem 1.5rem 2.5rem; color: white;
  border-radius: 25px;
}
.cta-bg strong { font-size: 2.3rem; }
.cta-bg-blue { background: var(--color-blue); transform: rotate(-2deg); }
.cta-bg-magenta { background: var(--color-magenta); transform: rotate(2deg); }
.cta-bg-orange { background: var(--color-orange); transform: rotate(-1deg); }
.cta-bg-green { background: var(--color-green); transform: rotate(1deg); }



/* Grid & Cards */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}
@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  background: transparent;
  padding: 2.5rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  border-radius: 25px;
  border: 8px solid var(--card-color);
  box-shadow: var(--box-shadow-soft);
  z-index: -1;
  transition: all 0.3s;
}

.card > * {
  /* No transform skew */
}
.card button, .card .btn {
  margin-top: auto !important;
}

.card:hover { transform: translateY(-10px) scale(1.05); z-index: 2; position: relative; }
.card:hover::before { box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

.card-icon { font-size: 3.5rem; margin-bottom: 1rem; display: inline-block; }

.badge {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 1rem;
  font-size: 0.85rem; font-weight: bold; background: var(--color-magenta); color: white;
}

/* Gallery Slider */
.gallery-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0;
}
.gallery-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.gallery-item {
  flex: 0 0 calc((100% - 3rem) / 3);
  height: 300px;
  transform: skewX(-4deg);
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 4px solid white;
}
.gallery-item img {
  width: 110%;
  height: 110%;
  margin-left: -5%;
  margin-top: -5%;
  object-fit: cover;
  transform: skewX(4deg);
}
@media (max-width: 1024px) {
  .gallery-item { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 768px) {
  .gallery-item { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 480px) {
  .gallery-item { flex: 0 0 100%; }
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-size: 1.5rem;
  color: var(--color-blue);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.gallery-btn:hover { background: var(--color-bg-light); transform: translateY(-50%) scale(1.1); }
.left-btn { left: 0px; }
.right-btn { right: 0px; }

/* Play & Experience Cards */
.play-card {
  position: relative;
  background: white;
  padding: 3rem 2rem 2rem;
  border-radius: 20px 30px 25px 20px / 25px 20px 30px 25px;
  border-style: solid;
  border-color: var(--card-color);
  border-width: 4px 7px 3px 6px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--box-shadow-soft);
  z-index: 1;
  height: 100%;
}
.play-card:hover { transform: translateY(-10px) scale(1.05) !important; z-index: 2; box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

.play-card::before {
  content: "";
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border-radius: 30px 20px 25px 30px / 20px 30px 20px 25px;
  border-style: solid;
  border-color: var(--card-color);
  border-width: 3px 5px 2px 4px;
  opacity: 0.5;
  z-index: -1;
  transform: rotate(2deg);
  pointer-events: none;
}
.play-card::after {
  content: "";
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  border-radius: 25px 25px 35px 20px / 30px 20px 25px 30px;
  border-style: dashed;
  border-color: var(--card-color);
  border-width: 5px 2px 4px 3px;
  opacity: 0.3;
  z-index: -2;
  transform: rotate(-1.5deg);
  pointer-events: none;
}

.play-card-circle {
  position: absolute;
  top: -35px;
  left: -20px;
  width: 70px;
  height: 70px;
  background: white;
  border-style: solid;
  border-color: var(--card-color);
  border-width: 5px 5px 5px 5px;
  border-bottom-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transform: rotate(-15deg);
  box-shadow: -4px -4px 10px rgba(0,0,0,0.05);
  z-index: 5;
}
.play-card-circle > span {
  transform: rotate(15deg);
}

.play-card-content {
  /* No transform skew */
}

/* Footer Links & WhatsApp */
.site-footer {
  margin-top: 6rem !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15); /* Contrast boost */
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: white;
  font-weight: 600; /* Contrast boost */
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-links a:hover {
  transform: translateX(10px) scale(1.05);
  color: #fffdfd;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
}
.whatsapp-text {
  background: white;
  color: var(--color-text-main);
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  position: relative;
}
.whatsapp-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}
.whatsapp-icon {
  background: #25D366;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.menu-float {
  position: fixed;
  bottom: 110px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.menu-float:hover {
  transform: translateY(-5px) scale(1.05);
}
.menu-text {
  background: white;
  color: var(--color-text-main);
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  position: relative;
}
.menu-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent white;
}
.menu-icon {
  background: #9C27B0; /* Morado / Purple */
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--color-blue);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s, background 0.3s;
}
.scroll-top-btn:hover {
  transform: translateY(-5px) scale(1.1);
  background: var(--color-orange);
}

/* About Us Custom Cards */
.about-card {
  position: relative;
  border-radius: 25px;
  box-shadow: var(--box-shadow-soft);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 4px solid #f0f0f0; 
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.about-card:hover { transform: translateY(-10px) scale(1.05) !important; box-shadow: 0 15px 30px rgba(0,0,0,0.15); z-index: 2; position: relative; }

.about-card-bg {
  position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
  background-size: cover; background-position: center;
  z-index: 0;
}

.about-card-content {
  position: relative; z-index: 1;
  background: white;
  padding: 2rem 1.5rem 1.5rem;
  width: 100%;
}
.about-card-circle {
  position: absolute;
  top: -35px;
  right: 15%;
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transform: skewX(4deg);
  box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
}
.about-card-content > * {
  transform: skewX(4deg);
}

/* Forms & Payment Mock */
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--color-brown); }
.form-control {
  width: 100%; padding: 0.75rem; border: 2px solid #eee;
  border-radius: 0.5rem; font-family: inherit; transition: border-color 0.3s;
  font-size: 1rem; min-height: 48px; /* Strict tap-target sizing */
}
.form-control:focus { border-color: var(--color-blue); outline: none; }
.form-control:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 2px; }

.payment-box {
  background: white; border-radius: var(--border-radius-card);
  padding: 2rem; border: 2px solid #eee; max-width: 600px; margin: 0 auto;
}
.auth-badge {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1.5rem; color: #28a745; font-weight: bold; font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-100px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
@keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@keyframes floatUp { 0% { transform: translateY(0) scale(1); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-1000px) scale(1.5); opacity: 0; } }

.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-fade-in-delayed { opacity: 0; animation: fadeIn 0.8s ease-in-out forwards; }
.animate-slide-up { animation: slideUp 0.6s ease forwards; }
.animate-slide-down { opacity: 0; animation: slideDown 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.animate-float { animation: float 3s ease-in-out infinite; display: inline-block; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Decorators */
.bubble { position: absolute; background: rgba(255, 255, 255, 0.2); border-radius: 50%; pointer-events: none; z-index: 1; }
.wave-top {
  position: absolute; top: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: translateY(-99%); z-index: 1;
}
.wave-bottom {
  position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: translateY(99%) rotate(180deg); z-index: 1;
}
.wave-svg { position: relative; display: block; width: calc(100% + 1.3px); height: 40px; }

/* Hero Interactivity */
.hero-content-group { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.hero-content-group:hover { transform: scale(1.05); }
.hero-character { height: 350px; object-fit: contain; transition: transform 0.4s; }
.hero-content-group:hover .left-char { transform: rotate(-5deg) scale(1.1) translateY(-10px); }
.hero-content-group:hover .right-char { transform: rotate(5deg) scale(1.1) translateY(-10px); }

/* Typography Helper for Hero */
.hero-title {
  font-size: var(--font-size-desktop, 4rem);
  line-height: 1.1; margin-bottom: 1rem; color: white; text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-size: 1.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); font-weight: bold; max-width: 800px; margin: 0 auto; line-height: 1.4;
}

/* Navbar Desktop Helpers */
.desktop-nav {
  display: flex; justify-content: center; align-items: flex-start; position: relative;
}
.nav-left { flex: 1; justify-content: flex-end; padding-right: 2rem; margin-top: 2.5rem; }
.nav-right { flex: 1; justify-content: flex-start; padding-left: 2rem; margin-top: 2.5rem; }
.main-logo {
  cursor: pointer; z-index: 2; background: white; width: 240px; height: 120px; 
  display: flex; align-items: flex-start; justify-content: center; padding-top: 10px; 
  border-radius: 0 0 120px 120px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
  margin: 0 2rem; align-self: flex-start; transition: all 0.3s;
}
.main-logo img { height: 100px; transition: all 0.3s; }
.lang-toggle { margin-left: 1rem; }

/* Mobile Menu Global Styles */
.mobile-menu-btn { display: none; background: transparent; border: none; cursor: pointer; z-index: 100; }
.mobile-menu { display: none; }
.desktop-only { display: flex; }

/* Mobile & Tablet Overrides */
@media (max-width: 1024px) {
  .hero-character { height: 260px; }
  .desktop-nav { flex-wrap: wrap; justify-content: center; align-items: center; }
  
  /* Logo on top, links below */
  .main-logo { order: 1; margin: 0; width: 180px; height: 90px; border-radius: 0 0 90px 90px; padding-top: 5px; }
  .main-logo img { height: 75px; }
  
  .nav-left { order: 2; flex: 0 0 auto; justify-content: center; padding: 0; margin-top: 1.5rem; margin-right: 1.5rem; }
  .nav-right { order: 3; flex: 0 0 auto; justify-content: center; padding: 0; margin-top: 1.5rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 1rem; }
  .navbar-inner { padding-bottom: 2rem; }
  
  .hero-title { font-size: 3.2rem !important; }
  .hero-subtitle { font-size: 1.3rem; }
  .hero { padding: 10rem 0 7rem !important; }

  .footer-links { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
}

@media (max-width: 768px) {
  /* Mobile Navbar */
  .desktop-only { display: none !important; }
  .mobile-menu-btn { display: block; position: absolute; left: 1.5rem; top: 1.5rem; }
  .lang-btn { position: absolute; right: 1.5rem; top: 1.5rem; margin: 0; }
  .main-logo { margin: 0 auto; order: unset; }
  .desktop-nav { display: flex; justify-content: center; align-items: flex-start; position: relative; width: 100%; }

  .mobile-menu {
    display: flex; flex-direction: column; background: var(--color-green); 
    position: absolute; top: 100px; left: 1.5rem; right: 1.5rem; border-radius: 20px;
    padding: 1rem; gap: 0.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(-20px) scale(0.95); opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 99; text-align: center; border: 4px solid white;
  }
  .mobile-menu.active {
    transform: translateY(0) scale(1); opacity: 1; pointer-events: auto;
  }
  .mobile-menu a {
    color: white; font-weight: bold; font-size: 1.1rem; text-decoration: none; padding: 1rem 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.2);
    display: block; min-height: 48px; /* Safe mobile tap spacing */
  }
  .mobile-menu a:focus-visible { outline: 3px solid white; outline-offset: -2px; }
  .mobile-menu a:last-child { border-bottom: none; }

  /* Hero */
  .hero-content-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 !important; }
  .left-char-wrap { order: 1; width: 45%; display: flex; justify-content: flex-end; }
  .right-char-wrap { order: 2; width: 45%; display: flex; justify-content: flex-start; }
  .hero-text-container { order: 3; width: 100%; margin-top: 1rem; }
  .hero-character { height: 160px; }
  .left-char { transform: rotate(-10deg) translateX(20px); }
  .right-char { transform: rotate(10deg) translateX(-20px); }
  .hero-title { font-size: 2.8rem !important; }
  .hero-subtitle { font-size: 1.2rem; padding: 0 1rem; }
  .hero { padding: 8rem 0 6rem !important; }
  
  .section { padding: 3rem 0; }
  h1, h2 { font-size: 2.2rem !important; }
  
  /* CTAs */
  .cta-zone { margin-top: -60px !important; padding: 0 1rem; }
  .cta-card { margin-top: 60px; }
  .cta-bg { padding: 6.5rem 1.5rem 2rem !important; } /* Pushed text down */
  
  /* Footer */
  .footer-layout { display: flex !important; flex-direction: column; align-items: center; gap: 2.5rem; }
  .footer-center-links { order: 1; width: 100%; }
  .footer-links { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; padding: 0 1rem; text-align: left !important; }
  .footer-left-contact { order: 2; text-align: left !important; padding: 0 1.5rem !important; }
  .footer-left-contact .footer-p { justify-content: flex-start; text-align: left; }
  .footer-left-contact .social-icons { justify-content: flex-start; }
  .footer-right-logo { order: 3; justify-content: center !important; padding: 0 !important; }
  .footer-logo-img { width: 120px !important; height: 120px !important; }
  
  .whatsapp-text, .menu-text { display: none; }
  .whatsapp-float, .menu-float { bottom: 20px; right: 20px; }
  .menu-float { bottom: 95px; }
  .scroll-top-btn { bottom: 20px; left: 20px; }
  
  .about-card { min-height: 300px; }
  
  .play-card-circle { left: -10px; top: -25px; width: 60px; height: 60px; font-size: 1.8rem; }
  
  /* Reset trapezoids on mobile to look better vertically stacked */
  .card::before, .about-card, .play-card, .play-card::before, .play-card::after, .gallery-item, .gallery-item img {
    transform: none !important;
  }
  .card > *, .play-card-content, .about-card-content > *, .about-card-circle, .about-card-bg {
    transform: none !important;
  }
  .card, .about-card, .play-card {
    border-radius: 20px !important; border-width: 4px !important;
  }
  .card::before {
    border-radius: 20px !important;
  }
}

@media (max-width: 480px) {
  .main-logo { width: 140px; height: 70px; border-radius: 0 0 70px 70px; padding-top: 5px; }
  .main-logo img { height: 60px; }
  .nav-links { gap: 0.8rem; font-size: 0.95rem; }
  .nav-links a { font-size: 0.95rem; }
  .lang-toggle { padding: 0.4rem 0.8rem; font-size: 0.9rem; margin-left: 0; }
  .hero-title { font-size: 2.2rem !important; }
  .play-card { padding: 2.5rem 1.5rem 1.5rem; }
}

/* Waiver Page Styles */
.waiver-terms-box {
  width: 100%;
  height: 200px;
  overflow-y: scroll;
  background: #fcfbfa;
  border: 2px solid #e5e0d8;
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-main);
  margin-bottom: 1.5rem;
}
.signature-canvas {
  background: white;
  border: 3px dashed var(--color-brown);
  border-radius: 15px;
  cursor: crosshair;
  touch-action: none;
}

/* Floating Contact FAB Menu */
.contact-float-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
.contact-float-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-blue);
  color: white;
  border: 4px solid white;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-large);
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.contact-float-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
  background-color: var(--color-teal);
}
.contact-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-btn-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.contact-options-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: white;
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 4px solid var(--color-blue);
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.contact-float-container.active .contact-options-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.contact-option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem;
  border-radius: 12px;
  color: white !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: transform 0.2s, filter 0.2s;
  box-shadow: 0 4px 0 rgba(0,0,0,0.1);
  text-decoration: none;
  text-shadow: none !important;
}
.contact-option-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.color-blue-bg { background-color: var(--color-blue); }
.color-green-bg { background-color: var(--color-green); }
.color-orange-bg { background-color: var(--color-orange); }

@media (max-width: 768px) {
  .contact-btn-text { display: none; }
  .contact-float-btn { padding: 0.75rem; border-radius: 50%; min-width: 50px; min-height: 50px; justify-content: center; }
  .contact-float-container { bottom: 100px !important; z-index: 9999 !important; } /* Elevate to avoid sticky bottom CTA collision */
  .menu-float { bottom: 180px !important; z-index: 99999 !important; } /* Stack physically above contact FAB and visually on top! */
  .scroll-top-btn { bottom: 100px !important; z-index: 9997 !important; } /* Elevate to avoid sticky bottom CTA collision */
  .site-footer { margin-top: 9rem !important; }
}

/* Mobile Persistent Sticky CTA Pill (Thumb-Zone Optimization) */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 450px;
    background: rgba(255, 253, 247, 0.85); /* Glassmorphic matching --color-bg-light */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid white;
    border-radius: 30px;
    padding: 0.6rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-sticky-cta .btn {
    flex: 1;
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    min-height: 48px;
    height: auto;
    white-space: nowrap;
    border-radius: 20px;
    box-shadow: 0 4px 0 rgba(0,0,0,0.15);
  }
}

/* FAQ Accordion Component */
.faq-section {
  background-color: var(--color-bg-light);
  padding: 5rem 0;
  position: relative;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 4px solid var(--color-teal);
  border-radius: 20px;
  margin-bottom: 1.2rem;
  box-shadow: var(--box-shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.faq-item[open] {
  box-shadow: var(--box-shadow-hover);
  transform: translateY(-2px);
}
.faq-summary {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-brown);
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
  transition: color 0.2s;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-summary::after {
  content: "➕";
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-summary::after {
  content: "➖";
  transform: rotate(180deg);
}
.faq-summary:hover {
  color: var(--color-teal);
}
.faq-content {
  padding: 0 1.5rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-main);
  border-top: 2px dashed #eee;
  padding-top: 1rem;
  line-height: 1.6;
  animation: faqReveal 0.3s ease-out forwards;
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Extra High-Fidelity Mobile Responsiveness Overrides (< 480px) */
@media (max-width: 480px) {
  .faq-summary {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
  }
  .faq-content {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .mobile-sticky-cta .btn {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
    min-height: 48px; /* Strict Touch Target */
  }
}

/* Reviews Marquee Component */
.reviews-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: radial-gradient(circle at center, #FFFDF7 0%, #f0fdfa 100%);
  padding: 4rem 0;
  border-top: 4px dashed var(--color-orange);
  border-bottom: 4px dashed var(--color-orange);
}
.reviews-marquee-track {
  display: flex;
  width: max-content;
  animation: reviewsMarquee 35s linear infinite;
  gap: 2rem;
  padding: 1rem 0;
}
.reviews-marquee-track:hover {
  animation-play-state: paused;
}
.review-card {
  background: white;
  border: 4px solid var(--color-orange);
  border-radius: 20px;
  padding: 1.5rem;
  width: 320px;
  box-shadow: var(--box-shadow-soft);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s;
}
.review-card:hover {
  transform: translateY(-5px);
}
.review-stars {
  color: #FFD700;
  font-size: 1.2rem;
}
.review-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  line-height: 1.4;
  font-style: italic;
}
.review-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-brown);
  text-align: right;
  margin-top: auto;
}

@keyframes reviewsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}




