/* ==========================================================
   DESIGN SYSTEM — North Shore Pool Boys Redesign
   Direction: Refined editorial / Premium local service
   Nav structure: PRESERVED EXACTLY from current site
   ========================================================== */
:root {
    --teal: #1a8cba;
    --teal-light: #2ba3d4;
    --teal-soft: #e0f2fa;
    --pool: #5cc8e6;
    --dark: #0c1a24;
    --charcoal: #112230;
    --slate: #1a2e3e;
    --stone: #4a6275;
    --ash: #7a95a8;
    --silver: #b0c7d6;
    --fog: #d4e8f2;
    --cloud: #e8f4fa;
    --snow: #f0f8fc;
    --white: #ffffff;
    --gold-star: #f0b429;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --max: 1160px;
    --r: 6px;
    --r-lg: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--slate);
    line-height: 1.6;
    background: var(--cloud);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ==========================================================
   TOP BAR
   ========================================================== */
.topbar {
    background: var(--dark);
    padding: 7px 0;
    font-size: 12.5px;
    color: var(--silver);
    letter-spacing: 0.01em;
}
.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.topbar a { color: var(--pool); font-weight: 500; transition: color 0.15s; }
.topbar a:hover { color: #fff; }
.topbar__r { display: flex; gap: 18px; align-items: center; }
.topbar__badge {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pool);
    border: 1px solid rgba(92,200,230,0.3);
    padding: 2px 8px;
    border-radius: 3px;
}

/* ==========================================================
   NAVIGATION — EXACT SAME STRUCTURE AS CURRENT SITE
   Pool (5 children), Hot Tub (2), Installation (3), Repair (1),
   About, Locations, Contact Us
   ========================================================== */
.nav {
    background: var(--white);
    border-bottom: 1px solid var(--fog);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}
.nav.stuck { box-shadow: 0 1px 16px rgba(0,0,0,0.06); }
.nav .wrap {
    display: flex;
    align-items: center;
    height: 90px;
    padding: 0 24px;
    max-width: 100%;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-right: 8px;
}
.nav__logo img { height: 90px; width: auto; }
.nav__logo-text {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.3;
    white-space: nowrap;
}

/* Desktop nav links */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-left: auto;
}
.nav__item {
    position: relative;
}
.nav__item > a,
.nav__item > button {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--slate);
    padding: 8px 8px;
    white-space: nowrap;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: var(--r);
    transition: color 0.15s, background 0.15s;
}
.nav__item > a:hover,
.nav__item > button:hover {
    color: var(--teal);
    background: var(--teal-soft);
}
.nav__chevron {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.2s;
}

/* Dropdown panel */
.nav__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--fog);
    border-radius: var(--r-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    min-width: 200px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 100;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav__item:hover .nav__chevron {
    transform: rotate(180deg);
}
.nav__dropdown a {
    display: block;
    padding: 9px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--slate);
    border-radius: var(--r);
    transition: background 0.12s, color 0.12s;
}
.nav__dropdown a:hover {
    background: var(--teal-soft);
    color: var(--teal);
}

/* Nav right side */
.nav__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 10px;
    white-space: nowrap;
}
.nav__phone {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate);
    transition: color 0.15s;
}
.nav__phone:hover { color: var(--teal); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.4;
    white-space: nowrap;
}
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: var(--teal-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,140,186,0.25); }
.btn--dark { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: #2a2b2d; transform: translateY(-1px); }
.btn--white { background: #fff; color: var(--charcoal); }
.btn--white:hover { background: var(--snow); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--ghost { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn--ghost:hover { background: var(--teal); color: #fff; }
.btn--lg { padding: 13px 26px; font-size: 15px; }
.btn--full { width: 100%; }

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
}
.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--charcoal); position: absolute; left: 0;
    transition: 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* ==========================================================
   MOBILE MENU — Same exact structure, accordion dropdowns
   ========================================================== */
.mmenu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px 24px 40px;
    flex-direction: column;
}
.mmenu.open { display: flex; }
.mmenu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--fog);
}
.mmenu__top img { height: 40px; }
.mmenu__close {
    background: none; border: none;
    font-size: 26px; color: var(--charcoal);
    cursor: pointer;
}
.mmenu__item { border-bottom: 1px solid var(--fog); }
.mmenu__toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    background: none;
    border: none;
    cursor: pointer;
}
.mmenu__toggle svg {
    width: 12px; height: 12px;
    stroke: var(--ash); fill: none;
    stroke-width: 2.5;
    transition: transform 0.25s;
}
.mmenu__item.open .mmenu__toggle svg { transform: rotate(180deg); }
.mmenu__sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mmenu__item.open .mmenu__sub { max-height: 300px; }
.mmenu__sub a {
    display: block;
    padding: 10px 0 10px 16px;
    font-size: 15px;
    color: var(--stone);
    border-top: 1px solid var(--cloud);
}
.mmenu__sub a:hover { color: var(--teal); }
.mmenu__link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    border-bottom: 1px solid var(--fog);
}
.mmenu__btns {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
    background: var(--charcoal);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(92,200,230,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: center;
}
.hero__eyebrow {
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pool);
    margin-bottom: 16px;
}
.hero h1 {
    font-family: var(--serif);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
}
.hero h1 em { color: var(--pool); font-style: italic; }
.hero__sub {
    font-size: 16.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 28px;
}
.hero__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero__stats {
    display: flex;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.hero__stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}
