/* ============================================================
   BINX ENTERTAINMENT — DESIGN SYSTEM
   Main brand: Purple | Accents: Green, Orange, Yellow, Pink
   ============================================================ */

/* --- 1. RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-color, #1F2937);
  background: var(--bg-color, #fff);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* --- 2. CSS VARIABLES --- */
:root {
  --purple-950: #2E1065;
  --purple-900: #4C1D95;
  --purple-800: #5B21B6;
  --purple-700: #6D28D9;
  --purple-600: #7C3AED;
  --purple-500: #8B5CF6;
  --purple-400: #A78BFA;
  --purple-300: #C4B5FD;
  --purple-200: #DDD6FE;
  --purple-100: #EDE9FE;
  --purple-50:  #F5F3FF;
  --green-600:  #16A34A;
  --green-500:  #22C55E;
  --green-400:  #4ADE80;
  --orange-500: #F97316;
  --orange-400: #FB923C;
  --yellow-500: #EAB308;
  --yellow-400: #FACC15;
  --yellow-300: #FDE68A;
  --pink-500:   #EC4899;
  --pink-400:   #F472B6;
  --red-500:    #EF4444;
  --wa-green:   #25D366;
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --gradient-hero: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F97316 100%);
  --gradient-purple: linear-gradient(135deg, #6D28D9, #8B5CF6);
  --gradient-cta: linear-gradient(135deg, #22C55E, #16A34A);
  --gradient-warm: linear-gradient(135deg, #F97316, #FACC15);
  --gradient-fun: linear-gradient(135deg, #7C3AED, #EC4899);
  --gradient-dark: linear-gradient(135deg, #1E1040, #2E1065);

  --shadow-sm: 0 1px 3px rgba(0,0,0,.1);
  --shadow-md: 0 4px 14px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
  --shadow-purple: 0 8px 30px rgba(124,58,237,.25);
  --shadow-glow: 0 0 30px rgba(124,58,237,.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --header-height: 72px;
  --sticky-bar-height: 60px;
}

[data-theme="dark"] {
  --bg-color: #0f0a19;
  --text-color: #f3f4f6;
  --purple-50:  #1E1040;
  --purple-100: #2E1065;
  --purple-200: #4C1D95;
  --gray-50:  #0f0a19;
  --gray-100: #1a1525;
  --gray-200: #2e283b;
  --gray-300: #4b4558;
  --gray-400: #6b6578;
  --gray-500: #9ca3af;
  --gray-600: #d1d5db;
  --gray-700: #e5e7eb;
  --gray-800: #f3f4f6;
  --gray-900: #ffffff;
  color-scheme: dark;
}

/* --- 3. TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--gray-700); }
.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-purple { color: var(--purple-600); }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.font-bold { font-weight: 700; }
.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* --- 4. LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
section { padding: 70px 0; }
.section-purple { background: var(--purple-50); }
.section-dark {
  background: var(--gradient-dark);
  color: #fff;
}
.section-dark h2, .section-dark h3, .section-dark h4,
.section-dark p, .section-dark li { color: #fff; }
.section-dark .subtitle { color: var(--purple-200); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple-600);
  margin-bottom: 8px;
}
.section-dark .section-label { color: var(--yellow-400); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 16px; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

/* --- 5. BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all .3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-purple);
  color: #fff;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn-green {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 15px rgba(34,197,94,.3);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(34,197,94,.4); }
.btn-orange {
  background: var(--gradient-warm);
  color: #fff;
  box-shadow: 0 4px 15px rgba(249,115,22,.3);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(249,115,22,.4); }
.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,.4); }
.btn-outline {
  background: transparent;
  color: var(--purple-600);
  border: 2px solid var(--purple-300);
}
.btn-outline:hover { background: var(--purple-50); border-color: var(--purple-500); }
.btn-white {
  background: #fff;
  color: var(--purple-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-icon { font-size: 1.2em; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- 6. NAVIGATION --- */
.site-header {
  position: fixed;
  top: var(--announcement-height, 0px);
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--purple-100);
  height: var(--header-height);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  background: var(--gradient-fun);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-sub {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--purple-400);
  display: block;
  margin-top: -4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all .2s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--purple-600); background: var(--purple-50); }
.nav-link .arrow { font-size: 0.65em; transition: transform .3s ease; }
.nav-item:hover .arrow, .nav-item.open .arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--purple-100);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
  z-index: 100;
}
.nav-item:hover .nav-dropdown, .nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: all .15s ease;
}
.nav-dropdown a:hover {
  background: var(--purple-50);
  color: var(--purple-700);
  padding-left: 20px;
}
.nav-cta-btn {
  margin-left: 12px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--purple-700);
  border-radius: 3px;
  transition: all .3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--announcement-height, 0px) + var(--header-height));
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: 20px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  transition: all .2s ease;
}
.mobile-menu .mobile-nav-link:hover { color: var(--purple-600); background: var(--purple-50); border-radius: var(--radius-sm); }
.mobile-submenu {
  display: none;
  padding-left: 20px;
}
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-left: 2px solid var(--purple-200);
  transition: all .15s ease;
}
.mobile-submenu a:hover { color: var(--purple-600); border-color: var(--purple-500); }
.mobile-menu-cta {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- 7. HERO SECTIONS --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-home {
  min-height: 85vh;
  background: var(--gradient-hero);
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(250,204,21,.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(236,72,153,.1) 0%, transparent 40%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-home .hero-content { color: #fff; }
.hero-home h1 { color: #fff; font-size: clamp(2.25rem, 6vw, 3.75rem); margin-bottom: 20px; }
.hero-home p { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2.5vw, 1.25rem); margin-bottom: 32px; max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-badge .emoji { font-size: 1.1em; }
.hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.hero-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all .3s ease;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
}
.hero-contact-btn:hover { background: rgba(255,255,255,.15); transform: translateY(-1px); }
.hero-contact-btn.wa { border-color: var(--wa-green); }

/* Floating shapes decoration */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  background: #fff;
}
.hero-shape:nth-child(1) { width: 300px; height: 300px; top: -50px; right: -80px; animation: float 8s ease-in-out infinite; }
.hero-shape:nth-child(2) { width: 200px; height: 200px; bottom: -40px; left: -60px; animation: float 6s ease-in-out infinite reverse; }
.hero-shape:nth-child(3) { width: 120px; height: 120px; top: 40%; right: 20%; animation: float 10s ease-in-out infinite; }

/* Sub-page hero */
.hero-page {
  min-height: 380px;
  background: var(--gradient-purple);
  text-align: center;
}
.hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-page .hero-content { max-width: 800px; margin: 0 auto; color: #fff; }
.hero-page h1 { color: #fff; margin-bottom: 16px; }
.hero-page p { color: rgba(255,255,255,.85); }

/* --- 8. SERVICE CARDS --- */
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all .4s ease;
  text-decoration: none;
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-purple);
}
.service-card-img {
  aspect-ratio: 16 / 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, #fff);
  z-index: 2;
}
.service-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.service-card-body { padding: 20px 24px 24px; }
.service-card-body h3 { margin-bottom: 8px; font-size: 1.2rem; }
.service-card-body p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 14px; }
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--purple-600);
  font-size: 1.05rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--purple-600);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap .2s ease;
}
.service-card-link:hover { gap: 8px; }

