/*
Theme Name: Wheelie Clean
Description: Professional cleaning service theme for Wheelie Clean Bin Company
Version: 3.0
Author: Escala Digital
Text Domain: wheelie-clean
*/

/* ===================================
   CSS Variables - Brand System
   =================================== */
   :root {
    /* Primary Brand Colors */
    --brand-blue: #455992;
    --brand-green: #059669;
    --brand-green-original: #7d9d6c;
    --brand-light-blue: #a8d8e8;
    --brand-navy: #2c5aa0;
    
    /* Teal Accent Colors */
    --primary-teal: #4a9aa3;
    --secondary-teal: #6bb6c0;
    --light-teal: #a8d5db;
    --soft-blue: #7fb3d3;
    
    /* Eco Green for CTAs */
    --eco-green-primary: #059669;
    --eco-green-light: #10b981;
    
    /* Neutral Colors */
    --card-white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-muted: #666;
    --background-light: #f8fafb;
    --border-light: #e9ecef;
    
    /* Effects */
    --shadow-card: 0px 2px 27px -2px rgba(69, 69, 69, 0.3);
    --shadow-hover: 0px 5px 35px rgba(69, 69, 69, 0.2);
    --shadow-light: 0px 2px 15px rgba(69, 69, 69, 0.15);
    --shadow-soft: 0 4px 12px rgba(74, 154, 163, 0.15);
    
    /* Border Radius */
    --radius-card: 1rem;
    --radius-button: 25px;
    --radius-small: 8px;
}

/* ===================================
   Base Styles & Typography
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    min-height: 100vh;
}

body, .content, p {
    font-family: 'Roboto' !important;
    font-weight: 300;
}

/* Typography Hierarchy */
h1 {
    font-family: 'Roboto';
    font-weight: 800;
    color: var(--brand-blue);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Roboto';
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
}

h3,
.page-content h3, 
.entry-content h3, 
.post-content h3, 
article h3,
.wp-block-heading h3, 
h3.wp-block-heading {
    font-family: 'Roboto' !important;
    font-weight: 600 !important;
    color: var(--brand-green) !important;
    font-size: 1.5rem !important;
    margin: 2rem 0 1rem !important;
    line-height: 1.3 !important;
}

h4,
.page-content h4, 
.entry-content h4, 
.post-content h4, 
article h4,
.wp-block-heading h4, 
h4.wp-block-heading {
    font-family: 'Roboto' !important;
    font-weight: 600 !important;
    color: var(--brand-blue) !important;
    font-size: 1.3rem !important;
    margin: 1.5rem 0 1rem !important;
    line-height: 1.3 !important;
}

h5 {
    font-family: 'Roboto' !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    font-size: 1.1rem !important;
    margin: 1rem 0 0.5rem !important;
    line-height: 1.3 !important;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Special Typography Classes */
.header-blue {
    font-family: 'Roboto';
    font-weight: 800;
    color: var(--brand-blue);
    font-size: 5rem;
}

.header-green {
    font-family: 'Roboto';
    font-weight: 800;
    color: var(--brand-green-original);
    font-size: 4rem;
}

.lead-blue {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--brand-blue);
}

.text-primary {
    font-family: 'Roboto';
    color: var(--brand-green) !important;
    font-weight: 600;
}

.text-body-emphasis {
    font-weight: 600 !important;
    font-family: 'Roboto';
    font-size: 1.85rem !important;
}

/* ===================================
   BUTTON SYSTEM
   =================================== */

/* Primary Buttons - Eco Green */
.btn-primary, 
.btn-eco-green, 
.service-btn,
.contact-btn,
.btn-enhanced:not(.secondary) {
    background: linear-gradient(135deg, var(--eco-green-primary), var(--eco-green-light)) !important;
    color: white !important;
    border: none !important;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-button);
    font-family: 'Roboto';
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    cursor: pointer;
}

.btn-primary:hover, 
.btn-eco-green:hover, 
.service-btn:hover, 
.btn-enhanced:not(.secondary):hover {
    background: linear-gradient(135deg, var(--eco-green-light), #22c55e) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    color: white !important;
    text-decoration: none;
}

/* Secondary Buttons - Brand Light Blue */
.btn-secondary, 
.book-now-header, 
.page-cta-button {
    background: var(--brand-light-blue) !important;
    color: white !important;
    border: none !important;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-button);
    font-family: 'Roboto';
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 15px rgba(168, 216, 232, 0.3);
    cursor: pointer;
}

.btn-secondary:hover, 
.book-now-header:hover, 
.page-cta-button:hover {
    background: var(--brand-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0px 4px 20px rgba(44, 90, 160, 0.4);
    color: white !important;
    text-decoration: none;
}

/* Teal Buttons */
.btn-teal, 
.btn-enhanced.secondary {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal)) !important;
    color: white !important;
    border: none !important;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-button);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 154, 163, 0.3);
}

.btn-teal:hover, 
.btn-enhanced.secondary:hover {
    background: linear-gradient(135deg, var(--secondary-teal), var(--light-teal)) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 154, 163, 0.4);
    color: white !important;
}

/* Outline Buttons */
.btn-outline-primary {
    border: 2px solid var(--eco-green-primary) !important;
    color: var(--eco-green-primary) !important;
    background: white !important;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: var(--radius-button);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--eco-green-primary) !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border: 2px solid var(--brand-light-blue) !important;
    color: var(--brand-light-blue) !important;
    background: white !important;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: var(--radius-button);
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: var(--brand-light-blue) !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white !important;
    color: white !important;
    background: transparent !important;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: var(--radius-button);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white !important;
    color: var(--primary-teal) !important;
    transform: translateY(-2px);
}

.btn-light {
    background: white !important;
    color: var(--primary-teal) !important;
    border: 1px solid var(--border-light) !important;
    font-weight: 600;
    border-radius: var(--radius-button);
    box-shadow: var(--shadow-card);
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--primary-teal) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* ===================================
   CARD SYSTEM
   =================================== */

/* Base Card Styles */
.card-lift, 
.service-card-enhanced, 
.feature-box, 
.contact-info-card,
.page-content-wrapper, 
.contact-form-section, 
.service-hours-card,
.pricing-card, 
.feature-card, 
.process-step, 
.service-card {
    background: var(--card-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Card Top Border */
.service-card-enhanced::before, 
.feature-box::before, 
.contact-info-card::before,
.page-content-wrapper::before, 
.contact-form-section::before,
.service-hours-card::before, 
.timeline-content::before, 
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--soft-blue));
    z-index: 1;
}

/* Card Hover Effects */
.card-lift:hover, 
.service-card-enhanced:hover, 
.feature-box:hover,
.contact-info-card:hover, 
.feature-card:hover, 
.process-step:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-teal);
}

/* Special Cards */
.card-small {
    max-width: 270px; 
    margin: 0 auto;
    max-height: 230px;
}

.card-body-small {
    padding: 1rem 0.75rem;
}

.bg-body-tertiary.rounded-3 {
    background: var(--card-white) !important;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
}

/* ===================================
   NAVIGATION SYSTEM
   =================================== */

/* Default Navigation (Non-Homepage) */
.top-nav {
    background: white;
    padding: 15px 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0 0 0 2.5rem;
    padding: 0;
}

.nav-menu a {
    color: var(--eco-green-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto';
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--eco-green-light);
}

/* ===================================
   NAVIGATION SYSTEM - MOBILE FIXES
   =================================== */

/* Base Navigation Styles */
.top-nav {
    background: white;
    padding: 15px 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    color: var(--eco-green-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto';
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--eco-green-light);
}

