/*
Theme Name: EcoTree Theme
Description: Custom WordPress theme for EcoTreeSurgeonsCork.ie - Professional tree surgery services in Cork, Ireland
Version: 1.0
Author: Custom Development
*/

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Nature-inspired Colors */
:root {
    --primary-green: #2d5a27;
    --secondary-green: #4a7c59;
    --accent-green: #6b8e23;
    --light-green: #8fbc8f;
    --brown-primary: #8b4513;
    --brown-secondary: #a0522d;
    --off-white: #faf7f2;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --red-cta: #dc143c;
    --blue-secondary: #2c5aa0;
}

/* Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2rem;
    color: var(--primary-green);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.text-white {
    color: var(--white);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--red-cta);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b8122f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--blue-secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #1e4080;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Header Styles */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Desktop Layout - Original Design */
@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    
    .header-cta {
        order: 3;
        width: auto;
        text-align: right;
    }
    
    .header-logo-menu {
        order: 1;
        display: flex;
        align-items: center;
        gap: 2rem;
        flex: 1;
    }
    
    .site-branding {
        order: 1;
        flex: 0 0 auto;
    }
    
    .main-nav {
        order: 2;
        flex: 1;
        display: flex !important;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Header Logo Styles */
.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.site-logo {
    height: auto;
    max-height: 60px;
    width: auto;
    max-width: 200px;
    display: block;
    transition: transform 0.3s ease;
}

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

.logo-fallback {
    display: inline-flex;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: var(--primary-green);
    font-size: 1.5rem;
    text-decoration: none;
}

.logo-fallback i {
    margin-right: 8px;
    font-size: 1.8rem;
}

/* WordPress Custom Logo Styles */
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.custom-logo-link:hover {
    opacity: 0.9;
}

.custom-logo {
    height: auto;
    max-height: 60px;
    width: auto;
    max-width: 200px;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Ensure custom logo has proper sizing */
.site-branding .custom-logo {
    height: auto;
    max-height: 60px;
    width: auto;
    max-width: 200px;
}

/* WordPress custom logo fallback styling */
.site-branding img {
    max-height: 60px;
    width: auto;
    height: auto;
}

/* Legacy logo styles for fallback */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    padding: 60px 0 40px;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q50,5 80,20 Q95,50 80,80 Q50,95 20,80 Q5,50 20,20" fill="none" stroke="rgba(45,90,39,0.1)" stroke-width="1"/></svg>') repeat;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 0;
}

/* Bring quote form higher on desktop/laptop screens */
@media (min-width: 768px) {
    .hero-section {
        padding: 40px 0 30px;
        min-height: 480px;
    }
    
    .hero-content {
        gap: 2.5rem;
        align-items: flex-start;
    }
    
    .hero-form {
        transform: translateY(-20px);
    }
}

/* Modern Why Choose Us Section - 2025 Styling */
.modern-why-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.modern-why-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(45,90,39,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(45,90,39,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge i {
    font-size: 1rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.modern-features-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(45,90,39,0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transition: width 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 1);
}

.feature-card:hover::before {
    width: 8px;
}

.feature-icon-wrapper {
    flex-shrink: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(45,90,39,0.25);
}

.feature-text h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.feature-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.why-cta {
    margin-top: 2rem;
}

.modern-about-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-decoration: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45,90,39,0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    max-width: 300px;
}

.modern-about-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.modern-about-button:hover::before {
    left: 100%;
}

.modern-about-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45,90,39,0.4);
    color: white;
}

.modern-about-button i {
    transition: transform 0.3s ease;
}

.modern-about-button:hover i {
    transform: translateX(5px);
}

.why-image-container {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.overlay-content i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

/* Modern Coverage Areas Section */
.modern-coverage-section {
    background: linear-gradient(135deg, var(--off-white) 0%, #f0f4f8 100%);
    padding: 100px 0;
    position: relative;
}

.coverage-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.coverage-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.modern-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(45,90,39,0.1);
    position: relative;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.coverage-card:hover::before {
    transform: scaleX(1);
}

.coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.coverage-card.featured {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    transform: scale(1.05);
}

.coverage-card.featured::before {
    background: rgba(255,255,255,0.3);
    transform: scaleX(1);
}

.coverage-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.coverage-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(45,90,39,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.coverage-card.featured .card-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.coverage-card:hover .card-icon {
    background: var(--primary-green);
    color: white;
    transform: rotateY(180deg);
}

.coverage-card.featured:hover .card-icon {
    background: rgba(255,255,255,0.3);
    transform: rotateY(180deg);
}

.coverage-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.coverage-card h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.coverage-card.featured h4 a {
    color: white;
}

.coverage-card:hover h4 a {
    color: var(--primary-green);
}

.coverage-card.featured:hover h4 a {
    color: white;
}

.area-type {
    display: inline-block;
    background: rgba(45,90,39,0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coverage-card.featured .area-type {
    background: rgba(255,255,255,0.2);
    color: white;
}

.coverage-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coverage-note {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coverage-note strong {
    color: var(--primary-green);
    font-weight: 700;
}

.coverage-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45,90,39,0.3);
    position: relative;
    overflow: hidden;
}

.coverage-quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.coverage-quote-btn:hover::before {
    left: 100%;
}

.coverage-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45,90,39,0.4);
    color: white;
}

.coverage-quote-btn i {
    transition: transform 0.3s ease;
}

.coverage-quote-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive for Modern Sections */
@media (max-width: 768px) {
    .modern-why-section,
    .modern-coverage-section {
        padding: 60px 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-content h2,
    .coverage-header h2 {
        font-size: 2.5rem;
    }
    
    .modern-features-list {
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .modern-about-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .image-wrapper img {
        height: 300px;
    }
    
    .modern-coverage-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .coverage-card {
        padding: 2rem 1.5rem;
    }
    
    .coverage-card.featured {
        transform: none;
    }
    
    .coverage-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 30px 0 20px;
        min-height: 460px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-form {
        transform: translateY(-30px);
    }
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: bold;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-signals {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-signals span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Quote Form */
.quote-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    width: 100%;
    border: 1px solid #f0f0f0;
}

.quote-form h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45,90,39,0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
    font-family: inherit;
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Residential/Commercial Split */
.split-section {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.split-section::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="40" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="60" 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;
}

.split-content {
    position: relative;
    z-index: 1;
}

.split-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
}

.split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.split-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
}

.split-card-content {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    padding: 2rem;
    width: 100%;
}

.split-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Mobile Menu Toggle Button Styles - Enhanced */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(45, 90, 39, 0.1);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 2px 0;
    transition: all 0.3s ease;
    display: block;
    border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: var(--primary-green);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: var(--primary-green);
}

/* Mobile Navigation Styles - Enhanced and Fixed */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1002;
    }
    
    .main-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 1001;
        border-top: 1px solid #e0e0e0;
        order: 3;
        width: 100%;
    }
    
    .main-nav.active {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 0;
        list-style: none;
    }
    
    .main-nav ul li {
        border-bottom: 1px solid #eee;
        padding: 0;
        width: 100%;
        margin: 0;
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    
    .main-nav ul li a {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: none;
        background: none;
    }
    
    .main-nav ul li a:hover {
        background-color: var(--primary-green);
        color: var(--white);
    }
    
    /* Prevent menu from being hidden behind other elements */
    body.mobile-menu-open {
        overflow-x: hidden;
    }
    
    body.mobile-menu-open .main-nav {
        display: block !important;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Header Layout - Stack CTA above logo and hamburger */
    .header-content {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 0;
        position: relative;
    }
    
    .header-cta {
        order: 1;
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .header-cta .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        display: inline-block;
        max-width: 200px;
    }
    
    /* Logo and hamburger container */
    .header-logo-menu {
        order: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .site-branding {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }
    
    .mobile-menu-toggle {
        order: 2;
        flex-shrink: 0;
    }
    
    /* Ensure logo doesn't get too large on mobile */
    .site-logo,
    .custom-logo {
        max-height: 45px;
        max-width: 160px;
    }
    
    .hero-section {
        padding: 20px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
        margin-top: 10px;
    }
    
    .hero-form {
        order: 2;
        transform: none; /* Reset any desktop transforms */
    }
    
    .hero-text {
        order: 1;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-trust-signals {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 1rem !important;
    }
    
    .split-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Modern Service Promise Section - 2025 Styling */
.service-promise-section {
    background: linear-gradient(135deg, #fafafa 0%, #f0f4f8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-promise-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(45,90,39,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.promise-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(45,90,39,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promise-badge i {
    font-size: 1rem;
}

.service-promise-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promise-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.6;
}

.promise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.promise-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(45,90,39,0.1);
}

.promise-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 1);
}

.promise-features .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(45,90,39,0.2);
}