.hero__stat span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
}

/* Hero quote card */
.hero__form-card {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    padding: 28px;
    backdrop-filter: blur(6px);
}
.hero__form-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 3px;
}
.hero__form-card > p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 18px;
}
.hf-group { margin-bottom: 10px; }
.hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hf-group input, .hf-group select, .hf-group textarea {
    width: 100%;
    padding: 9px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r);
    color: #fff;
    font-family: var(--sans);
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.15s;
}
.hf-group input::placeholder, .hf-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.hf-group input:focus, .hf-group select:focus, .hf-group textarea:focus { border-color: var(--pool); }
.hf-group select { appearance: none; cursor: pointer; }
.hf-group select option { background: var(--charcoal); }
.hf-group textarea { min-height: 60px; resize: vertical; }

/* ==========================================================
   TRUST STRIP
   ========================================================== */
.trust {
    padding: 36px 0;
    border-bottom: 1px solid var(--fog);
}
.trust__row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate);
}
.trust__icon {
    width: 38px; height: 38px;
    background: var(--teal-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust__icon svg {
    width: 17px; height: 17px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==========================================================
   SECTION UTILITIES
   ========================================================== */
.sec { padding: 72px 0; background: var(--white); }
.sec--gray { background: var(--teal-soft); }
.sec--dark { background: var(--charcoal); }
.slabel {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 8px;
}
.stitle {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.15;
}
.sec--dark .stitle { color: #fff; }
.sdesc {
    font-size: 15.5px;
    color: var(--stone);
    max-width: 480px;
    line-height: 1.65;
}

/* ==========================================================
   SERVICES — homepage overview, each links to its own page
   ========================================================== */
.services__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.svc-card {
    border: 1px solid var(--fog);
    border-radius: var(--r-lg);
    padding: 26px;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.svc-card:hover {
    border-color: var(--pool);
    box-shadow: 0 4px 20px rgba(26,107,122,0.08);
    transform: translateY(-2px);
}
.svc-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.svc-card__icon {
    width: 40px; height: 40px;
    background: var(--teal-soft);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.svc-card__icon svg {
    width: 20px; height: 20px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.svc-card h3 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
    color: var(--charcoal);
}
.svc-card p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.svc-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}
.svc-card__tag {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--teal);
    background: var(--teal-soft);
    padding: 3px 9px;
    border-radius: 4px;
}
.svc-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.15s;
}
.svc-card__link:hover { gap: 9px; }
.svc-card__link svg {
    width: 13px; height: 13px;
    stroke: currentColor; fill: none; stroke-width: 2;
}

/* ==========================================================
   CTA BAND
   ========================================================== */
.cta-band {
    background: var(--teal);
    padding: 48px 0;
}
.cta-band .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-band h2 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}
.cta-band p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.7);
    margin-top: 3px;
}
.cta-band__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ==========================================================
   WHY US
   ========================================================== */
.why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.why__list { margin-top: 32px; }
.why__item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
}
.why__item + .why__item { border-top: 1px solid var(--fog); }
.why__check {
    width: 22px; height: 22px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.why__check svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 3; }
