    :root {
        --primary-color: #e74c3c;
        --primary-dark: #c0392b;
        --secondary-color: #3498db;
        --accent-color: #f39c12;
        --bathroom-blue: #0ea5e9;
        --bathroom-teal: #14b8a6;
        --luxury-navy: #1e3a8a;
        --spa-green: #059669;
        --dark-color: #2c3e50;
        --darker-color: #1a252f;
        --light-gray: #f8f9fa;
        --medium-gray: #6c757d;
        --border-color: #dee2e6;
        --white: #ffffff;
        --success-color: #27ae60;
        --info-color: #17a2b8;
        --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 */
    .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 Menu */
    .burger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .burger span {
        width: 28px;
        height: 3px;
        background: var(--dark-color);
        margin: 4px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .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);
    }

    /* Navigation Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--bathroom-blue), var(--bathroom-teal));
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        overflow-y: auto;
    }

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

    .nav-content {
        position: relative;
        text-align: center;
        padding: 6rem 2rem 4rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .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;
    }
    .close-nav:hover { background: rgba(255,255,255,0.15); }

    .nav-links {
        list-style: none;
        padding: 0;
    }

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 600;
        display: block;
        padding: 0.75rem;
        margin: 0.5rem 0;
        transition: all 0.3s ease;
        border-radius: 10px;
    }

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

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

    .breadcrumb-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--medium-gray);
        flex-wrap: wrap;
    }

    .breadcrumb-nav a {
        color: var(--primary-color);
        text-decoration: none;
    }

    .breadcrumb-nav a:hover {
        text-decoration: underline;
    }

    .hero {
        position: relative;
        padding: 8rem 0 6rem;
        color: var(--white);
        text-align: center;
        overflow: hidden;
    }
    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('../../images/bath-works.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        z-index: -2;
    }
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }
    @media (max-width: 1024px) {
        .hero::before { background-attachment: scroll; }
    }

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .cta-button {
        display: inline-block;
        background: var(--spa-green);
        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(5, 150, 105, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cta-button:hover {
        background: #047857;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(5, 150, 105, 0.5);
    }

    /* Content Sections */
    .content-section {
        padding: 5rem 0;
    }

    .content-section:nth-child(even) {
        background: var(--light-gray);
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 2rem;
        color: var(--dark-color);
        text-align: center;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--medium-gray);
        text-align: center;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .two-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .content-text h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--bathroom-blue);
    }

    .content-text p {
        margin-bottom: 1.5rem;
        line-height: 1.8;
        color: var(--medium-gray);
    }

    .content-text ul {
        margin: 2rem 0;
        padding-left: 1.5rem;
    }

    .content-text li {
        margin-bottom: 0.75rem;
        color: var(--medium-gray);
    }

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

    .feature-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);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--bathroom-blue);
    }

    .feature-icon {
        font-size: 3rem;
        color: var(--bathroom-blue);
        margin-bottom: 1.5rem;
    }

    .feature-card h4 {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark-color);
    }

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

    /* Bathroom Services Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
        margin: 4rem 0;
    }

    .service-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    }

    .service-image {
        height: 250px;
        background: linear-gradient(135deg, var(--bathroom-blue), var(--bathroom-teal));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 4rem;
    }

    .service-content {
        padding: 2rem;
    }

    .service-content h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark-color);
    }

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

    .service-features {
        list-style: none;
        padding: 0;
    }

    .service-features li {
        padding: 0.5rem 0;
        color: var(--medium-gray);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .service-features i {
        color: var(--spa-green);
        width: 20px;
    }

    /* Benefits Section */
    .benefits-section {
        background: linear-gradient(135deg, var(--bathroom-blue), var(--bathroom-teal));
        color: var(--white);
        padding: 4rem 0;
        margin: 4rem 0;
        border-radius: 15px;
    }

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

    .benefit-item {
        text-align: center;
        padding: 1.5rem;
    }

    .benefit-item i {
        font-size: 3rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .benefit-item h4 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .benefit-item p {
        line-height: 1.6;
        opacity: 0.9;
    }

    /* Requirements Section */
    .requirements {
        background: var(--spa-green);
        color: var(--white);
        padding: 3rem 0;
        margin: 3rem 0;
        border-radius: 15px;
    }

    .requirements-content {
        text-align: center;
    }

    .requirements h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .requirements p {
        font-size: 1.1rem;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
    }

    /* CTA Section */
    .cta-section {
        position: relative;
        color: var(--white);
        padding: 5rem 0;
        text-align: center;
        background-image:
            linear-gradient(135deg, rgba(14,165,233,0.85), rgba(5,150,105,0.85)),
            url('../../assets/bathroom-fitting-services.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    @media (max-width: 1024px) {
        .cta-section { background-attachment: scroll; }
    }

    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

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

    /* Footer */
    .footer {
        background: var(--darker-color);
        color: var(--white);
        padding: 4rem 0 2rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        color: var(--bathroom-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(--bathroom-blue);
    }
.service-image img {
width: 100%;
height: 250px;
object-fit: cover;
border-radius: 8px;
transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
transform: scale(1.05);
}

.service-image {
overflow: hidden;
border-radius: 8px;
margin-bottom: 1rem;
}
/* Sub-menus for services and locations */
.nav-submenu {
margin-top: 0.5rem;
opacity: 0;
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
margin-left: 1rem;
margin-right: 1rem;
}

.nav-submenu.active {
opacity: 1;
max-height: 800px;
padding: 1rem 0;
}

.nav-submenu a {
font-size: 1rem;
font-weight: 500;
padding: 0.5rem 1rem;
color: rgba(255, 255, 255, 0.9);
text-transform: none;
letter-spacing: 0;
}

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

/* Contact Info in Menu */
.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);
}
    .footer-bottom {
        text-align: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        color: #7f8c8d;
    }
/* ----------- Featured Case Studies (staggered) ----------- */
.featured-cases { padding: 6rem 0; background: var(--white); }
 
.featured-cases .section-eyebrow {
    display: block;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
 
.case-rows {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 3.5rem;
}
 
.case-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
 
/* Reverse every even row to stagger image/text */
.case-row.reverse { direction: rtl; }
.case-row.reverse > * { direction: ltr; }
 
.case-row-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    background: var(--light-gray);
}
 
.case-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
 
.case-row:hover .case-row-image img { transform: scale(1.04); }
 
.case-row-image .case-row-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.55rem 1.1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.case-row-image .case-row-badge.cat-extension  { background: var(--primary-color); }
.case-row-image .case-row-badge.cat-renovation { background: var(--secondary-color); }
.case-row-image .case-row-badge.cat-newbuild   { background: var(--success-color); }
.case-row-image .case-row-badge.cat-loft       { background: var(--accent-color); }
.case-row-image .case-row-badge.cat-commercial { background: #8e44ad; }
 
.case-row-image .case-row-number {
    position: absolute;
    bottom: 1rem;
    right: 1.25rem;
    color: var(--white);
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.85;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    line-height: 1;
    font-feature-settings: "tnum" 1;
}
 
.case-row-content { padding: 0.5rem 0; }
 
.case-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1rem;
    color: var(--medium-gray);
    font-size: 0.92rem;
    font-weight: 500;
}
 
.case-row-meta i { color: var(--primary-color); margin-right: 0.4rem; }
 
.case-row-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.25;
    margin-bottom: 1rem;
}
 