.promise-features .feature-content h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.promise-features .feature-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.service-type-heading {
    margin-bottom: 3rem;
}

.service-type-heading h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.modern-service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-choice-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(45,90,39,0.1);
}

.service-choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    opacity: 0.95;
}

.commercial-card .card-background {
    background: linear-gradient(135deg, var(--blue-secondary), #1e4080);
}

.card-content {
    position: relative;
    padding: 3rem 2.5rem;
    z-index: 2;
}

.card-image {
    margin: -2rem -2.5rem 1.5rem -2.5rem;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.card-image img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.commercial-card .card-image img {
    object-position: center top;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 3;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.commercial-card .card-icon i {
    color: var(--blue-secondary);
}

.service-choice-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.service-choice-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.feature-tag {
    background: rgba(45,90,39,0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(45,90,39,0.2);
}

.commercial-card .feature-tag {
    background: rgba(44,90,160,0.1);
    color: var(--blue-secondary);
    border-color: rgba(44,90,160,0.2);
}

.modern-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-decoration: none;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45,90,39,0.3);
    text-align: center;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.commercial-card .modern-cta-button {
    background: linear-gradient(135deg, var(--blue-secondary), #1e4080);
    box-shadow: 0 10px 30px rgba(44,90,160,0.3);
}

.modern-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.modern-cta-button:hover::before {
    left: 100%;
}

.modern-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45,90,39,0.4);
    color: white;
}

.commercial-card .modern-cta-button:hover {
    box-shadow: 0 15px 40px rgba(44,90,160,0.4);
}

.modern-cta-button i {
    transition: transform 0.3s ease;
}

.modern-cta-button:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-promise-section {
        padding: 60px 0;
    }
    
    .service-promise-section h2 {
        font-size: 2.5rem;
    }
    
    .promise-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .promise-features .feature-item {
        padding: 1.5rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .modern-service-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-content {
        padding: 2.5rem 2rem;
    }
    
    .card-image {
        margin: -2.5rem -2rem 1.5rem -2rem;
    }
    
    .card-image img {
        height: 180px;
    }
    
    .service-type-heading h3 {
        font-size: 1.75rem;
    }
}

/* Homepage Quote Form - Apply Location Page Compact Styling */
.hero-section .quote-form {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    width: 100%;
    border: 1px solid #f0f0f0;
    max-height: none;
    overflow-y: visible;
}

/* Modern form heading - more prominent styling */
.hero-section .quote-form .modern-form-heading {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(45,90,39,0.1);
    letter-spacing: 0.5px;
}

.hero-section .quote-form h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.1rem;
}

/* Ultra-compact form styling - MINIMAL SPACING */
.hero-section .form-group {
    margin-bottom: 0.375rem;
}

.hero-section .form-group label {
    display: block;
    margin-bottom: 0.1rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.hero-section .form-group input,
.hero-section .form-group textarea,
.hero-section .form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
    min-height: 38px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.hero-section .form-group input:focus,
.hero-section .form-group textarea:focus,
.hero-section .form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45,90,39,0.1);
}

.hero-section .form-group textarea {
    height: 60px;
    resize: vertical;
    font-family: inherit;
    cursor: text;
}

/* Two-column layout for Service and Eircode - COMPACT */
.hero-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
}

/* Ultra compact checkbox and button row */
.hero-section .form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.25rem;
}

.hero-section .form-group.checkbox {
    margin-bottom: 0.15rem;
}

.hero-section .form-group.checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.1;
}

.hero-section .form-group.checkbox input[type="checkbox"] {
    margin-top: 0.1rem;
    min-height: auto;
    width: auto;
}

/* Ultra compact submit button */
.hero-section .quote-form .btn {
    width: 100%;
    padding: 6px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0;
}

/* Ultra compact GDPR notice */
.hero-section .gdpr-notice {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 0.375rem;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
    line-height: 1.1;
}

/* Ultra compact form footer */
.hero-section .form-footer {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e0e0e0;
}

.hero-section .form-footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 0.2rem;
}

.hero-section .form-footer p {
    font-size: 0.8rem;
    margin-top: 0.375rem;
    text-align: center;
}

/* Expandable textarea - MINIMAL DEFAULT HEIGHT */
.hero-section .expandable-textarea {
    transition: height 0.3s ease;
}

.hero-section .expandable-textarea:focus {
    height: 50px;
}