.why__item h4 { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.why__item p { font-size: 13.5px; color: var(--stone); line-height: 1.55; }
.why__side {
    background: var(--charcoal);
    border-radius: var(--r-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.why__side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 80% 20%, rgba(92,200,230,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.why__side h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
}
.why__side-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 28px;
    position: relative;
}
.why__stat {
    padding: 20px 0;
    position: relative;
    animation: statSlideUp 0.6s ease both;
}
.why__stat:nth-child(2) { animation-delay: 0.1s; }
.why__stat:nth-child(3) { animation-delay: 0.25s; }
.why__stat:nth-child(4) { animation-delay: 0.4s; }
.why__stat:nth-child(5) { animation-delay: 0.55s; }
@keyframes statSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.why__stat + .why__stat { border-top: 1px solid rgba(255,255,255,0.07); }
.why__stat strong {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--pool);
    display: block;
    line-height: 1.1;
}
.why__stat span { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 2px; display: block; }
.why__stat-bar {
    height: 2px;
    background: linear-gradient(90deg, var(--pool), transparent);
    margin-top: 8px;
    border-radius: 2px;
    animation: barGrow 1s ease both;
}
.why__stat:nth-child(2) .why__stat-bar { animation-delay: 0.2s; }
.why__stat:nth-child(3) .why__stat-bar { animation-delay: 0.35s; }
.why__stat:nth-child(4) .why__stat-bar { animation-delay: 0.5s; }
.why__stat:nth-child(5) .why__stat-bar { animation-delay: 0.65s; }
@keyframes barGrow {
    from { width: 0; }
    to { width: 100%; }
}

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 44px;
}
.step__num {
    width: 42px; height: 42px;
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--teal);
    margin-bottom: 16px;
}
.step h4 { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--stone); line-height: 1.55; }

/* ==========================================================
   SERVICE AREAS
   ========================================================== */
.areas { text-align: center; padding: 56px 0; background: var(--snow); }
.areas__tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.atag {
    padding: 9px 20px;
    border: 1px solid var(--fog);
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 500;
    color: var(--slate);
    background: var(--white);
    transition: all 0.15s;
}
.atag:hover { border-color: var(--teal); color: var(--teal); }
.atag--active { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ==========================================================
   REVIEWS
   ========================================================== */
.reviews__header { text-align: center; margin-bottom: 48px; }
.reviews__header .slabel { margin-bottom: 6px; }
.reviews__stars { display: flex; gap: 3px; }
.reviews__stars svg { width: 22px; height: 22px; fill: var(--gold-star); }
.reviews__scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 8px 0 16px;
}
.reviews__scroll-wrapper::before,
.reviews__scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.reviews__scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}
.reviews__scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}
.reviews__track {
    display: flex;
    gap: 24px;
    animation: reviewScroll 120s linear infinite;
    width: max-content;
}
.reviews__track:hover {
    animation-play-state: paused;
}
@keyframes reviewScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.review-card {
    border: 1px solid var(--fog);
    border-radius: 14px;
    padding: 28px 26px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 48px;
    font-family: var(--serif);
    color: var(--teal);
    opacity: 0.15;
    line-height: 1;
}
.review-card:hover {
    box-shadow: 0 8px 28px rgba(26,140,186,0.12);
    transform: translateY(-3px);
}
.review-card__stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-card__stars svg { width: 16px; height: 16px; fill: var(--gold-star); }
.review-card__text {
    font-size: 14.5px;
    color: var(--slate);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.88;
}
.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--fog);
}
.review-card__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-soft), var(--fog));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--teal);
    flex-shrink: 0;
}
.review-card__name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.review-card__src { font-size: 12px; color: var(--ash); display: flex; align-items: center; gap: 5px; margin-top: 1px; }

