/* ============================================
   SHORE THING HOME REPAIR - Premium Design
   Lake of the Ozarks Professional Home Services
   Custom Crafted - Not Your Generic AI Garbage
   ============================================ */

/* CSS Variables - Custom Brand Palette */
:root {
    /* Primary Brand Colors - Shore Thing Brand Kit */
    --brand-navy: #010101;
    --brand-deep: #43372d;
    --brand-mid: #928574;
    --brand-steel: #d6d6d4;
    --brand-light: #e8e8e6;
    
    /* Warm Tones - Brand Palette */
    --lake-deep: #43372d;
    --lake-mid: #928574;
    --lake-bright: #dabb84;
    --lake-sky: #d6d6d4;
    --lake-foam: #e8e8e6;
    
    /* Warm Accents - Brand Kit */
    --accent: #dabb84;
    --accent-bright: #e5cfa0;
    --accent-deep: #928574;
    --accent-glow: rgba(218, 187, 132, 0.3);
    
    /* Rich Neutrals */
    --white: #ffffff;
    --cream: #f5f3ed;
    --pearl: #f8f8f6;
    --slate: #43372d;
    --charcoal: #1a1510;
    --obsidian: #010101;
    
    /* Status */
    --success: #7a9e7e;
    --error: #c47a6c;
    
    /* Premium Gradients */
    --grad-hero: linear-gradient(135deg, #010101 0%, #43372d 30%, #928574 70%, #d6d6d4 100%);
    --grad-sunset: linear-gradient(135deg, #928574 0%, #dabb84 50%, #e5cfa0 100%);
    --grad-lake: linear-gradient(180deg, #43372d 0%, #928574 50%, #dabb84 100%);
    --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --grad-overlay: linear-gradient(180deg, rgba(1,1,1,0.95) 0%, rgba(67,55,45,0.8) 50%, rgba(146,133,116,0.7) 100%);
    
    /* Typography - Premium Stack */
    --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Luxury Spacing */
    --section-padding: 120px 0;
    --container-max: 1400px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    
    /* Premium Shadows */
    --shadow-subtle: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-soft: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-medium: 0 15px 50px rgba(0,0,0,0.15);
    --shadow-dramatic: 0 25px 80px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 40px rgba(218, 187, 132, 0.3);
    --shadow-accent: 0 10px 40px rgba(218, 187, 132, 0.4);
    
    /* Smooth Transitions */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --trans-fast: 0.2s var(--ease-out-expo);
    --trans-normal: 0.4s var(--ease-out-expo);
    --trans-slow: 0.6s var(--ease-out-expo);
    --trans-dramatic: 0.8s var(--ease-out-expo);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    line-height: 1.75;
    color: var(--slate);
    background: var(--white);
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: var(--white);
}

/* ============================================
   TYPOGRAPHY - Refined
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--brand-navy);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: clamp(3rem, 7vw, 5rem); 
    font-weight: 800;
}

h2 { 
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 { 
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.lead {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
}

a {
    color: var(--lake-mid);
    text-decoration: none;
    transition: var(--trans-fast);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   UTILITY/LAYOUT
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--section-padding);
}

.bg-light { background: var(--pearl); }
.bg-dark { background: var(--brand-navy); }
.bg-gradient { background: var(--grad-hero); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ============================================
   NAVIGATION - Premium Glass
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--trans-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar.scrolled .nav-link {
    color: var(--brand-deep);
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent);
}

.navbar.scrolled .logo-text {
    color: var(--brand-navy);
}

/* ===== Contact Info Bar (under navbar) ===== */
.contact-bar {
    position: fixed;
    top: 110px;               /* JS will override with actual navbar height */
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--brand-navy, #1a2744);
    transition: top 0.3s ease;
    padding: 0.35rem 0;
}

.contact-bar-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.contact-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.contact-bar-link:hover {
    color: var(--accent, #dabb84);
}

.contact-bar-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Hide on mobile — info already in hamburger menu */
@media (max-width: 768px) {
    .contact-bar {
        display: none;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo with actual image */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-image {
    height: 80px;
    width: auto;
    transition: var(--trans-fast);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: var(--grad-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
    transition: var(--trans-normal);
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 15px 50px rgba(218, 187, 132, 0.5);
}

.logo-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    transition: var(--trans-normal);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-text span {
    background: var(--grad-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--grad-sunset);
    border-radius: 3px;
    transition: var(--trans-normal);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-cta {
    background: var(--grad-sunset);
    color: var(--white) !important;
    padding: 0.9rem 2rem !important;
    border-radius: 50px;
    box-shadow: var(--shadow-accent);
    border: none;
}

.nav-cta::before {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 45px rgba(218, 187, 132, 0.5);
}

/* Mobile menu elements - hidden on desktop */
.nav-mobile-header,
.nav-mobile-contact {
    display: none;
    list-style: none;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--trans-fast);
}

.navbar.scrolled .nav-toggle span {
    background: var(--brand-deep);
}

/* ============================================
   HERO SECTION - Cinematic
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--grad-hero);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--grad-hero);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: subtle-zoom 30s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--grad-overlay);
    z-index: 1;
}

/* Animated water effect */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 3;
    overflow: hidden;
}

.hero-waves svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
}

.wave-1 {
    animation: wave-drift 8s linear infinite;
    opacity: 0.6;
}

.wave-2 {
    animation: wave-drift 10s linear infinite reverse;
    animation-delay: -2s;
    opacity: 0.4;
}

.wave-3 {
    animation: wave-drift 12s linear infinite;
    animation-delay: -4s;
    opacity: 0.2;
}

@keyframes wave-drift {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 1000px;
    padding: 100px 2rem 0;
    z-index: 4;
}

.hero-logo {
    max-width: 350px;
    margin: 0 auto 2.5rem;
    animation: fade-in-down 1s var(--ease-out-expo) 0.2s both;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    position: relative;
    padding-bottom: 18px;
}

.hero-logo.hero-logo-cover {
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.4));
}

.hero-logo.hero-logo-cover img {
    border-radius: var(--radius-lg);
}

.hero-logo img {
    width: 100%;
    height: auto;
}

/* Banner hero variant (home2.html) */
.hero-banner-image {
    position: relative;
    z-index: 4;
    width: 100%;
    margin-top: 80px;
    animation: fade-in-down 1s var(--ease-out-expo) 0.2s both;
}

.hero-banner-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-banner .hero-content {
    padding-top: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-self: center;
}

.hero-banner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dabb84 0%, #e5cfa0 50%, #dabb84 100%);
    color: #43372d;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    border: none;
    animation: fade-in-down 1s var(--ease-out-expo) 0.3s both;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: #43372d;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: fade-in-up 1s var(--ease-out-expo) 0.4s both;
}

.hero-title .highlight {
    position: relative;
    background: var(--grad-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fade-in-up 1s var(--ease-out-expo) 0.5s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fade-in-up 1s var(--ease-out-expo) 0.6s both;
}

.hero-contact {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 1s var(--ease-out-expo) 0.7s both;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-contact-item svg {
    width: 26px;
    height: 26px;
    fill: var(--accent);
    filter: drop-shadow(0 0 10px rgba(218, 187, 132, 0.5));
}

.hero-contact-item a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.15rem;
    transition: var(--trans-fast);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-contact-item a:hover {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(218, 187, 132, 0.5);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
    opacity: 0.8;
    animation: float-bounce 2s ease-in-out infinite;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(12px); opacity: 1; }
}

/* Placeholder for hero image */
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--grad-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    opacity: 0.3;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   BUTTONS - Luxurious
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2.75rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--trans-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: var(--trans-fast);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: var(--trans-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--grad-sunset);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(218, 187, 132, 0.5);
    color: var(--white);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--brand-navy);
    border-color: var(--white);
    transform: translateY(-4px);
}

.btn-outline {
    background: transparent;
    color: var(--lake-mid);
    border: 2px solid var(--lake-mid);
}

.btn-outline:hover {
    background: var(--lake-mid);
    color: var(--white);
    transform: translateY(-4px);
}

.btn-large {
    padding: 1.35rem 3.5rem;
    font-size: 1rem;
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--lake-foam) 0%, var(--lake-sky) 100%);
    color: var(--lake-deep);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.25rem;
}

