/* ============================================================
   CLOWNBUGGIE ENTERTAINMENT — STYLESHEET
   ============================================================ */

:root {
  --purple:    #7C3AED;
  --purple-l:  #A78BFA;
  --purple-d:  #5B21B6;
  --yellow:    #FCD34D;
  --yellow-d:  #F59E0B;
  --pink:      #EC4899;
  --teal:      #06B6D4;
  --green:     #10B981;
  --orange:    #F97316;
  --bg:        #FAFAF9;
  --bg-dark:   #1E1B4B;
  --text:      #1F2937;
  --text-light:#6B7280;
  --white:     #FFFFFF;
  --radius:    16px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(124,58,237,.12);
  --shadow-lg: 0 12px 48px rgba(124,58,237,.18);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .4rem 1rem; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover { background: var(--purple-d); transform: translateY(-2px); box-shadow: var(--shadow); }

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

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

/* ── NAV ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: var(--transition);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--text);
}
.logo-bug { font-size: 1.8rem; }
.logo-accent { color: var(--purple); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: .45rem 1.2rem;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--purple-d) !important; }

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

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(91,33,182,.82) 0%,
    rgba(124,58,237,.68) 40%,
    rgba(236,72,153,.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 8rem 1.25rem 4rem;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.18);
  display: inline-block;
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 32px rgba(0,0,0,.2);
}
.hero-accent {
  color: var(--yellow);
  display: inline-block;
  animation: pulse-color 3s ease-in-out infinite;
}
@keyframes pulse-color {
  0%,100% { color: var(--yellow); }
  50%      { color: #FDE68A; }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  opacity: .92;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
}
.scroll-arrow {
  animation: bounce 2s infinite;
  font-size: 1.4rem;
  margin-top: .25rem;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 2px solid rgba(124,58,237,.08);
  padding: 2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: .95rem; font-weight: 800; }
.trust-item p { font-size: .82rem; color: var(--text-light); margin: 0; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 5rem 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header--light .section-title,
.section-header--light .section-sub { color: var(--white); }
.section-header--light .section-eyebrow { color: var(--yellow); }

.section-eyebrow {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: .5rem;
}
.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ── SERVICES ────────────────────────────────────────────── */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }

.service-price-badge {
  position: absolute;
  top: .75rem; right: .75rem;
  background: var(--yellow);
  color: var(--text);
  font-size: .82rem;
  font-weight: 900;
  padding: .25rem .75rem;
  border-radius: 50px;
}

.service-body {
  padding: 1.5rem;
}
.service-tag {
  display: inline-block;
  background: rgba(124,58,237,.1);
  color: var(--purple);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.service-body h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: .6rem;
}
.service-body p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.service-features {
  display: grid;
  gap: .3rem;
  margin-bottom: 1.25rem;
}
.service-features li {
  font-size: .85rem;
  font-weight: 700;
  padding-left: 1.2em;
  position: relative;
  color: var(--text);
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

/* ── PACKAGES ────────────────────────────────────────────── */
.packages-section {
  background: linear-gradient(135deg, var(--purple-d) 0%, var(--purple) 50%, var(--pink) 100%);
  position: relative;
  overflow: hidden;
}
.packages-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -200px; right: -200px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 3rem;
}

.package-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  position: relative;
  transition: var(--transition);
}
.package-card:hover { transform: translateY(-6px); }

.package-card--popular {
  background: var(--white);
  color: var(--text);
  border-color: var(--yellow);
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
  transform: scale(1.04);
}
.package-card--popular:hover { transform: scale(1.04) translateY(-6px); }
.package-card--popular .package-price span { color: var(--purple); }
.package-card--popular .package-features li::before { color: var(--purple); }
.package-card--popular .package-tagline { color: var(--text-light); }

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--text);
  font-size: .8rem;
  font-weight: 900;
  padding: .3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.package-header { text-align: center; margin-bottom: 1.5rem; }