/* Card color themes — each card uses a unique, landscape-oriented photo */
.card-magician .service-card-img { background-image: url('../images/Photos/Magicians/PXL_20250806_001305597.RAW-01.COVER.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-foam .service-card-img { background-image: url('../images/Photos/Foam%20parties/PXL_20240823_144602781.RAW-01.COVER.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-reptile .service-card-img { background-image: url('../images/Photos/Reptile%20shows/PXL_20250729_175040208.RAW-01.COVER.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-face-paint .service-card-img { background-image: url('../images/Photos/face%20painting/COLOR_POP~2.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-characters .service-card-img { background-image: url('../images/Photos/Characters/DSC08822.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-princess .service-card-img { background-image: url('../images/Photos/Characters/media-1616275369223-Mar_20_2021_5_22_PM.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-superhero .service-card-img { background-image: url('../images/Photos/Characters/IMG-20250623-WA0011.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-mascot .service-card-img { background-image: url('../images/Photos/Characters/IMG20211130135227.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-balloon .service-card-img { background-image: url('../images/Photos/Balloons/IMG20230625164941.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-candy .service-card-img { background-image: url('../images/Photos/Cotton%20candy/IMG_20200823_162054.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-popcorn .service-card-img { background-image: url('../images/Photos/Magicians/PXL_20250914_163120806.RAW-01.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-photo .service-card-img { background-image: url('../images/Photos/Magicians/PXL_20250920_223123718.TS-000-01~2.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-bear .service-card-img { background-image: url('../images/Photos/Characters/eee1b5949c1a78dda477bac64aa31578.0.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-spin-art .service-card-img { background-image: url('../images/Photos/face%20painting/COLOR_POP~3.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-sand-art .service-card-img { background-image: url('../images/Photos/face%20painting/PXL_20240716_210458105.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-glitter .service-card-img { background-image: url('../images/Photos/face%20painting/PXL_20260516_175505712.RAW-01.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-dj .service-card-img { background-image: url('../images/Photos/Foam%20parties/PXL_20240802_154306339.RAW-01.COVER.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-outdoor .service-card-img { background-image: url('../images/Photos/Foam%20parties/PXL_20240827_142202701.RAW-01.COVER.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-soft-play .service-card-img { background-image: url('../images/Photos/Characters/IMG20211008195913_01.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-carnival .service-card-img { background-image: url('../images/Photos/Balloons/PXL_20250105_185311652.RAW-01.COVER.jpg'); background-size: cover; background-position: center; font-size: 0; }
.card-addon .service-card-img { background: linear-gradient(135deg, #14B8A6, #5EEAD4); color: #fff; }
.card-easter .service-card-img { background: linear-gradient(135deg, #A78BFA, #FCA5A5, #FDE68A); color: #fff; }

/* Core service spotlight cards */
.core-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  text-decoration: none;
  transition: transform .4s ease, box-shadow .4s ease;
}
.core-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.core-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12) 0%, transparent 50%);
  pointer-events: none;
}
.core-card h3 { color: #fff; font-size: 1.65rem; margin-bottom: 12px; position: relative; }
.core-card p { color: rgba(255,255,255,.85); font-size: 0.95rem; margin-bottom: 20px; position: relative; }
.core-card .core-icon { font-size: 3rem; margin-bottom: 16px; position: relative; }
.core-card .btn { position: relative; margin-top: auto; align-self: flex-start; }
.core-magician { background: linear-gradient(135deg, #5B21B6, #7C3AED, #A855F7); }
.core-foam { background: linear-gradient(135deg, #0E7490, #06B6D4, #22D3EE); }
.core-reptile { background: linear-gradient(135deg, #166534, #16A34A, #4ADE80); }

/* --- 9. PRICING CARDS --- */
.pricing-grid { display: grid; gap: 20px; }
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 2px solid var(--gray-100);
  transition: all .3s ease;
  position: relative;
}
.pricing-card:hover { border-color: var(--purple-300); box-shadow: var(--shadow-purple); }
.pricing-card.featured {
  border-color: var(--purple-500);
  box-shadow: var(--shadow-purple);
}
.pricing-card.featured::before {
  content: '⭐ Most Popular';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gradient-warm);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}
.pricing-header { margin-bottom: 20px; }
.pricing-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.pricing-performers {
  font-size: 0.85rem;
  color: var(--purple-500);
  font-weight: 600;
}
.pricing-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--purple-700);
  margin: 12px 0;
}
.pricing-price .price-small { font-size: 0.5em; font-weight: 500; color: var(--gray-400); }
.pricing-includes { margin-bottom: 20px; }
.pricing-includes li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-includes li::before {
  content: '✓';
  color: var(--green-500);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.no-deposit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 8px;
}

/* --- 10. COMPARISON TABLE --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table thead th {
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
.comparison-table thead th:first-child { background: var(--gray-100); color: var(--gray-700); }
.comparison-table thead th:nth-child(2) { background: var(--purple-600); color: #fff; }
.comparison-table thead th:nth-child(3) { background: var(--gray-200); color: var(--gray-600); }
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.comparison-table td:nth-child(2) { background: var(--purple-50); font-weight: 600; color: var(--purple-700); }
.comparison-table .check { color: var(--green-500); font-weight: 700; font-size: 1.2rem; }
.comparison-table .cross { color: var(--red-500); font-weight: 700; font-size: 1.2rem; }
.comparison-table .maybe { color: var(--orange-400); font-weight: 600; }

/* --- 11. TESTIMONIALS --- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--purple-200);
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.testimonial-name { font-weight: 600; color: var(--gray-800); font-size: 0.95rem; }
.testimonial-location { font-size: 0.8rem; color: var(--gray-400); }
.testimonial-stars { color: var(--yellow-500); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 12px; }

/* --- 12. GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform .3s ease;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,.6));
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { color: #fff; font-weight: 600; font-size: 0.9rem; }

/* --- 12b. GLOBAL LIGHTBOX MODAL --- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 25, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}
.lightbox-caption {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 16px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  user-select: none;
}
.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.05);
}
.lightbox-prev {
  left: -64px;
}
.lightbox-next {
  right: -64px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
  .lightbox-close {
    top: 12px;
    right: 12px;
  }
  .lightbox-content {
    max-width: 95vw;
  }
}

/* --- 13. FAQ ACCORDION --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item.active { border-color: var(--purple-300); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-800);
  background: #fff;
  transition: background .2s ease;
  gap: 12px;
  width: 100%;
  text-align: left;
  border: none;
}
.faq-question:hover { background: var(--purple-50); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--purple-600);
  flex-shrink: 0;
  transition: all .3s ease;
}
.faq-item.active .faq-icon { background: var(--purple-600); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- 14. CAROUSEL --- */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  transition: transform .5s ease;
}
.carousel-slide {
  min-width: 100%;
  padding: 0 10px;
}
.carousel-slide > * { width: 100%; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--purple-700);
  cursor: pointer;
  z-index: 10;
  transition: all .2s ease;
  border: none;
}
.carousel-btn:hover { background: #fff; box-shadow: var(--shadow-lg); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple-200);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}
.carousel-dot.active { background: var(--purple-600); width: 28px; border-radius: 5px; }

/* Multi-card carousel */
.scroll-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-carousel::-webkit-scrollbar { display: none; }
.scroll-carousel > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* --- 15. INSTAGRAM FEED --- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.instagram-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .3s ease;
}
.instagram-item:hover { transform: scale(1.04); }
.instagram-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  color: #fff;
  font-weight: 600;
}
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-handle {
  text-align: center;
  margin-top: 20px;
}
.instagram-handle a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--purple-600);
  transition: color .2s ease;
}
.instagram-handle a:hover { color: var(--pink-500); }

/* --- 16. FOOTER --- */
.site-footer {
  background: var(--gradient-dark);
  color: #fff;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo-text { font-size: 2rem; }
.footer-brand p { color: var(--purple-300); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--purple-300);
  font-size: 0.9rem;
  transition: all .2s ease;
}
.footer-col a:hover { color: #fff; padding-left: 6px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--purple-400);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .3s ease;
}
.footer-social a:hover { background: var(--purple-600); transform: translateY(-2px); }

/* --- 17. STICKY CONTACT BAR --- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--purple-100);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 8px 16px;
}
.sticky-bar-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 4px;
}
.sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: all .2s ease;
  color: var(--gray-600);
}
.sticky-btn:hover { background: var(--purple-50); color: var(--purple-700); }
.sticky-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.sticky-call .sticky-btn-icon { background: var(--purple-600); }
.sticky-text .sticky-btn-icon { background: var(--orange-500); }
.sticky-wa .sticky-btn-icon { background: var(--wa-green); }
.sticky-email .sticky-btn-icon { background: var(--pink-500); }
.sticky-form .sticky-btn-icon { background: var(--green-500); }

/* Add padding to body so footer isn't hidden behind sticky bar */
body { padding-bottom: calc(var(--sticky-bar-height) + 10px); }

/* --- 18. BREADCRUMBS --- */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.breadcrumbs li { display: flex; align-items: center; gap: 6px; color: var(--gray-400); }
.breadcrumbs a { color: var(--purple-500); transition: color .2s ease; }
.breadcrumbs a:hover { color: var(--purple-700); }
.breadcrumbs .sep { color: var(--gray-300); }

/* --- 19. WHY CHOOSE / FEATURES --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--gray-100);
  transition: all .3s ease;
}
.feature-card:hover { border-color: var(--purple-200); box-shadow: var(--shadow-purple); transform: translateY(-4px); }
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }

/* No deposit banner */
.no-deposit-banner {
  background: linear-gradient(135deg, var(--green-500), #059669);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.no-deposit-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.no-deposit-icon { font-size: 3.5rem; flex-shrink: 0; position: relative; }
.no-deposit-content { position: relative; }
.no-deposit-content h2 { color: #fff; margin-bottom: 8px; }
.no-deposit-content p { color: rgba(255,255,255,.9); margin-bottom: 0; font-size: 1.05rem; }

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.location-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all .3s ease;
  text-decoration: none;
}
.location-card:hover {
  border-color: var(--purple-300);
  box-shadow: var(--shadow-purple);
  transform: translateY(-2px);
}
.location-card .loc-icon { font-size: 1.5rem; }
.location-card .loc-name { font-family: var(--font-heading); font-weight: 600; color: var(--gray-800); }
.location-card .loc-area { font-size: 0.8rem; color: var(--gray-400); }

/* CTA section */
.cta-section {
  background: var(--gradient-hero);
  padding: 70px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,.85); margin-bottom: 32px; position: relative; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .btn-group { justify-content: center; position: relative; }

/* Add-ons */
.addon-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all .3s ease;
}
.addon-card:hover { border-color: var(--purple-200); box-shadow: var(--shadow-sm); }
.addon-icon { font-size: 2rem; flex-shrink: 0; }
.addon-info h4 { font-size: 1rem; margin-bottom: 2px; }
.addon-info p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 0; }

/* Includes list */
.includes-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.includes-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--purple-50);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-700);
}
.includes-list li .inc-icon { color: var(--purple-500); font-size: 1.1rem; }

/* Page content sections */
.page-section { padding: 60px 0; }
.page-section:nth-child(even) { background: var(--purple-50); }
.content-block { max-width: 800px; }
.content-block h2 { margin-bottom: 16px; }
.content-block p { font-size: 1.05rem; line-height: 1.8; }

/* Tags */
.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.tag-purple { background: var(--purple-100); color: var(--purple-700); }
.tag-green { background: #DCFCE7; color: var(--green-600); }
.tag-orange { background: #FED7AA; color: #C2410C; }

/* Related links */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all .2s ease;
}
.related-link:hover { border-color: var(--purple-400); color: var(--purple-600); background: var(--purple-50); }

/* --- 20. ANIMATIONS --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  transform: translateY(0) !important;
}
.scale-up {
  transform: scale(0.9) !important;
}
.scale-up.visible {
  transform: scale(1) !important;
}

/* Stagger children animations */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .2s; }
.stagger > *:nth-child(4) { transition-delay: .3s; }
.stagger > *:nth-child(5) { transition-delay: .4s; }
.stagger > *:nth-child(6) { transition-delay: .5s; }
.stagger > *:nth-child(7) { transition-delay: .6s; }
.stagger > *:nth-child(8) { transition-delay: .7s; }

/* --- 21. RESPONSIVE --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-home { min-height: 70vh; }
}
@media (max-width: 768px) {
  section { padding: 50px 0; }
  .grid-2, .grid-3, .grid-4, .suggestions-grid, .reptile-profiles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta-btn { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-home { min-height: 70vh; padding-bottom: 80px; }
  .hero-page { min-height: 300px; }
  .no-deposit-banner { flex-direction: column; text-align: center; padding: 36px 24px; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table td, .comparison-table th { padding: 10px 12px; }
  .core-card { padding: 32px 24px; min-height: 280px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .pricing-card { padding: 20px; }
  .sticky-btn { font-size: 0.6rem; padding: 6px 6px; }
  .sticky-btn-icon { width: 32px; height: 32px; font-size: 1rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .container { padding: 0 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: 1fr; }
}

/* Spacer above content to account for the fixed announcement and header */
main { padding-top: calc(var(--announcement-height, 0px) + var(--header-height)); }

/* ============================================================
   BINX ENTERTAINMENT — VISUAL REVAMP (HERO & SUGGESTIONS)
   ============================================================ */

/* --- 22. SPLIT HERO LAYOUT --- */
.hero-split {
  position: relative;
  min-height: 520px;
  background: var(--gradient-purple);
  padding: 120px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hero-split .hero-content {
  color: #fff;
}
.hero-split h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-split p {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 32px;
}
.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid rgba(255, 255, 255, 0.15);
  aspect-ratio: 4/3;
  width: 100%;
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-split {
    padding: 100px 0 60px;
    text-align: center;
  }
  .hero-split .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 16/10;
  }
}

/* --- 23. SUGGESTIONS GRID & CARDS --- */
.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.suggestion-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  height: 100%;
}
.suggestion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-purple);
  border-color: var(--purple-200);
}
.suggestion-img {
  height: 180px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.suggestion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.suggestion-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.suggestion-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.suggestion-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}
.suggestion-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--purple-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
  text-decoration: none;
  margin-top: auto;
}
.suggestion-card:hover .suggestion-link {
  gap: 8px;
  color: var(--purple-800);
}

/* --- 24. REPTILE PROFILES --- */
.reptile-profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.reptile-profile-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 30px 24px;
  text-align: center;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reptile-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-300);
}
.reptile-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--purple-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 16px;
  border: 3px solid var(--purple-100);
  box-shadow: var(--shadow-sm);
}
.reptile-profile-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
}
.reptile-species {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.reptile-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================================
   BINX ENTERTAINMENT — APPLE LIQUID & MATERIAL YOU UPGRADES
   ============================================================ */
:root {
  --radius-xl: 32px;
  --shadow-liquid: 0 10px 40px rgba(124, 58, 237, 0.25), 0 0 20px rgba(236, 72, 153, 0.15);
}

/* Forcing exact aspect ratio cropping on all gallery photos to prevent stretching */
.gallery-item img, 
.gallery-item-img, 
.suggestion-img img,
.service-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* Glassmorphic Panel (Apple Liquid design element) */
.glass-panel {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(20px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05) !important;
}

/* Parallax Scrolling Effect */
.parallax-bg {
  background-attachment: fixed !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll !important; /* Fallback for touch devices */
  }
}

/* Full-width Service Hero Block for Core Services */
.service-hero-block {
  padding: 100px 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.service-hero-block:nth-child(even) {
  background: var(--purple-50);
}
.service-hero-block:nth-child(even) .service-hero-grid {
  direction: rtl;
}
.service-hero-block:nth-child(even) .service-hero-text {
  direction: ltr;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.service-hero-text {
  max-width: 540px;
}
.service-hero-text h2 {
  font-size: clamp(2.25rem, 4.5vw, 2.75rem);
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--gray-900);
}
.service-hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
}
.service-hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  border: 6px solid rgba(255, 255, 255, 0.2);
  background: var(--gray-100);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-hero-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-liquid);
}
.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-hero-image:hover img {
  transform: scale(1.04);
}
.service-details-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--purple-100);
  color: var(--purple-700);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.service-features-list {
  margin-bottom: 28px;
}
.service-features-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 10px;
  line-height: 1.5;
}
.service-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 900;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-hero-block:nth-child(even) .service-hero-grid {
    direction: ltr;
  }
  .service-hero-text {
    max-width: 100%;
  }
  .service-hero-image {
    aspect-ratio: 16/10;
  }
}

/* Premium Social Proof Section */
.social-proof-section {
  padding: 100px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}
.reviews-meta-summary {
  text-align: center;
  margin-bottom: 50px;
}
.reviews-stars-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.review-card:hover {
  border-color: var(--purple-300);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.review-stars {
  color: var(--yellow-500);
  letter-spacing: 1px;
}
.review-badge-verified {
  background: var(--green-50);
  color: var(--green-600);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-heading);
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.review-name {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.95rem;
}
.review-info {
  font-size: 0.75rem;
  color: var(--gray-400);
}
@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