.section-label svg {
    width: 14px;
    height: 14px;
    fill: var(--lake-mid);
}

.section-title {
    margin-bottom: 1.25rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   INTRO/ABOUT SECTION
   ============================================ */
.intro-section {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--lake-foam) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-image {
    position: relative;
}

.intro-image-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-dramatic);
    overflow: hidden;
    position: relative;
}

.intro-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--trans-slow);
}

.intro-image-main:hover img {
    transform: scale(1.03);
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--lake-foam) 0%, var(--lake-sky) 50%, var(--lake-bright) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--lake-deep);
    font-size: 0.9rem;
    padding: 2rem;
    text-align: center;
    gap: 1rem;
}

.image-placeholder svg {
    width: 60px;
    height: 60px;
    fill: var(--lake-mid);
    opacity: 0.6;
}

.intro-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 60%;
    height: 60%;
    background: var(--grad-sunset);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.9;
}

.intro-image-badge {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.intro-image-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--grad-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image-badge-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.intro-image-badge-text strong {
    display: block;
    font-size: 1.5rem;
    color: var(--brand-navy);
}

.intro-image-badge-text span {
    font-size: 0.85rem;
    color: var(--slate);
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-content .lead {
    color: var(--lake-mid);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-content p {
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2.5rem 0;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--brand-deep);
    font-weight: 600;
    font-size: 1rem;
}

.intro-feature svg {
    width: 26px;
    height: 26px;
    fill: var(--success);
    flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION - Cards
   ============================================ */
.services-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--pearl) 0%, var(--white) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

/* Center odd last card in services grid */
.services-grid > .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 400px;
}

/* For 3-column layouts on desktop, center last row of 2 */
@media (min-width: 1120px) {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .services-grid > .service-card {
        grid-column: span 2;
    }
    
    /* When 2 cards in last row (8 items: 3-3-2), center them */
    .services-grid > .service-card:nth-last-child(2):nth-child(3n+1) {
        grid-column: 2 / 4;
    }
    
    .services-grid > .service-card:last-child:nth-child(3n+2) {
        grid-column: 4 / 6;
    }
    
    /* Single last card centering */
    .services-grid > .service-card:last-child:nth-child(3n+1) {
        grid-column: 3 / 5;
    }
    
    .services-grid > .service-card:last-child:nth-child(odd) {
        max-width: none;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: var(--shadow-soft);
    transition: var(--trans-normal);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--grad-sunset);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--trans-normal);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-dramatic);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--lake-foam) 0%, var(--lake-sky) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--trans-normal);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--grad-sunset);
    opacity: 0;
    z-index: -1;
    transition: var(--trans-normal);
}