/* Mobile responsive adjustments for homepage form */
@media (max-width: 768px) {
    .hero-section .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-section .quote-form {
        padding: 1.5rem;
        max-height: none;
    }
    
    .hero-section .quote-form .modern-form-heading {
        font-size: 1.2rem;
    }
    
    .hero-section .form-group {
        margin-bottom: 0.75rem;
    }
    
    .hero-section .form-group input,
    .hero-section .form-group textarea,
    .hero-section .form-group select {
        padding: 8px 12px;
        min-height: 36px;
        font-size: 1rem;
    }
    
    .hero-section .form-group textarea {
        height: 45px;
    }
    
    .hero-section .expandable-textarea:focus {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .quote-form {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr !important;
    }
    
    .trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Services Preview Gallery */
.services-preview {
    background-color: var(--off-white);
}

.service-image-grid {
    display: grid;
    grid-template-columns: 1fr 300px 300px;
    gap: 1.5rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.main-image {
    height: 400px;
}

.secondary-image {
    height: 250px;
    position: relative;
}

.tertiary-image {
    height: 250px;
}

.image-caption {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-style: italic;
    color: var(--red-cta);
    font-weight: 500;
    white-space: nowrap;
    z-index: 10;
}

.caption-arrow {
    color: var(--red-cta);
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

/* Enhanced mobile responsiveness for image grid */
@media (max-width: 768px) {
    .service-image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .main-image,
    .secondary-image,
    .tertiary-image {
        height: 250px;
    }
    
    .image-caption {
        position: static;
        transform: none;
        margin-top: 1rem;
        text-align: center;
    }
}

/* Enhanced button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Location Page Compact Quote Form - ULTRA COMPACT NO SCROLL VERSION */
.location-page .quote-form {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    width: 100%;
    border: 1px solid #f0f0f0;
    /* Remove scroll - ultra compact form */
    max-height: none;
    overflow-y: visible;
}

/* Desktop form spacing to ensure heading is visible */
@media (min-width: 769px) {
    .location-page .quote-form {
        padding: 1.5rem 1rem 1rem;
    }
    
    .location-page .quote-form .modern-form-heading,
    .location-page .quote-form h3 {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
}

/* Modern form heading - more prominent styling */
.location-page .quote-form .modern-form-heading {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(45,90,39,0.1);
    letter-spacing: 0.5px;
}

.location-page .quote-form h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.1rem;
}

.location-page .quote-form p {
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Ultra-compact form styling - MINIMAL SPACING */
.location-page .form-group {
    margin-bottom: 0.375rem;
}

.location-page .form-group label {
    display: block;
    margin-bottom: 0.1rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.location-page .form-group input,
.location-page .form-group textarea,
.location-page .form-group select {
    width: 100%;
    padding: 5px 8px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
    min-height: 30px;
}

.location-page .form-group textarea {
    height: 32px;
    resize: vertical;
    font-family: inherit;
}

/* Two-column layout for Service and Eircode - COMPACT */
.location-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
}

/* Ultra compact checkbox and button row */
.location-page .form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.25rem;
}

.location-page .form-group.checkbox {
    margin-bottom: 0.15rem;
}

.location-page .form-group.checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.1;
}

.location-page .form-group.checkbox input[type="checkbox"] {
    margin-top: 0.1rem;
    min-height: auto;
    width: auto;
}

/* Ultra compact submit button */
.location-page .quote-form .btn {
    width: 100%;
    padding: 6px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0;
}

/* Ultra compact GDPR notice */
.location-page .gdpr-notice {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 0.375rem;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
    line-height: 1.1;
}

/* Ultra compact form footer */
.location-page .form-footer {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e0e0e0;
}

/* Keep form footer row smaller as requested */
.location-page .form-footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 0.2rem;
}

.location-page .form-footer p {
    font-size: 0.8rem;
    margin-top: 0.375rem;
    text-align: center;
}

/* Expandable textarea - MINIMAL DEFAULT HEIGHT */
.location-page .expandable-textarea {
    transition: height 0.3s ease;
}

.location-page .expandable-textarea:focus {
    height: 50px;
}

/* Adjust hero layout for maximum form visibility */
.location-page .hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2.5rem;
    align-items: flex-start;
    margin-top: 0.5rem;
}

/* Desktop-only styles - MUCH TIGHTER HEADER SPACING */
@media (min-width: 769px) {
    .mobile-form-indicator {
        display: none;
    }
    
    /* SIGNIFICANTLY reduce gap between header and hero - bring form above fold */
    .location-page .location-hero {
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: flex-start;
        padding-top: 0;
        margin-top: -1rem;
    }
    
    /* Bring content much closer to header */
    .location-page .hero-content {
        margin-top: -0.5rem;
    }
    
    /* Ensure form is visible above fold */
    .location-page .hero-form {
        margin-top: 0;
    }
}

/* Hide mobile indicator on desktop by default */
.mobile-form-indicator {
    display: none;
}

.location-page .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: bold;
}

/* Desktop spacing for main heading */
@media (min-width: 769px) {
    .location-page .hero-text h1 {
        margin-top: 1.5rem;
        padding-top: 0.5rem;
    }
}

.location-page .hero-supporting-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location-page .hero-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.location-page .hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
}

.location-page .hero-benefits i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* Quick Navigation */
.quick-nav {
    background-color: var(--primary-green);
    padding: 1rem 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.quick-nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-nav-links a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.quick-nav-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Location Content Blocks */
.location-content {
    padding: 60px 0;
}

.content-block {
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.content-block:nth-child(even) {
    background-color: var(--light-gray);
    margin-left: -100vw;
    margin-right: -100vw;
    padding-left: 100vw;
    padding-right: 100vw;
}

.content-block h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.content-block h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Service Icons Grid */
.service-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-icon-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-icon-item:hover {
    transform: translateY(-5px);
}

.service-icon-item svg,
.service-icon-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-icon-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-icon-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Testimonials Block */
.testimonials-block {
    background-color: var(--off-white);
}

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

.testimonial-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-green);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-green);
}

/* FAQs */
.faqs-block {
    background-color: var(--white);
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-question {
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.6;
    display: none;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question span {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--secondary-green);
}

/* Nearby Areas */
.nearby-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.nearby-area-item {
    text-align: center;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nearby-area-item:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.nearby-area-item a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

/* Final CTA Block */
.final-cta-block {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.final-cta-block h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-block p {
    color: #ccc;
    margin-bottom: 2rem;
}

/* Modern Features Grid */
.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-content h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Nearby Areas - No Links */
.nearby-area-item-no-link {
    text-align: center;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 6px;
    font-weight: 500;
    color: var(--text-dark);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nearby-area-item-no-link:hover {
    background-color: var(--off-white);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* Service Icons Grid - Updated for 9 items */
.service-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .service-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Enhanced buttons alignment */
.wp-block-columns .wp-block-buttons {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Equal height columns for residential/commercial */
.location-page .wp-block-columns {
    display: flex;
    align-items: stretch;
}

.location-page .wp-block-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wp-block-button .wp-block-button__link {
    background-color: var(--primary-green);
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.wp-block-button .wp-block-button__link:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45,90,39,0.3);
}

/* Testimonials equal height */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    align-items: stretch;
}

.testimonial-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-green);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: auto;
    color: var(--text-dark);
    flex-grow: 1;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-green);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* Nearby areas spacing reduction */
.location-page #nearby-areas {
    margin-bottom: 1rem;
}

.location-page #nearby-areas + p {
    margin-top: 0.5rem !important;
    margin-bottom: 2rem !important;
}