.package-header h3 { font-family: 'Pacifico', cursive; font-size: 1.4rem; margin-bottom: .5rem; }
.package-price span {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.package-tagline { font-size: .85rem; opacity: .8; margin-top: .25rem; }

.package-features {
  display: grid;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.package-features li {
  font-size: .88rem;
  font-weight: 700;
  padding-left: 1.4em;
  position: relative;
}
.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.package-card--popular .package-features li::before { color: var(--green); }
.package-card .btn-primary { background: var(--yellow); color: var(--text); }
.package-card .btn-primary:hover { background: var(--yellow-d); }
.package-card .btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.package-card .btn-outline:hover { background: rgba(255,255,255,.2); }
.package-card--popular .btn-outline { border-color: var(--purple); color: var(--purple); }
.package-card--popular .btn-outline:hover { background: var(--purple); color: var(--white); }
.package-card .btn { width: 100%; justify-content: center; }

.packages-subheading {
  text-align: center;
  margin-bottom: 1.75rem;
}
.packages-subheading h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.6rem;
  color: var(--white);
}
.packages-subheading p {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 600;
  margin-top: .4rem;
}

.packages-grid--5 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) { .packages-grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .packages-grid--5 { grid-template-columns: 1fr; } }

/* School Carnival grid */
.carnival-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) { .carnival-packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .carnival-packages-grid { grid-template-columns: 1fr; } }

.carnival-pkg {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.carnival-pkg:hover { transform: translateY(-4px); background: rgba(255,255,255,.16); }
.carnival-pkg--featured {
  background: var(--white);
  color: var(--text);
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.carnival-pkg--featured .carnival-pkg-price { color: var(--purple); }
.carnival-pkg--featured p { color: var(--text-light); }

.carnival-pkg-name {
  font-family: 'Pacifico', cursive;
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.carnival-pkg-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: .5rem;
}
.carnival-pkg p {
  font-size: .82rem;
  opacity: .8;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.carnival-pkg .btn { width: 100%; justify-content: center; }
.carnival-pkg .btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.carnival-pkg .btn-outline:hover { background: rgba(255,255,255,.2); }
.carnival-pkg--featured .btn-primary { background: var(--yellow); color: var(--text); }
.carnival-pkg--featured .btn-primary:hover { background: var(--yellow-d); }

.carnival-callout {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 2rem;
}
.carnival-callout-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--white);
}
.carnival-callout-content h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: .5rem; }
.carnival-callout-content p { font-size: .95rem; opacity: .88; max-width: 620px; }
.carnival-callout .btn-primary { background: var(--yellow); color: var(--text); flex-shrink: 0; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img-wrap img {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-stat-card {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--yellow);
  color: var(--text);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-stat-card strong { display: block; font-family: 'Pacifico', cursive; font-size: 2.5rem; }
.about-stat-card span { font-size: .9rem; font-weight: 800; }

.about-content h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.highlight { color: var(--purple); }
.about-content p { font-size: .97rem; color: var(--text-light); margin-bottom: 1rem; font-weight: 600; }
.about-content p strong { color: var(--text); }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.pillar {
  background: rgba(124,58,237,.06);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  text-align: center;
}
.pillar-icon { font-size: 1.8rem; display: block; margin-bottom: .4rem; }
.pillar strong { display: block; font-size: .88rem; font-weight: 900; margin-bottom: .25rem; }
.pillar p { font-size: .8rem; color: var(--text-light); margin: 0; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(124,58,237,.05) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--purple);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { font-size: 1.1rem; margin-bottom: .75rem; }
.review-card p { font-size: .97rem; color: var(--text); font-style: italic; margin-bottom: 1rem; }
.review-card footer { font-size: .85rem; color: var(--purple); font-weight: 800; font-style: normal; }

/* ── BOOKING ─────────────────────────────────────────────── */
.book-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #312e81 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-info h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.booking-steps {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
}
.booking-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--white);
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--text);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-steps strong { display: block; font-size: .95rem; font-weight: 900; margin-bottom: .2rem; }
.booking-steps p { font-size: .85rem; opacity: .8; margin: 0; }

.booking-contact { color: var(--white); }
.booking-contact p { font-size: .88rem; opacity: .8; margin-bottom: .5rem; }
.phone-link {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yellow);
  transition: var(--transition);
}
.phone-link:hover { opacity: .8; }