.service-card:hover .service-icon {
    background: var(--grad-sunset);
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
    inset: -10px;
}

.service-icon svg {
    width: 34px;
    height: 34px;
    fill: var(--lake-deep);
    transition: var(--trans-normal);
}

.service-card:hover .service-icon svg {
    fill: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    transition: var(--trans-fast);
}

.service-card:hover h3 {
    color: var(--accent-deep);
}

.service-card p {
    color: var(--slate);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lake-mid);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.service-link svg {
    width: 18px;
    height: 18px;
    fill: var(--lake-mid);
    transition: var(--trans-fast);
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover svg {
    fill: var(--accent);
    transform: translateX(6px);
}

/* ============================================
   PORTFOLIO / OUR WORK SECTION
   ============================================ */
.portfolio-section {
    background: var(--pearl);
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--trans-normal);
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.portfolio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.portfolio-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.portfolio-tag {
    background: var(--accent);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.portfolio-gallery-duo {
    grid-template-columns: repeat(2, 1fr);
}

.portfolio-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans-normal);
}

.portfolio-image:hover img {
    transform: scale(1.05);
}

.portfolio-label {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }
    
    .portfolio-gallery-duo {
        grid-template-columns: 1fr;
    }
    
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section {
    padding: 140px 0;
    background: var(--brand-navy);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-section .section-header {
    position: relative;
    z-index: 1;
}

.why-section .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border: 1px solid rgba(218, 187, 132, 0.3);
}

