        /* --- RESET & BASE STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #333;
            overflow-x: hidden;
        }

        /* Prevent body scrolling when menu is open */
        body.menu-open {
            overflow: hidden;
        }

        /* --- MAIN HEADER - FIGMA DESIGN --- */
        .main-header {
            background: #ffffff;
            padding: 12px 20px;
            border-bottom: 1px solid #eaeaea;
            position: relative;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        /* LEFT: Gas Safe Logo */
        .gas-safe-logo {
            border: 1.5px solid #ccc;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 6px;
            color: #333;
            flex-shrink: 0;
        }

        .shield-icon {
            font-size: 14px;
        }

        /* CENTER: Reviews & Company Logo */
        .brand-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            text-align: center;
            flex: 1;
        }

        .rating-box {
            font-size: 12px;
            color: #555;
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .rating-box strong {
            color: #111;
            font-weight: 700;
        }

        .yellow-star {
            color: #FFD700;
            font-size: 13px;
        }

        .logo-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .header-logo-img {
            height: 50px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        /* RIGHT: Hamburger Menu Icon */
        .menu-toggle {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            padding: 5px;
            flex-shrink: 0;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: #333;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* LOCATION BANNER */
        .location-banner {
            background: #f8f9fa;
            padding: 8px 20px;
            text-align: center;
            font-size: 12px;
            color: #666;
            border-bottom: 1px solid #eaeaea;
        }

        .location-banner span {
            font-weight: 500;
        }

        /* --- MOBILE SLIDEOUT MENU PANEL --- */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            right: -100%; /* Hidden off-screen by default */
            width: 100%;
            max-width: 400px; /* Sized perfectly like your image */
            height: 100vh;
            background-color: #ffffff;
            box-shadow: -5px 0 25px rgba(0,0,0,0.15);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            padding: 20px;
            transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Class toggled by JavaScript to open the overlay */
        .mobile-nav-overlay.open {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
            margin-bottom: 15px;
        }

        .mobile-nav-header .header-logo-img {
            height: 35px;
            margin: 0;
        }

        .close-menu {
            font-size: 28px;
            color: #555;
            cursor: pointer;
            line-height: 1;
            padding: 5px;
        }

        /* Nav List Links styling */
        .mobile-links {
            list-style: none;
            display: flex;
            flex-direction: column;
        }

        .mobile-links li {
            border-bottom: 1px solid #f7f7f7;
        }

        .mobile-links a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            color: #1e2238;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: color 0.2s;
        }

        /* Specific colors for dropdown items matches your image */
        .mobile-links li.has-dropdown a {
            color: #611f8d; 
        }

        .arrow-down::after {
            content: ' ';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg);
            margin-right: 5px;
        }

        /* Mobile Action Buttons */
        .mobile-actions {
            margin-top: 25px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .btn-call {
            background-color: #ff9f00;
            color: white;
            text-decoration: none;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 10px rgba(255, 159, 0, 0.2);
        }

        .btn-whatsapp {
            background-color: #00cc66;
            color: white;
            text-decoration: none;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 4px 10px rgba(0, 204, 102, 0.2);
        }

        /* --- BACKGROUND DIM BACKDROP --- */
        .menu-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .menu-backdrop.visible {
            opacity: 1;
            visibility: visible;
        }

        /* --- EMERGENCY RED BANNER --- */
        .emergency-banner {
            background-color: #e50914;
            color: white;
            padding: 12px 20px;
            text-align: center;
        }

        .banner-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            font-size: 14px;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: #fff;
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.9); opacity: 0.7; }
            50% { transform: scale(1.2); opacity: 1; }
            100% { transform: scale(0.9); opacity: 0.7; }
        }

        .cta-phone {
            background-color: white;
            color: #e50914;
            padding: 6px 14px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: bold;
            font-size: 13px;
        }

        /* --- HERO SECTION --- */
        .hero-section {
            position: relative;
            background: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&q=80&w=1500') no-repeat center center/cover;
            min-height: 550px;
            padding: 60px 20px;
            display: flex;
            align-items: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 10, 45, 0.92) 30%, rgba(15, 5, 25, 0.75) 100%);
            z-index: 1;
        }

        .hero-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 580px;
            color: white;
        }

        .hero-sub {
            color: #ffb703;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 15px;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .highlight-text {
            color: #ffb703;
        }

        .hero-intro {
            font-size: 15px;
            line-height: 1.6;
            color: #e0e0e0;
            margin-bottom: 30px;
        }

        .hero-intro strong {
            color: #ffb703;
        }

        .features-list {
            list-style: none;
            margin-bottom: 35px;
        }

        .features-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
        }

        .icon-wrap {
            background: transparent;
            border: 2px solid #ffb703;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .icon-wrap svg {
            width: 12px;
            height: 12px;
            fill: #ffb703;
        }

        .features-list h3 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
        }

        .features-list p {
            font-size: 13px;
            color: #b0b0b0;
            margin-top: 1px;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #00cc66;
            color: white;
            text-decoration: none;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 15px;
        }

        .whatsapp-btn svg {
            width: 18px;
            height: 18px;
            fill: white;
        }

        /* --- RESPONSIVE DESIGN (MOBILE OPTIMIZATION) --- */
        @media (max-width: 768px) {
            .header-container {
                gap: 10px;
            }
            
            .brand-rating {
                gap: 12px;
            }
            
            .rating-box {
                font-size: 11px;
            }
            
            .header-logo-img {
                height: 45px;
            }
            
            .location-banner {
                font-size: 11px;
                padding: 7px 15px;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .hero-section {
                padding: 40px 15px;
            }
            
            .banner-content {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .main-header {
                padding: 10px 12px;
            }
            
            .header-container {
                gap: 8px;
            }
            
            .gas-safe-logo {
                font-size: 9px;
                padding: 5px 8px;
                gap: 4px;
            }
            
            .shield-icon {
                font-size: 11px;
            }
            
            .brand-rating {
                gap: 8px;
            }
            
            .rating-box {
                font-size: 10px;
            }
            
            .yellow-star {
                font-size: 11px;
            }
            
            .header-logo-img {
                height: 38px;
                max-width: 100px;
            }
            
            .menu-toggle span {
                width: 20px;
                height: 2.5px;
            }
            
            .location-banner {
                font-size: 10px;
                padding: 6px 12px;
            }
        }
        /* --- TRUST SECTIONS STYLES --- */
.trust-features-section {
    background-color: #ffffff;
    padding: 40px 20px;
    width: 100%;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Dono main boxes ke beech ka gap */
}

/* Base card styling (Dono main sections ke liye) */
.stats-card, .certifications-card {
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 30px 20px;
    width: 100%;
}

/* --- Top Stats Layout --- */
.stats-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

/* Light orange circle for icons */
.stat-icon-wrap {
    background-color: #fffaf0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}

.stat-icon-wrap svg {
    width: 20px;
    height: 20px;
    fill: #ff9f00; /* Flat gold/orange color */
}

/* Typography matches your style precisely */
.stat-item h3 {
    color: #4a154b; /* Deep Purple heading */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-item p {
    color: #6a7383; /* Gray muted text */
    font-size: 12px;
    font-weight: 500;
}

/* --- Bottom Certifications Layout --- */
.certifications-card {
    text-align: center;
}

.certifications-card h2 {
    color: #4a154b;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px; /* Baday screens par content ka gap */
    flex-wrap: wrap;
}

.cert-item {
    text-align: center;
    min-width: 150px;
}

/* Specific icon containers for bottom row */
.cert-icon-wrap {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}

.cert-icon-wrap.orange-stroke svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #ff9f00;
    stroke-width: 2;
}

.cert-icon-wrap.no-bg {
    background: transparent;
}

/* Checkatrade placeholder/text icon styling */
.ct-badge {
    background-color: #f4f6f9;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
    color: #7a8293;
    width: auto;
    height: auto;
    padding: 6px 10px;
}

.cert-item h4 {
    color: #0c1a30; /* Dark contrast color for titles */
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cert-item p {
    color: #8a94a6;
    font-size: 12px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .cert-grid {
        gap: 40px; /* Mobile par gap kam hojayga */
    }
    
    .stats-card {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2x2 grid on mobile view */
        gap: 25px 10px;
    }
}

@media (max-width: 480px) {
    .stats-card {
        grid-template-columns: 1fr; /* Chotay mobile par row structure auto adjust hojayga */
    }
    
    .cert-grid {
        flex-direction: column;
        gap: 30px;
    }
}
/* --- SERVICES SECTION STYLES --- */
.services-section {
    background-color: #ffffff;
    padding: 60px 20px;
    width: 100%;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: #4a154b; /* Purple Heading */
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* 3-Column Grid for Desktop */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Service Card Design */
.service-card {
    background: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 16px;
    overflow: hidden; /* Taaki rounded corners ke andar image cut ho jaye */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle Hover Effect */
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(74, 21, 75, 0.06);
}

.service-img-wrap {
    width: 100%;
    height: 180px; /* Fixed height image aspect ratio maintain karne ke liye */
    overflow: hidden;
    background-color: #f7f9fc;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop perfectly without stretching */
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    color: #0c1a30; /* Dark premium slate color */
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-info p {
    color: #8a94a6; /* Muted gray pricing/subtext */
    font-size: 13px;
    font-weight: 500;
}

/* Center Bottom Button */
.view-all-wrap {
    text-align: center;
    margin-top: 30px;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #4a154b; /* Purple outline border */
    color: #4a154b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-view-all:hover {
    background-color: #4a154b;
    color: #ffffff;
}

/* --- MOBILE & TABLET RESPONSIVENESS --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablets par 2 cards ek row mein */
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* Mobile screens par 1 single card ek row mein */
        gap: 20px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .service-img-wrap {
        height: 160px; /* Mobile width ke hisab se responsive height adjust hojaygi */
    }
}
.service-img-wrap {
    width: 100%;
    height: 220px;         /* Height thodi badha di hai taaki image preview bada aur clear dikhe */
    overflow: hidden;
    position: relative;    /* Layout stability ke liye */
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Ye property image ko stretch kiye bagair poore div me completely fill/cover kar deti hai */
    object-position: center; /* Image ka main focal point bilkul center me lock rakhega */
    display: block;
}
/* --- HOW I WORK SECTION STYLES --- */
.process-section {
    background-color: #ffffff;
    padding: 60px 20px;
    width: 100%;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Text */
.process-header {
    text-align: center;
    margin-bottom: 45px;
}

.process-header h2 {
    color: #4a154b; /* Distinct Brand Purple */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-header p {
    color: #6a7383; /* Premium soft gray description text */
    font-size: 15px;
    font-weight: 500;
}

/* 3-Column Layout for Desktop */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Single Step Card Styling */
.process-card {
    background: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 18px;
    padding: 35px 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: box-shadow 0.3s ease;
}

.process-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Vibrant Orange Numbers */
.step-number {
    display: block;
    color: #ff9f00; 
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

/* Step Icons color matching */
.step-icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.step-icon svg {
    width: 22px;
    height: 22px;
    fill: #ff9f00; /* Flat gold/orange fill styling */
}

/* Card Heading Details */
.process-card h3 {
    color: #0c1a30; /* Dark premium contrast header */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Card Body Content Paragraph */
/* --- UPDATED HOW I WORK CARD STYLES --- */
.process-card {
    background: #ffffff;
    /* Default border light gray hai */
    border: 1px solid #eaeef5; 
    border-radius: 18px;
    padding: 35px 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    /* Border aur shadow change hone ke liye smooth 0.3 second ka transition */
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* --- HOVER EFFECT --- */
/* Jab mouse card par aayega, toh border orange (#ff9f00) ho jayega */
.process-card:hover {
    border-color: #ff9f00; 
    box-shadow: 0 10px 30px rgba(255, 159, 0, 0.06);
    transform: translateY(-2px); /* Halka sa upar lift hone ka professional effect */
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet view handles 2 cards smoothly */
    }
}

@media (max-width: 650px) {
    .process-grid {
        grid-template-columns: 1fr; /* Pure mobile stacks cards 1 per row safely */
        gap: 20px;
    }
    
    .process-header h2 {
        font-size: 24px;
    }
    
    .process-card {
        padding: 25px 20px;
    }
}
/* --- WHY CHOOSE US SECTION STYLES --- */
.why-choose-section {
    background-color: #ffffff;
    padding: 40px 20px;
    width: 100%;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Outer Wrapper Card with modern styling */
.why-choose-card {
    background: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 40px; /* Space between Image side and Text side */
}

/* Left Image Box */
.why-choose-image-wrap {
    flex: 1.1;
    height: 320px; /* Sized to display beautifully */
    border-radius: 14px;
    overflow: hidden;
}

.why-choose-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Right Content Box */
.why-choose-content {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-choose-content h2 {
    color: #4a154b; /* Purple Heading */
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* List Structure */
.why-choose-list {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

/* Soft gold background circle for checklist items */
.list-icon-wrap {
    background-color: #fffaf0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.list-icon-wrap svg {
    width: 16px;
    height: 16px;
    fill: #ff9f00; /* Flat gold tone from user image */
}

.why-choose-list p {
    color: #4e5668; /* Slate gray readability color */
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 400;
}

.why-choose-list strong {
    color: #1e2229; /* High contrast emphasis */
    font-weight: 600;
}

/* CTA Primary Button Styling */
.btn-learn-more {
    display: inline-block;
    background-color: #ff9f00; /* Gold/Orange */
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 159, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-learn-more:hover {
    background-color: #e08b00;
    transform: translateY(-1px);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .why-choose-card {
        flex-direction: column; /* Stacks vertically on smaller viewport sizes */
        padding: 25px;
        gap: 30px;
    }
    
    .why-choose-image-wrap {
        width: 100%;
        height: 240px; /* Dynamic mobile height adjustment */
    }
}

@media (max-width: 480px) {
    .why-choose-content h2 {
        font-size: 22px;
    }
    
    .why-choose-list li {
        gap: 12px;
    }
    
    .btn-learn-more {
        width: 100%; /* Full width button on compact mobile screens */
        text-align: center;
    }
}
/* --- TRANSPARENT PRICING STYLES --- */
.pricing-feature-section {
    background-color: #ffffff;
    padding: 40px 20px;
    width: 100%;
}

.pricing-feature-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Outer Main Card (Light grey container) */
.pricing-outer-card {
    background-color: #fcfdfe;
    border: 1px solid #eaeef5;
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
    text-align: center;
}

/* Header Area styling */
.pricing-feature-header {
    max-width: 650px;
    margin: 0 auto 35px auto;
}

.header-icon-wrap {
    background-color: #fffaf0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.header-icon-wrap svg {
    width: 18px;
    height: 18px;
    fill: #ff9f00; /* Flat gold/orange color */
}

.pricing-feature-header h2 {
    color: #4a154b; /* Purple Heading */
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-feature-header p {
    color: #6a7383; /* Subtitle color */
    font-size: 14.5px;
    line-height: 1.5;
    font-weight: 400;
}

/* 3-Column Layout inside the gray block */
.pricing-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

/* Inner Feature Cards (Pure White) */
.price-feat-card {
    background: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

/* Hover Effect match your existing styles */
.price-feat-card:hover {
    transform: translateY(-2px);
    border-color: #ff9f00;
}

.feat-card-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-card-icon svg {
    width: 18px;
    height: 18px;
    fill: #ff9f00;
}

.price-feat-card h3 {
    color: #0c1a30; /* Dark contrast header */
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.price-feat-card p {
    color: #8a94a6; /* Secondary light gray text */
    font-size: 13px;
    font-weight: 400;
}

/* Solid Orange CTA Button layout */
.pricing-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn-pricing-structure {
    display: inline-block;
    background-color: #e67e00; /* Darker vibrant orange for contrast */
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(230, 126, 0, 0.25);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-pricing-structure:hover {
    background-color: #cc7000;
    transform: translateY(-1px);
}

/* --- RESPONSIVE DESIGN BREAKPOINTS --- */
@media (max-width: 992px) {
    .pricing-feature-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet sizes */
    }
}

@media (max-width: 650px) {
    .pricing-outer-card {
        padding: 30px 20px;
    }

    .pricing-feature-grid {
        grid-template-columns: 1fr; /* Pure stack on phone viewports */
        gap: 15px;
    }
    
    .pricing-feature-header h2 {
        font-size: 22px;
    }
    
    .btn-pricing-structure {
        width: 100%; /* Button handles edge-to-edge beautifully on responsive screens */
        text-align: center;
    }
}
/* --- LATEST ADVICE SECTION STYLES --- */
.advice-section {
    background-color: #ffffff;
    padding: 60px 20px;
    width: 100%;
}

.advice-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Main Heading Header */
.advice-header {
    text-align: center;
    margin-bottom: 40px;
}

.advice-header h2 {
    color: #4a154b; /* Purple Brand Heading */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.advice-header p {
    color: #6a7383; /* Subtitle color */
    font-size: 15px;
    font-weight: 500;
}

/* Grid Layout for Desktop (3 Columns) */
.advice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Individual Article Card */
.advice-card {
    background: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 20px;
    overflow: hidden; /* For clipping top image rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.advice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* Image Wrap Config */
.advice-img-wrap {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.advice-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Covers full div ratio cleanly */
    object-position: center;
}

/* Card Content Details Padding */
.advice-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start; /* Left-align components */
}

/* Modern light grey category pill badge */
.category-badge {
    background-color: #f1f4f9;
    color: #5c6475;
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

/* Calendar Date block */
.post-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9aa4b5;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 500;
}

.post-date svg {
    width: 14px;
    height: 14px;
    fill: #9aa4b5;
}

/* Typography styles matching image */
.advice-content h3 {
    color: #4a154b; /* Deep rich purple headings on cards */
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.advice-content p {
    color: #6a7383;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1; /* Keeps footer links lined up perfectly */
}

/* Interactive Read More Link */
.read-more-link {
    color: #0c1a30; /* Dark premium contrast slate */
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.read-more-link svg {
    width: 15px;
    height: 15px;
    fill: #0c1a30;
    transition: transform 0.2s ease;
}

/* Simple hover micro-interaction for arrows */
.read-more-link:hover {
    color: #ff9f00; /* Subtle shift to brand orange */
}

.read-more-link:hover svg {
    fill: #ff9f00;
    transform: translateX(3px); /* Shift right smoothly */
}

/* Center Bottom Button */
.advice-btn-wrap {
    text-align: center;
    margin-top: 10px;
}

.btn-view-articles {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #4a154b; /* Outline boundary layout style */
    color: #4a154b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-view-articles:hover {
    background-color: #4a154b;
    color: #ffffff;
}

/* --- RESPONSIVE MEDIA MANAGEMENT --- */
@media (max-width: 992px) {
    .advice-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items inside tablet screens */
    }
}

@media (max-width: 650px) {
    .advice-grid {
        grid-template-columns: 1fr; /* 1 single standalone stack item inside phone displays */
        gap: 20px;
    }
    
    .advice-header h2 {
        font-size: 24px;
    }
    
    .advice-btn-wrap .btn-view-articles {
        width: 100%;
    }
}
/* --- TESTIMONIALS SECTION STYLES --- */
.reviews-section {
    background-color: #ffffff;
    padding: 40px 20px;
    width: 100%;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Outer Shell Card Wrapper Container */
.reviews-outer-card {
    background-color: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
}

/* Header Flex Row Configuration */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
}

.reviews-header h2 {
    color: #4a154b; /* Brand Purple */
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Rating Number Block Grid Layout */
.overall-rating-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-number {
    color: #4a154b;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.rating-stars-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars-row {
    display: flex;
    gap: 2px;
}

.stars-row svg, .card-stars svg {
    width: 16px;
    height: 16px;
    fill: #ff9f00; /* Flat gold tone from mockup */
}

.reviews-count {
    color: #8a94a6;
    font-size: 12px;
    font-weight: 500;
}

/* Feedback Row Split */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Inner Custom Feedback Block */
.review-item-card {
    background-color: #f8fafc; /* Very light cool gray card background */
    border: 1px solid #eaeef5;
    border-radius: 16px;
    padding: 25px;
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-meta h4 {
    color: #0c1a30; /* Dark contrast header text color */
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.time-stamp {
    color: #9aa4b5;
    font-size: 12px;
    font-weight: 400;
}

.card-stars {
    display: flex;
    gap: 1px;
}

/* Client Quote Body Styling */
.review-text {
    color: #4e5668;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

/* --- RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* Stacks reviews on small devices */
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .reviews-outer-card {
        padding: 25px 20px;
    }

    .reviews-header {
        flex-direction: column; /* Vertical alignment for headers */
        gap: 20px;
    }

    .header-right-google {
        align-self: flex-start; /* Aligns google badge left on mobiles */
    }
    
    .review-card-top {
        flex-direction: column;
        gap: 10px;
    }
}
/* --- FAQ ACCORDION SECTION STYLES --- */
.faq-section {
    background-color: #ffffff;
    padding: 60px 20px;
    width: 100%;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-main-title {
    color: #4a154b; /* Brand Purple */
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
}

/* Accordion Outer Stack */
.faq-accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Single FAQ Box Container */
.faq-item {
    background: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: border-color 0.3s ease;
}

/* Question Header Bar Trigger Button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-size: 15.5px;
    font-weight: 700;
    color: #0c1a30; /* Premium Slate Gray Text */
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #fcfdfe;
}

/* Icon Configuration */
.faq-arrow {
    width: 20px;
    height: 20px;
    fill: #9aa4b5;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

/* Controlled Max-Height Animation Wrapper */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
}

/* Answer Body Copy Container Padding wrapper */
.faq-answer-content {
    padding: 5px 25px 22px 25px;
    border-top: 1px solid #f8fafc;
}

.faq-answer-content p {
    color: #6a7383; /* Description gray */
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

/* ACTIVE STATE LOGIC (Executed via JavaScript class toggles) */
.faq-item.active {
    border-color: #ff9f00; /* Active border turns orange */
}

.faq-item.active .faq-arrow {
    transform: rotate(-180deg); /* Arrow flips up smoothly */
    fill: #ff9f00;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 650px) {
    .faq-main-title {
        font-size: 22px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 14.5px;
    }
    
    .faq-answer-content {
        padding: 5px 20px 18px 20px;
    }
}
/* --- FOOTER SECTION STYLES --- */
.main-footer-section {
    background-color: #0c1a30; /* Dark premium navy slate background for footer contrast */
    padding: 60px 20px 25px 20px;
    margin-top: 30px; /* Precise controlled standard gap from top service card area */
    width: 100%;
    border-top: 1px solid #eaeef5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 4 Column Dynamic Split grid configuration */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Header element styling tags inside columns */
.footer-col h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

/* Bio elements layout */
.brand-info .footer-logo {
    height: 42px;
    width: auto;
    margin-bottom: 18px;
}

.brand-info .company-desc {
    color: #9aa4b5;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Gas safe badge inside footer */
.gas-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 159, 0, 0.1);
    border: 1px solid rgba(255, 159, 0, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    color: #ff9f00;
    font-size: 12px;
    font-weight: 600;
}

.gas-badge svg {
    width: 14px;
    height: 14px;
    fill: #ff9f00;
}

/* Links lists settings resetting standard bullets templates */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    color: #9aa4b5;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links-list li a:hover {
    color: #ff9f00; /* Amber active link highlight */
}

/* Right-most block contact cards */
.contact-info-col .contact-label {
    color: #9aa4b5;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}

.footer-contact-card:hover {
    transform: translateY(-2px);
}

.footer-contact-card svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.footer-contact-card .card-det {
    display: flex;
    flex-direction: column;
}

.footer-contact-card .card-det .title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.footer-contact-card .card-det .val {
    font-size: 14px;
    font-weight: 700;
}

/* Orange Phone styling card configuration */
.phone-card {
    background-color: #e67e00;
    color: #ffffff;
}

/* Green WhatsApp styling card configuration */
.whatsapp-card {
    background-color: #00c651;
    color: #ffffff;
    margin-bottom: 0;
}

/* Bottom Strip Configurations */
.footer-bottom {
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #6a7383;
    font-size: 12.5px;
}

.bottom-legal-links {
    display: flex;
    gap: 20px;
}

.bottom-legal-links a {
    color: #6a7383;
    text-decoration: none;
    font-size: 12.5px;
    transition: color 0.2s ease;
}

.bottom-legal-links a:hover {
    color: #9aa4b5;
}

/* --- RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* Matrix structure shift on tablet screens */
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .main-footer-section {
        padding: 45px 20px 25px 20px;
        margin-top: 25px; /* Shorter responsive gap spacing adjustment on phone sizes */
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Pure standalone stacks list flow layouts */
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .bottom-legal-links {
        justify-content: center;
    }
}

/* --- SERVICE AREAS STYLES --- */
.coverage-section.fixed-gap {
    background-color: #ffffff;
    padding: 10px 20px 40px 20px; /* Top padding ko bohot kam kar diya hai taaki upar wale section se gap khatam ho jaye */
    margin-top: -10px; /* Agar mazeed upar chipkana ho toh margin ko minus kiya ja sakta hai */
    width: 100%;
}

.coverage-container {
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-outer-card {
    background-color: #ffffff;
    border: 1px solid #eaeef5;
    border-radius: 24px;
    padding: 40px 45px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.015);
}

.coverage-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.location-icon-badge {
    background-color: #fffaf0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon-badge svg {
    width: 16px;
    height: 16px;
    fill: #ff9f00;
}

.coverage-header-title h2 {
    color: #4a154b;
    font-size: 24px;
    font-weight: 700;
}

.primary-base-row {
    margin-bottom: 25px;
}

.badge-primary-base {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #4a154b;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.badge-primary-base svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
}

.we-cover-label {
    color: #0c1a30;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.locations-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.locations-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loc-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.orange-bullet {
    width: 7px;
    height: 7px;
    background-color: #ff9f00;
    border-radius: 50%;
    flex-shrink: 0;
}

.loc-text {
    color: #4e5668;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.2;
}

/* --- RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 850px) {
    .locations-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 520px) {
    .coverage-outer-card {
        padding: 30px 20px;
    }
    .locations-links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
/* --- MAP & FLAT FOOTER INTEGRATED STYLES --- */
.site-footer-map-section {
    background-color: #ffffff;
    width: 100%;
    padding: 30px 20px 20px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-top: 1px solid #eaeef5;
}

.footer-map-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Map Rounded Clean Border Frame Container */
.footer-map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaeef5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    margin-bottom: 25px;
}

.footer-map-wrapper iframe {
    display: block;
}

/* Horizontal Info Quick Contact Bar */
.footer-contact-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeef5;
    margin-bottom: 35px;
}

.bar-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4e5668;
    font-size: 13.5px;
    font-weight: 500;
}

.bar-contact-item a {
    color: #4e5668;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bar-contact-item a:hover {
    color: #ff9f00;
}

.bar-icon {
    width: 15px;
    height: 15px;
    fill: #ff9f00; /* Subtle orange icons matching layout screenshot */
    flex-shrink: 0;
}

/* Directory Links Grid Structure */
.footer-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.directory-col h4 {
    color: #0c1a30; /* Premium Slate Navy */
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.directory-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.directory-links li a {
    color: #6a7383; /* Soft readable secondary text */
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.15s ease;
}

.directory-links li a:hover {
    color: #ff9f00;
}

/* Bottom Legal Meta Text Row Centering */
.footer-meta-strip {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f4f6fa;
}

.footer-meta-strip p {
    color: #9aa4b5;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* --- MOBILE RESPONSIVENESS AND TABLET COMPATIBILITY --- */
@media (max-width: 768px) {
    .footer-contact-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-bottom: 20px;
    }
    
    .footer-directory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-directory-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-meta-strip p {
        line-height: 1.6;
    }
}