/* ============ RESET & BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #E08000;
  --primary-dark: #C06800;
  --secondary: #0080C0;
  --secondary-dark: #006099;
  --accent: #E0A020;
  --success: #2ECC71;
  --danger: #E74C3C;
  --bg: #FAFAFA;
  --bg-alt: #EEF6FB;
  --text: #2D3748;
  --text-light: #718096;
  --white: #FFFFFF;
  --shadow: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: 20px;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  font-size: 0.9rem;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  border-color: var(--text);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 55px;
  width: auto;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO ============ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #FFF5EE 0%, #E8F4FD 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-feature {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-lottie {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hero-lottie-balloons {
  top: -50px;
  right: -20px;
  width: 160px;
  height: 160px;
}

.hero-lottie-stars {
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
}

.hero-lottie-confetti {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 100px;
}

/* ============ SECTIONS ============ */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: var(--secondary);
}

/* ============ BOUNCER CARD ============ */
.bouncer-card {
  display: grid;
  gap: 40px;
}

.bouncer-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.bouncer-image {
  position: relative;
  overflow: hidden;
}

.bouncer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.bouncer-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bouncer-info h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.bouncer-info p {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.bouncer-desc {
  font-size: 0.95rem;
}

.bouncer-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.spec-item {
  font-size: 0.9rem;
  padding: 8px 12px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}

.spec-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.bouncer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 15px;
}