.why-section .section-title {
    color: var(--white);
}

.why-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    justify-items: center;
}

/* For 3-column why-grid layouts */
@media (min-width: 920px) {
    .why-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .why-grid > .why-card {
        grid-column: span 2;
    }
    
    /* When 5 cards (3-2): center last 2 */
    .why-grid > .why-card:nth-last-child(2):nth-child(3n+1) {
        grid-column: 2 / 4;
    }
    
    .why-grid > .why-card:last-child:nth-child(3n+2) {
        grid-column: 4 / 6;
    }
    
    /* Single last card centered */
    .why-grid > .why-card:last-child:nth-child(3n+1) {
        grid-column: 3 / 5;
    }
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--trans-normal);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(218, 187, 132, 0.4);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--grad-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 40px rgba(218, 187, 132, 0.3);
    transition: var(--trans-normal);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(218, 187, 132, 0.5);
}

.why-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.why-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   LAKE LIVING SECTION
   ============================================ */
.lake-section {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.lake-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lake-content .section-label {
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
    color: var(--brand-navy);
}

.lake-content h2 {
    margin-bottom: 1.5rem;
}

.lake-content .lead {
    color: var(--slate);
    margin-bottom: 2rem;
}

.challenge-list {
    list-style: none;
    margin-bottom: 2rem;
}

.challenge-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.challenge-list li:last-child {
    border-bottom: none;
}

.challenge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lake-foam) 0%, var(--lake-sky) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--lake-deep);
}

.challenge-list h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.challenge-list p {
    color: var(--slate);
    margin: 0;
    font-size: 1rem;
}

.lake-image {
    position: relative;
}

.lake-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.lake-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.lake-image-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    gap: 1rem;
    max-width: 300px;
}

.lake-image-float-icon {
    width: 50px;
    height: 50px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lake-image-float-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.lake-image-float-text {
    font-weight: 600;
    color: var(--brand-navy);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   SERVICE AREA SECTION
   ============================================ */
.area-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--pearl) 0%, var(--white) 100%);
}

.area-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    list-style: none;
}

.area-list li,
.area-list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--brand-deep);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--trans-fast);
}

.area-list li:hover,
.area-list-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--accent);
}

.area-list li svg,
.area-list-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-sunset);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-contact-item svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
}

.cta-contact-item a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-contact-item a:hover {
    color: var(--accent);
}

/* ============================================
   FOOTER - Premium
   ============================================ */
.footer {
    background: var(--obsidian);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-sunset);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    max-width: 300px;
    font-size: 1rem;
    line-height: 1.7;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--trans-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact-item svg {
    width: 22px;
    height: 22px;
    fill: var(--accent);
    flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--accent);
}

.footer-credit {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--trans-fast);
}

.footer-credit a:hover {
    color: var(--accent);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--brand-navy);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--trans-normal);
    border-top: 3px solid var(--accent);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans-fast);
    border: none;
}

.cookie-btn-accept {
    background: var(--grad-sunset);
    color: var(--white);
}

.cookie-btn-accept:hover {
    transform: scale(1.05);
}

.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: var(--grad-hero);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--white) 100%);
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: var(--accent);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--slate);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--lake-foam) 0%, var(--lake-sky) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--lake-deep);
}

.contact-item-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--brand-navy);
}

.contact-item-text p {
    margin: 0;
    color: var(--slate);
}

.contact-item-text a {
    color: var(--lake-mid);
    font-weight: 600;
}

