﻿
        :root {
            --pool-blue: #0891b2;
            --pool-light: #22d3ee;
            --pool-dark: #0e7490;
            --gold: #c9a962;
            --gold-light: #d4b978;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(180deg, #0c1829 0%, #0a0a0a 100%);
            color: #f3f4f6;
            overflow-x: hidden;
        }
        
        .font-serif {
            font-family: 'Playfair Display', serif;
        }
        
        /* Animated Water Background */
        .water-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
        }
        
        .water-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 80% 50% at 50% 0%, rgba(8, 145, 178, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 20% 20%, rgba(34, 211, 238, 0.1) 0%, transparent 40%),
                radial-gradient(ellipse 50% 30% at 80% 30%, rgba(14, 116, 144, 0.1) 0%, transparent 40%);
            animation: waterGlow 8s ease-in-out infinite alternate;
        }
        
        @keyframes waterGlow {
            0% { opacity: 0.6; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.05); }
        }
        
        /* Wave Pattern */
        .wave-pattern {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230a0a0a' fill-opacity='0.3' d='M0,160L48,170.7C96,181,192,203,288,192C384,181,480,139,576,128C672,117,768,139,864,154.7C960,171,1056,181,1152,181.3C1248,181,1344,171,1392,165.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
            background-size: 1440px 150px;
            animation: wave 20s linear infinite;
            opacity: 0.5;
        }
        
        @keyframes wave {
            0% { background-position-x: 0; }
            100% { background-position-x: 1440px; }
        }
        
        /* Pool Tile Pattern */
        .tile-pattern {
            background-image: 
                linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px),
                linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }
        
        /* Shimmer Effect */
        .shimmer {
            position: relative;
            overflow: hidden;
        }
        
        .shimmer::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 40%,
                rgba(34, 211, 238, 0.1) 50%,
                transparent 60%
            );
            animation: shimmer 3s ease-in-out infinite;
        }
        
        @keyframes shimmer {
            0%, 100% { transform: translateX(-100%) rotate(45deg); }
            50% { transform: translateX(100%) rotate(45deg); }
        }
        
        /* Water Ripple */
        .ripple {
            position: relative;
        }
        
        .ripple::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid var(--pool-light);
            border-radius: inherit;
            opacity: 0;
            animation: ripple 2s ease-out infinite;
        }
        
        @keyframes ripple {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.1); opacity: 0; }
        }
        
        /* Service Card Hover */
        .service-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(201, 169, 98, 0.15), 0 0 0 1px rgba(201, 169, 98, 0.3);
        }
        
        /* Pool Water Animation for CTA */
        .water-fill {
            position: relative;
            overflow: hidden;
        }
        
        .water-fill::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0%;
            background: linear-gradient(180deg, rgba(34, 211, 238, 0.3), rgba(8, 145, 178, 0.5));
            transition: height 0.3s ease;
            z-index: 0;
        }
        
        .water-fill:hover::before {
            height: 100%;
        }
        
        .water-fill > * {
            position: relative;
            z-index: 1;
        }
        
        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .float {
            animation: float 4s ease-in-out infinite;
        }
        
        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #c9a962 0%, #22d3ee 50%, #c9a962 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 3s ease infinite;
        }
        
        @keyframes gradientFlow {
            0% { background-position: 0% center; }
            50% { background-position: 100% center; }
            100% { background-position: 0% center; }
        }
        
        /* Pool Steps Visual */
        .pool-steps {
            display: flex;
            gap: 4px;
            align-items: flex-end;
            height: 60px;
        }
        
        .pool-step {
            width: 12px;
            background: linear-gradient(180deg, var(--pool-light), var(--pool-dark));
            border-radius: 2px 2px 0 0;
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        
        .pool-steps:hover .pool-step {
            opacity: 1;
        }
        
        /* Badge Glow */
        .badge-glow {
            box-shadow: 0 0 20px rgba(34, 211, 238, 0.3), inset 0 1px 0 rgba(255,255,255,0.1);
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--pool-dark);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--pool-blue);
        }
        
        /* Texas Style */
        .texas-star {
            display: inline-block;
            width: 1em;
            height: 1em;
            margin-right: 0.25em;
            vertical-align: middle;
        }
        
        .texas-badge {
            background: linear-gradient(135deg, #002868 0%, #BF0A30 100%);
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }
        
        .texas-border {
            border-left: 3px solid;
            border-image: linear-gradient(to bottom, #002868, #BF0A30, #002868) 1;
        }
        
        /* Trust Badges Animation */
        .trust-badge {
            animation: pulse 2s ease-in-out infinite;
            animation-delay: calc(var(--delay) * 0.2s);
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Mobile Menu */
        #mobileMenu {
            backdrop-filter: blur(10px);
            background: rgba(10, 10, 10, 0.95);
        }
        
        /* Quote Widget */
        #quoteWidgetTab {
            background: linear-gradient(135deg, var(--pool-blue), var(--pool-dark));
            box-shadow: 0 4px 20px rgba(8, 145, 178, 0.4);
        }
        
        #quoteWidgetTab:hover {
            background: linear-gradient(135deg, var(--pool-light), var(--pool-blue));
            box-shadow: 0 6px 25px rgba(8, 145, 178, 0.6);
        }
        
        /* Process Timeline */
        .process-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--pool-blue), var(--gold), var(--pool-blue), transparent);
            opacity: 0.3;
        }
        
        /* Stats Counter */
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff 0%, var(--pool-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* ========== MOBILE OPTIMIZATIONS ========== */
        
        @media (max-width: 640px) {
            /* Reduce headline size on mobile */
            h1 {
                font-size: 2.25rem !important;
                line-height: 1.2 !important;
            }
            
            h2 {
                font-size: 1.25rem !important;
            }
            
            /* Reduce padding on mobile */
            .py-16 {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }
            
            /* Trust badges stack on mobile */
            .flex-wrap.gap-4 {
                gap: 0.5rem !important;
            }
            
            .flex-wrap.gap-4 > div {
                padding: 0.5rem 0.75rem !important;
                font-size: 0.75rem !important;
            }
            
            /* Price text smaller on mobile */
            .text-2xl {
                font-size: 1.25rem !important;
            }
            
            /* CTA buttons full width on mobile */
            .flex.flex-wrap.gap-4 > a {
                width: 100%;
                justify-content: center;
                padding-left: 1.5rem !important;
                padding-right: 1.5rem !important;
            }
            
            /* Service links wrap nicely */
            .flex.flex-wrap.gap-2.pt-2 {
                justify-content: center;
            }
            
            /* Stats grid 2x2 on mobile */
            .stats-grid-mobile {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            
            /* Reduce container padding */
            .px-4 {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }
            
            /* Hero section padding */
            .pt-20 {
                padding-top: 5rem !important;
            }
            
            /* Stats section padding */
            .py-8 {
                padding-top: 1.5rem !important;
                padding-bottom: 1.5rem !important;
            }
        }
        
        @media (max-width: 768px) {
            /* Show stats panel on tablet/mobile */
            .hero-stats-panel {
                display: block !important;
                margin-top: 1.5rem;
            }
            
            /* Reduce font sizes */
            .stat-number {
                font-size: 2rem !important;
            }
            
            /* Service cards stack better */
            .grid.md\:grid-cols-2.lg\:grid-cols-3 {
                grid-template-columns: 1fr !important;
            }
            
            /* Why choose us grid */
            .grid.md\:grid-cols-2.lg\:grid-cols-4 {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        
        /* Touch targets - minimum 44px */
        @media (max-width: 1024px) {
            a, button {
                min-height: 44px;
            }
            
            /* Mobile menu links */
            #mobileMenu a {
                min-height: 48px;
                display: flex;
                align-items: center;
            }
        }
    
