/* =============================================
   CURBSIDE CUTS & SHAVE — GLOBAL SHARED STYLES
   Used by all pages via <link rel="stylesheet">
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --bg-deep: #08090d;
    --bg-surface: #0e1117;
    --bg-card: #141820;
    --bg-elevated: #1a1f2b;
    --border-subtle: rgba(255,255,255,0.06);
    --border-medium: rgba(255,255,255,0.1);
    --text-primary: #f0f0f5;
    --text-secondary: #8b8fa3;
    --text-muted: #555a6e;
    --accent-red: #dc2626;
    --accent-red-glow: rgba(220,38,38,0.3);
    --accent-blue: #2563eb;
    --accent-blue-light: #60a5fa;
    --accent-gold: #d4a520;
    --accent-gold-glow: rgba(212,165,32,0.25);
    --accent-blue-glow: rgba(37,99,235,0.3);
    --accent-silver: #94a3b8;
    --accent-platinum: #e2e8f0;
    --glass: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ===== GLOBAL RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== GLOBAL AMBIENT ===== */
body::before {
    content: '';
    position: fixed;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at 20% 50%, rgba(220,38,38,0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(37,99,235,0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 80%, rgba(37,99,235,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: ambientShift 20s ease-in-out infinite alternate;
}
@keyframes ambientShift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-3%, 2%) scale(1.05); }
}

section, nav, footer, .global-footer { position: relative; z-index: 1; }

/* ===== TYPOGRAPHY ===== */
.heading-display {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.heading-sans {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.label-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8,9,13,0.75);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}
.nav.has-banner {
    top: 30px;
}
.nav.has-banner.banner-hidden {
    top: 0;
}
.nav.scrolled {
    background: rgba(8,9,13,0.92);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.nav-logo img {
    height: 64px; width: 64px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(220,38,38,0.15));
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
}
.nav-logo-text .brand {
    font-family: 'Oswald', sans-serif;
    font-size: 18px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    line-height: 1;
}
.nav-logo-text .tagline {
    font-size: 10px; font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 3px;
}
.nav-menu {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.3s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--text-primary); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active { color: var(--text-primary); }
.nav-menu a.active::after { width: 100%; }
.nav-menu li.active > a { color: var(--text-primary); }
.nav-menu li.active > a::after { width: 100%; }

/* --- Services dropdown (desktop) --- */
.nav-menu .has-submenu { position: relative; }
.nav-menu .has-submenu > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-menu .has-submenu > a .chevron-icon {
    width: 10px; height: 10px;
    transition: transform 0.3s;
    opacity: 0.5;
}
.nav-menu .has-submenu:hover > a .chevron-icon {
    transform: rotate(180deg);
    opacity: 1;
}
.nav-submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    min-width: 260px;
    padding: 8px 0;
    background: rgba(20,24,32,0.96);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
/* Invisible hover bridge so cursor can reach dropdown */
.nav-submenu::before {
    content: '';
    position: absolute;
    top: -16px; left: 0; right: 0;
    height: 16px;
}
.has-submenu:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.nav-submenu li { padding: 0; }
.nav-submenu a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 500;
    color: var(--text-secondary) !important;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.nav-submenu a::after { display: none !important; }