/* GDPR Notice Styling */
.gdpr-notice {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.gdpr-notice .lock-icon {
    color: var(--primary-green);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.gdpr-notice strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Mobile Responsive Updates - Enhanced for Location Pages */
@media (max-width: 768px) {
    .quick-nav-links {
        gap: 1rem;
    }
    
    .quick-nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .content-block {
        margin-bottom: 2rem;
        padding: 2rem 0;
    }
    
    .service-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .nearby-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modern-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Mobile column stacking with button alignment */
    .location-page .wp-block-columns {
        flex-direction: column;
        gap: 2rem;
    }
    
    .location-page .wp-block-column {
        display: flex;
        flex-direction: column;
    }
    
    .wp-block-columns .wp-block-buttons {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    /* Mobile compact form adjustments - allow more height */
    .location-page .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .location-page .quote-form {
        padding: 1.5rem;
        max-height: none;
    }
    
    .location-page .quote-form .modern-form-heading {
        font-size: 1.2rem;
    }
    
    .location-page .quote-form h3 {
        font-size: 1.1rem;
    }
    
    /* Mobile form spacing - more generous */
    .location-page .form-group {
        margin-bottom: 0.75rem;
    }
    
    .location-page .form-group input,
    .location-page .form-group textarea,
    .location-page .form-group select {
        padding: 8px 12px;
        min-height: 36px;
        font-size: 1rem;
    }
    
    .location-page .form-group textarea {
        height: 45px;
    }
    
    .location-page .expandable-textarea:focus {
        height: 70px;
    }
    
    /* Mobile scroll indicator */
    .mobile-form-indicator {
        display: block;
        text-align: center;
        margin-top: 1rem;
        padding: 0.75rem;
        background-color: rgba(45, 90, 39, 0.1);
        border-radius: 6px;
        color: var(--primary-green);
        font-size: 0.85rem;
        border: 1px dashed var(--primary-green);
    }
    
    .mobile-form-indicator i {
        animation: bounce 2s infinite;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-5px);
        }
        60% {
            transform: translateY(-3px);
        }
    }
    
    /* Nearby areas mobile spacing */
    .location-page #nearby-areas {
        margin-bottom: 1.5rem;
    }
    
    .location-page #nearby-areas + p {
        margin-top: 0.75rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .gdpr-notice {
        padding: 0.875rem;
        font-size: 0.8rem;
    }
}

/* Modern Services Grid - Enhanced Residential/Commercial Section */
.modern-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.service-type-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(45, 90, 39, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(45, 90, 39, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(45, 90, 39, 0.15);
}

.service-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
}

.service-card-header {
    padding: 2.5rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.2);
}

.service-icon-large i {
    font-size: 2rem;
    color: white;
}

.service-card-header h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.service-card-content {
    padding: 0 2rem 1.5rem;
    flex-grow: 1;
}

.service-card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.service-features .feature-item i {
    color: var(--accent-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-features .feature-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-card-footer {
    padding: 1.5rem 2rem 2.5rem;
    margin-top: auto;
}

.modern-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.modern-btn:hover::before {
    left: 100%;
}

.residential-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
}

.residential-btn:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.3);
    color: white;
}

.commercial-btn {
    background: linear-gradient(135deg, var(--blue-secondary), #1e4080);
    color: white;
}

.commercial-btn:hover {
    background: linear-gradient(135deg, #1e4080, var(--blue-secondary));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 90, 160, 0.3);
    color: white;
}

.modern-btn i {
    transition: transform 0.3s ease;
}

.modern-btn:hover i {
    transform: translateX(4px);
}

/* Mobile responsive for modern services */
@media (max-width: 768px) {
    .modern-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .service-card-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }
    
    .service-icon-large i {
        font-size: 1.75rem;
    }
    
    .service-card-content {
        padding: 0 1.5rem 1rem;
    }
    
    .service-card-footer {
        padding: 1rem 1.5rem 2rem;
    }
    
    .modern-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Location Page Styles */
.location-page .location-hero {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    padding: 80px 0 60px;
}

.location-hero .hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Desktop-only styles - OPTIMIZED SPACING */
@media (min-width: 769px) {
    .mobile-form-indicator {
        display: none;
    }
    
    /* Proper spacing between header and hero - form visible but not cramped */
    .location-page .location-hero {
        min-height: calc(100vh - 120px);
        display: flex;
        align-items: flex-start;
        padding-top: 2rem;
        margin-top: 0;
    }
    
    /* Adequate spacing between header and content */
    .location-page .hero-content {
        margin-top: 1rem;
    }
    
    /* Ensure form has proper top spacing */
    .location-page .hero-form {
        margin-top: 0;
    }
    
    /* Ensure quote form heading is fully visible */
    .location-page .quote-form {
        padding-top: 1.5rem;
    }
    
    /* Adjust hero layout for optimal visibility */
    .location-page .hero-content {
        display: grid;
        grid-template-columns: 1.3fr 0.7fr;
        gap: 2.5rem;
        align-items: flex-start;
        margin-top: 1rem;
    }
}

/* Mobile Layout - Stack Form Below Content */
@media (max-width: 768px) {
    /* Mobile: Stack form below hero content */
    .location-page .hero-content {
        display: block !important; /* Override grid layout */
        gap: 0;
    }
    
    .location-page .hero-text {
        text-align: center;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .location-page .hero-form {
        margin-top: 2.5rem;
        order: 2;
    }
    
    .location-page .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .location-page .hero-supporting-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .location-page .location-hero {
        padding: 1.5rem 0 3rem;
    }
    
    /* Ensure quote form has proper spacing on mobile */
    .location-page .quote-form {
        margin-top: 1.5rem;
    }
}

.location-hero .hero-bullets ul {
    list-style: none;
    margin: 1.5rem 0;
}

.location-hero .hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
}

.location-hero .hero-bullets i {
    color: var(--accent-green);
}

/* Quick Navigation */
.quick-nav-section {
    background-color: var(--white);
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.quick-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-nav-link:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

/* Service Type Cards */
.service-type-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-type-card:hover {
    transform: translateY(-5px);
}

.service-type-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-type-card ul {
    list-style: none;
    margin: 1rem 0;
}

.service-type-card li {
    padding: 0.25rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1rem;
}

.service-type-card li::before {
    content: '•';
    color: var(--accent-green);
    position: absolute;
    left: 0;
}

/* Why Locals Section */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.feature-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.feature-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--light-green);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
    text-align: right;
}

/* Nearby Areas */
.nearby-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.area-link {
    text-align: center;
}

.area-link a {
    display: block;
    padding: 1rem;
    background-color: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
    font-weight: 500;
}

.area-link a:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* FAQs */
.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    background-color: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--off-white);
}