/* Google G icon */
.g-icon { width: 14px; height: 14px; flex-shrink: 0; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq__list { max-width: 700px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid var(--fog); }
.faq-item__q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 0;
    font-family: var(--sans);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item__q:hover { color: var(--teal); }
.faq-item__plus {
    width: 22px; height: 22px;
    flex-shrink: 0;
    position: relative;
}
.faq-item__plus::before, .faq-item__plus::after {
    content: '';
    position: absolute;
    background: var(--teal);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s;
}
.faq-item__plus::before { width: 12px; height: 2px; }
.faq-item__plus::after { width: 2px; height: 12px; }
.faq-item.open .faq-item__plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-item__a { max-height: 200px; }
.faq-item__a p {
    font-size: 14.5px;
    color: var(--stone);
    line-height: 1.65;
    padding-bottom: 18px;
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}
.contact__info h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.contact__info > p {
    font-size: 14.5px;
    color: var(--stone);
    margin-bottom: 28px;
    line-height: 1.65;
}
.contact__detail {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    align-items: flex-start;
}
.contact__detail + .contact__detail { border-top: 1px solid var(--fog); }
.contact__detail-icon {
    width: 38px; height: 38px;
    background: var(--teal-soft);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact__detail-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 2; }
.contact__detail strong { display: block; font-size: 13.5px; color: var(--charcoal); margin-bottom: 1px; }
.contact__detail span, .contact__detail a { font-size: 13.5px; color: var(--stone); }
.contact__detail a:hover { color: var(--teal); }
.contact__form-box {
    background: var(--snow);
    border: 1px solid var(--fog);
    border-radius: var(--r-lg);
    padding: 28px;
}
.contact__form-box h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 3px;
}
.contact__form-box > p {
    font-size: 13px;
    color: var(--stone);
    margin-bottom: 18px;
}
.fg { margin-bottom: 12px; }
.fg label { display: block; font-size: 12.5px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.fg input, .fg select, .fg textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--fog);
    border-radius: var(--r);
    font-family: var(--sans);
    font-size: 13.5px;
    color: var(--slate);
    background: var(--white);
    outline: none;
    transition: border-color 0.15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal); }
.fg textarea { resize: vertical; min-height: 72px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
    background: var(--charcoal);
    padding: 56px 0;
    text-align: center;
}
.final-cta h2 { font-family: var(--serif); font-size: 32px; font-weight: 400; color: #fff; margin-bottom: 8px; }
.final-cta p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 24px; max-width: 440px; margin-left: auto; margin-right: auto; }
.final-cta__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================
   FOOTER — preserves all service/location links
   ========================================================== */
.footer {
    background: #111113;
    color: rgba(255,255,255,0.5);
    padding: 56px 0 28px;
    font-size: 13.5px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}
.footer__brand img { height: 108px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__brand p { line-height: 1.6; margin-bottom: 14px; }
.footer h4 {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
}
.footer li { margin-bottom: 7px; }
.footer a { color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer a:hover { color: var(--pool); }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.3);
}

/* Floating phone CTA */
.float-phone {
    position: fixed;
    bottom: 18px; right: 18px;
    z-index: 99;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(26,107,122,0.35);
    border: none;
}
.float-phone svg { width: 20px; height: 20px; fill: #fff; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1080px) {
    .nav__logo-text { display: none; }
    .hero__grid { grid-template-columns: 1fr; gap: 36px; }
    .hero__form-card { max-width: 420px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .why__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav__logo-text { display: none; }
    .topbar__r { display: none; }
    .nav__menu { display: none; }
    .nav__phone { display: none; }
    .nav .btn { display: none; }
    .hamburger { display: block; }
    .hero { padding: 44px 0 56px; }
    .hero h1 { font-size: 32px; }
    .hero__stats { gap: 18px; flex-wrap: wrap; }
    .hero__form-card .hf-row { grid-template-columns: 1fr; }
    .stitle { font-size: 28px; }
    .sec { padding: 52px 0; }
    .services__grid { grid-template-columns: 1fr; }
    .reviews__scroll-wrapper::before,
    .reviews__scroll-wrapper::after { width: 40px; }
    .reviews__scroll-wrapper::before { background: linear-gradient(to right, var(--white), transparent); }
    .reviews__scroll-wrapper::after { background: linear-gradient(to left, var(--white), transparent); }
    .review-card { min-width: 300px; max-width: 300px; padding: 22px 20px; }
    .steps { grid-template-columns: 1fr 1fr; gap: 20px; }
    .contact__grid { grid-template-columns: 1fr; }
    .cta-band .wrap { flex-direction: column; text-align: center; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .fg-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero__btns { flex-direction: column; }
    .steps { grid-template-columns: 1fr; }
    .trust__row { gap: 20px; }
    .final-cta__btns { flex-direction: column; align-items: center; }
}

/* PAGE HERO (inner pages) */
.page-hero { background: var(--charcoal); padding: 64px 0 72px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(92,200,230,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.page-hero .wrap { position: relative; z-index: 2; max-width: 720px; }
.page-hero .slabel { color: var(--pool); margin-bottom: 10px; }
.page-hero h1 { font-family: var(--serif); font-size: 44px; font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 560px; margin-bottom: 28px; }
.page-hero__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* PACKAGES */
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pkg { background: var(--white); border: 1px solid var(--fog); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; transition: box-shadow 0.3s, transform 0.3s; }
.pkg:hover { box-shadow: 0 8px 28px rgba(26,140,186,0.1); transform: translateY(-3px); }
.pkg--featured { border-color: var(--teal); position: relative; box-shadow: 0 4px 20px rgba(26,140,186,0.12); }
.pkg__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.pkg__name { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--charcoal); margin-bottom: 6px; }
.pkg__price { font-size: 28px; font-weight: 700; color: var(--teal); margin-bottom: 18px; }
.pkg__price span { font-size: 14px; font-weight: 400; color: var(--stone); }
.pkg__list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pkg__list li { padding: 8px 0; font-size: 14px; color: var(--slate); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pkg__list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--teal-soft); flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a8cba' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 11px; background-position: center; background-repeat: no-repeat; }
.pkg__list li.pkg__excluded { color: var(--ash); text-decoration: line-through; }
.pkg__list li.pkg__excluded::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a95a8' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E"); background-color: var(--cloud); }
.pkg__note { font-size: 13px; color: var(--stone); text-align: center; margin-top: 32px; line-height: 1.6; }

/* CONTENT BLOCK */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.content-block__img { border-radius: var(--r-lg); overflow: hidden; }
.content-block__img img { width: 100%; height: 360px; object-fit: cover; }
.content-block__text h2 { font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--charcoal); margin-bottom: 16px; line-height: 1.2; }
.content-block__text p { font-size: 15px; color: var(--stone); line-height: 1.7; margin-bottom: 14px; }

@media (max-width: 1080px) { .packages__grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } .content-block { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 768px) { .page-hero h1 { font-size: 32px; } .page-hero { padding: 44px 0 52px; } .page-hero__btns { flex-direction: column; } }

/* ============================================================
   VIDEO HERO — CRO Optimized
   ============================================================ */
.hero-video {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--charcoal);
}

/* Video Background */
.hero-video__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroFadeIn 1.5s ease forwards 0.3s;
}
@keyframes heroFadeIn {
    to { opacity: 1; }
}
.hero-video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 22, 36, 0.7) 0%,
        rgba(11, 22, 36, 0.45) 50%,
        rgba(11, 22, 36, 0.55) 100%
    );
    z-index: 1;
}