.nav-submenu a:hover {
    background: rgba(255,255,255,0.04);
    color: var(--text-primary) !important;
    padding-left: 24px !important;
}
.submenu-price {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-red);
    letter-spacing: 0.03em;
}
.submenu-member {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #22c55e;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* --- Services accordion (mobile) --- */
.mobile-has-submenu { position: relative; }
.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.mobile-submenu-toggle > a {
    flex: 1;
}
.mobile-submenu-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 20px 4px 20px 12px;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
    display: flex;
    align-items: center;
}
.mobile-submenu-btn:hover { color: var(--text-secondary); }
.mobile-submenu-btn.active {
    transform: rotate(180deg);
    color: var(--accent-red);
}
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.mobile-submenu.active {
    max-height: 320px;
}
.mobile-submenu li {
    border-bottom: none;
    border-top: 1px solid rgba(255,255,255,0.03);
}
.mobile-submenu a {
    display: block;
    padding: 14px 20px 14px 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-submenu a:hover,
.mobile-submenu a:active { color: var(--accent-red) !important; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-cta .btn-book {
    padding: 10px 24px;
    background: var(--accent-red);
    color: #fff;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    box-shadow: 0 2px 12px var(--accent-red-glow);
}
.nav-cta .btn-book:hover {
    background: #ef4444;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-red-glow);
}
.nav-cta .btn-signin {
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.25);
    color: var(--accent-blue-light);
    margin-left: 8px;
}
.nav-cta .btn-signin:hover {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-blue-glow);
}
.nav-cta .btn-dashboard {
    background: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    color: #fff;
    margin-left: 8px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.3);
}
.nav-cta .btn-dashboard:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: #08090d;
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
}
.mobile-menu-overlay.active { display: block; }
.mobile-nav-list {
    list-style: none;
    padding: 0; margin: 0;
}
.mobile-nav-list li {
    border-bottom: 1px solid var(--border-subtle);
}
.mobile-nav-list a {
    display: block;
    padding: 20px 0;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 18px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-nav-list a:hover,
.mobile-nav-list a:active { color: var(--accent-red); }

/* ===== FLOATING CTA (FAB) ===== */
.fab {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--accent-red);
    color: #fff;
    text-decoration: none;
    font-size: 13px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    box-shadow: 0 4px 24px var(--accent-red-glow);
    transition: all 0.3s;
}
.fab:hover {
    background: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(220,38,38,0.5);
}
.fab-icon { font-size: 18px; }

/* ===== BOOKING MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    place-items: center;
    padding: 24px;
}
.modal-overlay.active { display: grid; }
.modal {
    background: var(--bg-surface);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-xl);
    max-width: 540px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}
.modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
}
.modal-header {
    padding: 40px 40px 0;
    text-align: center;
}
.modal-header .modal-logo {
    width: 52px; height: 52px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 12px rgba(220,38,38,0.2));
}
.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.modal-options {
    padding: 32px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.modal-option {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.modal-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.modal-option.option-session { border-color: rgba(220,38,38,0.12); }
.modal-option.option-session:hover {
    border-color: rgba(220,38,38,0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px var(--accent-red-glow);
}
.modal-option.option-member { border-color: rgba(37,99,235,0.12); }
.modal-option.option-member:hover {
    border-color: rgba(37,99,235,0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px var(--accent-blue-glow);
}
.modal-option-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.option-session .modal-option-icon {
    background: rgba(220,38,38,0.1);
    border: 1px solid rgba(220,38,38,0.2);
    color: var(--accent-red);
}
.option-member .modal-option-icon {
    background: rgba(37,99,235,0.1);
    border: 1px solid rgba(37,99,235,0.2);
    color: var(--accent-blue-light);
}
.modal-option h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 17px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
}
.modal-option p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.modal-option .modal-option-btn {
    margin-top: auto;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    width: 100%;
}
.option-session .modal-option-btn {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 2px 12px var(--accent-red-glow);
}
.option-session:hover .modal-option-btn { box-shadow: 0 4px 20px var(--accent-red-glow); }
.option-member .modal-option-btn {
    background: rgba(37,99,235,0.12);
    border: 1px solid rgba(37,99,235,0.25);
    color: var(--accent-blue-light);
}
.option-member:hover .modal-option-btn {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-blue-glow);
}
/* Member Login View */
.modal-login {
    padding: 32px 40px 40px;
    display: none;
}
.modal-login.active { display: block; }
.modal-options.hidden { display: none; }
.modal-login-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 12px; font-weight: 500;
    cursor: pointer;
    margin-bottom: 24px;
    transition: color 0.3s;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
}
.modal-login-back:hover { color: var(--accent-blue-light); }
.modal-login h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.modal-login > p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}
.modal-field { margin-bottom: 16px; }
.modal-field label {
    display: block;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.modal-field input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.modal-field input:focus {
    border-color: rgba(37,99,235,0.4);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.modal-field input::placeholder { color: var(--text-muted); }
.modal-login-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-blue);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--accent-blue-glow);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.modal-login-btn:hover {
    background: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px var(--accent-blue-glow);
}
.modal-login-help {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
}
.modal-login-help a {
    color: var(--accent-blue-light);
    text-decoration: none;
    font-weight: 500;
}
.modal-login-help a:hover { text-decoration: underline; }
@media (max-width: 580px) {
    .modal-options {
        grid-template-columns: 1fr;
        padding: 24px 24px 32px;
    }
    .modal-header { padding: 32px 24px 0; }
    .modal-header h2 { font-size: 24px; }
    .modal-login { padding: 24px 24px 32px; }
}