/* Book Now Button */
.book-now-header {
    background: var(--brand-light-blue) !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: var(--radius-button);
    font-family: 'Roboto';
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 15px rgba(168, 216, 232, 0.3);
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.book-now-header:hover {
    background: var(--brand-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0px 4px 20px rgba(44, 90, 160, 0.4);
    color: white !important;
    text-decoration: none;
}

/* ===================================
   HOMEPAGE NAVIGATION OVERRIDES
   =================================== */

/* Homepage Navigation - Transparent with white text */
body.home .top-nav,
body.front-page .top-nav,
body.page-template-default.page.page-id-2 .top-nav,
body[class*="home"] .top-nav,
body[class*="front-page"] .top-nav {
    background: transparent !important;
    box-shadow: none !important;
    padding: 20px 0 !important;
}

/* Hide logo on homepage ONLY on desktop */
@media (min-width: 769px) {
    body.home .nav-logo,
    body.front-page .nav-logo,
    body.page-template-default.page.page-id-2 .nav-logo,
    body[class*="home"] .nav-logo,
    body[class*="front-page"] .nav-logo {
        display: none !important;
    }

    /* Center navigation on homepage desktop */
    body.home .nav-content,
    body.front-page .nav-content,
    body.page-template-default.page.page-id-2 .nav-content,
    body[class*="home"] .nav-content,
    body[class*="front-page"] .nav-content {
        justify-content: center !important;
    }
}

/* White text for homepage navigation */
body.home .nav-menu a,
body.front-page .nav-menu a,
body.page-template-default.page.page-id-2 .nav-menu a,
body[class*="home"] .nav-menu a,
body[class*="front-page"] .nav-menu a {
    color: white !important;
    font-weight: 500 !important;
}

body.home .nav-menu a:hover,
body.front-page .nav-menu a:hover,
body.page-template-default.page.page-id-2 .nav-menu a:hover,
body[class*="home"] .nav-menu a:hover,
body[class*="front-page"] .nav-menu a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Homepage Book Now Button */
body.home .book-now-header,
body.front-page .book-now-header,
body.page-template-default.page.page-id-2 .book-now-header,
body[class*="home"] .book-now-header,
body[class*="front-page"] .book-now-header {
    background: var(--brand-light-blue) !important;
    color: white !important;
    box-shadow: 0px 2px 15px rgba(168, 216, 232, 0.3) !important;
}

body.home .book-now-header:hover,
body.front-page .book-now-header:hover,
body.page-template-default.page.page-id-2 .book-now-header:hover,
body[class*="home"] .book-now-header:hover,
body[class*="front-page"] .book-now-header:hover {
    background: var(--brand-navy) !important;
    box-shadow: 0px 4px 20px rgba(44, 90, 160, 0.4) !important;
    color: white !important;
}

/* ===================================
   MOBILE NAVIGATION - SIMPLIFIED
   =================================== */

@media (max-width: 768px) {
    .top-nav {
        padding: 10px 0 !important;
        background: white !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .nav-content {
        flex-direction: row-reverse;
        gap: 15px;
        align-items: center;
        justify-content: center !important;
        text-align: center;
        padding: 0 15px;
    }
    
    /* Show logo on ALL pages on mobile */
    .nav-logo {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        order: 1;
    }
    
    .nav-logo img {
        height: 40px !important;
    }
    
    /* Navigation menu styling */
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center !important;
        width: 100% !important;
        font-size: 14px;
        order: 2;
    }
    
    .nav-menu a {
        color: var(--eco-green-primary) !important;
        font-weight: 600 !important;
        font-size: 14px !important;
    }
    
    .nav-menu a:hover {
        color: var(--eco-green-light) !important;
    }
    
    /* Hide book now button on mobile */
    .book-now-header {
        display: none !important;
    }
    
    /* Override homepage styles on mobile */
    body.home .top-nav,
    body.front-page .top-nav,
    body.page-template-default.page.page-id-2 .top-nav,
    body[class*="home"] .top-nav,
    body[class*="front-page"] .top-nav {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    /* Show logo on homepage mobile too */
    body.home .nav-logo,
    body.front-page .nav-logo,
    body.page-template-default.page.page-id-2 .nav-logo,
    body[class*="home"] .nav-logo,
    body[class*="front-page"] .nav-logo {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    /* Use green text on homepage mobile too */
    body.home .nav-menu a,
    body.front-page .nav-menu a,
    body.page-template-default.page.page-id-2 .nav-menu a,
    body[class*="home"] .nav-menu a,
    body[class*="front-page"] .nav-menu a {
        color: var(--eco-green-primary) !important;
        font-weight: 600 !important;
    }
    
    body.home .nav-menu a:hover,
    body.front-page .nav-menu a:hover,
    body.page-template-default.page.page-id-2 .nav-menu a:hover,
    body[class*="home"] .nav-menu a:hover,
    body[class*="front-page"] .nav-menu a:hover {
        color: var(--eco-green-light) !important;
    }
}

/* Very small screens */
@media (max-width: 576px) {
    .nav-content {
        gap: 10px;
        padding: 0 10px;
    }
    
    .nav-logo img {
        height: 35px !important;
    }
    
    .nav-menu {
        gap: 15px;
        font-size: 13px;
    }
    
    .nav-menu a {
        font-size: 13px !important;
    }
}

/* Homepage Navigation Override */
body.home .top-nav,
body.front-page .top-nav,
body.page-template-default.page.page-id-2 .top-nav,
body[class*="home"] .top-nav,
body[class*="front-page"] .top-nav {
    background: transparent !important;
    box-shadow: none !important;
    padding: 20px 0 !important;
}

/* Hide logo on homepage */
body.home .nav-logo,
body.front-page .nav-logo,
body.page-template-default.page.page-id-2 .nav-logo,
body[class*="home"] .nav-logo,
body[class*="front-page"] .nav-logo {
    display: none !important;
}

/* Center navigation on homepage */
body.home .nav-content,
body.front-page .nav-content,
body.page-template-default.page.page-id-2 .nav-content,
body[class*="home"] .nav-content,
body[class*="front-page"] .nav-content {
    justify-content: center !important;
}

/* White text for homepage navigation */
body.home .nav-menu a,
body.front-page .nav-menu a,
body.page-template-default.page.page-id-2 .nav-menu a,
body[class*="home"] .nav-menu a,
body[class*="front-page"] .nav-menu a {
    color: white !important;
    font-weight: 500 !important;
}

body.home .nav-menu a:hover,
body.front-page .nav-menu a:hover,
body.page-template-default.page.page-id-2 .nav-menu a:hover,
body[class*="home"] .nav-menu a:hover,
body[class*="front-page"] .nav-menu a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Homepage Book Now Button */
body.home .book-now-header,
body.front-page .book-now-header,
body.page-template-default.page.page-id-2 .book-now-header,
body[class*="home"] .book-now-header,
body[class*="front-page"] .book-now-header {
    background: var(--brand-light-blue) !important;
    color: white !important;
    box-shadow: 0px 2px 15px rgba(168, 216, 232, 0.3) !important;
}

body.home .book-now-header:hover,
body.front-page .book-now-header:hover,
body.page-template-default.page.page-id-2 .book-now-header:hover,
body[class*="home"] .book-now-header:hover,
body[class*="front-page"] .book-now-header:hover {
    background: var(--brand-navy) !important;
    box-shadow: 0px 4px 20px rgba(44, 90, 160, 0.4) !important;
    color: white !important;
}

/* ===================================
   LAYOUT & BACKGROUNDS
   =================================== */
body.home, 
body.front-page, 
body.page-template-default.page.page-id-2,
body[class*="home"], 
body[class*="front-page"] {
    background-image: url('./images/background2.svg');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
}

.vh-65 { height: 60vh; }
.vh-80 { height: 80vh; }

/* ===================================
   SECTION TITLES
   =================================== */
.section-title, 
.contact-title, 
.page-title, 
.contact-form-title {
    font-family: 'Roboto';
    font-weight: 700;
    color: var(--brand-blue);
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-title, 
.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-form-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-teal), var(--soft-blue));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.contact-subtitle, 
.page-subtitle, 
.contact-form-subtitle {
    font-family: 'Roboto';
    font-weight: 300;
    text-align: center;
    margin-bottom: 0;
}

.contact-subtitle, 
.page-subtitle {
    color: var(--brand-green);
    font-size: 1.4rem;
}

.contact-form-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===================================
   HERO SECTIONS
   =================================== */

/* Services Hero & Single Service Hero */
.services-hero,
.single-service .hero-section, 
body.single-service .hero-section,
.single-service-hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--soft-blue) 100%) !important;
    position: relative;
    overflow: hidden;
    padding: 90px 0 60px !important;
}

.services-hero::before,
.single-service .hero-section::before, 
body.single-service .hero-section::before,
.single-service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.services-content,
.single-service .hero-content, 
body.single-service .hero-content,
.single-service-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Hero Titles */
.single-service .hero-section h1, 
body.single-service .hero-section h1,
.single-service-hero h1 {
    color: white !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Roboto' !important;
}

.single-service .service-icon, 
body.single-service .service-icon,
.single-service-hero .service-icon {
    font-size: 2.5rem !important;
    color: white;
    margin-bottom: 1.5rem !important;
    opacity: 0.9;
}

.single-service .hero-section .lead, 
body.single-service .hero-section .lead,
.single-service-hero .lead {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.2rem !important;
    font-weight: 300;
    margin-bottom: 2rem !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6 !important;
}

/* Hero Buttons */
.single-service-hero .hero-buttons {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 2rem !important;
}

.single-service-hero .btn-outline-light {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    border-radius: var(--radius-button) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 180px !important;
    font-family: 'Roboto' !important;
}

.single-service-hero .btn-outline-light:hover {
    background: white !important;
    color: var(--brand-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    text-decoration: none !important;
}

/* General Page Hero */
.page-hero-section, 
.contact-hero-section {
    background: transparent;
    padding: 40px 0 20px;
    margin-top: 0;
}

.page-title-container, 
.contact-title-container {
    text-align: center;
    margin-bottom: 3rem;
}

/* ===================================
   SERVICE PAGES
   =================================== */

/* Service Icons */
.service-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-teal), var(--soft-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-light);
}

.service-card-enhanced:hover .service-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0px 4px 20px rgba(69, 69, 69, 0.25);
}

.service-icon-wrapper img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.service-icon-wrapper i {
    font-size: 2.5rem !important;
}

/* Feature Icons & Step Numbers */
.single-service .feature-icon, 
body.single-service .feature-icon,
.contact-info-icon {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-teal));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-icon {
    background: linear-gradient(135deg, var(--primary-teal), var(--soft-blue));
    margin-bottom: 1rem;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.single-service .step-number, 
body.single-service .step-number, 
.step-number {
    background: linear-gradient(135deg, var(--primary-teal), var(--soft-blue));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-light);
}

/* Service Content */
.service-title {
    font-family: 'Roboto';
    color: var(--brand-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    font-family: 'Roboto';
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.service-features li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-family: 'Roboto';
    font-weight: 300;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Pricing Elements */
.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-teal), var(--soft-blue));
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius-button);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

.single-service .pricing-card, 
body.single-service .pricing-card {
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
}

.single-service .pricing-card:hover, 
body.single-service .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-teal);
}

.single-service .pricing-card.featured, 
body.single-service .pricing-card.featured {
    border: 2px solid var(--primary-teal);
    transform: scale(1.05);
    box-shadow: var(--shadow-soft);
}

.single-service .price, 
body.single-service .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ===================================
   FORMS
   =================================== */
.wpcf7 {
    font-family: 'Roboto', sans-serif;
}

.wpcf7-form {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem !important;
}

.wpcf7 label {
    display: block;
    font-family: 'Roboto';
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.wpcf7 input[type="text"], 
.wpcf7 input[type="email"], 
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"], 
.wpcf7 input[type="number"], 
.wpcf7 input[type="date"],
.wpcf7 textarea, 
.wpcf7 select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-small);
    font-family: 'Roboto';
    font-size: 1rem;
    font-weight: 300;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wpcf7 input:focus, 
.wpcf7 textarea:focus, 
.wpcf7 select:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
}

