/* Actively Play - Shared Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #326BF0;
  --blue-dark: #1a55d4;
  --lime: #a3e635;
  --lime-hover: #bef264;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-50: #f8fafc;
  --white: #ffffff;
}

body { font-family: 'Inter', system-ui, sans-serif; color: var(--slate-900); background: #fff; }

/* NAV */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--blue); border-bottom: 1px solid #1a55d4;
}
nav.main-nav .nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
nav.main-nav .nav-logo { display: flex; align-items: center; gap: 32px; }
nav.main-nav .nav-logo img { height: 48px; opacity: 1; transition: opacity 0.2s; cursor: pointer; }
nav.main-nav .nav-logo img:hover { opacity: 0.8; }
nav.main-nav .nav-links { display: none; align-items: center; gap: 24px; }
@media(min-width:1024px) { nav.main-nav .nav-links { display: flex; } }
nav.main-nav .nav-links a { color: #fff; text-decoration: none; font-weight: 500; transition: color 0.2s; }
nav.main-nav .nav-links a:hover, nav.main-nav .nav-links a.active { color: var(--lime); }
nav.main-nav .nav-contact { display: none; align-items: center; gap: 24px; color: #fff; font-size: 14px; }
@media(min-width:768px) { nav.main-nav .nav-contact { display: flex; } }
nav.main-nav .nav-contact a { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
nav.main-nav .nav-contact a:hover { color: var(--lime); }
nav.main-nav .nav-contact .sep { color: #93c5fd; }

/* HERO */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.90) 50%, rgba(2,6,23,0.90) 100%);
}
.hero-glow-1 { position: absolute; top: 80px; left: 40px; width: 288px; height: 288px; background: rgba(163,230,53,0.2); border-radius: 50%; filter: blur(48px); }
.hero-glow-2 { position: absolute; bottom: 80px; right: 40px; width: 384px; height: 384px; background: rgba(250,204,21,0.15); border-radius: 50%; filter: blur(48px); }
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 24px; max-width: 960px; margin: 0 auto; }
.hero-badge { display: inline-block; padding: 8px 24px; background: var(--lime); color: #1e3a8a; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 9999px; margin-bottom: 32px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.hero h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; color: #fff; margin-bottom: 24px; line-height: 1.05; }
.hero h1 span { display: block; color: var(--lime); text-shadow: 0 4px 20px rgba(163,230,53,0.4); }
.hero p { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: #bfdbfe; margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; font-weight: 300; }
.trust-badges { margin-top: 64px; display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; color: rgba(255,255,255,0.8); }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.trust-dot { width: 12px; height: 12px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }
.clients-callout { margin-top: 48px; padding: 24px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border-radius: 16px; border: 1px solid rgba(255,255,255,0.2); max-width: 768px; margin-left: auto; margin-right: auto; }
.clients-callout p:first-child { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.clients-callout p:last-child { color: var(--lime); font-weight: 700; font-size: 1rem; }

/* CTA BUTTONS */
.cta-group { display: flex; flex-direction: column; gap: 16px; justify-content: center; align-items: center; }
@media(min-width:640px) { .cta-group { flex-direction: row; } }
.btn-book, .btn-quote { border: none; cursor: pointer; border-radius: 9999px; font-weight: 700; padding: 16px 40px; font-size: 1rem; transition: all 0.3s; display: flex; flex-direction: column; align-items: center; }
.btn-book { background: var(--lime); color: #1e3a8a; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.btn-book:hover { background: var(--lime-hover); transform: scale(1.05); box-shadow: 0 20px 40px rgba(163,230,53,0.3); }
.btn-quote-dark { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 2px solid #fff; color: #fff; }
.btn-quote-dark:hover { background: #fff; color: #1e3a8a; transform: scale(1.05); }
.btn-quote-light { background: transparent; border: 2px solid var(--blue); color: var(--blue); }
.btn-quote-light:hover { background: var(--blue); color: #fff; transform: scale(1.05); }
.btn-label-main { font-size: 1.25rem; display: flex; align-items: center; gap: 8px; }
.btn-label-sub { font-size: 0.85rem; font-weight: 500; opacity: 0.8; margin-top: 2px; }

/* FEATURES SECTION */
.features-section { padding: 80px 0; background: linear-gradient(to bottom, var(--slate-50), #fff); }
.features-inner { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.section-heading { text-align: center; margin-bottom: 64px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--slate-900); margin-bottom: 16px; }
.section-heading h2 span { color: var(--blue); }
.section-heading p { font-size: 1.2rem; color: var(--slate-600); max-width: 512px; margin: 0 auto; }
.features-grid { display: grid; gap: 32px; }
@media(min-width:640px) { .features-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .features-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }
.feature-card { background: #fff; padding: 32px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: box-shadow 0.3s; text-align: center; }
.feature-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.feature-icon { width: 64px; height: 64px; background: var(--lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.feature-icon svg { width: 32px; height: 32px; color: #1e3a8a; }
.feature-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--slate-900); margin-bottom: 12px; }
.feature-card p { color: var(--slate-600); }

/* CTA BANNER */
.cta-banner { background: var(--blue); border-radius: 24px; padding: 48px; text-align: center; color: #fff; margin: 48px 0; }
.cta-banner h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 900; margin-bottom: 24px; }
.cta-banner p { font-size: 1.2rem; margin-bottom: 32px; max-width: 512px; margin-left: auto; margin-right: auto; }

/* SOCIAL PROOF */
.social-proof { padding: 80px 0; background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%); }
.social-proof-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.social-proof-grid { display: grid; gap: 32px; margin-bottom: 48px; }
@media(min-width:768px) { .social-proof-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.review-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.review-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.review-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--lime); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-avatar svg { width: 28px; height: 28px; color: #1e3a8a; }
.review-meta h4 { font-weight: 700; color: var(--slate-900); }
.review-meta p { font-size: 13px; color: var(--slate-600); }
.stars { display: flex; gap: 4px; margin-top: 8px; }
.stars svg { width: 16px; height: 16px; fill: #facc15; color: #facc15; }
.review-text { color: var(--slate-700); line-height: 1.6; }
.carousel-wrap { background: #fff; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); overflow: hidden; position: relative; min-height: 280px; }
.carousel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.7s; }
.carousel-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); padding: 16px; padding-bottom: 36px; }
.carousel-overlay h4 { font-weight: 700; color: #fff; font-size: 1.1rem; }
.carousel-overlay .loc { display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.8); font-size: 13px; }
.carousel-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 10; }
.carousel-dot { width: 6px; height: 6px; border-radius: 9999px; background: rgba(255,255,255,0.6); border: none; cursor: pointer; transition: all 0.3s; }
.carousel-dot.active { background: #fff; width: 12px; }
.video-wrap { background: #fff; border-radius: 16px; padding: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); position: relative; }
.video-wrap video { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 9/16; }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; border-radius: 12px; cursor: pointer; background: none; border: none; }
.video-play-btn .play-circle { background: rgba(255,255,255,0.9); border-radius: 50%; padding: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: transform 0.2s; }
.video-play-btn:hover .play-circle { transform: scale(1.1); }
.video-play-btn svg { width: 48px; height: 48px; fill: #2563eb; color: #2563eb; margin-left: 4px; }
.sp-cta { text-align: center; margin-top: 32px; }
.sp-cta p { font-size: 1.5rem; font-weight: 700; color: var(--slate-900); margin-bottom: 24px; }

/* WHATS APART */
.whats-apart { padding: 64px 0; background: #fff; }
.whats-apart-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; gap: 48px; align-items: center; }
@media(min-width:1024px) { .whats-apart-inner { grid-template-columns: 1fr 1fr; } }
.whats-apart img { width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.whats-apart h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--slate-900); margin-bottom: 24px; }
.whats-apart p { font-size: 1.1rem; color: var(--slate-600); line-height: 1.7; margin-bottom: 32px; }

/* QUOTE FORM */
#quote-form { position: relative; padding: 64px 0; overflow: hidden; }
.quote-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.quote-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.6); }
.quote-inner { position: relative; z-index: 10; max-width: 896px; margin: 0 auto; padding: 0 24px; }
.quote-card { background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); overflow: hidden; }
.quote-header { background: var(--blue); padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; }
.quote-header h2 { font-size: 1.875rem; font-weight: 700; color: #fff; }
.quote-header img { height: 40px; opacity: 1; transition: opacity 0.2s; cursor: pointer; }
.quote-header img:hover { opacity: 0.8; }
.quote-body { padding: 16px; }
.quote-body iframe { width: 100%; height: 654px; border: none; border-radius: 10px; }

/* FOOTER */
footer.main-footer { background: var(--blue); padding: 32px 0; }
footer.main-footer .footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; gap: 32px; }
@media(min-width:768px) { footer.main-footer .footer-inner { grid-template-columns: 1fr 1fr 1fr; } }
footer.main-footer img { height: 48px; margin-bottom: 16px; }
footer.main-footer p, footer.main-footer a { color: rgba(255,255,255,0.8); font-size: 14px; text-decoration: none; }
footer.main-footer a:hover { color: var(--lime); }
footer.main-footer h4 { color: #fff; font-weight: 700; margin-bottom: 16px; }
footer.main-footer .footer-link { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
footer.main-footer .footer-link svg { width: 16px; height: 16px; }
footer.main-footer .copy { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 16px; }

/* BOOKING MODAL - see bottom of file */

/* SCROLL ANIMATIONS */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
.animate-on-scroll.from-left { transform: translateX(-30px); }
.animate-on-scroll.from-right { transform: translateX(30px); }
.animate-on-scroll.visible { opacity: 1; transform: none; }

/* HOME PAGE CATEGORIES */
.category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; max-width: 512px; margin-left: auto; margin-right: auto; }
@media(min-width:1024px) { .category-grid { grid-template-columns: repeat(4, 1fr); max-width: none; gap: 48px; } }
.category-card { text-decoration: none; display: flex; flex-direction: column; align-items: center; cursor: pointer; }
.category-thumb { width: 128px; height: 128px; border-radius: 50%; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.3); margin-bottom: 16px; border: 4px solid var(--lime); transition: border-color 0.3s; position: relative; }
@media(min-width:768px) { .category-thumb { width: 192px; height: 192px; } }
.category-card:hover .category-thumb { border-color: var(--lime-hover); }
.category-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.category-card:hover .category-thumb img { transform: scale(1.1); }
.category-thumb::after { content: ''; position: absolute; inset: 0; background: rgba(30,58,138,0.3); transition: background 0.3s; }
.category-card:hover .category-thumb::after { background: rgba(30,58,138,0.5); }
.category-card h3 { font-size: 1rem; font-weight: 700; color: var(--lime); text-align: center; transition: color 0.2s; }
@media(min-width:768px) { .category-card h3 { font-size: 1.5rem; } }
.category-card:hover h3 { color: var(--lime-hover); }

/* HOME HERO SPECIFIC */
.home-hero-text p.pre { font-size: clamp(1.2rem, 2.5vw, 2rem); color: #fff; font-weight: 700; margin-bottom: 16px; }
.home-hero-text h1 { font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 900; color: var(--lime); margin-bottom: 16px; line-height: 0.95; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.home-hero-text p.sub { font-size: clamp(1.1rem, 2vw, 1.75rem); color: rgba(255,255,255,0.9); font-weight: 500; margin-bottom: 40px; }
.home-hero-text p.choose { font-size: 13px; color: rgba(163,230,53,0.8); text-transform: uppercase; letter-spacing: 0.3em; font-weight: 600; }

/* ICON SECTION (same as features, reuse) */
.icon-section { padding: 80px 0; background: linear-gradient(to bottom, #f8fafc, #fff); }

/* BOOKING MODAL - GHL Calendar */
#booking-modal {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.6); align-items: center; justify-content: center;
  padding: 16px;
}
#booking-modal.open { display: flex; }
.booking-modal-box {
  background: #fff; border-radius: 16px; width: 100%; max-width: 768px;
  height: 95vh; max-height: 95vh; overflow: auto; position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}
.booking-modal-close {
  position: absolute; right: 16px; top: 16px; z-index: 10;
  background: rgba(0,0,0,0.1); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; display: flex;
  align-items: center; justify-content: center; opacity: 0.7; transition: opacity 0.2s;
}
.booking-modal-close:hover { opacity: 1; }
.booking-modal-close svg { width: 16px; height: 16px; }
.booking-modal-box iframe {
  width: 100%; height: 100%; border: none; min-height: 800px; border-radius: 16px;
}