.case-row-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}
 
.case-row-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--light-gray);
    border-radius: 14px;
    border-left: 4px solid var(--primary-color);
}
 
.case-row-stats div { font-size: 0.85rem; color: var(--medium-gray); }
 
.case-row-stats div strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.15rem;
}
 
.case-row-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}
 
.case-row-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}
 
.case-row-link i { transition: transform 0.3s ease; }
.case-row-link:hover i { transform: translateX(4px); }
 
.featured-cases-cta {
    text-align: center;
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}
 
.featured-cases-cta p {
    color: var(--medium-gray);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}
.case-row-image .case-row-badge.cat-bathroom { background: #00a8a8; }   /* aqua/cyan */
.case-row-image .case-row-badge.cat-retail   { background: #d35400; }   /* burnt orange — for future use */
 
@media (max-width: 900px) {
    .case-rows { gap: 3.5rem; }
    .case-row,
    .case-row.reverse { grid-template-columns: 1fr; gap: 1.75rem; direction: ltr; }
    .case-row-content h3 { font-size: 1.6rem; }
    .case-row-image .case-row-number { font-size: 3rem; }
}

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2.5rem;
        }

        .two-column {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

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

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

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

        .nav-container {
            padding: 1rem;
        }
    }
/* ============================================================
       Reviews — horizontal scroll-snap carousel
       v1 — Wed 06/05/2026 — initial bolt-on
       Uses --bathroom-blue accent for scrollbar and hover states.
       ============================================================ */

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

    .reviews-grid {
        display: flex;
        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(--bathroom-blue) #e5e7eb;
    }

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

    .reviews-grid::-webkit-scrollbar-track {
        background: #e5e7eb;
        border-radius: 3px;
    }

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

    .reviews-grid::-webkit-scrollbar-thumb:hover {
        background: var(--bathroom-teal);
    }

    .review-card {
        background: #ffffff;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
        position: relative;
        flex: 0 0 360px;
        scroll-snap-align: start;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        border-top: 4px solid var(--bathroom-blue);
    }

    .review-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 1rem 2rem rgba(14, 165, 233, 0.15);
    }

    .review-stars {
        color: #f59e0b;
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .review-text {
        font-style: italic;
        color: #374151;
        line-height: 1.75;
        margin-bottom: 1.5rem;
        font-size: 0.97rem;
    }

    .review-author {
        font-weight: 700;
        color: #111827;
        font-size: 1rem;
    }

    .review-location {
        font-size: 0.85rem;
        color: #6b7280;
        margin-top: 0.2rem;
    }

    .reviews-cta {
        text-align: center;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #e5e7eb;
    }

    .reviews-cta p {
        color: #6b7280;
        margin-bottom: 1.25rem;
        font-size: 1.05rem;
    }

    @media (max-width: 480px) {
        .review-card {
            flex: 0 0 280px;
            padding: 1.5rem;
        }
        .review-text {
            font-size: 0.92rem;
        }
    }