/* ===== GLOBAL FOOTER ===== */
.global-footer {
    border-top: 1px solid var(--border-subtle);
    padding: 64px 48px 32px;
    max-width: 1320px;
    margin: 80px auto 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img {
    height: 48px; width: 48px;
    object-fit: contain;
    opacity: 0.8;
    margin-bottom: 12px;
}
.footer-brand .brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 16px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.footer-brand .brand-tagline {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.footer-brand .brand-phone {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px; font-weight: 500;
    display: block;
    margin-bottom: 4px;
    transition: color 0.3s;
}
.footer-brand .brand-phone:hover { color: var(--text-primary); }
.footer-brand .brand-email {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.footer-brand .brand-email:hover { color: var(--text-secondary); }
.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 11px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    padding: 4px 0;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom .footer-info {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-bottom .footer-info span { white-space: nowrap; }
.footer-bottom .footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}
.footer-bottom .footer-copy a {
    color: var(--accent-blue-light);
    text-decoration: none;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal a:hover { color: var(--text-secondary); }
.footer-legal span { color: var(--text-muted); opacity: 0.5; }
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.footer-social a:hover { color: var(--text-primary); }

/* ===== RESPONSIVE — NAV & FOOTER ===== */
@media (max-width: 768px) {
    .nav {
        padding: 0 16px;
        height: 72px;
        gap: 12px;
    }
    .nav-logo img { height: 53px; width: 53px; padding: 4px; }
    .nav-logo { gap: 0; }
    .nav-logo-text { display: none; }
    .nav-menu-desktop { display: none !important; }
    .nav-submenu { display: none !important; }
    .nav-cta { gap: 8px; }
    .nav-cta .btn-book {
        padding: 7px 14px;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        white-space: nowrap;
    }
    .mobile-menu-toggle { display: flex; }
    .global-footer { padding: 48px 20px 24px; margin-top: 48px; }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom .footer-info {
        justify-content: center;
    }
    .fab {
        padding: 12px 20px;
        font-size: 11px;
        bottom: 20px; right: 16px;
    }
}
@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .footer-brand { text-align: center; }
}

/* ===== SITE-WIDE SCROLL ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(220,38,38,0.15); }
    50% { box-shadow: 0 0 40px rgba(220,38,38,0.3); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Scroll-reveal base class (hidden until observed) */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Page load animation */
.page-hero { animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both; }
.page-hero-delay { animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.page-hero-delay-2 { animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }

/* ===== SHARED INTERNAL PAGE STYLES ===== */
.internal-hero {
    padding: 140px 2rem 80px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.internal-hero::before {
    content: '';
    position: absolute;
    top: 60px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--hero-glow, rgba(220,38,38,0.08)) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.internal-hero > * { position: relative; z-index: 1; }
.internal-hero .overline {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: inline-block;
}
.internal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}
.internal-hero .price-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem; font-weight: 700;
    margin-bottom: 0.5rem;
}
.internal-hero .price-tag span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}
.internal-hero .price-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.internal-hero .hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.internal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

/* Feature grid — always 4 columns on desktop */
.internal-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}
.internal-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--card-border, rgba(255,255,255,0.06));
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.internal-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--card-accent, var(--accent-red));
    opacity: 0;
    transition: opacity 0.4s;
}
.internal-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-border-hover, rgba(255,255,255,0.12));
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.internal-feature-card:hover::before { opacity: 1; }
.internal-feature-card .card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    background: var(--card-icon-bg, rgba(220,38,38,0.08));
    border: 1px solid var(--card-icon-border, rgba(220,38,38,0.15));
}
.internal-feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--card-title, var(--accent-red));
    margin-bottom: 0.75rem;
}
.internal-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Photo banner for internal pages */
.internal-photo-banner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}
.internal-photo-banner .photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.internal-photo-banner .photo-row img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.internal-photo-banner .photo-row img:hover {
    transform: scale(1.05);
}