.wpcf7 input[type="submit"] {
    background: var(--brand-light-blue);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: var(--radius-button);
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 15px rgba(168, 216, 232, 0.3);
    justify-self: center;
    min-width: 200px;
}

.wpcf7 input[type="submit"]:hover {
    background: var(--brand-navy);
    transform: translateY(-2px);
    box-shadow: 0px 4px 20px rgba(44, 90, 160, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Form Validation */
.wpcf7-validation-errors, 
.wpcf7-acceptance-missing {
    background: #ffeaa7;
    border: 2px solid #fdcb6e;
    color: #6c5ce7;
    padding: 1rem;
    border-radius: var(--radius-small);
    margin: 1rem 0;
    font-weight: 600;
}

.wpcf7-mail-sent-ok {
    background: #a7f3d0;
    border: 2px solid #6ee7b7;
    color: #047857;
    padding: 1rem;
    border-radius: var(--radius-small);
    margin: 1rem 0;
    font-weight: 600;
}

.wpcf7-mail-sent-ng, 
.wpcf7-spam-blocked {
    background: #fecaca;
    border: 2px solid #f87171;
    color: #dc2626;
    padding: 1rem;
    border-radius: var(--radius-small);
    margin: 1rem 0;
    font-weight: 600;
}

.wpcf7-not-valid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ===================================
   TIMELINE & PROCESS
   =================================== */
.timeline-item {
    position: relative;
    padding: 2rem 0;
    margin-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-teal), var(--soft-blue));
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 2rem;
    width: 1rem;
    height: 1rem;
    background: var(--brand-green);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--brand-green);
}

.timeline-item:last-child::before {
    background: linear-gradient(180deg, var(--primary-teal), transparent);
}

.timeline-content {
    background: var(--card-white);
    padding: 1.5rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    margin-left: 1rem;
    border: 1px solid var(--border-light);
}

/* Process Steps Equal Height Fix */
.single-service .process-section .row, 
body.single-service .process-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
}

.single-service .process-section [class*="col-"], 
body.single-service .process-section [class*="col-"] {
    display: flex !important;
}

.single-service .process-step, 
body.single-service .process-step {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    padding: 2rem !important;
    margin-bottom: 2rem !important;
}

.single-service .step-number, 
body.single-service .step-number {
    flex-shrink: 0 !important;
    margin: 0 auto 1.5rem !important;
}

.single-service .process-step h5, 
body.single-service .process-step h5 {
    flex-shrink: 0 !important;
    margin-bottom: 1rem !important;
}

.single-service .process-step p, 
body.single-service .process-step p {
    flex-grow: 1 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: flex-start !important;
}

/* ===================================
   IMAGES & GALLERY
   =================================== */
.custom-icon {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.service-icon-image {
    max-width: 90px;
}

#front-bin {
    max-height: 22em;
    border-radius: var(--radius-small);
}

.card-small .fa-3x {
    font-size: 2rem !important;
}

/* Gallery */
.single-service .gallery-item, 
body.single-service .gallery-item {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.single-service .gallery-item:hover, 
body.single-service .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.single-service .gallery-item img, 
body.single-service .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.single-service .gallery-overlay, 
body.single-service .gallery-overlay {
    background: linear-gradient(135deg, rgba(74, 154, 163, 0.9), rgba(127, 179, 211, 0.9));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    flex-direction: column;
}

.single-service .gallery-item:hover .gallery-overlay,
body.single-service .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Service Images */
.service-images-grid .service-image-card,
.service-images-stack .service-image-card {
    max-height: 33rem !important;
    overflow: hidden;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.service-images-grid .row .col-12 .service-image-card {
    height: 280px;
}

.service-images-grid img,
.service-images-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-images-grid .service-image-card:hover,
.service-images-stack .service-image-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

/* Image Layouts */
.page-featured-image, 
.hero-image-section {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
    overflow: hidden;
}

.page-featured-image img, 
.hero-image-section img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-featured-image:hover img {
    transform: scale(1.02);
}

.image-content-row {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin: 3rem 0;
}

.image-content-text {
    flex: 1;
}

.image-content-image {
    flex: 1;
    text-align: center;
}

.image-content-image img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-light);
}

@media (max-width: 768px) {
    .image-content-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-small);
        box-shadow: var(--shadow-light);
    }
}

/* Before/After */
.before-after-container {
    background: var(--card-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    margin: 3rem 0;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.before-after-item {
    text-align: center;
}

.before-after-item h4 {
    color: var(--brand-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.before-after-item img {
    width: 100%;
    max-height: 30rem;
    object-fit: cover;
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-light);
}

/* Related Services Images */
.single-service .related-services-section .service-image,
body.single-service .related-services-section .service-image {
    max-height: 33rem !important;
    overflow: hidden !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--background-light) !important;
    position: relative !important;
}

.single-service .related-services-section .service-image img,
body.single-service .related-services-section .service-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transition: all 0.3s ease !important;
}

.single-service .service-card:hover .service-image img,
body.single-service .service-card:hover .service-image img {
    transform: scale(1.05) !important;
}

/* ===================================
   CTA SECTIONS
   =================================== */

/* Main CTA Styling */
.single-service .cta-section, 
body.single-service .cta-section,
.cta-enhanced {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--soft-blue) 100%) !important;
    padding: 65px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 30px !important;
}

.single-service .cta-section::before, 
body.single-service .cta-section::before,
.cta-enhanced::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat !important;
    opacity: 0.4 !important;
    pointer-events: none !important;
}

/* CTA Card Styling */
.single-service .cta-card, 
body.single-service .cta-card,
.cta-card-enhanced {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 2.5rem !important;
    position: relative !important;
    z-index: 2 !important;
}

/* CTA Content Container */
.single-service .cta-section .container, 
body.single-service .cta-section .container,
.cta-enhanced .container {
    position: relative !important;
    z-index: 2 !important;
}

/* CTA Headings */
.cta-enhanced h1, .cta-enhanced h2, .cta-enhanced h3, .cta-enhanced h4,
.single-service .cta-section h1, .single-service .cta-section h2, 
.single-service .cta-section h3, .single-service .cta-section h4,
body.single-service .cta-section h1, body.single-service .cta-section h2,
body.single-service .cta-section h3, body.single-service .cta-section h4,
.cta-card-enhanced h1, .cta-card-enhanced h2, .cta-card-enhanced h3, .cta-card-enhanced h4 {
    color: white !important;
    font-family: 'Roboto' !important;
    font-weight: 700 !important;
    text-align: center !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.cta-enhanced h2, 
.single-service .cta-section h2, 
body.single-service .cta-section h2,
.cta-card-enhanced h3 {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem !important;
}

.cta-enhanced h3, 
.single-service .cta-section h3, 
body.single-service .cta-section h3 {
    font-size: 2.2rem !important;
    margin-bottom: 15px !important;
}

/* CTA Text */
.cta-enhanced p, 
.single-service .cta-section p, 
body.single-service .cta-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-family: 'Roboto' !important;
    font-weight: 300 !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
    margin-bottom: 2.5rem !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.cta-card-enhanced p {
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
    max-width: 500px !important;
}

/* CTA Button Containers */
.cta-enhanced .d-flex, 
.cta-enhanced .hero-buttons, 
.cta-enhanced .cta-buttons,
.single-service .hero-buttons, 
.single-service .cta-buttons,
body.single-service .hero-buttons, 
body.single-service .cta-buttons {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 2rem !important;
}

/* Primary CTA Buttons */
.cta-enhanced .btn-primary, 
.cta-enhanced .btn-enhanced:not(.secondary),
.single-service .cta-section .btn-primary, 
.single-service .cta-section .btn-enhanced,
body.single-service .cta-section .btn-primary, 
body.single-service .cta-section .btn-enhanced {
    background: white !important;
    color: var(--brand-blue) !important;
    border: 2px solid white !important;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    border-radius: var(--radius-button) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 180px !important;
    font-family: 'Roboto' !important;
}

.cta-enhanced .btn-primary:hover, 
.cta-enhanced .btn-enhanced:not(.secondary):hover,
.single-service .cta-section .btn-primary:hover, 
.single-service .cta-section .btn-enhanced:hover,
body.single-service .cta-section .btn-primary:hover, 
body.single-service .cta-section .btn-enhanced:hover {
    background: transparent !important;
    color: white !important;
    border-color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    text-decoration: none !important;
}

/* Secondary CTA Buttons */
.cta-enhanced .btn-secondary, 
.cta-enhanced .btn-enhanced.secondary, 
.cta-enhanced .btn-outline-light,
.single-service .cta-section .btn-secondary, 
.single-service .cta-section .btn-outline-light,
body.single-service .cta-section .btn-secondary, 
body.single-service .cta-section .btn-outline-light {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 15px 35px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    border-radius: var(--radius-button) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 180px !important;
    font-family: 'Roboto' !important;
}

.cta-enhanced .btn-secondary:hover, 
.cta-enhanced .btn-enhanced.secondary:hover, 
.cta-enhanced .btn-outline-light:hover,
.single-service .cta-section .btn-secondary:hover, 
.single-service .cta-section .btn-outline-light:hover,
body.single-service .cta-section .btn-secondary:hover, 
body.single-service .cta-section .btn-outline-light:hover {
    background: white !important;
    color: var(--brand-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    text-decoration: none !important;
}

/* Contact Info within CTA */
.single-service .contact-info, 
body.single-service .contact-info {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    padding: 2rem 1rem !important;
    margin: 3rem auto 4rem !important;
    backdrop-filter: blur(10px) !important;
    max-width: 625px !important;
}

.single-service .cta-section .contact-item, 
body.single-service .cta-section .contact-item {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
}

.single-service .contact-icon, 
body.single-service .contact-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 1rem !important;
    transition: all 0.3s ease !important;
    font-size: 1.2rem !important;
}

.single-service .contact-item:hover .contact-icon,
body.single-service .contact-item:hover .contact-icon {
    background: white !important;
    color: var(--brand-blue) !important;
    transform: scale(1.1) !important;
}

.single-service .contact-item a, 
.single-service .contact-item span,
body.single-service .contact-item a, 
body.single-service .contact-item span {
    color: white !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
}

/* Other CTA Elements */
.page-cta-section {
    background: var(--card-white);
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-light);
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.page-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--soft-blue));
}