.feature-tag {
  background: #E8F8EE;
  color: #1A7F42;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Coming Soon Card */
.bouncer-coming-soon {
  opacity: 0.85;
  position: relative;
  overflow: hidden;
}

.coming-soon-image {
  background: linear-gradient(135deg, #0080C0 0%, #20A0E0 50%, #40C0E0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.coming-soon-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.coming-soon-icon {
  font-size: 5rem;
  animation: bounce 2s infinite;
}

.coming-soon-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.coming-soon-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coming-soon-badge {
  margin-top: 20px;
  display: inline-block;
  background: linear-gradient(135deg, #0080C0 0%, #20A0E0 100%);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
}

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

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.2s;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.featured {
  border: 3px solid var(--primary);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.price span {
  font-size: 1.2rem;
}

.price-card p {
  margin-top: 15px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============ EXTRAS ============ */
.extras-section, .delivery-section {
  margin-top: 50px;
}

.extras-section h3, .delivery-section h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
  color: var(--secondary);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.extras-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

.extra-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-icon {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.extra-item h4 {
  margin-bottom: 8px;
  color: var(--secondary);
}

.extra-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
  flex: 1;
}

.extra-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

/* ============ DELIVERY ============ */
.delivery-info {
  max-width: 500px;
  margin: 0 auto;
}

.delivery-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}

.delivery-range {
  font-weight: 600;
}

.delivery-cost {
  font-weight: 800;
  color: var(--primary);
}

.delivery-cost.free {
  color: var(--success);
}

.delivery-note {
  text-align: center;
  margin-top: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============ CALENDAR ============ */
.reservation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.calendar-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 150px;
  align-self: start;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-header h3 {
  font-size: 1.2rem;
  color: var(--secondary);
}

.cal-nav {
  background: var(--bg-alt);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cal-nav:hover {
  background: var(--primary);
  color: var(--white);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day-name {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 8px 0;
}

.cal-days {
  display: contents;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.cal-day:hover:not(.unavailable):not(.empty) {
  background: var(--bg-alt);
}

.cal-day.empty {
  cursor: default;
}

.cal-day.available {
  color: var(--text);
}

.cal-day.unavailable {
  color: var(--text-light);
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-day.promo {
  background: #FFF3CD;
  border: 2px solid var(--accent);
}

.cal-day.selected {
  background: var(--primary);
  color: var(--white);
}

.cal-day.in-range {
  background: #FFE0D0;
  color: var(--primary-dark);
}

.cal-day .cal-price {
  font-size: 0.6rem;
  color: var(--text-light);
  position: absolute;
  bottom: 2px;
}

.cal-day.selected .cal-price,
.cal-day.in-range .cal-price {
  color: inherit;
}

.calendar-legend {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.legend-dot.available { background: var(--white); border: 2px solid var(--text-light); }
.legend-dot.unavailable { background: var(--text-light); opacity: 0.4; }
.legend-dot.promo { background: #FFF3CD; border: 2px solid var(--accent); }
.legend-dot.selected { background: var(--primary); }

/* ============ FORM ============ */
.form-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.date-display {
  display: flex;
  align-items: center;
  gap: 10px;
}

.date-display input {
  flex: 1;
}

.date-display span {
  font-weight: 700;
  color: var(--text-light);
}

h4 {
  margin: 25px 0 15px;
  color: var(--secondary);
}

.extras-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 15px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.checkbox-label:hover {
  background: #E2E8F0;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.distance-info {
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: -10px;
  margin-bottom: 18px;
}

.distance-info.error {
  background: #FEE2E2;
  color: var(--danger);
}

/* ============ PRICE SUMMARY ============ */
.price-summary {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  margin: 25px 0;
}

.price-summary h4 {
  margin: 0 0 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #E2E8F0;
}

.summary-row.total {
  border-bottom: none;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  padding-top: 12px;
}

.omnibus-info {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.form-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============ CONTACT ============ */
.contact-info {
  text-align: center;
  font-size: 1.1rem;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-grid-2 {
  grid-template-columns: 2fr 1fr;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-company {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-company p {
  font-size: 0.85rem;
}

.footer p, .footer li {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
}

.modal-body h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.modal-body p {
  color: var(--text-light);
  margin-bottom: 10px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.active { 
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
  }
  .nav-toggle { display: flex; }

  .hero h1 { font-size: 2rem; }
  .hero { padding: 110px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-content { text-align: center; }
  .hero-features { justify-content: center; }
  .hero-lottie-balloons { width: 110px; height: 110px; top: -30px; right: -10px; }
  .hero-lottie-stars { width: 80px; height: 80px; top: -20px; left: -15px; }
  .hero-lottie-confetti { width: 160px; height: 70px; bottom: -15px; }

  .section { padding: 50px 0; }
  .section-title { font-size: 1.7rem; margin-bottom: 30px; }

  .bouncer-item { grid-template-columns: 1fr; }
  .bouncer-image img { min-height: 250px; max-height: 300px; }
  .bouncer-gallery { height: 300px; }
  .bouncer-gallery .gallery-img { min-height: 300px; max-height: 300px; }
  .bouncer-info { padding: 25px; }
  .bouncer-info h3 { font-size: 1.3rem; }
  .bouncer-specs { grid-template-columns: 1fr; }
  .coming-soon-image { min-height: 220px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 15px; }
  .price-card { padding: 25px 20px; }
  .price-card.featured { transform: none; border-width: 2px; }
  .price-card.featured:hover { transform: translateY(-3px); }
  .price { font-size: 2.4rem; }

  .extras-grid, .extras-grid-2 { grid-template-columns: 1fr; }

  .reservation-wrapper { grid-template-columns: 1fr; }
  .calendar-section { position: static; padding: 20px; }
  .form-section { padding: 20px; }

  .form-row { grid-template-columns: 1fr; }
  .date-display { flex-direction: column; }
  .date-display span { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 25px; }

  /* Touch-friendly targets */
  .btn { padding: 14px 28px; min-height: 48px; }
  .btn-lg { padding: 16px 32px; }
  .cal-day { min-width: 40px; min-height: 40px; }
  .checkbox-label { padding: 14px 15px; min-height: 48px; }
  .form-group input, .form-group select { padding: 14px 16px; min-height: 48px; }
  .suggestion-item { padding: 14px 16px; min-height: 44px; }
  .cal-nav { width: 44px; height: 44px; }

  /* Better spacing */
  .container { padding: 0 16px; }
  .contact-info { font-size: 1rem; }
  .delivery-item { padding: 14px 16px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-feature { font-size: 0.8rem; padding: 6px 12px; }
  .price { font-size: 2rem; }
  .price-card h3 { font-size: 1.1rem; }
}

/* Touch interaction styles */
@media (hover: none) {
  .btn:active {
    transform: scale(0.97);
    opacity: 0.9;
  }
  .cal-day:active:not(.unavailable):not(.empty) {
    transform: scale(0.9);
  }
  .checkbox-label:active {
    transform: scale(0.98);
  }
  .price-card:active {
    transform: scale(0.98);
  }
}

/* ============ AUTOCOMPLETE & GEOLOCATION ============ */
.autocomplete-wrapper {
  position: relative;
}

.suggestions-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid #E2E8F0;
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: var(--shadow-lg);
}

.suggestions-list.active {
  display: block;
}

.suggestion-item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  border-bottom: 1px solid #F0F0F0;
  transition: background 0.15s;
}

.suggestion-item:hover {
  background: var(--bg-alt);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.btn-geo {
  margin-top: 10px;
  margin-bottom: 18px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding-top: 120px;
}

.legal-page h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 30px;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-page p {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-page ul {
  color: var(--text-light);
  margin-bottom: 12px;
  padding-left: 25px;
  line-height: 1.8;
}

.legal-page li {
  margin-bottom: 5px;
}

.legal-back {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #E2E8F0;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--primary);
  font-weight: 600;
}

/* Extras grid 3 columns */
.extras-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .extras-grid-3 { grid-template-columns: 1fr; }
}

/* ============ PROMO CODE ============ */
.promo-code-row {
  display: flex;
  gap: 10px;
}

.promo-code-row input {
  flex: 1;
}

.promo-code-row .btn {
  padding: 10px 20px;
  white-space: nowrap;
}

.promo-code-msg {
  font-size: 0.85rem;
  margin-top: 6px;
  min-height: 20px;
}

.promo-code-msg.success {
  color: var(--success);
  font-weight: 600;
}

.promo-code-msg.error {
  color: var(--danger);
}

/* ============ LUCIDE ICONS ============ */
.icon-sm {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 4px;
  stroke: currentColor;
}

.extra-icon i {
  width: 40px;
  height: 40px;
  stroke: var(--primary);
}

.contact-info .icon-sm {
  color: var(--primary);
  margin-right: 6px;
}

.hero-feature .icon-sm {
  color: var(--primary);
}

/* ============ BOUNCER GALLERY ============ */
.bouncer-gallery {
  position: relative;
}

.bouncer-gallery .gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bouncer-gallery .gallery-img.active {
  position: relative;
  opacity: 1;
}

.gallery-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.gallery-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ============ SUCCESS POPUP ============ */
.success-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease;
}

.success-popup-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-popup-content h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.success-popup-content p {
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.6;
}

.success-popup-note {
  font-size: 0.85rem;
  background: var(--bg-alt);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  margin: 15px 0;
}

.success-popup-content .btn {
  margin-top: 15px;
}

.success-popup-icon {
  margin-bottom: 20px;
}

/* Animated checkmark */
.checkmark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: var(--success);
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke-linecap: round;
  stroke: var(--success);
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

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

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.success-popup-code {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--bg-alt);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 8px 40px 8px 20px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}

.announcement-bar.color-primary { background: var(--primary); }
.announcement-bar.color-secondary { background: var(--secondary); }
.announcement-bar.color-success { background: var(--success); }
.announcement-bar.color-dark { background: #2D3748; }

.announcement-bar .close-announce {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 5px;
}

body.has-announcement .header {
  top: var(--announce-height, 36px);
}

body.has-announcement .hero {
  padding-top: calc(140px + var(--announce-height, 36px));
}

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 0.75rem;
    padding: 7px 35px 7px 10px;
    white-space: normal;
    line-height: 1.3;
  }

  body.has-announcement .hero {
    padding-top: calc(110px + var(--announce-height, 36px));
  }
}

.footer-favicon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}

/* ============ KIDS ANIMATIONS ============ */

/* Floating bubbles background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  overflow: hidden;
}

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

.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatBubble linear infinite;
}

.bubble:nth-child(1) { left: 5%; width: 40px; height: 40px; background: var(--primary); animation-duration: 8s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 15%; width: 25px; height: 25px; background: var(--secondary); animation-duration: 10s; animation-delay: 1s; }
.bubble:nth-child(3) { left: 30%; width: 50px; height: 50px; background: var(--accent); animation-duration: 12s; animation-delay: 2s; }
.bubble:nth-child(4) { left: 50%; width: 30px; height: 30px; background: var(--success); animation-duration: 9s; animation-delay: 0.5s; }
.bubble:nth-child(5) { left: 70%; width: 45px; height: 45px; background: var(--primary); animation-duration: 11s; animation-delay: 3s; }
.bubble:nth-child(6) { left: 85%; width: 20px; height: 20px; background: var(--secondary); animation-duration: 7s; animation-delay: 1.5s; }
.bubble:nth-child(7) { left: 40%; width: 35px; height: 35px; background: #FF69B4; animation-duration: 13s; animation-delay: 4s; }
.bubble:nth-child(8) { left: 60%; width: 28px; height: 28px; background: #9B59B6; animation-duration: 10s; animation-delay: 2.5s; }

@keyframes floatBubble {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Section titles bounce on scroll */
.section-title {
  animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
  0% { opacity: 0; transform: translateY(30px); }
  60% { transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Price cards wiggle on hover */
.price-card:hover {
  animation: wiggle 0.4s ease;
}

@keyframes wiggle {
  0%, 100% { transform: translateY(-5px) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(-2deg); }
  75% { transform: translateY(-5px) rotate(2deg); }
}

.price-card.featured:hover {
  animation: wiggle 0.4s ease;
  transform: scale(1.05);
}

/* Extra items bounce */
.extra-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extra-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Feature tags pop in */
.feature-tag {
  transition: transform 0.2s ease;
}

.feature-tag:hover {
  transform: scale(1.08);
}

/* FAQ items slide */
.faq-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Bouncer card entrance */
.bouncer-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bouncer-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* CTA button pulse */
.btn-primary.btn-lg {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 128, 0, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(224, 128, 0, 0); }
}

/* Delivery items stagger */
.delivery-item {
  transition: transform 0.2s ease;
}

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

/* Contact section icons bounce */
.contact-info p {
  transition: transform 0.2s ease;
}

.contact-info p:hover {
  transform: translateX(5px);
}

/* Scroll reveal - elements fade in when visible */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Rainbow border on coming soon */
.bouncer-coming-soon {
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #FF6B6B, #FFA500, #FFD93D, #6BCB77, #4D96FF, #9B59B6) border-box;
  border: 3px solid transparent;
  animation: rainbow-shift 4s linear infinite;
}

@keyframes rainbow-shift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

/* Confetti on hero - CSS particles */
.hero-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  top: -10px;
  animation: confetti-fall linear infinite;
}

.confetti-piece:nth-child(1) { left: 10%; background: #FF6B6B; animation-duration: 6s; animation-delay: 0s; border-radius: 50%; }
.confetti-piece:nth-child(2) { left: 20%; background: #FFA500; animation-duration: 8s; animation-delay: 1s; border-radius: 2px; }
.confetti-piece:nth-child(3) { left: 35%; background: #FFD93D; animation-duration: 7s; animation-delay: 2s; border-radius: 50%; }
.confetti-piece:nth-child(4) { left: 50%; background: #6BCB77; animation-duration: 9s; animation-delay: 0.5s; border-radius: 2px; }
.confetti-piece:nth-child(5) { left: 65%; background: #4D96FF; animation-duration: 6.5s; animation-delay: 3s; border-radius: 50%; }
.confetti-piece:nth-child(6) { left: 80%; background: #9B59B6; animation-duration: 8.5s; animation-delay: 1.5s; border-radius: 2px; }
.confetti-piece:nth-child(7) { left: 90%; background: #FF69B4; animation-duration: 7.5s; animation-delay: 2.5s; border-radius: 50%; }
.confetti-piece:nth-child(8) { left: 45%; background: #E08000; animation-duration: 10s; animation-delay: 4s; width: 6px; height: 12px; border-radius: 2px; }
.confetti-piece:nth-child(9) { left: 75%; background: #0080C0; animation-duration: 7s; animation-delay: 1s; width: 10px; height: 6px; border-radius: 2px; }
.confetti-piece:nth-child(10) { left: 25%; background: #2ECC71; animation-duration: 9s; animation-delay: 3.5s; border-radius: 50%; width: 6px; height: 6px; }

@keyframes confetti-fall {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bubble, .confetti-piece, .btn-primary.btn-lg { animation: none; }
  .bouncer-coming-soon { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
