/* Base styles */
:root {
  --pink: #ff4da6;
  --black: #000000;
  --white: #111111;
  --muted: #9aa3af;
  --bg: #ffffff;
  --card: #000000;
  --border: #222;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Poppins', system-ui, -apple-system, Arial, sans-serif; color: var(--white); background: var(--bg); }
a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; width: auto; height: auto; padding: 8px; background: var(--pink); color: var(--black); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.tiny { font-size: 12px; }
.pill { display: inline-block; margin-left: 8px; padding: 4px 10px; border: 1px solid var(--pink); border-radius: 999px; font-size: 14px; color: var(--pink); }

.btn { display:inline-block; padding: 12px 18px; border-radius: 10px; border: 1px solid var(--border); background: #ffffff; color: #111111; font-weight: 600; transition: transform .1s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--pink); border-color: var(--pink); color: var(--black); }
.btn-ghost { background: transparent; border-color: var(--border); }
.btn-outline { background: transparent; border-color: var(--pink); color: var(--pink); }

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 20px; }
.nav a { margin-left: 16px; }
.brand { display:flex; align-items:center; gap:10px; color: var(--white); }
.brand-text small { color: #6b7280; font-weight: 400; display:block; line-height: 1; font-size: 12px; }

.hero { padding: 80px 0 40px; background: radial-gradient(1200px 600px at 20% -10%, rgba(255,77,166,0.10), transparent 60%); }
.hero-inner { text-align: left; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; margin: 0 0 12px; }
.hero p { font-size: 18px; color: var(--muted); max-width: 700px; }
.trust { list-style: none; display: flex; gap: 14px; padding: 0; margin: 18px 0 0; color: var(--muted); }
.cta { margin: 20px 0; display: flex; gap: 12px; flex-wrap: wrap; }

.section { padding: 56px 0; }
.section.alt { background: #0e0e0f; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; align-items: start; }
.price-card { background: linear-gradient(180deg, #121214, #0e0e10); border: 1px solid var(--border); border-radius: 16px; padding: 18px; }
.price-card .price { font-size: 34px; font-weight: 700; margin: 6px 0 10px; }
.price-card .price span { font-size: 18px; color: var(--muted); }

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.badge { background: var(--card); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; color: var(--muted); }

.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 16px; }
blockquote { margin: 0; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
blockquote p { margin: 0 0 8px; }

.contact .quote-form { display: grid; gap: 14px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; }
.quote-form .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 12px; }
label { display: grid; gap: 6px; font-size: 14px; color: var(--muted); }
input, select, textarea { width: 100%; padding: 12px 12px; border-radius: 10px; border: 1px solid var(--border); background: #0c0c0d; color: var(--white); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--pink); outline-offset: 2px; }
.form-actions { display:flex; align-items:center; gap: 12px; flex-wrap: wrap; }

.site-footer { border-top: 1px solid var(--border); background: #0a0a0a; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; padding: 20px 0; }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin: 6px 0; }
.footer-contact a { color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}


/* Google Form embed */
.gform-embed { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 0; overflow: hidden; }
.gform-embed iframe { width: 100%; height: 1100px; border: 0; display: block; background: #fff; color: #000; }
@media (max-width: 480px) {
  .gform-embed iframe { height: 1250px; }
}

/* White theme adjustments */
.card, .price-card { background: var(--card); color: #ffffff; border: 1px solid #111111; }
.card h3, .card p, .card li { color: #ffffff; }
.section.alt { background: #fafafa; }
.site-footer { background: #ffffff; }
.footer-contact a { color: #111111; }
.nav a { color: #111111; }
.brand { color: #111111; }


/* Header nav adjustments */
.nav { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; }
.nav img { max-height: 60px; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-contact { margin-left: 20px; }
.nav-contact .phone { font-weight: 600; color: #111111; text-decoration: none; }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; }

@media (max-width: 768px) {
  .nav { flex-wrap: wrap; }
  .nav img { max-height: 50px; }
  .nav-toggle { display: block; }
  .nav-links, .nav-contact { display: none; width: 100%; text-align: center; margin-top: 10px; }
  .nav-links a { display: block; padding: 10px 0; }
  .nav-contact .phone { display: block; padding: 12px; background: #ff4da6; color: #000; border-radius: 8px; margin: 10px auto; width: fit-content; }
  .nav.open .nav-links, .nav.open .nav-contact { display: block; }
}

/* Hero text scaling tweak already adjusted in HTML replacement */


/* ====== FAQ added in nav; Mobile dropdown overlay & drawer ====== */
.nav-links .nav-book { font-weight: 700; }

/* Overlay covers page when menu open */
.nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 8; display: none; }
.nav-overlay.show { display: block; }

/* Ensure header stays on top of overlay */
.site-header { position: sticky; top: 0; z-index: 9; }

@media (max-width: 768px) {
  /* Turn nav links into a white drawer panel */
  .nav-links { 
    background: #ffffff; 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    margin-top: 8px; 
    padding: 8px; 
  }
  .nav-links a { display: block; padding: 12px; color: #111111; text-decoration: none; border-radius: 8px; }
  .nav-links a:hover { background: #f4f4f5; }
  /* Make Book Now pop */
  .nav-links .nav-book { 
    display: block; 
    text-align: center; 
    margin: 6px 4px 2px; 
    font-weight: 800; 
  }
}


/* --- Explicit mobile visibility rules for nav --- */
@media (max-width: 768px) {
  .nav-links, .nav-contact { display: none; }
  .nav.open .nav-links, .nav.open .nav-contact { display: block; }
  .site-header { z-index: 1000; } /* ensure header sits above overlay */
  .nav-overlay { z-index: 900; }
}


/* ===== Solid backdrop & full-screen mobile drawer ===== */
@media (max-width: 768px) {
  /* Solid black backdrop */
  .nav-overlay { background: rgba(0,0,0,0.92) !important; }

  /* Full-screen drawer from top */
  .nav.open .nav-links, .nav.open .nav-contact {
    display: block;
    position: fixed;
    top: 64px; /* below header */
    left: 0; right: 0; bottom: 0;
    background: #ffffff;
    padding: 12px 16px 24px;
    overflow-y: auto;
    z-index: 1001;
    border-radius: 12px 12px 0 0;
  }

  .nav-links a { 
    display: block; 
    padding: 14px 12px; 
    font-size: 18px; 
    border-radius: 10px; 
    margin: 4px 0; 
  }
  .nav-links .nav-book { 
    font-size: 18px; 
    font-weight: 800; 
    text-align: center; 
    margin-top: 8px; 
  }

  /* Phone button inside drawer */
  .nav-contact .phone { 
    display: block; 
    text-align: center; 
    padding: 14px; 
    margin: 12px 0 4px; 
    background: #ff4da6; 
    color: #000; 
    border-radius: 10px; 
    font-weight: 800;
  }
}


/* ==== Full-screen mobile menu (robust) ==== */
@media (max-width: 768px) {
  /* Overlay below drawer */
  .nav-overlay { background: rgba(0,0,0,0.92) !important; z-index: 1000 !important; }

  /* Drawer above overlay, covers entire viewport */
  .nav.open #siteNav {
    display: block !important;
    position: fixed;
    inset: 0;
    background: #ffffff;
    padding: 20px 16px 28px;
    overflow-y: auto;
    z-index: 1100;
  }

  /* Close button inside drawer */
  .nav-close {
    position: absolute;
    top: 10px; right: 14px;
    font-size: 28px;
    line-height: 1;
    border: 0;
    background: transparent;
    color: #111;
    cursor: pointer;
  }

  /* Menu items inside drawer */
  #siteNav a {
    display: block;
    padding: 14px 12px;
    font-size: 18px;
    border-radius: 10px;
    margin: 6px 0;
    color: #111111;
    text-decoration: none;
  }
  #siteNav a:hover { background: #f4f4f5; }

  /* Emphasize Book Now */
  #siteNav .nav-book {
    text-align: center;
    font-weight: 800;
    margin-top: 10px;
  }

  /* Phone call button pinned near bottom inside drawer */
  .nav.open .nav-contact {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 20px;
    z-index: 1101;
    display: block !important;
  }
  .nav.open .nav-contact .phone {
    display: block;
    text-align: center;
    padding: 14px;
    background: #ff4da6;
    color: #000;
    border-radius: 10px;
    font-weight: 800;
  }
}


/* ===== Ensure menu items are visible & tappable ===== */
@media (max-width: 768px) {
  .nav.open #siteNav {
    display: block !important;
    position: fixed;
    inset: 0;
    background: #ffffff;
    padding: calc(16px + env(safe-area-inset-top)) 18px 90px 18px; /* top padding for notch */
    overflow-y: auto;
    z-index: 1100;
  }
  #siteNav .menu { list-style: none; margin: 40px 0 0; padding: 0; }
  #siteNav .menu li { margin: 6px 0; }
  #siteNav .menu a {
    display: block;
    padding: 16px 14px;
    font-size: 20px;
    border-radius: 12px;
    color: #111111;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    background: #fff;
  }
  #siteNav .menu a:hover { background: #f4f4f5; }
  #siteNav .menu .nav-book {
    text-align: center;
    font-weight: 800;
    border-color: transparent;
  }
  /* Close button spacing from safe area */
  .nav-close { top: calc(8px + env(safe-area-inset-top)); right: 14px; }
  /* Pink phone button at bottom */
  .nav.open .nav-contact {
    position: fixed;
    left: 16px; right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 1101;
    display: block !important;
  }
}


/* ===== Hardening the full-screen drawer so items are visible on iOS Safari ===== */
@media (max-width: 768px) {
  /* Put overlay below drawer */
  .nav-overlay { background: rgba(0,0,0,0.94) !important; z-index: 1000 !important; }

  /* Drawer — truly full screen, no rounding, highest z-index */
  .nav.open #siteNav {
    display: block !important;
    position: fixed !important;
    top: 0; right: 0; bottom: 0; left: 0;
    min-height: 100dvh; /* dynamic viewport height for mobile */
    background: #ffffff !important;
    border-radius: 0 !important;
    padding: calc(72px + env(safe-area-inset-top)) 18px calc(110px + env(safe-area-inset-bottom)) 18px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    z-index: 1200 !important;
  }

  /* Close button bar (always visible) */
  .nav-close {
    position: fixed !important;
    top: calc(16px + env(safe-area-inset-top));
    right: 16px;
    font-size: 28px;
    background: transparent;
    border: 0;
    color: #111;
    z-index: 1201 !important;
  }

  /* Menu items */
  #siteNav .menu { list-style: none; margin: 0; padding: 0; }
  #siteNav .menu li { margin: 8px 0; }
  #siteNav .menu a {
    display: block;
    padding: 16px;
    font-size: 20px;
    border-radius: 12px;
    color: #111 !important;
    background: #fff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
  }
  #siteNav .menu a:hover { background: #f4f4f5; }
  #siteNav .menu .nav-book { text-align: center; font-weight: 800; border-color: transparent; }

  /* Phone button pinned to bottom */
  .nav.open .nav-contact {
    position: fixed !important;
    left: 16px; right: 16px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 1201 !important;
    display: block !important;
  }
  .nav.open .nav-contact .phone {
    display: block;
    text-align: center;
    padding: 16px;
    background: #ff4da6;
    color: #000;
    border-radius: 12px;
    font-weight: 800;
    border: 0;
  }
}


/* ===== Pink-on-black full-screen modal menu (mobile) ===== */
@media (max-width: 768px) {
  /* Solid black backdrop */
  .nav-overlay { background: #000 !important; opacity: 1 !important; z-index: 1300 !important; }

  /* Modal fills the screen with black background */
  .nav.open #siteNav {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    min-height: 100dvh;
    background: #000000 !important;
    padding: calc(80px + env(safe-area-inset-top)) 18px calc(120px + env(safe-area-inset-bottom)) 18px !important;
    overflow-y: auto !important;
    z-index: 1400 !important;
  }

  /* Close button visible in pink */
  .nav-close {
    position: fixed !important;
    top: calc(16px + env(safe-area-inset-top));
    right: 16px;
    font-size: 30px;
    line-height: 1;
    border: 0;
    background: transparent;
    color: #ff4da6 !important;
    z-index: 1401 !important;
  }

  /* Big pink buttons for each option */
  #siteNav .menu { list-style: none; margin: 0; padding: 0; }
  #siteNav .menu li { margin: 10px 0; }
  #siteNav .menu a {
    display: block;
    padding: 16px;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    background: #ff4da6 !important;
    color: #000 !important;
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid #ff4da6;
  }
  #siteNav .menu a:active { transform: scale(0.99); }

  /* "Book Now" can be slightly larger */
  #siteNav .menu .nav-book { font-size: 22px; }

  /* Phone call button also pink, pinned bottom */
  .nav.open .nav-contact {
    position: fixed !important;
    left: 18px; right: 18px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 1401 !important;
    display: block !important;
  }
  .nav.open .nav-contact .phone {
    display: block;
    text-align: center;
    padding: 16px;
    background: #ff4da6 !important;
    color: #000 !important;
    border-radius: 14px;
    font-weight: 900;
    border: 2px solid #ff4da6;
  }
}


/* ===== Body-level full-screen mobile menu modal (bulletproof) ===== */
@media (max-width: 768px) {
  body.menu-open { overflow: hidden; }
  #mobileMenu {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999; /* highest */
    display: none;
    padding: calc(80px + env(safe-area-inset-top)) 18px calc(120px + env(safe-area-inset-bottom)) 18px;
    overflow-y: auto;
  }
  body.menu-open #mobileMenu { display: block !important; }
  .mmodal-close {
    position: fixed;
    top: calc(16px + env(safe-area-inset-top));
    right: 16px;
    font-size: 30px;
    background: transparent;
    border: 0;
    color: #ff4da6;
    z-index: 10000;
  }
  .mmenu { list-style: none; margin: 0; padding: 0; }
  .mmenu li { margin: 10px 0; }
  .mmenu a {
    display: block;
    padding: 16px;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    background: #ff4da6;
    color: #000;
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid #ff4da6;
  }
  .mmenu .nav-book { font-size: 22px; }
  .mmodal-call {
    display: block;
    position: fixed;
    left: 18px; right: 18px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    text-align: center;
    padding: 16px;
    background: #ff4da6;
    color: #000;
    border-radius: 14px;
    font-weight: 900;
    border: 2px solid #ff4da6;
  }
}


/* ===== Solid top bar + no-bounce to avoid white peeking on iOS ===== */
@media (max-width: 768px) {
  .mmodal { 
    overscroll-behavior: none; 
    -webkit-overflow-scrolling: touch; 
    background: #000 !important; 
  }
  .mmodal-topbar {
    position: fixed;
    left: 0; right: 0;
    top: 0;
    height: calc(64px + env(safe-area-inset-top));
    background: #000; /* solid black cover under the close button */
    z-index: 10000;
  }
  /* Make sure content starts below topbar */
  body.menu-open #mobileMenu { 
    padding-top: calc(64px + env(safe-area-inset-top) + 24px) !important;
  }
  /* Keep the close button above the topbar */
  .mmodal-close { 
    position: fixed; 
    top: calc(16px + env(safe-area-inset-top)); 
    right: 16px; 
    z-index: 10001; 
  }
  /* Slightly reduce button corner radius to avoid edge artifacts */
  .mmenu a { border-radius: 12px !important; }
}


/* ===== Hide header behind modal; ensure pure black and phone visible ===== */
@media (max-width: 768px) {
  /* When menu open, hide site header entirely to prevent any white peeking */
  body.menu-open .site-header { visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }

  /* Modal dominance */
  #mobileMenu { z-index: 100000 !important; background: #000 !important; }
  .mmodal-topbar { background: #000 !important; z-index: 100001 !important; }
  .mmodal-close { z-index: 100002 !important; color: #ff4da6 !important; }

  /* Phone button pinned and visible */
  .mmodal-call {
    display: block !important;
    position: fixed !important;
    left: 18px; right: 18px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    text-align: center;
    padding: 16px;
    background: #ff4da6 !important;
    color: #000 !important;
    border-radius: 14px;
    font-weight: 900;
    border: 2px solid #ff4da6;
    z-index: 100002 !important;
  }
}


/* ===== FINAL: remove header entirely when menu is open ===== */
@media (max-width: 768px) {
  body.menu-open .site-header { display: none !important; }
  /* Keep pure black background under the notch */
  #mobileMenu, .mmodal-topbar { background: #000 !important; }
  /* Phone button visibility */
  .mmodal-call { display: block !important; }
}


/* ===== iOS lockdown: kill bounce + black out page while menu is open ===== */
html.menu-open, body.menu-open { background: #000 !important; }
@media (max-width: 768px) {
  body.menu-open .site-header { display: none !important; }
  #mobileMenu { z-index: 2147483647 !important; background: #000 !important; }
  .mmodal-topbar { background: #000 !important; }
  .mmodal-close { z-index: 2147483647 !important; }
  .mmodal-call { z-index: 2147483647 !important; display: block !important; }
}


/* Transparent header with new logo */
.nav { background: rgba(255,255,255,0.95) !important; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.nav img { max-height: 64px; height: auto; }
@media (max-width: 768px) {
  .nav img { max-height: 56px; }
}


/* Wide logo sizing (keep aspect ratio, about same size) */
.nav img { max-height: 64px; height: auto; width: auto; }
@media (max-width: 768px) {
  .nav img { max-height: 56px; }
}
/* Transparent/light header */
.nav { background: rgba(255,255,255,0.95); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