.page-cta-title {
    font-family: 'Roboto';
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.page-cta-text {
    font-family: 'Roboto';
    font-weight: 300;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.emergency-contact {
    background: linear-gradient(135deg, var(--primary-teal), var(--soft-blue));
    color: white;
    border-radius: var(--radius-card);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #1e3a5f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
}

/* Floating Elements */
.site-footer .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.site-footer .floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.03);
    animation: footerFloat 15s ease-in-out infinite;
}

.site-footer .floating-circle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.site-footer .floating-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 8%;
    animation-delay: 4s;
}

.site-footer .floating-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 15%;
    animation-delay: 8s;
}

.site-footer .floating-circle:nth-child(4) {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 12s;
}

.site-footer .floating-circle:nth-child(5) {
    width: 100px;
    height: 100px;
    bottom: 45%;
    left: 70%;
    animation-delay: 16s;
}

@keyframes footerFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px);
        opacity: 0.6;
    }
}

.footer-main {
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
}

/* Clean Footer Cards */
.footer-card {
    height: 100%;
    padding: 0;
}

/* Footer Typography */
.footer-card h4 {
    color: white !important;
    font-family: 'Roboto' !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.footer-card h5 {
    color: var(--eco-green-light) !important;
    font-family: 'Roboto' !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-card h6 {
    color: white !important;
    font-family: 'Roboto' !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
    margin-top: 2rem !important;
}

.footer-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Roboto' !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
}

/* Footer Contact Items */
.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
    transform: translateX(5px);
}

.footer-contact .contact-item i {
    background: var(--eco-green-primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.footer-contact .contact-item a,
.footer-contact .contact-item span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Roboto';
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: var(--eco-green-light);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Roboto';
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: var(--eco-green-light);
    transform: translateX(5px);
}

/* Business Hours */
.business-hours {
    margin-bottom: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Roboto';
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.emergency {
    color: var(--eco-green-light);
    font-weight: 500;
}

.hours-row span:last-child {
    font-weight: 500;
    color: white;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--eco-green-primary);
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0 !important;
    font-family: 'Roboto' !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
}

/* ===================================
   SPECIAL SECTIONS
   =================================== */

/* Service Hours */
.service-hours-title {
    font-family: 'Roboto';
    font-weight: 700;
    color: var(--brand-blue);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0 !important;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Roboto';
    font-weight: 300;
    margin-bottom: 0 !important;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--brand-blue);
}

.hours-time {
    color: var(--text-muted);
}

/* Section Backgrounds */
.why-choose-section, 
.main-service-section, 
.pricing-section, 
.gallery-section {
    background: var(--background-light);
    padding: 4rem 0;
}

.features-section, 
.process-section, 
.related-services-section {
    background: white;
    padding: 4rem 0;
}

/* Main Content Areas */
.main-content {
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.contact-info-section {
    margin-bottom: 4rem;
}

.no-services {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.no-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--soft-blue));
}

.no-services i {
    font-size: 4rem !important;
    color: var(--brand-blue) !important;
    margin-bottom: 1rem !important;
}

