/* ============================================
   KIDDY ADVENTURE — Playful, Mobile-First CSS
   ============================================ */

:root {
  --orange: #FF6B35;
  --orange-light: #FFB347;
  --purple: #7B68EE;
  --purple-light: #B19CD9;
  --pink: #FF69B4;
  --pink-light: #FFB6C1;
  --teal: #20B2AA;
  --yellow: #FFD700;
  --blue: #4169E1;
  --green: #32CD32;
  --dark: #2D2B55;
  --dark-light: #3D3B65;
  --gray: #F5F5F7;
  --gray-dark: #666;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4 { font-family: 'Baloo 2', cursive; line-height: 1.2; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #e55a27;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--orange);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.logo-icon { font-size: 1.8rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-switcher { display: flex; gap: 6px; }
.lang-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  overflow: hidden;
}
.lang-btn .fi { font-size: 1.1rem; border-radius: 2px; }
.lang-btn:hover { border-color: var(--orange); transform: scale(1.1); }
.lang-btn.active { border-color: var(--orange); background: rgba(255,107,53,0.1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF5EB 0%, #FFF0F5 50%, #F0F0FF 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.shape-1 {
  width: 400px; height: 400px;
  background: var(--orange);
  top: -100px; right: -100px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--purple);
  bottom: -50px; left: -50px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--pink);
  top: 40%; left: 10%;
}

.floating-emoji {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}
.e1 { top: 15%; left: 8%; animation-delay: 0s; }
.e2 { top: 25%; right: 12%; animation-delay: 1s; }
.e3 { bottom: 25%; left: 15%; animation-delay: 2s; }
.e4 { top: 60%; right: 8%; animation-delay: 3s; }
.e5 { bottom: 15%; right: 20%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}
.highlight {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-dark);
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-dark);
  font-weight: 600;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section:nth-child(even) { background: var(--gray); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-emoji { font-size: 2.5rem; display: block; margin-bottom: 8px; }
.section-header h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--gray-dark);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.about-icon { font-size: 2.5rem; margin-bottom: 16px; }
.about-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--dark); }
.about-card p { font-size: 0.9rem; color: var(--gray-dark); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border: 3px solid var(--orange);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.service-icon { font-size: 2.5rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--gray-dark); margin-bottom: 16px; flex: 1; }
.service-price {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}
.service-card .btn { width: 100%; justify-content: center; }

/* ===== BIRTHDAY PACKAGES ===== */
.birthdays { background: linear-gradient(135deg, #FFF5EB, #FFF0F5); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
  border: 3px solid var(--purple);
  transform: scale(1.05);
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-theme { font-size: 3rem; margin-bottom: 8px; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 8px; }

.pricing-price {
  margin-bottom: 4px;
}
.price-amount {
  font-family: 'Baloo 2', cursive;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
}
.price-currency {
  font-size: 1rem;
  color: var(--gray-dark);
  font-weight: 600;
}
.pricing-duration {
  font-size: 0.85rem;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-features li.disabled { opacity: 0.4; }

.pricing-card .btn { width: 100%; justify-content: center; }

.bday-addons {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.bday-addons h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.addon {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item.large { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s;
  display: block;
}
.gallery-item.large img { height: 280px; }
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item { position: relative; overflow: hidden; }

.gallery-note {
  text-align: center;
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 16px;
}
.gallery-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ===== LOYALTY ===== */
.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.loyalty-step {
  text-align: center;
  position: relative;
}
.step-number {
  position: absolute;
  top: -10px;
  right: 20%;
  width: 32px;
  height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
}
.step-icon { font-size: 3rem; margin-bottom: 12px; }
.loyalty-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.loyalty-step p { font-size: 0.9rem; color: var(--gray-dark); }

.loyalty-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  border-radius: var(--radius);
  padding: 48px 32px;
  color: var(--white);
}
.spin-wheel-preview {
  font-size: 4rem;
  margin-bottom: 12px;
  animation: spin-slow 10s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.loyalty-cta p { font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; }
.loyalty-cta .btn-primary {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.loyalty-cta .btn-primary:hover {
  background: var(--gray);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.info-card h3 { font-size: 1.2rem; margin-bottom: 16px; }

.hours-grid { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.95rem;
}
.hours-note {
  padding-top: 8px;
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
}

.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  padding: 8px 0;
  transition: var(--transition);
}
.contact-method:hover { color: var(--orange); }

.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 28px; opacity: 0.9; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer .logo-icon { font-size: 1.5rem; }
.footer .logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p { width: 100%; font-size: 0.85rem; margin-top: 4px; }

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  font-size: 1.3rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover { transform: scale(1.2); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* ===== HOOKING EFFECTS ===== */

/* Gradient text shimmer on hero */
.highlight {
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--purple), var(--orange));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Counter pop-in animation */
.stat-number {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stat-number.counted {
  opacity: 1;
  transform: scale(1);
}

/* Card tilt on hover (3D effect) */
.about-card, .service-card, .pricing-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Smooth section entrance */
.section-header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glowing CTA button pulse */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

/* Parallax floating shapes */
.hero-shape {
  transition: transform 0.1s ease-out;
}

/* Image reveal on scroll */
.gallery-item {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item.revealed {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Pricing card glow on hover */
.pricing-card:hover {
  box-shadow: 0 8px 40px rgba(255,107,53,0.15), 0 0 0 1px rgba(255,107,53,0.1);
}
.pricing-card.popular {
  box-shadow: 0 8px 40px rgba(123,104,238,0.2), 0 0 0 2px rgba(123,104,238,0.15);
}

/* Smooth navbar glass morph */
.navbar {
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

/* Social proof ticker animation */
@keyframes slideInFromRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
  .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 { min-height: auto; padding: 120px 20px 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 1.5rem; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.8rem; }

  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .loyalty-grid { grid-template-columns: 1fr; gap: 20px; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .gallery-placeholder { height: 160px; }
  .gallery-item.large .gallery-placeholder { height: 200px; }

  .footer-grid { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .addons-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .lang-switcher { gap: 4px; }
  .lang-btn { width: 28px; height: 28px; }
}
