
        

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--accent-red);
            color: var(--white);
            border: none;
        }

        .btn-primary:hover {
            background-color: #b71c1c;
        }

        .btn-outline {
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-blue);
        }

        /* --- HEADER --- */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-blue);
            text-transform: uppercase;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .phone-link {
            font-weight: bold;
            color: var(--primary-blue);
            font-size: 1.1rem;
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(rgba(14, 43, 92, 0.8), rgba(14, 43, 92, 0.7)), url('https://images.unsplash.com/photo-1632759145351-1d592919f522?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: var(--white);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .trust-badges {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .badge {
            background: rgba(255,255,255,0.2);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
        }

        /* --- LEAD FORM --- */
        .lead-form-card {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: var(--text-dark);
        }

        .lead-form-card h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .form-note {
            font-size: 0.8rem;
            text-align: center;
            margin-top: 10px;
            color: #666;
        }

        /* --- FEATURES SECTION --- */
        .features {
            padding: 60px 0;
            background-color: var(--light-gray);
            text-align: center;
        }

        .section-title {
            color: var(--primary-blue);
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .section-subtitle {
            margin-bottom: 50px;
            color: #666;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .icon-box {
            font-size: 2.5rem;
            color: var(--accent-red);
            margin-bottom: 20px;
        }

        /* --- SERVICES SECTION --- */
        .services {
            padding: 60px 0;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .service-item {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
        }

        .service-img {
            height: 180px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
        }

        .service-info {
            padding: 20px;
        }

        .service-info h4 {
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .review-card {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 8px;
            text-align: left;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 10px;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #05162e;
            color: #aaa;
            padding: 40px 0 20px;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-text h1 {
                font-size: 2.2rem;
            }

            .nav-right {
                display: none;
            }
            
            .logo {
                flex-grow: 1;
                text-align: center;
            }
        }
        /* --- LARGE SCREEN ADJUSTMENTS --- */
@media (min-width: 1440px) {
   
    header .container {
        max-width: 100%;
        padding: 0 80px; 
    }
}
   