/* Service Card Layout Fixes */
.service-card-enhanced {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.service-description {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.service-btn {
    margin-top: auto;
    text-align: center;
}

/* Related Services Equal Height & Button Fixes */
.single-service .related-services-section .row,
body.single-service .related-services-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.single-service .related-services-section [class*="col-"],
body.single-service .related-services-section [class*="col-"] {
    display: flex !important;
    margin-bottom: 2rem !important;
}

.single-service .service-card,
body.single-service .service-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.single-service .service-content,
body.single-service .service-content {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    padding: 1.5rem !important;
    position: relative !important;
    z-index: 2 !important;
}

.single-service .service-content h5,
body.single-service .service-content h5 {
    margin-bottom: 1rem !important;
    flex-shrink: 0 !important;
}

.single-service .service-content h5 a,
body.single-service .service-content h5 a {
    color: var(--eco-green-primary) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.single-service .service-content h5 a:hover,
body.single-service .service-content h5 a:hover {
    color: var(--eco-green-light) !important;
    text-decoration: none !important;
}

.single-service .service-content p,
body.single-service .service-content p {
    color: var(--text-light) !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    font-family: 'Roboto' !important;
    font-weight: 300 !important;
    flex-grow: 1 !important;
    margin-bottom: 1.5rem !important;
}

/* Style related service buttons */
.single-service .service-content .btn,
body.single-service .service-content .btn {
    background: linear-gradient(135deg, var(--eco-green-primary), var(--eco-green-light)) !important;
    color: white !important;
    border: none !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    border-radius: var(--radius-button) !important;
    font-family: 'Roboto' !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 12px rgba(5, 150, 105, 0.3) !important;
    font-size: 0.9rem !important;
    margin-top: auto !important;
    align-self: flex-start !important;
    min-width: 120px !important;
}

.single-service .service-content .btn:hover,
body.single-service .service-content .btn:hover {
    background: linear-gradient(135deg, var(--eco-green-light), #22c55e) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Constrain single service image */
.single-service .service-image-card, 
body.single-service .service-image-card {
    max-width: 33rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.single-service .service-image-card img, 
body.single-service .service-image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ===================================
   ANIMATIONS & EFFECTS
   =================================== */

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Title Animations */
.title-animated {
    animation: slideInFromTop 0.8s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.subtitle-animated {
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.wpcf7-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--brand-green);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   SPACING FIXES
   =================================== */

/* Page Content Wrapper */
.page-content-wrapper {
    padding: 1rem 2rem 3rem 2rem !important;
}

/* Contact Page Spacing */
.contact-hero-section {
    padding: 40px 0 60px !important;
    margin-bottom: 0 !important;
}

.contact-info-section {
    padding: 0 0 60px !important;
    margin-bottom: 40px !important;
}

.contact-info-card {
    padding: 2rem !important;
    margin-bottom: 2rem !important;
    height: auto !important;
}

.contact-form-section {
    padding: 2rem 2rem 3rem 2rem !important;
    margin-bottom: 0 !important;
}

.additional-info {
    padding: 0 0 60px !important;
    margin-top: 40px !important;
}

.service-hours-card {
    padding: 2rem !important;
    margin-bottom: 2rem !important;
}

.emergency-contact {
    padding: 2rem !important;
    margin-bottom: 0 !important;
}

.emergency-contact h4 {
    margin-bottom: 1rem !important;
    color: white !important;
}

.emergency-contact p {
    margin-bottom: 1rem !important;
}

.emergency-contact a {
    font-size: 1.2rem !important;
    margin-bottom: 0 !important;
}

/* Services Page Spacing */
.why-choose-section {
    margin-top: 40px !important;
    padding: 80px 0 !important;
}

.feature-box {
    padding: 2rem !important;
    margin-bottom: 2rem !important;
}

.feature-box i {
    font-size: 3rem !important;
    display: block !important;
    margin-bottom: 1rem !important;
}

.process-timeline .timeline-content {
    padding: 1.5rem !important;
}

.timeline-content h4 i {
    font-size: 1.2rem !important;
    margin-right: 0.5rem !important;
}

.cta-card-enhanced i {
    font-size: 1rem !important;
    margin-right: 0.5rem !important;
}

/* Override conflicting styles */
.contact-hero-section + .contact-info-section,
.contact-info-section + .main-content {
    margin-top: 0 !important;
}

body.page-template-contact .main-content {
    margin-top: 0 !important;
    position: relative !important;
    z-index: auto !important;
}

.contact-title-container {
    margin-bottom: 0 !important;
}

.contact-title {
    margin-bottom: 1rem !important;
}

.contact-subtitle {
    margin-bottom: 0 !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    /* Typography Scaling */
    h1, .header-blue {
        font-size: 2.5rem;
    }
    
    .header-green {
        font-size: 3rem;
    }
    
    h2, .section-title {
        font-size: 2rem;
    }
    
    .contact-title, .page-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle, .page-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-form-title {
        font-size: 1.6rem;
    }

    /* Navigation */
    .top-nav {
        padding: 10px 0;
    }
    
    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }
    
    .book-now-header {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Layout Adjustments */
    .single-service .hero-content, 
    body.single-service .hero-content,
    .single-service-hero .hero-content {
        padding: 3rem 2rem;
        margin: 1rem;
    }
    
    .single-service .service-content-card, 
    body.single-service .service-content-card,
    .page-content-wrapper, 
    .contact-form-section {
        padding: 2rem;
        margin: 0 15px 2rem;
    }
    
    .single-service .pricing-card.featured, 
    body.single-service .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .single-service .hero-buttons, 
    body.single-service .hero-buttons,
    .single-service-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .single-service .hero-buttons .btn, 
    body.single-service .hero-buttons .btn,
    .single-service-hero .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Cards and Components */
    .service-card-enhanced, 
    .feature-card, 
    .pricing-card, 
    .process-step {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    /* Timeline */
    .timeline-item {
        margin-left: 2rem;
    }
    
    .timeline-item::before {
        left: -2rem;
    }
    
    .timeline-item::after {
        left: -2.5rem;
    }

    /* Process Steps Mobile */
    .single-service .process-section .row,
    body.single-service .process-section .row {
        display: block !important;
    }
    
    .single-service .process-section [class*="col-"],
    body.single-service .process-section [class*="col-"] {
        display: block !important;
    }
    
    .single-service .process-step,
    body.single-service .process-step {
        display: block !important;
        height: auto !important;
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
    }
    
    .single-service .step-number,
    body.single-service .step-number {
        margin: 0 auto 1rem !important;
    }
    
    .single-service .process-step h5,
    body.single-service .process-step h5 {
        margin-bottom: 1rem !important;
    }
    
    .single-service .process-step p,
    body.single-service .process-step p {
        display: block !important;
        margin: 0 !important;
    }

    /* Hero Sections */
    .services-hero,
    .single-service-hero {
        padding: 60px 0 40px !important;
    }

    /* Single Service Hero Mobile */
    .single-service-hero h1 {
        font-size: 2rem !important;
    }
    
    .single-service-hero .lead {
        font-size: 1.1rem !important;
        padding: 0 15px !important;
    }
    
    .single-service-hero .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 15px !important;
    }
    
    .single-service-hero .btn-outline-light {
        width: 100% !important;
        max-width: 280px !important;
        margin-bottom: 1rem !important;
    }

    /* Buttons */
    .btn-enhanced, .service-btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .wpcf7 input[type="submit"] {
        width: 100%;
        min-width: auto;
    }

    /* Footer */
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-card {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }

    /* Images */
    .image-content-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .service-images-grid .service-image-card {
        height: 180px;
    }
    
    .service-images-grid .row .col-12 .service-image-card {
        height: 220px;
    }
    
    .service-images-stack img {
        max-height: 25rem;
    }
    
    .service-images-stack .service-image-card:last-child {
        margin-bottom: 0 !important;
    }

    /* Related Services Mobile */
    .single-service .related-services-section .row,
    body.single-service .related-services-section .row {
        display: block !important;
    }
    
    .single-service .related-services-section [class*="col-"],
    body.single-service .related-services-section [class*="col-"] {
        display: block !important;
        margin-bottom: 1.5rem !important;
    }

    .single-service .service-image,
    body.single-service .service-image {
        height: 180px !important;
    }
    
    .single-service .service-content,
    body.single-service .service-content {
        padding: 1.25rem !important;
    }
    
    .single-service .service-card:hover,
    body.single-service .service-card:hover {
        transform: translateY(-5px) !important;
    }

    /* Special Sections */
    .service-hours-card, 
    .emergency-contact, 
    .page-cta-section {
        margin: 2rem 15px 0;
        padding: 1.5rem;
    }

    /* Contact Spacing */
    .contact-hero-section {
        padding: 30px 0 40px !important;
    }
    
    .contact-info-section {
        padding: 0 0 40px !important;
        margin-bottom: 30px !important;
    }
    
    .contact-info-card {
        margin-bottom: 1.5rem !important;
        padding: 1.5rem !important;
    }
    
    .contact-form-section {
        padding: 1.5rem 1.5rem 2rem 1.5rem !important;
        margin: 0 15px !important;
    }
    
    .service-hours-card,
    .emergency-contact {
        margin: 1.5rem 15px !important;
        padding: 1.5rem !important;
    }
    
    .additional-info {
        padding: 0 0 40px !important;
        margin-top: 30px !important;
    }

    /* Services Spacing */
    .feature-box {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .timeline-content {
        padding: 1rem !important;
    }
    
    .why-choose-section {
        padding: 60px 0 !important;
        margin-top: 30px !important;
    }
    
    .cta-enhanced {
        padding: 60px 0 !important;
        margin-top: 30px !important;
    }
    
    .cta-card-enhanced .d-flex {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .cta-card-enhanced .btn-enhanced {
        width: 100% !important;
        max-width: 280px !important;
        margin-bottom: 1rem !important;
    }

    /* CTA Mobile */
    .cta-enhanced .cta-card-enhanced {
        padding: 2rem !important;
        margin: 0 15px !important;
    }
    
    .cta-enhanced h2,
    .cta-enhanced h3 {
        font-size: 2rem !important;
    }
    
    .cta-enhanced p {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 15px !important;
    }
    
    .cta-enhanced .d-flex,
    .cta-enhanced .hero-buttons,
    .cta-enhanced .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 15px !important;
    }
    
    .cta-enhanced .btn {
        width: 100% !important;
        max-width: 280px !important;
        margin-bottom: 1rem !important;
    }

    /* Single Service CTA Mobile */
    .single-service .cta-section,
    body.single-service .cta-section {
        padding: 60px 0 !important;
    }
    
    .single-service .cta-section h2,
    .single-service .cta-section h3,
    body.single-service .cta-section h2,
    body.single-service .cta-section h3 {
        font-size: 2rem !important;
    }
    
    .single-service .cta-section p,
    body.single-service .cta-section p {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .single-service .contact-info,
    body.single-service .contact-info {
        padding: 1.5rem !important;
        margin: 2rem 1rem !important;
    }
    
    .single-service .hero-buttons,
    .single-service .cta-buttons,
    body.single-service .hero-buttons,
    body.single-service .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .single-service .cta-section .btn,
    body.single-service .cta-section .btn {
        width: 100% !important;
        max-width: 280px !important;
        margin-bottom: 1rem !important;
    }

    /* Page Content Wrapper Mobile */
    .page-content-wrapper {
        padding: 1rem 1.5rem 2rem 1.5rem !important;
    }

    /* Hide floating circles on mobile */
    .site-footer .floating-circle {
        display: none;
    }

    /* Mobile Homepage fixes */
    .vh-65 {
        min-height: auto !important;
        height: auto !important;
        padding: 30px 0 50px !important;
    }

    /* Hero content order and spacing */
    .hero-content {
        padding: 20px 15px !important;
        margin-bottom: 2rem !important;
    }

    /* Hero image adjustments */
    .hero-content + .col-lg-6 img {
        width: 80% !important;
        max-width: 250px !important;
        padding-left: 0 !important;
        margin: 0 auto !important;
        display: block !important;
    }

    /* Hero text improvements */
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        padding: 0 15px !important;
    }

    .hero-content .lead {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 15px !important;
    }

    /* Hero buttons styling */
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 0 15px !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        max-width: 250px !important;
        padding: 12px 25px !important;
        font-size: 1rem !important;
        margin-bottom: 0 !important;
    }

    /* Hide book now button on mobile */
    .book-now-header,
    .nav-content .btn,
    .top-nav .btn {
        display: none !important;
    }
    
    /* Center logo on mobile when it appears in nav */
    body:not(.home):not(.front-page):not(.page-template-front-page) .nav-logo {
        display: flex !important;
        justify-content: start !important;
        width: 100% !important;
    }
    

    /* Mobile background fixes */
    body.home,
    body.front-page,
    body[class*="home"],
    body[class*="front-page"] {
        background-size: cover !important;
        background-position: center top !important;
        background-attachment: scroll !important;
    }

    /* Ensure content is readable on mobile */
    .hero-section {
        background: rgba(0, 0, 0, 0.1) !important;
        border-radius: 0 !important;
    }

    /* Center logo perfectly in hero */
    .hero-section .col-lg-6:first-child,
    .vh-65 .col-lg-6:first-child {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 15px !important;
    }
    
    /* Logo styling adjustments */
    .hero-section .col-lg-6:first-child img,
    .vh-65 .col-lg-6:first-child img {
        width: 70% !important;
        max-width: 280px !important;
        padding: 0 !important;
        margin: 0 auto !important;
        display: block !important;
    }

    /* Remove excessive padding on mobile */
    .col-lg-6[style*="padding-right"] {
        padding-right: 15px !important;
    }

    .col-lg-6[style*="padding-left"] {
        padding-left: 15px !important;
    }

    /* Main content sections spacing */
    .main-content {
        margin-top: 2rem !important;
    }

    .main-content[style*="margin-top: 5rem"] {
        margin-top: 3rem !important;
    }

    .main-content[style*="margin-top: 3rem"] {
        margin-top: 2rem !important;
    }

    /* Container padding adjustments */
    .main-content .container.p-2 {
        padding: 0 15px !important;
    }

    /* Image and text section improvements */
    #front-bin {
        max-height: 250px !important;
        width: 100% !important;
        object-fit: cover !important;
        margin-bottom: 1.5rem !important;
    }

    /* Testimonial cards mobile */
    .main-content .card.shadow-sm {
        margin-bottom: 1rem !important;
    }

    .main-content .card.shadow-sm .card-body {
        padding: 1rem !important;
    }

    /* Service area map mobile */
    #wheelie-clean-map {
        height: 300px !important;
    }

    /* Service area cards mobile */
    .main-content .row.g-3 .col-md-4 {
        margin-bottom: 1rem !important;
    }

    .main-content .row.g-3 .col-md-4 .card {
        padding: 1.5rem !important;
    }

    .main-content .row.g-3 .col-md-4 h5 {
        font-size: 1rem !important;
    }

    .main-content .row.g-3 .col-md-4 p {
        font-size: 0.9rem !important;
    }

    /* Mobile services section */
    .main-content .d-block.d-md-none {
        padding: 20px 0 !important;
    }

    .main-content .d-block.d-md-none .container {
        padding: 0 15px !important;
    }

    /* Mobile services card */
    .main-content .d-block.d-md-none .card {
        border-radius: var(--radius-card) !important;
        box-shadow: var(--shadow-card) !important;
        margin-bottom: 2rem !important;
    }

    /* Mobile services icons */
    .main-content .d-block.d-md-none .row.g-3 img {
        max-width: 35px !important;
        height: auto !important;
    }

    /* Mobile services text */
    .main-content .d-block.d-md-none h5 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }

    .main-content .d-block.d-md-none p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    /* Mobile services button */
    .main-content .d-block.d-md-none .btn {
        width: 100% !important;
        max-width: 200px !important;
        margin: 0 auto !important;
    }

    /* Hide tiles/feature cards that get squashed on mobile */
    .main-content .row.g-3:has(.col-3),
    .main-content .col-3 {
        display: none !important;
    }

    /* Hide the "Our Services - Professional cleaning..." text on mobile */
    .main-content .d-block.d-md-none .text-center.mb-4 p,
    .main-content .d-block.d-md-none .container .text-center p {
        display: none !important;
    }
    
    /* Adjust heading spacing when description is hidden */
    .main-content .d-block.d-md-none .text-center.mb-4 {
        margin-bottom: 2rem !important;
    }
    
    .main-content .d-block.d-md-none h2 {
        margin-bottom: 1rem !important;
    }

    /* Reviews header styling */
    .col-md-6 .d-block.d-md-none h3 {
        color: var(--brand-blue) !important;
        font-family: 'Roboto' !important;
        font-weight: 700 !important;
        font-size: 1.6rem !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
        margin-top: 0 !important;
    }
    
    /* Ensure reviews header shows only on mobile */
    .col-md-6 .d-block.d-md-none {
        display: block !important;
        margin-bottom: 1rem !important;
    }
    
    /* Reviews section spacing */
    .col-md-6.order-1.order-md-2 {
        margin-bottom: 2rem !important;
    }

    /* Reduce spacing between main content sections */
    .main-content[style*="margin-top: 5rem"] {
        margin-top: 2rem !important;
    }
    
    /* Significantly reduce space before Service Area section */
    .main-content[style*="margin-top: 3rem"],
    .main-content[style*="margin-top: 2rem"] {
        margin-top: 1rem !important;
    }
    
    /* Tighter spacing for testimonials and image section */
    .main-content .row.justify-content-center {
        margin-bottom: 1rem !important;
    }
    
    /* Reduce bottom margin on testimonial cards */
    .main-content .card.mb-3 {
        margin-bottom: 1rem !important;
    }
    
    /* Tighter container spacing */
    .main-content .container.p-2 {
        padding: 0 15px !important;
        margin-bottom: 0 !important;
    }
    
    /* Service area section specific spacing */
    .main-content .text-center.mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Map container spacing */
    .main-content .card.border-0.shadow-sm.mb-4 {
        margin-bottom: 1.5rem !important;
    }

    /* Ensure smooth content flow */
    .main-content {
        overflow-x: hidden !important;
    }
    
    /* Remove any conflicting margins */
    .main-content .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .main-content .col-md-6 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Testimonials section flow */
    .main-content .col-md-6.order-1.order-md-2 {
        padding-bottom: 1rem !important;
    }
    
    /* Image and text section flow */
    .main-content .col-md-6.order-2.order-md-1 {
        padding-top: 1rem !important;
    }
}

@media (max-width: 576px) {
    /* Typography */
    h1, .contact-title, .page-title {
        font-size: 2rem;
    }
    
    .single-service .price, 
    body.single-service .price {
        font-size: 2.5rem;
    }
    
    .single-service .service-icon, 
    body.single-service .service-icon {
        font-size: 2rem;
    }

    /* Single Service Hero Very Small Screens */
    .single-service-hero {
        padding: 40px 0 30px !important;
    }
    
    .single-service-hero h1 {
        font-size: 1.8rem !important;
    }
    
    .single-service-hero .service-icon {
        font-size: 2rem !important;
    }
    
    .single-service-hero .lead {
        font-size: 1rem !important;
    }
    
    .single-service-hero .btn-outline-light {
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }

    /* Layout */
    .single-service .hero-content, 
    body.single-service .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .single-service .cta-card, 
    body.single-service .cta-card {
        padding: 2rem;
    }
    
    .contact-form-section, 
    .page-content-wrapper {
        padding: 1.5rem;
    }

    /* Contact Items */
    .single-service .contact-item, 
    body.single-service .contact-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .single-service .contact-icon, 
    body.single-service .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* Services */
    .service-card-enhanced {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .feature-box {
        padding: 1rem !important;
    }
    
    .services-hero,
    .single-service-hero {
        padding: 60px 0 40px !important;
    }
    
    .main-content {
        padding-bottom: 40px !important;
    }
    
    .why-choose-section,
    .cta-enhanced {
        padding: 40px 0 !important;
    }

    /* Related Services Mobile */
    .single-service .service-image,
    body.single-service .service-image {
        height: 160px !important;
    }
    
    .single-service .service-content,
    body.single-service .service-content {
        padding: 1rem !important;
    }

    /* Contact Mobile */
    .contact-hero-section {
        padding: 20px 0 30px !important;
    }
    
    .contact-title {
        font-size: 2rem !important;
    }
    
    .contact-form-section {
        padding: 1rem 1rem 1.5rem 1rem !important;
    }
    
    .service-hours-card,
    .emergency-contact {
        padding: 1rem !important;
    }

    /* CTA Mobile */
    .cta-enhanced {
        padding: 40px 0 !important;
    }
    
    .cta-enhanced h2,
    .cta-enhanced h3 {
        font-size: 1.8rem !important;
    }
    
    .cta-enhanced p {
        font-size: 1rem !important;
    }
    
    .cta-enhanced .btn {
        padding: 12px 25px !important;
        font-size: 1rem !important;
        min-width: 160px !important;
    }

    /* Single Service CTA Mobile */
    .single-service .cta-section,
    body.single-service .cta-section {
        padding: 40px 0 !important;
    }
    
    .single-service .cta-section h2,
    .single-service .cta-section h3,
    body.single-service .cta-section h2,
    body.single-service .cta-section h3 {
        font-size: 1.8rem !important;
    }

    /* Page Content Wrapper Mobile */
    .page-content-wrapper {
        padding: 1rem 1rem 1.5rem 1rem !important;
    }

    /* Hero section for very small screens */
    .hero-content h1 {
        font-size: 1.8rem !important;
    }

    .hero-content .header-blue,
    .hero-content .header-green {
        font-size: 1.8rem !important;
    }

    .hero-content .lead {
        font-size: 1rem !important;
    }

    /* Mobile services icons smaller */
    .main-content .d-block.d-md-none .row.g-3 img {
        max-width: 30px !important;
    }

    /* Reduce padding further */
    .main-content .container {
        padding: 0 10px !important;
    }

    .hero-content {
        padding: 15px 10px !important;
    }

    /* Map height adjustment */
    #wheelie-clean-map {
        height: 250px !important;
    }

    /* Button sizing */
    .hero-buttons .btn,
    .main-content .btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }

    /* Even tighter spacing for very small screens */
    .main-content {
        margin-top: 0.5rem !important;
    }
    
    .main-content[style*="margin-top"] {
        margin-top: 1rem !important;
    }
    
    .container-fluid.mb-3 {
        margin-bottom: 0.5rem !important;
    }
    
    /* Reduce hero height further */
    .vh-65 {
        min-height: 60vh !important;
        padding: 15px 0 20px !important;
    }
    
    /* Logo sizing for very small screens */
    .hero-section .col-lg-6:first-child img,
    .vh-65 .col-lg-6:first-child img {
        width: 65% !important;
        max-width: 220px !important;
    }
    
    /* Tighter text spacing */
    .hero-content {
        padding: 15px 10px 0 10px !important;
    }
    
    .hero-content h1 {
        margin-bottom: 0.5rem !important;
    }
    
    .hero-content .lead {
        margin-bottom: 1rem !important;
    }
    
    /* Compact mobile services section */
    .main-content .d-block.d-md-none .container {
        padding: 0 10px !important;
    }
    
    .main-content .d-block.d-md-none .card {
        margin-bottom: 1rem !important;
        padding: 1rem !important;
    }

    /* Even tighter spacing for small phones */
    .main-content[style*="margin-top"] {
        margin-top: 0.75rem !important;
    }
    
    /* Reviews header smaller on tiny screens */
    .col-md-6 .d-block.d-md-none h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Compact testimonial cards */
    .main-content .card.mb-3 {
        margin-bottom: 0.75rem !important;
    }
    
    .main-content .card.mb-3 .card-body {
        padding: 0.75rem !important;
    }
    
    /* Tighter image spacing */
    #front-bin {
        margin-bottom: 1rem !important;
    }
    
    /* Service area heading adjustment */
    .main-content .text-center.mb-4 h2 {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }
    
    .main-content .text-center.mb-4 p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    .footer-menu {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-menu a {
        font-size: 14px;
        padding: 3px 0;
    }
    
    .site-footer {
        padding: 30px 0 15px;
    }
}

/* Landscape Phone Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .vh-65 {
        min-height: 90vh !important;
        padding: 20px 0 !important;
    }

    .hero-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-content .lead {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-buttons {
        gap: 0.5rem !important;
    }

    .hero-buttons .btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    /* Optimize for landscape mobile */
    .single-service-hero {
        min-height: 90vh !important;
        padding: 10px 0 !important;
    }
    
    .single-service-hero .hero-content {
        padding: 10px 15px 0 15px !important;
    }
    
    .single-service-hero h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .single-service-hero .lead {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .single-service-hero .hero-buttons {
        gap: 0.5rem !important;
    }
    
    .single-service-hero .btn-outline-light {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
}

/* Hide on medium screens and up */
@media (min-width: 768px) {
    .main-content.d-block.d-md-none {
        display: none !important;
    }

    .col-md-6 .d-block.d-md-none {
        display: none !important;
    }
}

/* Force mobile services to show on mobile screens */
@media (max-width: 767px) {
    /* Ensure mobile services section is visible */
    .main-content.d-block.d-md-none {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 20px 0 !important;
    }
    
    /* Mobile services container */
    .main-content.d-block.d-md-none .container {
        padding: 0 15px !important;
        max-width: 100% !important;
        margin-top: -3rem;
    }
    
    /* Mobile services heading */
    .main-content.d-block.d-md-none h2 {
        display: block !important;
        visibility: visible !important;
        color: var(--brand-blue) !important;
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    /* Mobile services card */
    .main-content.d-block.d-md-none .card {
        display: block !important;
        visibility: visible !important;
        background: white !important;
        border-radius: var(--radius-card) !important;
        box-shadow: var(--shadow-card) !important;
        margin-bottom: 1rem !important;
        padding: 1rem !important;
    }
    
    /* Mobile services icons */
    .main-content.d-block.d-md-none .row img {
        display: block !important;
        visibility: visible !important;
        max-width: 35px !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    /* Mobile services text */
    .main-content.d-block.d-md-none h5 {
        display: block !important;
        visibility: visible !important;
        color: var(--brand-green) !important;
        font-size: 1.1rem !important;
        margin: 1rem 0 0.5rem !important;
    }
    
    .main-content.d-block.d-md-none p {
        display: block !important;
        visibility: visible !important;
        color: var(--text-light) !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }
    
    /* Mobile services button */
    .main-content.d-block.d-md-none .btn {
        display: inline-block !important;
        visibility: visible !important;
        background: var(--eco-green-primary) !important;
        color: white !important;
        padding: 8px 20px !important;
        border-radius: var(--radius-button) !important;
        text-decoration: none !important;
        font-size: 0.9rem !important;
        border: none !important;
    }

    /* Ensure no conflicting styles */
    .main-content.d-block.d-md-none {
        position: relative !important;
        z-index: 1 !important;
        width: 100% !important;
        clear: both !important;
    }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */
html {
    scroll-behavior: smooth;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus states for accessibility */
.btn-primary:focus, 
.btn-secondary:focus, 
.btn-outline-primary:focus,
.btn-outline-secondary:focus, 
.service-btn:focus, 
.btn-enhanced:focus {
    outline: 3px solid rgba(69, 89, 146, 0.4);
    outline-offset: 2px;
}

.wpcf7 input:focus, 
.wpcf7 textarea:focus, 
.wpcf7 select:focus {
    outline: 3px solid rgba(5, 150, 105, 0.4);
    outline-offset: 1px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.8);
        --shadow-hover: 0 4px 8px rgba(0, 0, 0, 0.8);
        --border-light: #333;
    }
}

/* Mobile touch targets */
@media (max-width: 768px) {
    /* Ensure touch targets are large enough */
    .btn,
    .card {
        min-height: 44px !important;
    }

    /* Improve contrast and readability */
    .text-secondary {
        color: #555 !important;
    }

    /* Focus states for mobile */
    .btn:focus,
    .card:focus {
        outline: 2px solid var(--brand-blue) !important;
        outline-offset: 2px !important;
    }
}

/* Performance optimizations on mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for performance */
    .animated,
    .fade-in,
    .slide-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Simplify shadows on mobile */
    .card,
    .service-card,
    .feature-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }

    /* Reduce border radius on very small screens */
    @media (max-width: 480px) {
        .card,
        .btn,
        .form-control {
            border-radius: 8px !important;
        }
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Hide on mobile */
@media (max-width: 576px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Hide on tablet and below */
@media (max-width: 768px) {
    .hide-tablet {
        display: none !important;
    }
}

/* Show only on mobile */
@media (min-width: 577px) {
    .mobile-only {
        display: none !important;
    }
}

/* Mobile text sizing */
@media (max-width: 576px) {
    .mobile-text-sm {
        font-size: 0.9rem !important;
    }
    
    .mobile-text-lg {
        font-size: 1.1rem !important;
    }
}

/* Final cleanup overrides */
.wpcf7-form {
    margin-top: 1rem !important;
}

.hours-list {
    margin: 1rem 0 0 0 !important;
}

.hours-list li {
    padding: 0.75rem 0 !important;
    margin-bottom: 0 !important;
}

.emergency-contact h4 {
    margin-bottom: 1rem !important;
    color: white !important;
}

.emergency-contact p {
    margin-bottom: 1rem !important;
}

.emergency-contact a {
    font-size: 1.2rem !important;
    margin-bottom: 0 !important;
}

.contact-title-container {
    margin-bottom: 0 !important;
}

.contact-title {
    margin-bottom: 1rem !important;
}

.contact-subtitle {
    margin-bottom: 0 !important;
}

/* Enhanced Font Awesome icon styling */
.feature-box i {
    font-size: 3rem !important;
    display: block !important;
    margin-bottom: 1rem !important;
}

.timeline-content h4 i {
    font-size: 1.2rem !important;
    margin-right: 0.5rem !important;
}

.cta-card-enhanced i {
    font-size: 3rem !important;
    margin-right: 0.5rem !important;
}


/* ===================================
   STACKED IMAGES - SPECIFIC STYLES
   =================================== */

/* Container for stacked images */
.stacked-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 33rem;
    margin: 0 auto;
    padding: 0;
}

/* Individual service image cards within stacked container */
.stacked-images .service-image-card {
    max-width: 33rem !important;
    max-height: 33rem !important;
    width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
    border-radius: var(--radius-card) !important;
    box-shadow: var(--shadow-card) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    background: var(--background-light) !important;
    margin-bottom: 1.5rem !important;
}

/* Remove bottom margin from last image */
.stacked-images .service-image-card:last-child {
    margin-bottom: 0 !important;
}

/* Images within the stacked image cards */
.stacked-images .service-image-card img {
    width: 100% !important;
    height: auto !important;
    max-width: 33rem !important;
    max-height: 33rem !important;
    object-fit: cover !important;
    object-position: center center !important;
    transition: transform 0.3s ease !important;
    display: block !important;
}

/* Hover effects for stacked images */
.stacked-images .service-image-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--light-teal) !important;
}

.stacked-images .service-image-card:hover img {
    transform: scale(1.02) !important;
}

/* ===================================
   FALLBACK SINGLE IMAGE STYLES
   =================================== */

/* For single featured image or placeholder (not in stacked container) */
.service-image-card:not(.stacked-images .service-image-card) {
    max-width: 33rem !important;
    max-height: 33rem !important;
    width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
    border-radius: var(--radius-card) !important;
    box-shadow: var(--shadow-card) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    background: var(--background-light) !important;
    margin: 0 auto 2rem !important;
}

.service-image-card:not(.stacked-images .service-image-card) img {
    width: 100% !important;
    height: auto !important;
    max-width: 33rem !important;
    max-height: 33rem !important;
    object-fit: cover !important;
    object-position: center center !important;
    transition: transform 0.3s ease !important;
    display: block !important;
}

.service-image-card:not(.stacked-images .service-image-card):hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-hover) !important;
}

.service-image-card:not(.stacked-images .service-image-card):hover img {
    transform: scale(1.02) !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .stacked-images {
        max-width: 100% !important;
        gap: 1rem !important;
        padding: 0 15px !important;
    }
    
    .stacked-images .service-image-card {
        max-width: 100% !important;
        max-height: 25rem !important;
        margin-bottom: 1rem !important;
    }
    
    .stacked-images .service-image-card img {
        max-width: 100% !important;
        max-height: 25rem !important;
    }
    
    /* Single image cards on mobile */
    .service-image-card:not(.stacked-images .service-image-card) {
        max-width: 100% !important;
        max-height: 25rem !important;
        margin: 0 15px 1.5rem !important;
    }
    
    .service-image-card:not(.stacked-images .service-image-card) img {
        max-width: 100% !important;
        max-height: 25rem !important;
    }
}

@media (max-width: 576px) {
    .stacked-images {
        gap: 0.75rem !important;
        padding: 0 10px !important;
    }
    
    .stacked-images .service-image-card {
        max-height: 20rem !important;
        margin-bottom: 0.75rem !important;
        border-radius: var(--radius-small) !important;
    }
    
    .stacked-images .service-image-card img {
        max-height: 20rem !important;
    }
    
    /* Single image cards on very small screens */
    .service-image-card:not(.stacked-images .service-image-card) {
        max-height: 20rem !important;
        margin: 0 10px 1rem !important;
        border-radius: var(--radius-small) !important;
    }
    
    .service-image-card:not(.stacked-images .service-image-card) img {
        max-height: 20rem !important;
    }
    
    /* Reduce hover effects on mobile for performance */
    .stacked-images .service-image-card:hover,
    .service-image-card:not(.stacked-images .service-image-card):hover {
        transform: translateY(-2px) !important;
    }
    
    .stacked-images .service-image-card:hover img,
    .service-image-card:not(.stacked-images .service-image-card):hover img {
        transform: scale(1.01) !important;
    }
}

/* ===================================
   LOADING STATES & ACCESSIBILITY
   =================================== */

/* Loading placeholder while images load */
.stacked-images .service-image-card img[src*="placeholder"],
.service-image-card img[src*="placeholder"] {
    background: var(--background-light) !important;
    color: var(--text-muted) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Roboto' !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
}

/* Focus states for accessibility */
.stacked-images .service-image-card:focus,
.service-image-card:focus {
    outline: 3px solid rgba(69, 89, 146, 0.4) !important;
    outline-offset: 2px !important;
}

/* Image loading animation - WITH JAVASCRIPT SUPPORT */
.stacked-images .service-image-card img,
.service-image-card img {
    opacity: 1 !important;  /* Default visible state */
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}

/* Loading state - applied by JavaScript */
.stacked-images .service-image-card img.loading,
.service-image-card img.loading {
    opacity: 0 !important;
}

/* Loaded state - applied by JavaScript */
.stacked-images .service-image-card img.loaded,
.service-image-card img.loaded {
    opacity: 1 !important;
}

/* Error state - applied by JavaScript */
.stacked-images .service-image-card img.error,
.service-image-card img.error {
    opacity: 0 !important;
}

/* Image placeholder for failed loads */
.image-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--background-light) !important;
    color: var(--text-muted) !important;
    min-height: 200px !important;
    font-family: 'Roboto' !important;
    font-weight: 500 !important;
    border-radius: var(--radius-card) !important;
    transition: all 0.3s ease !important;
}