.faq-question h3 {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-green);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    background-color: var(--off-white);
}

.faq-answer p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Modern Hero Section Styles - Storage Heater Style Layout */
.modern-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
    background-image: url('/wp-content/themes/ecotree-theme/images/cherry-picker-tree-line-worksite-cork-eco-tree-surgeons.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .modern-hero {
        height: 500px;
    }
}

.modern-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/wp-content/themes/ecotree-theme/images/cherry-picker-tree-line-worksite-cork-eco-tree-surgeons.jpg');
}

.modern-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modern-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* Account for sticky header on mobile */
}

@media (min-width: 768px) {
    .modern-hero .hero-content {
        padding-top: 0;
    }
}

.modern-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px; /* Reduced spacing */
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .modern-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 16px;
    }
}

.modern-hero p {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 24px; /* Reduced spacing */
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .modern-hero p {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }
}

.modern-hero .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .modern-hero .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.modern-hero .cta-button {
    display: inline-block;
    background-color: #dc2626;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-hero .cta-button:hover {
    background-color: #b91c1c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -3px rgba(0, 0, 0, 0.3);
}

.modern-hero .cta-secondary {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
    .modern-hero .cta-secondary {
        font-size: 1rem;
    }
}

/* Remove gaps around header and hero */
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.site-header {
    margin-bottom: 0 !important;
}

/* Remove any container padding that might affect hero */
.wp-block-html {
    margin-top: 0;
    margin-bottom: 0;
}

/* Remove the specific gap between header and hero */
.site-header + * {
    margin-top: 0 !important;
}

/* Target the container that might be creating the gap */
.wp-site-blocks {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Remove any default WordPress container spacing */
.wp-block-group:first-child,
.entry-content > *:first-child {
    margin-top: 0 !important;
}

/* Ensure hero touches header directly */
.modern-hero {
    margin-top: 0 !important;
}

/* Ensure hero is always full width */
.wp-block-html .modern-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
}

/* All Service Pages Hero Background Styling */
.service-page .modern-hero .hero-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Enhanced overlay for all service pages for better text readability */
.service-page .modern-hero .hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

/* Ensure text remains readable on all service page heroes */
.service-page .modern-hero h1,
.service-page .modern-hero p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: white;
}