.contact-item-text a:hover {
    color: var(--accent);
}

.contact-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--lake-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-fast);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-wrapper h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-deep);
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--trans-fast);
    background: var(--pearl);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lake-mid);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    width: 100%;
    max-width: 300px;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--slate);
    text-align: center;
}

/* Service type checkbox grid */
.label-hint {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--slate);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--trans-fast);
    background: var(--pearl);
    font-weight: 400;
    margin-bottom: 0;
    min-height: 52px;
}

.checkbox-item:hover {
    border-color: var(--lake-mid);
    background: var(--white);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--lake-mid);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-label {
    color: var(--lake-deep);
    font-weight: 600;
}

.checkbox-item:has(input:checked) {
    border-color: var(--lake-mid);
    background: rgba(0, 119, 182, 0.05);
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--brand-deep);
    line-height: 1.3;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    padding: 80px 0;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
}

.legal-toc {
    position: sticky;
    top: 100px;
    align-self: start;
}

.legal-toc h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate);
}

.legal-toc ul {
    list-style: none;
}

.legal-toc li {
    margin-bottom: 0.5rem;
}

.legal-toc a {
    color: var(--slate);
    font-size: 0.95rem;
    display: block;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: var(--trans-fast);
}

.legal-toc a:hover {
    color: var(--lake-mid);
    border-color: var(--accent);
    padding-left: 1.25rem;
}

.legal-body section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.legal-body section:last-child {
    border-bottom: none;
}

.legal-body h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--brand-navy);
}

.legal-body h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--brand-deep);
}

.legal-body p {
    color: var(--slate);
    line-height: 1.8;
}

.legal-body ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--slate);
}

.legal-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-box {
    background: var(--pearl);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

/* ============================================
   SEASONAL SERVICES PAGE
   ============================================ */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.season-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--trans-normal);
    border: 1px solid rgba(0,0,0,0.04);
}

.season-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dramatic);
}

.season-header {
    padding: 2.5rem;
    color: var(--white);
    position: relative;
}

.season-header.spring {
    background: linear-gradient(135deg, #7a9e7e 0%, #928574 100%);
}

.season-header.summer {
    background: linear-gradient(135deg, #dabb84 0%, #928574 100%);
}

.season-header.fall {
    background: linear-gradient(135deg, #928574 0%, #43372d 100%);
}

.season-header.winter {
    background: linear-gradient(135deg, #d6d6d4 0%, #43372d 100%);
}

.season-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.season-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.season-body {
    padding: 2.5rem;
}

.season-services {
    list-style: none;
    margin-bottom: 2rem;
}

.season-services li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--brand-deep);
    font-weight: 500;
}

.season-services li:last-child {
    border-bottom: none;
}

.season-services svg {
    width: 20px;
    height: 20px;
    fill: var(--success);
    flex-shrink: 0;
}

/* ============================================
   PROPERTY MANAGERS PAGE
   ============================================ */
.pm-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pm-feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--trans-normal);
    border: 1px solid rgba(0,0,0,0.04);
}

.pm-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dramatic);
}

.pm-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--grad-sunset);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
}

.pm-feature-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.pm-feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.pm-feature-card p {
    color: var(--slate);
    margin: 0;
}

.pm-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.pm-benefits {
    background: var(--brand-navy);
    padding: 80px 0;
}

.pm-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.pm-benefit svg {
    width: 28px;
    height: 28px;
    fill: var(--accent);
    flex-shrink: 0;
}

.pm-benefit h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.pm-benefit p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   SERVICE DETAIL PAGE - Card Layout
   ============================================ */
.services-grid-detail {
    gap: 2rem;
}

.service-card-detail {
    display: flex;
    flex-direction: column;
}

.service-card-detail > h3 + p {
    flex: 1;
}

.service-card-detail .service-card-features {
    flex-grow: 0;
}

.service-card-detail .service-icon {
    margin-bottom: 1.25rem;
}