/* Viewport animation class */
.service-image-card.in-viewport {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .stacked-images .service-image-card,
    .service-image-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid !important;
        page-break-inside: avoid !important;
    }
    
    .stacked-images .service-image-card:hover,
    .service-image-card:hover {
        transform: none !important;
    }
}

/* ===================================
   DARK MODE SUPPORT (if needed)
   =================================== */

@media (prefers-color-scheme: dark) {
    .stacked-images .service-image-card,
    .service-image-card {
        background: #2a2a2a !important;
        border: 1px solid #444 !important;
    }
}

/* ===================================
   HIGH CONTRAST MODE SUPPORT
   =================================== */

@media (prefers-contrast: high) {
    .stacked-images .service-image-card,
    .service-image-card {
        border: 2px solid #000 !important;
        box-shadow: none !important;
    }
}

/* Fix for Related Services Image Sizing */
.related-services-section .service-image {
    height: 220px !important;
    overflow: hidden !important;
}

.related-services-section .service-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* CTA Section Redesign - Centered Stacked Layout */

/* Override the existing CTA section layout */
.single-service .cta-section .cta-card,
body.single-service .cta-section .cta-card {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 3rem 2rem !important;
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
}

/* Center the entire content */
.single-service .cta-section .row,
body.single-service .cta-section .row {
    justify-content: center !important;
    text-align: center !important;
}