.service-page .modern-hero .cta-secondary {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* MOBILE FIX: Service page hero padding to prevent header overlap and button clipping */
/* Target all service pages regardless of specific class names */
/* Comprehensive selector to catch all possible service page variations */
@media (max-width: 768px) {
    .service-page .modern-hero,
    .page-template-page-service .modern-hero,
    .page-hedge-trimming-cork .modern-hero,
    .page-tree-pruning .modern-hero,
    .page-tree-stump-grinding .modern-hero,
    .page-tree-removal-and-felling .modern-hero,
    .page-site-clearance .modern-hero,
    .page-maintenance-contracts .modern-hero,
    .page-emergency-services .modern-hero,
    body[class*="page-tree-"] .modern-hero,
    body[class*="page-hedge-"] .modern-hero,
    body[class*="page-stump-"] .modern-hero,
    body[class*="page-maintenance-"] .modern-hero,
    body[class*="page-emergency-"] .modern-hero,
    body[class*="page-site-"] .modern-hero {
        height: auto !important;
        min-height: 420px !important; /* Reduced from 500px */
        padding-top: 100px !important; /* Reduced from 120px */
        padding-bottom: 40px !important; /* Reduced from 60px */
    }
    
    .service-page .modern-hero .hero-content,
    .page-template-page-service .modern-hero .hero-content,
    .page-hedge-trimming-cork .modern-hero .hero-content,
    .page-tree-pruning .modern-hero .hero-content,
    .page-tree-stump-grinding .modern-hero .hero-content,
    .page-tree-removal-and-felling .modern-hero .hero-content,
    .page-site-clearance .modern-hero .hero-content,
    .page-maintenance-contracts .modern-hero .hero-content,
    .page-emergency-services .modern-hero .hero-content,
    body[class*="page-tree-"] .modern-hero .hero-content,
    body[class*="page-hedge-"] .modern-hero .hero-content,
    body[class*="page-stump-"] .modern-hero .hero-content,
    body[class*="page-maintenance-"] .modern-hero .hero-content,
    body[class*="page-emergency-"] .modern-hero .hero-content,
    body[class*="page-site-"] .modern-hero .hero-content {
        padding-top: 15px !important; /* Reduced from 20px */
        padding-bottom: 25px !important; /* Reduced from 40px */
        min-height: auto !important;
    }
    
    .service-page .modern-hero h1,
    .page-template-page-service .modern-hero h1,
    .page-hedge-trimming-cork .modern-hero h1,
    .page-tree-pruning .modern-hero h1,
    .page-tree-stump-grinding .modern-hero h1,
    .page-tree-removal-and-felling .modern-hero h1,
    .page-site-clearance .modern-hero h1,
    .page-maintenance-contracts .modern-hero h1,
    .page-emergency-services .modern-hero h1,
    body[class*="page-tree-"] .modern-hero h1,
    body[class*="page-hedge-"] .modern-hero h1,
    body[class*="page-stump-"] .modern-hero h1,
    body[class*="page-maintenance-"] .modern-hero h1,
    body[class*="page-emergency-"] .modern-hero h1,
    body[class*="page-site-"] .modern-hero h1 {
        margin-top: 0 !important;
        margin-bottom: 16px !important; /* Reduced from 20px */
    }
    
    .service-page .modern-hero .hero-buttons,
    .page-template-page-service .modern-hero .hero-buttons,
    .page-hedge-trimming-cork .modern-hero .hero-buttons,
    .page-tree-pruning .modern-hero .hero-buttons,
    .page-tree-stump-grinding .modern-hero .hero-buttons,
    .page-tree-removal-and-felling .modern-hero .hero-buttons,
    .page-site-clearance .modern-hero .hero-buttons,
    .page-maintenance-contracts .modern-hero .hero-buttons,
    .page-emergency-services .modern-hero .hero-buttons,
    body[class*="page-tree-"] .modern-hero .hero-buttons,
    body[class*="page-hedge-"] .modern-hero .hero-buttons,
    body[class*="page-stump-"] .modern-hero .hero-buttons,
    body[class*="page-maintenance-"] .modern-hero .hero-buttons,
    body[class*="page-emergency-"] .modern-hero .hero-buttons,
    body[class*="page-site-"] .modern-hero .hero-buttons {
        margin-top: 20px !important; /* Reduced from 30px */
        margin-bottom: 15px !important; /* Reduced from 20px */
    }
}

@media (max-width: 480px) {
    .service-page .modern-hero,
    .page-template-page-service .modern-hero,
    .page-hedge-trimming-cork .modern-hero,
    .page-tree-pruning .modern-hero,
    .page-tree-stump-grinding .modern-hero,
    .page-tree-removal-and-felling .modern-hero,
    .page-site-clearance .modern-hero,
    .page-maintenance-contracts .modern-hero,
    .page-emergency-services .modern-hero,
    body[class*="page-tree-"] .modern-hero,
    body[class*="page-hedge-"] .modern-hero,
    body[class*="page-stump-"] .modern-hero,
    body[class*="page-maintenance-"] .modern-hero,
    body[class*="page-emergency-"] .modern-hero,
    body[class*="page-site-"] .modern-hero {
        min-height: 380px !important; /* Reduced from 480px */
        padding-top: 90px !important; /* Reduced from 110px */
        padding-bottom: 35px !important; /* Reduced from 50px */
    }
    
    .service-page .modern-hero .hero-content,
    .page-template-page-service .modern-hero .hero-content,
    .page-hedge-trimming-cork .modern-hero .hero-content,
    .page-tree-pruning .modern-hero .hero-content,
    .page-tree-stump-grinding .modern-hero .hero-content,
    .page-site-clearance .modern-hero .hero-content,
    .page-maintenance-contracts .modern-hero .hero-content,
    .page-emergency-services .modern-hero .hero-content,
    body[class*="page-tree-"] .modern-hero .hero-content,
    body[class*="page-hedge-"] .modern-hero .hero-content,
    body[class*="page-stump-"] .modern-hero .hero-content,
    body[class*="page-maintenance-"] .modern-hero .hero-content,
    body[class*="page-emergency-"] .modern-hero .hero-content,
    body[class*="page-site-"] .modern-hero .hero-content {
        padding-top: 10px !important; /* Reduced from 15px */
        padding-bottom: 20px !important; /* Reduced from 30px */
    }
}

/* Desktop - no changes needed, keep existing layout */
@media (min-width: 769px) {
    .service-page .modern-hero,
    .page-template-page-service .modern-hero,
    .page-hedge-trimming-cork .modern-hero,
    .page-tree-pruning .modern-hero,
    .page-tree-stump-grinding .modern-hero,
    .page-tree-removal-and-felling .modern-hero,
    .page-site-clearance .modern-hero,
    .page-maintenance-contracts .modern-hero,
    .page-emergency-services .modern-hero,
    body[class*="page-tree-"] .modern-hero,
    body[class*="page-hedge-"] .modern-hero,
    body[class*="page-stump-"] .modern-hero,
    body[class*="page-maintenance-"] .modern-hero,
    body[class*="page-emergency-"] .modern-hero,
    body[class*="page-site-"] .modern-hero {
        height: 500px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* Hedge Trimming Service Page Specific Styles */
.hedge-trimming-page .hero-section {
    background: linear-gradient(135deg, #228B22 0%, #55AE55 100%);
    color: var(--white);
    padding: 4rem 0;
}

/* Legacy hedge trimming page styles - keeping for backwards compatibility */
.page-hedge-trimming-cork .modern-hero .hero-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-hedge-trimming-cork .modern-hero .hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.page-hedge-trimming-cork .modern-hero h1,
.page-hedge-trimming-cork .modern-hero p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: white;
}

.page-hedge-trimming-cork .modern-hero .cta-secondary {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hedge-trimming-page .feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.hedge-trimming-page .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hedge-trimming-page .feature-item:last-child {
    border-bottom: none;
}

.hedge-trimming-page .feature-item i {
    color: #4CAF50;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.hedge-trimming-page .feature-item span {
    color: var(--text-dark);
    line-height: 1.5;
}

/* Enhanced Quote Form Styling for Service Pages (including Hedge Trimming) */
.service-page .quote-form h3,
.service-page .quote-form .modern-form-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(45,90,39,0.1);
    padding: 0.5rem 0;
}

/* Larger textarea for additional details */
.service-page .quote-form textarea {
    min-height: 100px;
    height: 100px !important;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

/* Fixed checkbox alignment */
.service-page .quote-form .form-group.checkbox {
    margin-bottom: 1.5rem;
}

.service-page .quote-form .form-group.checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    cursor: pointer;
}

.service-page .quote-form .form-group.checkbox input[type="checkbox"] {
    margin: 0;
    margin-top: 0.1rem;
    min-height: auto;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

/* Enhanced checkbox styling for better alignment and visibility */
.quote-form .form-group.checkbox {
    margin-bottom: 1.5rem;
}

.quote-form .form-group.checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    cursor: pointer;
}

.quote-form .form-group.checkbox input[type="checkbox"] {
    margin: 0;
    margin-top: 0.2rem;
    min-height: auto;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
    transform: scale(1.2);
    accent-color: var(--primary-green);
}

/* Enhanced submit button styling - wider and more prominent */
.quote-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    margin: 1rem auto 0;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--red-cta), #b8122f);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    min-height: 50px;
}

.quote-form .btn:hover {
    background: linear-gradient(135deg, #b8122f, var(--red-cta));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

/* Enhanced final statement styling */
.service-page .quote-form .form-footer > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-green);
    margin: 1.5rem 0 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(45,90,39,0.05), rgba(74,124,89,0.05));
    border-radius: 8px;
    border: 1px solid rgba(45,90,39,0.1);
    flex-wrap: wrap;
}

.service-page .quote-form .form-footer > div span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.service-page .quote-form .form-footer > div i {
    color: var(--accent-green);
    font-size: 1rem;
}

