/* ===== Liquid Glass Header & Navigation ===== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 1rem;
    transition: var(--transition-base);
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(245, 245, 250, 0.72) 0%,
        rgba(235, 235, 242, 0.52) 50%,
        rgba(240, 240, 247, 0.68) 100%
    );
    backdrop-filter: blur(40px) saturate(140%);
    -webkit-backdrop-filter: blur(40px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-top-color: rgba(255, 255, 255, 0.65);
    border-bottom-color: rgba(200, 200, 210, 0.25);
    border-radius: var(--radius-full);
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    bottom: 0;
    background: linear-gradient(
        115deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 60%,
        transparent 100%
    );
    pointer-events: none;
}

.header.scrolled {
    background: linear-gradient(
        135deg,
        rgba(245, 245, 250, 0.82) 0%,
        rgba(235, 235, 242, 0.62) 50%,
        rgba(240, 240, 247, 0.78) 100%
    );
    backdrop-filter: blur(50px) saturate(160%);
    -webkit-backdrop-filter: blur(50px) saturate(160%);
    box-shadow:
        0 12px 48px rgba(15, 23, 42, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 -1px 0 rgba(255, 255, 255, 0.22);
}

[data-theme="dark"] .header {
    background: linear-gradient(
        135deg,
        rgba(225, 225, 232, 0.18) 0%,
        rgba(210, 210, 218, 0.1) 50%,
        rgba(218, 218, 226, 0.15) 100%
    );
    border-color: rgba(255, 255, 255, 0.18);
    border-top-color: rgba(255, 255, 255, 0.28);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .header.scrolled {
    background: linear-gradient(
        135deg,
        rgba(225, 225, 232, 0.24) 0%,
        rgba(210, 210, 218, 0.14) 50%,
        rgba(218, 218, 226, 0.2) 100%
    );
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1rem;
    height: auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 1cm;
}

.logo img {
    height: 56px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text);
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.nav-link img {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
    background: rgba(249, 115, 22, 0.08);
}

.nav .btn {
    margin-left: var(--space-sm);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    color: var(--text);
    z-index: 1001;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg);
    border-color: rgba(255, 255, 255, 0.5);
}

.theme-toggle img {
    width: 20px;
    height: 20px;
    color: var(--text);
}

.theme-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: block;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .menu-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
}

.menu-toggle img {
    width: 20px;
    height: 20px;
    color: var(--text);
}

.menu-toggle .icon-close {
    display: none;
}

.menu-toggle.active .icon-menu {
    display: none;
}

.menu-toggle.active .icon-close {
    display: block;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(244, 162, 97, 0.12) 0%, transparent 50%);
}

.footer-wave {
    position: absolute;
    top: -3cm;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}

.footer-wave svg {
    width: 100%;
    height: auto;
    display: block;
    fill: var(--bg);
    transform: rotate(180deg);
}

.footer > .container {
    position: relative;
    z-index: 4;
}

.footer-van {
    position: absolute;
    bottom: -20px;
    right: 2%;
    width: clamp(180px, 22vw, 300px);
    z-index: 2;
    pointer-events: none;
}

.footer-van img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: var(--space-md);
}

.footer-col h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.footer-col ul li {
    margin-bottom: var(--space-sm);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a img {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-logo {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-logo img {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-links a img {
    width: 20px;
    height: 20px;
    color: white;
}

.social-links a[aria-label="WhatsApp"] {
    background: #25d366;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.social-links a[aria-label="WhatsApp"]:hover {
    background: #128c7e;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ===== Page Hero (for subpages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--hero-text);
    padding: calc(80px + var(--space-3xl)) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(244, 162, 97, 0.12) 0%, transparent 50%);
}

.page-hero-content {
    position: relative;
    text-align: center;
}

.page-hero h1 {
    color: var(--hero-text);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
}

.page-hero p {
    color: var(--hero-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    color: var(--hero-muted);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb img {
    width: 14px;
    height: 14px;
}

/* ===== CTA Section - Paint Roller Billboard ===== */
.cta-section {
    color: white;
    padding: 0 var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-section .container {
    max-width: 1100px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 30px;
    padding: var(--space-3xl) var(--space-xl);
    margin-top: var(--space-3xl);
    margin-bottom: 4cm;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background:
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(244, 162, 97, 0.08) 0%, transparent 50%);
}



.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

/* ===== Legal Pages Layout ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: var(--space-2xl) 0 var(--space-md);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    margin: var(--space-xl) 0 var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

/* ===== Utility ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Hero Section - Oak Harbor Style ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a237e 0%, #311b92 40%, #4a148c 100%);
    color: var(--hero-text);
    padding: calc(100px + var(--space-xl)) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(79, 195, 247, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(124, 77, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(41, 182, 246, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 30% 70%, rgba(179, 157, 219, 0.2) 0%, transparent 40%);
    filter: blur(20px);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-label {
    display: inline-block;
    color: #90caf9;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: var(--space-lg);
    color: var(--hero-text);
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: #b39ddb;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--hero-muted);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-buttons .btn {
    width: 100%;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.rating-stars {
    display: flex;
    gap: 0.15rem;
}

.rating-stars img {
    width: 18px;
    height: 18px;
    color: #fbbc04;
}

.rating-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.rating-text strong {
    color: white;
    font-size: 0.95rem;
}

.rating-text span {
    color: var(--hero-muted);
    font-size: 0.8rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-van {
    width: 100%;
    max-width: none;
    position: relative;
    transform: scale(1.4);
    transform-origin: center center;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.hero-van img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .header {
        min-height: 100vh;
        border-radius: var(--radius-xl) var(--radius-xl) var(--radius-lg) var(--radius-lg);
    }

    .nav {
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.active {
        max-height: calc(100vh - 100px);
        opacity: 1;
        overflow-y: auto;
        padding: 1rem 0.5rem 2rem;
    }

    .nav-link {
        justify-content: space-between;
        padding: var(--space-md) 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        background: transparent;
    }

    .nav-link img {
        display: block;
    }

    .nav .btn {
        margin-top: var(--space-md);
        margin-left: 0;
        width: 100%;
    }

    .hero-van {
        transform: scale(1.05);
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding-bottom: 5rem;
    }

    .footer-van {
        width: clamp(140px, 35vw, 200px);
        right: 0;
        bottom: -10px;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
    fill: var(--bg);
}

/* ===== Wave Divider ===== */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    width: 100%;
    height: auto;
    display: block;
    fill: var(--bg);
}