.calendly-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 700px;
}

.calendly-fallback {
  display: none;
  height: 100%;
  min-height: 400px;
  align-items: center;
  justify-content: center;
}
.fallback-box {
  text-align: center;
  padding: 3rem;
}
.fallback-box h3 { font-family: 'Pacifico', cursive; font-size: 1.6rem; margin-bottom: 1rem; }
.fallback-box p { color: var(--text-light); margin-bottom: 1.5rem; }
.or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--text-light);
}
.or-divider::before, .or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

/* ── PAYMENT ─────────────────────────────────────────────── */
.payment-section { background: var(--bg); }

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.payment-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.payment-card-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.payment-icon { font-size: 2.5rem; display: block; margin-bottom: .75rem; }
.payment-card-header h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: .4rem; }
.payment-note { font-size: .88rem; color: var(--text-light); font-weight: 600; }

.payment-form {
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
}

.form-group { display: grid; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 800; color: var(--text); }
.form-group input,
.form-group select {
  padding: .65rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--purple); }

.stripe-element {
  padding: .65rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
  min-height: 44px;
}
.stripe-element.StripeElement--focus { border-color: var(--purple); }
.stripe-element.StripeElement--invalid { border-color: #EF4444; }

.form-error {
  font-size: .82rem;
  color: #EF4444;
  font-weight: 700;
  min-height: 1rem;
}

.payment-secure {
  font-size: .78rem;
  text-align: center;
  color: var(--text-light);
  font-weight: 600;
}

.payment-success {
  padding: 3rem 2rem;
  text-align: center;
}
.success-icon { font-size: 4rem; display: block; margin-bottom: 1rem; }
.payment-success h4 { font-family: 'Pacifico', cursive; font-size: 1.6rem; margin-bottom: .5rem; color: var(--green); }
.payment-success p { color: var(--text-light); font-weight: 600; }

.manual-options {
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}
.manual-option { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,.06); }
.manual-option:last-child { border-bottom: none; padding-bottom: 0; }
.manual-option h4 { font-weight: 900; font-size: .95rem; margin-bottom: .35rem; }
.manual-option p { font-size: .88rem; color: var(--text-light); margin-bottom: .75rem; font-weight: 600; }

.manual-note {
  background: rgba(245,158,11,.08);
  border-left: 4px solid var(--yellow-d);
  margin: 0 2rem 2rem;
  padding: 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .85rem;
  color: var(--text);
  font-weight: 600;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid rgba(124,58,237,.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--purple-l); }
.faq-item[open] { border-color: var(--purple); }

.faq-item summary {
  padding: 1rem 1.25rem;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--purple);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  font-size: .9rem;
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.7;
}

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--purple-d) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-content { color: var(--white); }
.cta-content h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
.cta-content p { font-size: 1.1rem; opacity: .9; font-weight: 600; margin-bottom: 2rem; }
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .btn-primary { background: var(--yellow); color: var(--text); }
.cta-banner .btn-primary:hover { background: var(--yellow-d); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; opacity: .7; font-weight: 600; line-height: 1.7; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--purple); }

.footer-links h4 {
  font-size: .9rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-links ul { display: grid; gap: .5rem; }
.footer-links a { font-size: .85rem; opacity: .7; font-weight: 600; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--yellow); }

.footer-contact h4 {
  font-size: .9rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-contact a { color: var(--yellow); font-weight: 700; }
.footer-contact p { font-size: .85rem; opacity: .7; font-weight: 600; margin-bottom: .5rem; }

.footer-bottom {
  padding: 1.5rem;
  text-align: center;
  font-size: .82rem;
  opacity: .5;
  font-weight: 600;
}
.footer-bottom a { color: var(--yellow); }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 50;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--purple-d); transform: translateY(-3px); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-grid .calendly-wrap { min-height: 600px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card--popular { transform: scale(1); }
  .payment-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 300px; }
  .about-stat-card { right: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .carnival-callout-content { flex-direction: column; text-align: center; }
  .about-pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