/* Mobile responsive adjustments for service page form */
@media (max-width: 768px) {
    .service-page .quote-form h3,
    .service-page .quote-form .modern-form-heading {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .service-page .quote-form textarea {
        min-height: 80px;
        height: 80px !important;
    }
    
    .service-page .quote-form .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .service-page .quote-form .form-footer > div {
        font-size: 1rem;
        padding: 0.875rem;
        gap: 1rem;
        flex-direction: column;
    }
    
    .service-page .quote-form .form-footer > div span {
        justify-content: center;
    }
    
    .service-page .quote-form .form-group.checkbox label {
        font-size: 0.85rem;
    }
}

/* FAQ Content specific styling */
.faqs-content {
    max-width: 800px;
    margin: 0 auto;
}

.faqs-content .faq-item {
    margin-bottom: 1rem;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.faqs-content .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    background-color: var(--white);
    transition: all 0.3s ease;
    border: none;
    margin: 0;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    width: 100%;
    text-align: left;
}

.faqs-content .faq-question:hover {
    background-color: var(--off-white);
    color: var(--secondary-green);
}

.faqs-content .faq-question span {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faqs-content .faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faqs-content .faq-answer {
    padding: 0 1.5rem 1.5rem;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    display: none;
}

.faqs-content .faq-item.active .faq-answer {
    display: block;
}

/* Enhanced WordPress block styles for hedge trimming page */
.wp-block-group.has-background {
    margin-left: 0;
    margin-right: 0;
}

.wp-block-heading.has-text-align-center {
    text-align: center;
}

.wp-block-columns .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hedge-trimming-page .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .hedge-trimming-page .feature-item i {
        margin-top: 0;
    }
    
    .faqs-content .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faqs-content .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .faqs-content .faq-question span {
        font-size: 1.1rem;
    }
}

/* Commercial Services Landing Page Styles */
.commercial-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.commercial-services-grid .service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(44, 90, 160, 0.1);
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.commercial-services-grid .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-secondary), #1e4080);
}

.commercial-services-grid .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(44, 90, 160, 0.15);
}

.commercial-services-grid .service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.commercial-services-grid .service-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(44, 90, 160, 0.2));
}