/* Hero Content */
.hero-video__content {
    position: relative;
    z-index: 2;
    padding: 120px 0 100px;
    max-width: 720px;
}
.hero-video__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    animation: heroSlideUp 0.8s ease both 0.2s;
}
.hero-video__stars {
    color: #f5c542;
    font-size: 14px;
    letter-spacing: 1px;
}
.hero-video__content h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 18px;
    animation: heroSlideUp 0.8s ease both 0.35s;
}
.hero-video__sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 580px;
    animation: heroSlideUp 0.8s ease both 0.5s;
}
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA Buttons */
.hero-video__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    animation: heroSlideUp 0.8s ease both 0.65s;
}
.btn--xl {
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
}
.btn--glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    font-family: var(--sans);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn--glass:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-1px);
}

/* Proof Tags */
.hero-video__proof {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    animation: heroSlideUp 0.8s ease both 0.8s;
}
.hero-video__proof span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
}

/* Trust Strip at Bottom */
.hero-video__trust {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
}
.hero-video__trust-items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.hero-video__trust-item {
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    text-align: center;
    white-space: nowrap;
}
.hero-video__trust-item strong {
    color: var(--pool);
    font-size: 16px;
    margin-right: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-video {
        min-height: auto;
    }
    .hero-video__bg video {
        /* Video plays on mobile too — muted autoplay works on iOS/Android */
    }
    .hero-video__content {
        padding: 80px 0 60px;
        text-align: center;
    }
    .hero-video__badge {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-video__sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-video__ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-video__ctas .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-video__proof {
        justify-content: center;
    }
    .hero-video__trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* ============================================================
   SOCIAL ICONS — Top Bar + Footer
   ============================================================ */
.topbar__social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,0.15);
}
.topbar__social a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    line-height: 0;
}
.topbar__social a:hover {
    color: var(--pool);
    transform: scale(1.15);
}
.footer__social {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer__social a {
    color: rgba(255,255,255,0.35);
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    line-height: 0;
}
.footer__social a:hover {
    color: var(--pool);
    transform: scale(1.15);
}
.footer__social svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 768px) {
    .topbar__social { display: none; }
    .footer__social { justify-content: center; }
    .footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