.service-card-features {
    list-style: none;
    margin: 0 0 1.75rem 0;
    padding: 0;
    flex-grow: 1;
}

.service-card-features li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.75rem;
    color: var(--brand-deep);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.service-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
}

.service-card-note {
    font-size: 0.85rem;
    color: var(--slate);
    margin-bottom: 1rem;
}

/* Service Preview - Before/After Images */
.service-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-preview-trio {
    grid-template-columns: repeat(3, 1fr);
}

.service-preview-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}

.service-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans-normal);
}

.service-preview-image:hover img {
    transform: scale(1.05);
}

.service-preview-image span {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .service-preview,
    .service-preview-trio {
        grid-template-columns: 1fr;
    }
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

.service-card-detail .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Original service detail card styles (kept for reference) */
.service-detail-grid {
    display: grid;
    gap: 4rem;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.service-detail-content h2 {
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--slate);
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content li {
    color: var(--slate);
    margin-bottom: 0.5rem;
}

/* Service Features List */
.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--brand-deep);
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .intro-grid,
    .lake-grid {
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 100px 0;
    }
    
    .intro-grid,
    .lake-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-toc {
        position: relative;
        top: auto;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .pm-features-grid {
        grid-template-columns: 1fr;
    }
    
    .pm-process-grid {
        grid-template-columns: 1fr;
    }
    
    .pm-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-image-accent {
        display: none;
    }
    
    .intro-image-badge {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 1rem;
        display: inline-flex;
    }
    
    .lake-image-float {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }
    
    .service-detail-card,
    .service-detail-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--brand-navy);
        flex-direction: column;
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 2.5rem 2rem 2rem;
        transition: var(--trans-normal);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--white);
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-mobile-header {
        display: flex;
        justify-content: center;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0.5rem;
    }
    
    .mobile-menu-logo {
        height: 160px;
        width: auto;
    }
    
    .nav-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-contact-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        text-decoration: none;
        transition: var(--trans-fast);
    }
    
    .nav-contact-link:hover {
        color: var(--accent);
    }
    
    .nav-contact-link svg {
        width: 18px;
        height: 18px;
        fill: var(--accent);
        flex-shrink: 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-logo {
        max-width: 240px;
    }

    .hero-logo.hero-logo-cover {
        max-width: 90%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid > .service-card {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
        margin: 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid > .why-card,
    .why-grid > .why-card:nth-last-child(2):nth-child(3n+1),
    .why-grid > .why-card:last-child:nth-child(3n+2),
    .why-grid > .why-card:last-child:nth-child(3n+1) {
        grid-column: auto;
        justify-self: stretch;
        margin: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-grid > :nth-child(2),
    .footer-grid > :nth-child(3) {
        display: none;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-socials {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .area-list {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }

    .page-header {
        padding: 140px 0 70px;
    }

    .pm-benefits {
        padding: 60px 0;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .hero {
        min-height: 100svh;
    }
    
    .page-header {
        padding: 130px 0 60px;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }

    .logo-image {
        height: 50px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
        letter-spacing: 1px;
        white-space: normal;
        text-align: center;
        left: 1rem;
        right: 1rem;
        transform: none;
        width: auto;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .pm-benefits {
        padding: 40px 0;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .why-card {
        padding: 2rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-background img {
        animation: none;
    }
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--lake-bright);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--brand-navy);
    color: var(--white);
    padding: 12px 20px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .cookie-banner,
    .footer,
    .hero-waves,
    .scroll-indicator,
    .btn {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        color: var(--charcoal);
    }
    
    .hero-title,
    .hero-subtitle {
        color: var(--charcoal);
        text-shadow: none;
    }
    
    .page-header {
        background: none;
        padding: 2rem 0;
    }
    
    .page-header h1,
    .page-header p {
        color: var(--charcoal);
    }
}

/* ===== What to Expect – 4 cards on one row ===== */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

@media (min-width: 1120px) {
    .expect-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .expect-grid > .service-card {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 767px) {
    .expect-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}