.commercial-services-grid .service-card h3 {
    color: var(--blue-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.commercial-services-grid .service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.commercial-services-grid .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--blue-secondary), #1e4080);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

/* Emergency Services link gets red styling */
.commercial-services-grid .emergency-link {
    background: linear-gradient(135deg, var(--red-cta), #b8122f);
}

.commercial-services-grid .emergency-link:hover {
    background: linear-gradient(135deg, #b8122f, var(--red-cta));
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.3);
    color: white;
}

.commercial-services-grid .service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.commercial-services-grid .service-link:hover::before {
    left: 100%;
}

.commercial-services-grid .service-link:hover {
    background: linear-gradient(135deg, #1e4080, var(--blue-secondary));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 90, 160, 0.3);
    color: white;
}

.commercial-services-grid .service-link svg {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.commercial-services-grid .service-link:hover svg {
    transform: translateX(4px);
}

/* Commercial page feature highlights with blue theme */
.page-commercial .feature-highlight {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.page-commercial .feature-highlight:hover {
    transform: translateY(-5px);
}

.page-commercial .feature-highlight h3 {
    color: var(--blue-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Mobile Responsive for Commercial Page */
@media (max-width: 768px) {
    .commercial-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .commercial-services-grid .service-card {
        padding: 2rem 1.5rem;
    }
    
    .commercial-services-grid .service-icon svg {
        width: 70px;
        height: 70px;
    }
    
    .commercial-services-grid .service-card h3 {
        font-size: 1.3rem;
    }
    
    .commercial-services-grid .service-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .commercial-services-grid .service-card {
        padding: 1.5rem;
    }
    
    .commercial-services-grid .service-card h3 {
        font-size: 1.2rem;
    }
    
    .commercial-services-grid .service-card p {
        font-size: 0.95rem;
    }
}

/* Ensure commercial page uses proper spacing */
.page-commercial .wp-block-group {
    margin-top: 0;
    margin-bottom: 0;
}

.page-commercial .wp-block-group:first-child {
    margin-top: 0 !important;
}


.residential-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    padding: 0 1rem;
}

.residential-services-grid .service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(45, 90, 39, 0.1);
    border: 1px solid rgba(45, 90, 39, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.residential-services-grid .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
}

.residential-services-grid .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(45, 90, 39, 0.15);
}

.residential-services-grid .service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.residential-services-grid .service-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(76, 175, 80, 0.2));
}

.residential-services-grid .service-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.residential-services-grid .service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.residential-services-grid .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.residential-services-grid .service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.residential-services-grid .service-link:hover::before {
    left: 100%;
}

.residential-services-grid .service-link:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.3);
    color: white;
}

.residential-services-grid .service-link svg {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.residential-services-grid .service-link:hover svg {
    transform: translateX(4px);
}

/* Feature Highlights for Residential Page */
.feature-highlight {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(45, 90, 39, 0.1);
}

.feature-highlight:hover {
    transform: translateY(-5px);
}

.feature-highlight .feature-icon-small {
    margin-bottom: 1.5rem;
}

.feature-highlight h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-highlight p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Intro Text Styling */
.intro-text {
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Section Styling */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.secondary-button {
    position: relative;
    overflow: hidden;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.secondary-button:hover::before {
    left: 100%;
}

/* Mobile Responsive for Residential Page */
@media (max-width: 768px) {
    .residential-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .residential-services-grid .service-card {
        padding: 2rem 1.5rem;
    }
    
    .residential-services-grid .service-icon svg {
        width: 70px;
        height: 70px;
    }
    
    .residential-services-grid .service-card h3 {
        font-size: 1.3rem;
    }
    
    .residential-services-grid .service-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .feature-highlight {
        padding: 1.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
    }
    
    .wp-block-group[style*="padding-top:4rem"] {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

@media (max-width: 480px) {
    .residential-services-grid .service-card {
        padding: 1.5rem;
    }
    
    .residential-services-grid .service-card h3 {
        font-size: 1.2rem;
    }
    
    .residential-services-grid .service-card p {
        font-size: 0.95rem;
    }
    
    .feature-highlight {
        padding: 1.25rem;
    }
    
    .feature-highlight h3 {
        font-size: 1.2rem;
    }
}

/* Ensure residential page uses proper spacing */
.page-residential .wp-block-group {
    margin-top: 0;
    margin-bottom: 0;
}

.page-residential .wp-block-group:first-child {
    margin-top: 0 !important;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Additional Mobile Breakpoints for Location Pages */
@media (max-width: 480px) {
    .location-page .hero-text {
        padding: 0 0.5rem;
    }
    
    .location-page .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .location-page .hero-supporting-text {
        font-size: 0.95rem;
    }
    
    .location-page .location-hero {
        padding: 1rem 0 2rem;
    }
    
    .location-page .hero-form {
        margin-top: 2rem;
    }
    
    .location-page .quote-form {
        padding: 1.25rem;
    }
    
    /* Ensure hero benefits grid works on very small screens */
    .location-page .hero-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 320px) {
    .location-page .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .location-page .hero-supporting-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .location-page .quote-form {
        padding: 1rem;
    }
    
    .location-page .form-group input,
    .location-page .form-group textarea,
    .location-page .form-group select {
        padding: 6px 10px;
        font-size: 0.95rem;
    }
}

/* About Us Page Specific Styles */
.commitment-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(45, 90, 39, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.12);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.2);
}

.commitment-icon i {
    font-size: 2rem;
    color: white;
}

.commitment-card h4 {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Services Overview Grid */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-overview-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(45, 90, 39, 0.15);
    border: 1px solid rgba(45, 90, 39, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(45, 90, 39, 0.25);
}

.service-overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.3);
}

.service-overview-icon i {
    font-size: 2rem;
    color: white;
}

.service-overview-card h4 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-overview-card ul {
    list-style: none;
    margin: 1.5rem 0 2rem;
    text-align: left;
}

.service-overview-card li {
    color: var(--text-light);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.service-overview-card li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.service-overview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.service-overview-link:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
    color: white;
}

/* Ethos Section - Modern Design */
.ethos-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ethos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: start;
}

.ethos-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ethos-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.ethos-icon i {
    font-size: 2rem;
    color: #dc2626;
}

.ethos-item h4 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.3;
}

.ethos-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Mobile responsive for Ethos section */
@media (max-width: 768px) {
    .ethos-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ethos-section {
        padding: 0 1rem;
    }
    
    .ethos-item {
        text-align: center;
        align-items: center;
    }
    
    .ethos-item h4 {
        font-size: 1.3rem;
    }
    
    .ethos-item p {
        font-size: 0.95rem;
    }
}

/* About Contact Info */
.about-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(45, 90, 39, 0.1);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.2);
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h5 {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.4;
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.contact-details p strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Quote Form Container for About Page */
.quote-form-container {
    position: sticky;
    top: 120px;
}

.about-contact-info .quote-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 90, 39, 0.1);
    box-shadow: 0 8px 32px rgba(45, 90, 39, 0.15);
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-overview-card {
        padding: 2rem 1.5rem;
    }
    
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .credential-item {
        padding: 1.5rem;
    }
    
    .credential-icon {
        width: 50px;
        height: 50px;
    }
    
    .credential-icon i {
        font-size: 1.3rem;
    }
    
    .about-contact-info {
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .quote-form-container {
        position: static;
        margin-top: 2rem;
    }
    
    .commitment-card {
        padding: 1.5rem;
    }
    
    .commitment-icon {
        width: 70px;
        height: 70px;
    }
    
    .commitment-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .service-overview-card {
        padding: 1.5rem;
    }
    
    .service-overview-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-overview-icon i {
        font-size: 1.75rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .credential-item {
        padding: 1.25rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-details {
        text-align: center;
    }
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Enhanced button hover effects for about page */
.wp-block-button .wp-block-button__link {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wp-block-button .wp-block-button__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.wp-block-button .wp-block-button__link:hover::before {
    left: 100%;
}

/* Fix for Services Across Cork County section on About page */
/* ONLY target the specific heading and paragraph - NOT the service cards */

/* Target only the main heading "Services Across Cork County" */
.page-about .wp-block-group.has-primary-green-background-color > .container > h2[style*="#ffffff"],
.page-about .wp-block-group.has-primary-green-background-color > .wp-block-heading[style*="#ffffff"],
body.page-about .wp-block-group.has-primary-green-background-color > .container > h2[style*="#ffffff"],
body.page-about .wp-block-group.has-primary-green-background-color > .wp-block-heading[style*="#ffffff"] {
    color: #2D5A27 !important;
    text-shadow: none !important;
}

/* Target only the paragraph directly after the heading */
.page-about .wp-block-group.has-primary-green-background-color > .container > h2 + p[style*="#ffffff"],
.page-about .wp-block-group.has-primary-green-background-color > .wp-block-heading + p[style*="#ffffff"],
body.page-about .wp-block-group.has-primary-green-background-color > .container > h2 + p[style*="#ffffff"],
body.page-about .wp-block-group.has-primary-green-background-color > .wp-block-heading + p[style*="#ffffff"] {
    color: #2D5A27 !important;
    text-shadow: none !important;
}

/* Additional specific targeting for the exact elements */
.page-about h2[style*="Services Across Cork County"],
body.page-about h2[style*="Services Across Cork County"] {
    color: #2D5A27 !important;
    text-shadow: none !important;
}

.page-about p[style*="From Kinsale to Mallow"],
body.page-about p[style*="From Kinsale to Mallow"] {
    color: #2D5A27 !important;
    text-shadow: none !important;
}

/* Enhanced Quote Form Styling for About Page */
.about-page .quote-form .improved-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    cursor: pointer;
}

.about-page .quote-form .improved-checkbox input[type="checkbox"] {
    width: 1.1rem !important;
    height: 1.1rem !important;
    margin: 0;
    margin-top: 0.1rem;
    flex-shrink: 0;
    cursor: pointer;
    vertical-align: middle;
}

.about-page .quote-form .improved-checkbox span {
    vertical-align: middle;
    line-height: 1.4;
}

.about-page .quote-form .improved-checkbox a {
    color: var(--primary-green);
    text-decoration: underline;
    font-weight: 500;
}

.about-page .quote-form .improved-checkbox a:hover {
    color: var(--secondary-green);
    text-decoration: none;
}

.about-page .quote-form .button-group {
    margin-top: 1rem;
}

.about-page .quote-form .improved-quote-btn {
    width: 100% !important;
    min-width: 220px !important;
    padding: 0.8rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, var(--red-cta), #b8122f) !important;
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.about-page .quote-form .improved-quote-btn:hover {
    background: linear-gradient(135deg, #b8122f, var(--red-cta)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4) !important;
    color: white !important;
}

/* Mobile responsiveness for improved form */
@media (max-width: 768px) {
    .about-page .quote-form .improved-checkbox label {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .about-page .quote-form .improved-quote-btn {
        min-width: 200px !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
}

/* Our Work, Side by Side Section */
.our-work-section {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

.our-work-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 600;
}

.before-after-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.before-after-image {
    flex: 1;
    max-width: 500px;
    min-width: 300px;
    position: relative;
}

.before-after-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Our Work Section */
@media (max-width: 768px) {
    .our-work-section {
        padding: 2rem 0;
    }
    
    .our-work-section h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .before-after-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .before-after-image {
        max-width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .our-work-section {
        padding: 1.5rem 0;
    }
    
    .our-work-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .before-after-container {
        gap: 1rem;
    }
    
    .before-after-image img {
        border-radius: 6px;
    }
}
