        :root {
            --primary-color: #0a1118;
            --accent-color: #D33B09;
            --light-bg: #f8f9fa;
        }
        
        @font-face {
            font-display: swap;
            font-family: 'Great Vibes';
            font-style: normal;
            font-weight: 400;
            src: url('../fonts/great-vibes-v19-latin-regular.woff2') format('woff2'); 
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background: var(--light-bg);
        }
        
        a {
            color: var(--accent-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Sticky Form Styles */
        .sticky-form {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--primary-color);
            color: white;
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }
        
        .sticky-form.show {
            transform: translateY(0);
        }
        
        .sticky-form .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .sticky-form .quick-info {
            font-size: 14px;
            font-weight: 600;
        }
        
        .sticky-form .cta-button {
            background: var(--accent-color);
            color: white;
            padding: 8px 20px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .sticky-form .cta-button:hover {
            background: #b33007;
            transform: translateY(-1px);
        }
        
        /* Hero Section */
        .hero {
            background-color: rgba(10, 17, 24, 0.7);
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 80px 0 60px;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/img/deck10.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            z-index: -1;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-text {
            text-align: center;
            color: white;
            z-index: 1;
        }
        
        .hero-text h1 {
            font-family: 'Great Vibes', cursive;
            font-size: 3.5rem;
            color: #F8906D;
            text-decoration: none;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-text h1:hover {
            color: #c74216;
        }
        
        .hero-text .subtitle {
            font-size: 1.3em;
            margin-bottom: 15px;
            opacity: 0.95;
        }
        
        .trust-indicators {
            display: flex;
            align-items: center;
            gap: 30px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.9em;
        }
        
        .trust-badge .icon {
            width: 24px;
            height: 24px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 12px;
        }
        
        .stars {
            color: #ffd700;
            font-size: 1.2em;
            margin-right: 5px;
        }
        
        .urgency-banner {
            background: var(--accent-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin: 1rem 0;
            font-weight: 600;
            text-align: center;
            transform: rotate(-2deg);
            animation: pulse 1.5s infinite alternate;
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            text-decoration: none;
            display: inline-block;
        }
        
        @keyframes pulse {
            0% {
                transform: rotate(-2deg) scale(1);
                box-shadow: 0 0 15px rgba(0,0,0,0.2);
            }
            100% {
                transform: rotate(-6deg) scale(1.08);
                box-shadow: 0 0 30px rgba(211, 59, 9, 0.4);
            }
        }
        
        /* Form Styles */
        .estimate-form {
            background: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-top: 4px solid var(--accent-color);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .form-header h3 {
            color: var(--primary-color);
            font-size: 1.8em;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: #666;
            font-size: 0.95em;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e1e5e9;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }
        
        .submit-btn {
            background: var(--accent-color);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .submit-btn:hover {
            background: #b33007;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(211, 59, 9, 0.4);
        }
        
        .phone-cta {
            text-align: center;
            margin-top: 20px;
            padding: 15px;
            background: var(--light-bg);
            border-radius: 5px;
        }
        
        .phone-number {
            font-size: 1.5rem;
            color: var(--accent-color);
            text-decoration: none;
            font-weight: bold;
            display: block;
            margin: 1rem 0;
        }
        
        .phone-number:hover {
            color: #b33007;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.5em;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .section-header p {
            font-size: 1.2em;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .service-card {
            background: rgb(236, 231, 231);
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-color);
        }
        
        .service-card .icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            margin: 0 auto 20px;
        }
        
        .service-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5em;
        }
        
        /* Process Section */
        .process {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-step::after {
            content: '→';
            position: absolute;
            top: 40px;
            right: -15px;
            font-size: 2em;
            color: var(--accent-color);
            font-weight: bold;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .process-step h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.2em;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 80px 0;
            background: white;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            aspect-ratio: 4/3;
            background: #e9ecef;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.02);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gallery-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #666;
            font-size: 1.1em;
        }
        
        /* CTA Section */
        .final-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, rgba(10, 17, 24, 0.9) 100%);
            color: white;
            text-align: center;
        }
        
        .final-cta h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
        
        .final-cta p {
            font-size: 1.2em;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-button {
            background: var(--accent-color);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .cta-button:hover {
            background: #b33007;
            transform: translateY(-2px);
        }
        
        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
        }
        
        .cta-button.secondary:hover {
            background: white;
            color: var(--primary-color);
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .trust-indicators {
                justify-content: center;
            }
            
            .process-step::after {
                display: none;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .sticky-form .container {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .hero {
                padding: 60px 0 40px;
            }
            
            .services, .process, .gallery, .final-cta {
                padding: 60px 0;
            }
            
            .estimate-form {
                padding: 20px;
            }
        }