/* Stack contact items vertically in center */
.single-service .cta-section .contact-info,
body.single-service .cta-section .contact-info {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    padding: 3rem 2rem !important;
    margin: 2rem auto !important;
    backdrop-filter: blur(10px) !important;
    max-width: 500px !important;
    width: 90% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
}

/* Remove the row structure for contact items */
.single-service .cta-section .contact-info .row,
body.single-service .cta-section .contact-info .row {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 2rem !important;
    margin: 0 !important;
}

.single-service .cta-section .contact-info .col-md-6,
body.single-service .cta-section .contact-info .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Style individual contact items */
.single-service .cta-section .contact-item,
body.single-service .cta-section .contact-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
    text-align: center !important;
    padding: 1rem 2rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
}

.single-service .cta-section .contact-item:hover,
body.single-service .cta-section .contact-item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
}

/* Contact icons */
.single-service .cta-section .contact-icon,
body.single-service .cta-section .contact-icon {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 1rem !important;
    font-size: 1.3rem !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.single-service .cta-section .contact-item:hover .contact-icon,
body.single-service .cta-section .contact-item:hover .contact-icon {
    background: white !important;
    color: var(--brand-blue) !important;
    transform: scale(1.1) !important;
}

/* Contact text */
.single-service .cta-section .contact-text,
body.single-service .cta-section .contact-text {
    flex: 1 !important;
    text-align: left !important;
}

.single-service .cta-section .contact-text strong,
body.single-service .cta-section .contact-text strong {
    color: white !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
}

.single-service .cta-section .contact-text a,
.single-service .cta-section .contact-text span,
body.single-service .cta-section .contact-text a,
body.single-service .cta-section .contact-text span {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    font-size: 1rem !important;
    transition: color 0.3s ease !important;
}

.single-service .cta-section .contact-text a:hover,
body.single-service .cta-section .contact-text a:hover {
    color: white !important;
    text-decoration: underline !important;
}

/* Book Online Button - Make it prominent */
.single-service .cta-section .btn-primary,
body.single-service .cta-section .btn-primary {
    background: white !important;
    color: var(--brand-blue) !important;
    border: 3px solid white !important;
    padding: 15px 40px !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 1rem !important;
    min-width: 250px !important;
    font-family: 'Roboto' !important;
}

.single-service .cta-section .btn-primary:hover,
body.single-service .cta-section .btn-primary:hover {
    background: transparent !important;
    color: white !important;
    border-color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    text-decoration: none !important;
}

.single-service .cta-section .btn-primary i,
body.single-service .cta-section .btn-primary i {
    margin-right: 0.5rem !important;
    font-size: 1rem !important;
}

/* Hide the additional text under button */
.single-service .cta-section .col-lg-4 p,
body.single-service .cta-section .col-lg-4 p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
    font-style: italic !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-service .cta-section .contact-info,
    body.single-service .cta-section .contact-info {
        padding: 2rem 1rem !important;
        margin: 1rem auto !important;
        gap: 1.5rem !important;
    }
    
    .single-service .cta-section .contact-item,
    body.single-service .cta-section .contact-item {
        padding: 0.75rem 1rem !important;
        max-width: 100% !important;
    }
    
    .single-service .cta-section .btn-primary,
    body.single-service .cta-section .btn-primary {
        width: 100% !important;
        max-width: 280px !important;
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }
}

