
        :root {
            --charcoal: #1a1a1a;
            --slate-gray: #2d3748;
            --medium-gray: #4a5568;
            --light-gray: #e2e8f0;
            --off-white: #fafafa;
            --warm-gray: #a0aec0;
            --mint-green: #68d391;
            --deep-teal: #319795;
            --coral-pink: #ff6b6b;
            --sage-green: #9ae6b4;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--charcoal);
            line-height: 1.6;
            background: var(--off-white);
        }

        h1, h2, h3 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
        }

        h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 48px;
            line-height: 1.1;
            letter-spacing: -0.01em;
        }

        h3 {
            font-size: 32px;
            line-height: 1.2;
        }

        .navbar {
            background: rgba(250, 250, 250, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--light-gray);
            padding: 20px 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(250, 250, 250, 0.98);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            padding: 12px 0;
        }

        .navbar-brand {
            font-family: 'DM Sans', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--charcoal) !important;
            letter-spacing: -0.02em;
        }

        .nav-link {
            color: var(--slate-gray) !important;
            font-weight: 500;
            margin: 0 20px;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 15px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--deep-teal);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--deep-teal) !important;
        }

        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            right: -10%;
            width: 60%;
            height: 100%;
            background-image: url(../images/hero.webp);
            transform: skewX(-15deg);
            opacity: 0.5;
        }

        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(90deg, rgba(26, 26, 26, 0.02) 1px, transparent 1px),
                linear-gradient(rgba(26, 26, 26, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-text {
            max-width: 600px;
        }

        .btn-primary {
            background: var(--charcoal);
            border: 2px solid var(--charcoal);
            color: white;
            padding: 16px 32px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--deep-teal);
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .btn-primary:hover {
            color: white;
            border-color: var(--deep-teal);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--charcoal);
            color: var(--charcoal);
            padding: 16px 32px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-outline:hover {
            background: var(--charcoal);
            color: white;
            transform: translateY(-2px);
        }

        .about-section {
            padding: 120px 0;
            background: white;
        }

        .about-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(49, 151, 149, 0.1) 100%);
        }

        .service-card {
            background: white;
            border: 1px solid var(--light-gray);
            padding: 48px 32px;
            text-align: center;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--mint-green), var(--deep-teal));
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            border-color: var(--deep-teal);
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .service-card:hover::before {
            transform: translateX(0);
        }

        .service-icon {
            font-size: 56px;
            color: var(--deep-teal);
            margin-bottom: 24px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .service-icon {
            color: var(--mint-green);
            transform: scale(1.1);
        }

        .philosophy-section {
            background: var(--charcoal);
            color: white;
            padding: 120px 0;
            position: relative;
        }

        .philosophy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(49, 151, 149, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(104, 211, 145, 0.1) 0%, transparent 50%);
        }

        .philosophy-content {
            position: relative;
            z-index: 2;
        }

        .philosophy-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 32px;
            margin-bottom: 32px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 8px;
        }

        .philosophy-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
        }

        .warranty-card {
            background: white;
            border: 1px solid var(--light-gray);
            padding: 48px 32px;
            text-align: center;
            height: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 8px;
        }

        .warranty-card:hover {
            border-color: var(--deep-teal);
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .warranty-icon {
            font-size: 48px;
            color: var(--mint-green);
            margin-bottom: 20px;
        }

        .testimonial-card {
            background: white;
            border: 1px solid var(--light-gray);
            padding: 48px 40px;
            height: 100%;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 8px;
        }

        .testimonial-card:hover {
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .quote-icon {
            font-size: 36px;
            color: var(--deep-teal);
            opacity: 0.3;
            margin-bottom: 20px;
        }

        .form-control {
            border: 2px solid var(--light-gray);
            border-radius: 0;
            padding: 16px 20px;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
        }

        .form-control:focus {
            border-color: var(--deep-teal);
            box-shadow: 0 0 0 3px rgba(49, 151, 149, 0.1);
        }

        .footer {
            background: var(--slate-gray);
            color: white;
            padding: 80px 0 40px;
        }

        .footer h5 {
            color: var(--mint-green);
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .footer-link {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-link:hover {
            color: var(--mint-green);
        }

        .success-message {
            background: var(--mint-green);
            color: white;
            padding: 20px;
            border-radius: 4px;
            margin-bottom: 24px;
            display: none;
            font-weight: 500;
        }

        .modal-content {
            border: none;
            border-radius: 8px;
        }

        .modal-header {
            background: var(--charcoal);
            color: white;
        }

        .geometric-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--deep-teal) 50%, transparent 100%);
            margin: 80px 0;
            position: relative;
        }

        .geometric-divider::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: var(--deep-teal);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }

        .stats-section {
            background: white;
            padding: 80px 0;
        }

        .stat-number {
            font-size: 56px;
            font-weight: 700;
            color: var(--deep-teal);
            font-family: 'DM Sans', sans-serif;
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--medium-gray);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 40px;
            }
            
            h2 {
                font-size: 32px;
            }
            
            .hero-section {
                min-height: 80vh;
                text-align: center;
            }
            
            .hero-bg {
                display: none;
            }
            
            .navbar-brand {
                font-size: 20px;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 32px;
            }
            
            .service-card {
                margin-bottom: 32px;
            }
            
            .hero-text {
                text-align: center;
            }
        }

        /* Scroll animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Modern scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--off-white);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--deep-teal);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--mint-green);
        }
    