
    :root {
        --primary-color: #e74c3c;
        --primary-dark: #c0392b;
        --secondary-color: #3498db;
        --secondary-dark: #2980b9;
        --accent-color: #f39c12;
        --kitchen-blue: #2C3E50;
        --kitchen-white: #ECF0F1;
        --kitchen-gray: #95A5A6;
        --dark-color: #2c3e50;
        --darker-color: #1a252f;
        --light-gray: #f8f9fa;
        --medium-gray: #6c757d;
        --border-color: #dee2e6;
        --white: #ffffff;
        --success-color: #27ae60;
        --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
        --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.7;
        color: var(--dark-color);
        overflow-x: hidden;
        font-size: 16px;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* Header & Navigation - Same as original */
    .header {
        background: var(--white);
        box-shadow: var(--shadow-md);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
.logo {
display: flex;
align-items: center;
gap: 10px;
font-weight: 800;
color: var(--primary-color);
text-decoration: none;
}
.logo img {
height: 36px;   /* match to your header height */
width: auto;    /* keep aspect ratio */
display: block; /* prevent baseline gap */
}
.logo-text { line-height: 1; }

.logo i {
margin-right: 0.5rem;
font-size: 2rem;
}

.logo:hover {
transform: scale(1.05);
}

    
    .burger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.5rem;
        z-index: 1001;
        transition: all 0.3s ease;
    }
    
    .burger span {
        width: 28px;
        height: 3px;
        background: var(--dark-color);
        margin: 4px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Navigation overlay styles - same as original but condensed for space */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        overflow-y: auto;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero Section - Kitchen Specific */
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                    url('../../assets/kitchen-extension-modern.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--white);
        position: relative;
        margin-top: 80px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding: 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-content p {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .cta-button {
        display: inline-block;
        background: var(--kitchen-blue);
        color: var(--white);
        padding: 1.25rem 2.5rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .cta-button:hover {
        background: var(--darker-color);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(44, 62, 80, 0.5);
    }

    /* Breadcrumb Navigation */
    .breadcrumb {
        background: var(--light-gray);
        padding: 1rem 0;
    }

    .breadcrumb-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .breadcrumb-nav a {
        color: var(--medium-gray);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb-nav a:hover {
        color: var(--primary-color);
    }

    .breadcrumb-nav span {
        color: var(--dark-color);
        font-weight: 600;
    }

    /* Kitchen Fitting Services Section */
    .kitchen-services {
        padding: 5rem 0;
        background: var(--white);
    }
    
    .section-title {
        text-align: center;
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--dark-color);
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--medium-gray);
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
    
    .service-card {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: var(--shadow-md);
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--kitchen-blue), var(--kitchen-gray));
        transition: left 0.3s ease;
    }

    .service-card:hover::before {
        left: 0;
    }
    
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--kitchen-blue);
    }
    
    .service-icon {
        font-size: 3.5rem;
        color: var(--kitchen-blue);
        margin-bottom: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark-color);
    }

    .service-card p {
        color: var(--medium-gray);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .service-features li {
        display: flex;
        align-items: center;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        color: var(--medium-gray);
    }

    .service-features li i {
        color: var(--kitchen-blue);
        margin-right: 0.75rem;
        width: 16px;
    }

    /* Kitchen Fitting Process */
    .fitting-process {
        padding: 5rem 0;
        background: var(--light-gray);
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .process-step {
        text-align: center;
        position: relative;
        background: var(--white);
        padding: 2rem;
        border-radius: 15px;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

    .process-step:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .step-number {
        width: 80px;
        height: 80px;
        background: var(--kitchen-blue);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 800;
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-md);
    }

    .process-step h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark-color);
    }

    .process-step p {
        color: var(--medium-gray);
        line-height: 1.6;
    }

    /* Kitchen Gallery */
    .kitchen-gallery {
        padding: 5rem 0;
        background: var(--white);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .gallery-item {
        position: relative;
        height: 300px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
        background: var(--kitchen-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.2rem;
        text-align: center;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .gallery-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem;
        color: var(--white);
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
    }

    .gallery-content h3 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .gallery-content p {
        font-size: 0.95rem;
        opacity: 0.9;
    }

    /* Why Choose Us Section */
    .why-choose {
        padding: 5rem 0;
        background: var(--light-gray);
    }
    
    .why-choose-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .why-choose-text h2 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        color: var(--dark-color);
    }
    
    .why-choose-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: var(--medium-gray);
        line-height: 1.7;
    }
    
    .certifications {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .cert-badge {
        background: var(--kitchen-blue);
        color: var(--white);
        padding: 0.75rem 1.5rem;
        border-radius: 30px;
        font-weight: 600;
        font-size: 0.9rem;
        box-shadow: var(--shadow-sm);
    }

    .kitchen-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-item {
        text-align: center;
        padding: 1.5rem;
        background: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow-sm);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--kitchen-blue);
        display: block;
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--medium-gray);
        font-weight: 600;
    }
    
    .why-choose-image {
        position: relative;
        height: 450px;
        background: linear-gradient(135deg, var(--kitchen-blue), var(--kitchen-gray));
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.2rem;
        text-align: center;
        overflow: hidden;
    }

    .why-choose-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .why-choose-image-content {
        position: relative;
        z-index: 2;
        padding: 2rem;
    }

    .why-choose-image-content i {
        font-size: 5rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .why-choose-image-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    /* Kitchen Fitting Reviews */
    .kitchen-reviews {
        padding: 5rem 0;
        background: var(--white);
    }
    
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 2.5rem;
    }
    
    .review-card {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
        position: relative;
    }

    .review-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--kitchen-blue), var(--kitchen-gray));
        border-radius: 15px 15px 0 0;
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }
    
    .stars {
        color: var(--accent-color);
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .review-text {
        font-style: italic;
        margin-bottom: 1.5rem;
        color: var(--medium-gray);
        line-height: 1.7;
        font-size: 1.05rem;
    }
    
    .reviewer {
        font-weight: 600;
        color: var(--dark-color);
        font-size: 1.05rem;
    }

    .review-service {
        font-size: 0.9rem;
        color: var(--kitchen-blue);
        font-weight: 500;
        margin-top: 0.5rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 5rem 0;
        background: var(--dark-color);
        color: var(--white);
    }
    
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .contact-item i {
        font-size: 1.4rem;
        margin-right: 1rem;
        color: var(--kitchen-blue);
        width: 25px;
    }

    .contact-item span {
        font-size: 1.05rem;
    }
    
    .contact-form {
        background: rgba(255,255,255,0.1);
        padding: 2.5rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1rem;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 8px;
        font-size: 1rem;
        background: rgba(255,255,255,0.1);
        color: var(--white);
        transition: all 0.3s ease;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: rgba(255,255,255,0.7);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--kitchen-blue);
        box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.2);
    }
    
    .form-group textarea {
        height: 120px;
        resize: vertical;
    }
    
    .submit-btn {
        background: var(--kitchen-blue);
        color: var(--white);
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .submit-btn:hover {
        background: var(--darker-color);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
    }
    
    /* Footer */
    .footer {
        background: var(--darker-color);
        color: var(--white);
        padding: 4rem 0 2rem;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        color: var(--kitchen-blue);
        font-weight: 700;
    }
    
    .footer-section p,
    .footer-section a {
        color: #bdc3c7;
        text-decoration: none;
        line-height: 1.8;
        margin-bottom: 0.5rem;
        display: block;
        transition: all 0.3s ease;
    }
    
    .footer-section a:hover {
        color: var(--kitchen-blue);
        padding-left: 0.5rem;
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--kitchen-blue);
        color: var(--white);
        border-radius: 50%;
        transition: all 0.3s ease;
        padding: 0;
        margin: 0;
    }
    
    .social-links a:hover {
        background: var(--darker-color);
        transform: translateY(-3px);
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        color: #7f8c8d;
        font-size: 0.95rem;
    }

    /* Loading Animation */
    .loading {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
    }
    
    .spinner {
        width: 60px;
        height: 60px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid var(--kitchen-blue);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Scroll animations */
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-submenu { opacity: 0; max-height: 0; overflow: hidden; transition: all .3s ease; }
    .nav-submenu.active { opacity: 1; max-height: 800px; padding: 1rem 0; }
    
    /* Complete Navigation Overlay Styles */
    .nav-content {
        text-align: center;
        padding: 6rem 2rem 4rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transform: translateY(50px);
        transition: transform 0.4s ease;
    }

    .nav-overlay.active .nav-content {
        transform: translateY(0);
    }

    .nav-links {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
    }

    .nav-links li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.4s ease;
    }

    .nav-overlay.active .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links li:nth-child(7) { transition-delay: 0.7s; }
    .nav-links li:nth-child(8) { transition-delay: 0.8s; }
    .nav-links li:nth-child(9) { transition-delay: 0.9s; }
    .nav-links li:nth-child(10) { transition-delay: 1s; }

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-size: 2rem;
        font-weight: 700;
        display: block;
        padding: 0.75rem 1.5rem;
        transition: all 0.3s ease;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 10px;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--accent-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-links a:hover {
        color: var(--accent-color);
        background: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }

    .nav-links a:hover::after {
        width: 80%;
    }

    .burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 7px);
        background: var(--white);
    }

    .burger.active span:nth-child(2) {
        opacity: 0;
    }

    .burger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
        background: var(--white);
    }

    /* Close Button for Navigation */
    .nav-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        color: var(--white);
        font-size: 2rem;
        cursor: pointer;
        z-index: 1002;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-close:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(90deg);
        color: var(--accent-color);
    }

    .nav-close i {
        pointer-events: none;
    }

    .nav-contact {
        margin-top: 2rem;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease 1.2s;
    }

    .nav-overlay.active .nav-contact {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-contact-item {
        color: var(--white);
        margin: 1rem 0;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .nav-contact-item i {
        color: var(--accent-color);
        width: 25px;
    }

    .nav-social {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .nav-social a {
        color: var(--white);
        font-size: 1.5rem;
        transition: all 0.3s ease;
        padding: 0.75rem;
    }

    .nav-social a:hover {
        color: var(--accent-color);
        transform: scale(1.2);
    }
/* Close "X" button */
.close-nav {
position: absolute;
top: 20px;
right: 20px;
background: transparent;
border: 2px solid rgba(255,255,255,0.7);
color: #fff;
border-radius: 50%;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
cursor: pointer;
transition: all 0.2s ease;
z-index: 1002;
}

.close-nav:hover {
background: rgba(255,255,255,0.15);
border-color: rgba(255,255,255,0.9);
}

.close-nav i {
pointer-events: none;
}
    /* Responsive Design */
    @media (max-width: 1024px) {
        .hero-content h1 {
            font-size: 3.5rem;
        }

        .why-choose-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .contact-content {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .kitchen-stats {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.8rem;
        }
        
        .hero-content p {
            font-size: 1.2rem;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .reviews-grid {
            grid-template-columns: 1fr;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .process-steps {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .kitchen-stats {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .hero {
            background-attachment: scroll;
            background: url('../../assets/kitchen-extension-modern.jpg') no-repeat center center / cover;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1;
        }
    }
    
    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2.2rem;
        }
        
        .section-title {
            font-size: 1.8rem;
        }

        .hero-content p {
            font-size: 1.1rem;
        }

        .cta-button {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .service-card,
        .review-card {
            padding: 1.5rem;
        }

        .process-steps {
            grid-template-columns: 1fr;
        }
    }

/* ============================================================
       Reviews — horizontal scroll-snap carousel (override + bolt-on)
       v1 — Wed 06/05/2026 — initial bolt-on
       Overrides .reviews-grid grid layout in favour of horizontal
       flex scroller. Preserves existing .review-card, .stars,
       .reviewer, .review-service rules.
       ============================================================ */

    .reviews-scroller-wrap {
        position: relative;
        margin: 3rem 0 2rem;
    }

    .reviews-grid {
        display: flex !important;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 1rem 0.25rem 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) var(--light-gray);
        grid-template-columns: none;
    }

    .reviews-grid::-webkit-scrollbar {
        height: 6px;
    }

    .reviews-grid::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 3px;
    }

    .reviews-grid::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }

    .reviews-grid::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark, #c0392b);
    }

    .review-card {
        flex: 0 0 360px;
        scroll-snap-align: start;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .review-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .reviews-cta {
        text-align: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
    }

    .reviews-cta p {
        color: var(--medium-gray);
        margin-bottom: 1.25rem;
        font-size: 1.05rem;
    }

    @media (max-width: 480px) {
        .review-card {
            flex: 0 0 280px;
        }
    }
/* Kitchen CTA */
.kitchen-cta {
    background-image:
        linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.85)),
        url('../../images/house-extension.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.kitchen-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.kitchen-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.kitchen-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.kitchen-cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.kitchen-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.16);
    font-size: 0.9rem;
}

.kitchen-cta-badge i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.kitchen-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.kitchen-cta-btn {
    display: inline-block;
    padding: 1.1rem 2.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.kitchen-cta-btn.primary {
    background: var(--kitchen-blue);
    color: #ffffff;
}

.kitchen-cta-btn.primary:hover {
    background: var(--darker-color);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}

.kitchen-cta-btn.secondary {
    background: #ffffff;
    color: var(--dark-color);
}

.kitchen-cta-btn.secondary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}