/* ===================================
   MOBILE HAMBURGER NAVIGATION
   =================================== */

/* Base Navigation Styles */
.top-nav {
    padding: 15px 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    color: var(--eco-green-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto';
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--eco-green-light);
}

/* Book Now Button - Desktop*/
.service-btn {
    color: white !important;
    border: none !important;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: var(--radius-button);
    font-family: 'Roboto';
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 15px rgba(168, 216, 232, 0.3);
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.service-btn:hover {
    background: var(--brand-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0px 4px 20px rgba(44, 90, 160, 0.4);
    color: white !important;
    text-decoration: none;
}

/* ===================================
   HAMBURGER MENU STYLES
   =================================== */

/* Hamburger button - hidden on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--eco-green-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    background: white;
}

/* Mobile menu panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel.active {
    right: 0;
}

/* Mobile menu header */
.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-light);
}

.mobile-menu-logo img {
    height: 35px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

/* Mobile menu navigation */
.mobile-menu-nav {
    flex: 1;
    padding: 20px 0;
}

.mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    background: var(--background-light);
    color: var(--eco-green-primary);
    border-left-color: var(--eco-green-primary);
}

/* Mobile menu footer */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-light);
    background: var(--background-light);
}

.mobile-menu-cta {
    width: 100%;
    background: var(--eco-green-primary) !important;
    color: white !important;
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-button);
    font-family: 'Roboto';
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.mobile-menu-cta:hover {
    background: var(--eco-green-light) !important;
    color: white !important;
    text-decoration: none;
    transform: translateY(-1px);
}

.mobile-contact-info {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.mobile-contact-info a {
    color: var(--eco-green-primary);
    text-decoration: none;
    font-weight: 600;
}

/* ===================================
   MOBILE BREAKPOINT
   =================================== */

@media (max-width: 768px) {
    
    /* Show hamburger, hide desktop menu */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu,
    .service-btn {
        display: none !important;
    }
    
    /* Adjust nav content for mobile */
    .nav-content {
        padding: 0 20px;
    }
    
    .nav-logo img {
        height: 40px !important;
    }
    
}

/* ===================================
   HOMEPAGE NAVIGATION OVERRIDES
   =================================== */

/* Desktop homepage navigation */
@media (min-width: 769px) {
    /* Transparent navigation on homepage */
    body.home .top-nav,
    body.front-page .top-nav,
    body.page-template-default.page.page-id-2 .top-nav,
    body[class*="home"] .top-nav,
    body[class*="front-page"] .top-nav {
        background: transparent !important;
        box-shadow: none !important;
        padding: 20px 0 !important;
    }
    
    /* Hide logo on homepage desktop */
    body.home .nav-logo,
    body.front-page .nav-logo,
    body.page-template-default.page.page-id-2 .nav-logo,
    body[class*="home"] .nav-logo,
    body[class*="front-page"] .nav-logo {
        display: none !important;
    }
    
    /* Center navigation on homepage desktop */
    body.home .nav-content,
    body.front-page .nav-content,
    body.page-template-default.page.page-id-2 .nav-content,
    body[class*="home"] .nav-content,
    body[class*="front-page"] .nav-content {
        justify-content: center !important;
    }
    
    /* White text for homepage navigation desktop */
    body.home .nav-menu a,
    body.front-page .nav-menu a,
    body.page-template-default.page.page-id-2 .nav-menu a,
    body[class*="home"] .nav-menu a,
    body[class*="front-page"] .nav-menu a {
        color: white !important;
        font-weight: 500 !important;
    }
    
    body.home .nav-menu a:hover,
    body.front-page .nav-menu a:hover,
    body.page-template-default.page.page-id-2 .nav-menu a:hover,
    body[class*="home"] .nav-menu a:hover,
    body[class*="front-page"] .nav-menu a:hover {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    /* Show book now button on homepage desktop */
    body.home .service-btn,
    body.front-page .service-btn,
    body.page-template-default.page.page-id-2 .service-btn,
    body[class*="home"] .service-btn,
    body[class*="front-page"] .service-btn {
        display: inline-block !important;
        color: white !important;
        box-shadow: 0px 2px 15px rgba(168, 216, 232, 0.3) !important;
    }
}

/* Mobile homepage navigation - Keep consistent */
@media (max-width: 768px) {
    /* Force consistent mobile navigation even on homepage */
    body.home .top-nav,
    body.front-page .top-nav,
    body.page-template-default.page.page-id-2 .top-nav,
    body[class*="home"] .top-nav,
    body[class*="front-page"] .top-nav {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        padding: 15px 0 !important;
    }
    
    /* Show logo on mobile (including homepage) */
    body.home .nav-logo,
    body.front-page .nav-logo,
    body.page-template-default.page.page-id-2 .nav-logo,
    body[class*="home"] .nav-logo,
    body[class*="front-page"] .nav-logo {
        display: flex !important;
        justify-content: start !important;
    }
}

/* ===================================
   VERY SMALL SCREENS
   =================================== */

@media (max-width: 576px) {
    .nav-content {
        padding: 0 15px;
    }
    
    .nav-logo img {
        height: 35px !important;
    }
    
    .mobile-menu-panel {
        width: 100%;
        right: -100%;
    }
}

/* ===================================
   ACCESSIBILITY & ANIMATIONS
   =================================== */

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Focus states */
.mobile-menu-toggle:focus {
    outline: 2px solid var(--eco-green-primary);
    outline-offset: 2px;
}

.mobile-menu-nav a:focus {
    outline: 2px solid var(--eco-green-primary);
    outline-offset: -2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu-toggle span,
    .mobile-menu-overlay,
    .mobile-menu-panel,
    .mobile-menu-nav a {
        transition: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .mobile-menu-panel {
        border: 2px solid #000;
    }
    
    .mobile-menu-nav a {
        border-bottom-color: #000;
    }
}