/* Section styling for internal pages */
.internal-section {
    margin-bottom: 3.5rem;
}
.internal-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}
.internal-section-title::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 50px; height: 3px;
    background: var(--section-accent, var(--accent-red));
    border-radius: 2px;
}
.internal-section-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
}
.internal-section-text p { margin-bottom: 1.2rem; }

/* Split content (text + image side by side) */
.internal-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.internal-split.reversed { direction: rtl; }
.internal-split.reversed > * { direction: ltr; }
.internal-split-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--border-subtle);
}
.internal-split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.internal-split-image:hover img { transform: scale(1.04); }

/* CTA box — upgraded */
.internal-cta {
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}
.internal-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0.5;
    background: radial-gradient(ellipse at 50% 0%, var(--cta-glow, rgba(220,38,38,0.12)) 0%, transparent 60%);
    pointer-events: none;
}
.internal-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    position: relative;
}
.internal-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
}
.internal-cta .btn-cta {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}
.internal-cta .btn-cta:hover {
    transform: translateY(-2px);
}

/* Compare note — upgraded */
.internal-compare {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.internal-compare svg { flex-shrink: 0; margin-top: 2px; }
.internal-compare p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}
.internal-compare a { font-weight: 600; text-decoration: none; }
.internal-compare a:hover { text-decoration: underline; }

/* Other services links */
.internal-related { margin-top: 3.5rem; }
.internal-related h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.internal-related .link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.internal-related a {
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.internal-related a:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Breadcrumbs — wider */
.internal-breadcrumbs {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 90px auto 0;
}
.internal-breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}
.internal-breadcrumbs a:hover { color: var(--text-primary); }

/* Savings callout pill */
.savings-pill {
    display: inline-block;
    background: var(--pill-bg, rgba(220,38,38,0.08));
    border: 1px solid var(--pill-border, rgba(220,38,38,0.2));
    border-radius: 100px;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--pill-color, var(--accent-red));
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

/* Popular badge */
.popular-badge {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

/* Responsive internal pages */
@media (max-width: 1024px) {
    .internal-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .internal-split { grid-template-columns: 1fr; gap: 2rem; }
    .internal-split.reversed { direction: ltr; }
}
@media (max-width: 768px) {
    .internal-hero { padding: 110px 1.5rem 50px; }
    .internal-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .internal-content { padding: 0 1.5rem 3rem; }
    .internal-photo-banner { padding: 0 1.5rem; }
    .internal-photo-banner .photo-row { grid-template-columns: 1fr; }
    .internal-photo-banner .photo-row img { height: 220px; }
    .internal-cta { padding: 2.5rem 1.5rem; }
    .internal-split-image img { height: 280px; }
}
@media (max-width: 480px) {
    .internal-feature-grid { grid-template-columns: 1fr; }
    .internal-breadcrumbs { margin-top: 75px; }
}
