/* Main CSS Stylesheet - Fresh Green Market Theme */
/* Base Styles and Variables */
:root {
    /* Green Color Palette */
    --fresh-mint: #e8f5e9;      /* Light, airy background - fresh feeling */
    --sage-light: #c8e6c9;      /* Soft accent areas */
    --leaf-green: #4caf50;      /* Primary action color */
    --forest: #2e7d32;          /* Darker, grounded green - trust/tradition */
    --deep-pine: #1b5e20;       /* Text and strong accents */
    
    /* Supporting Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --warm-sand: #f5f5dc;
    --text-primary: #1b5e20;    /* Deep pine for main text */
    --text-secondary: #2e7d32;  /* Forest for secondary text */
    --text-muted: #558b2f;      /* Muted green for less important text */
    
    /* Accent Colors (minimal use) */
    --accent-warm: #ffb74d;     /* Warm accent for CTAs */
    --card: rgba(255,255,255,.95);
    --stroke: rgba(46,125,50,.15);
    
    /* Shadows - Softer, more natural */
    --shadow: 0 8px 24px rgba(27,94,32,.08);
    --shadowSoft: 0 4px 12px rgba(27,94,32,.06);
    --shadowHover: 0 12px 32px rgba(27,94,32,.12);
    
    /* Spacing */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --max: 1120px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    /* Typography */
    --font-heading: 700;
    --font-subheading: 600;
    --font-body: 400;
}

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

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background: linear-gradient(180deg, var(--white) 0%, var(--fresh-mint) 100%);
    overflow-x: hidden;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px;
}

/* Subtle leaf pattern decoration */
body::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(76,175,80,.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(46,125,50,.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation Styles */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--sage-light);
    padding: 15px 0;
    box-shadow: 0 2px 12px rgba(27,94,32,0.08);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text .company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
}

.logo-text .tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.menu-item {
    margin: 0 1rem;
}

.menu-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.menu-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--leaf-green);
    transition: width 0.3s ease;
}

.menu-item a:hover {
    color: var(--forest);
}

.menu-item a:hover::after {
    width: 100%;
}

.menu-item a.active {
    color: var(--forest);
}

.menu-item a.active::after {
    width: 100%;
}

.cta-button {
    background: var(--forest);
    color: #fff;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--forest);
    box-shadow: var(--shadowSoft);
}

.cta-button:hover {
    background: var(--deep-pine);
    border-color: var(--deep-pine);
    transform: translateY(-2px);
    box-shadow: var(--shadowHover);
}

.whatsapp-cta {
    background-color: #25D366;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #25D366;
}

.whatsapp-cta:hover {
    background-color: transparent;
    color: #25D366;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--forest);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--fresh-mint) 0%, var(--sage-light) 100%);
    text-align: center;
    color: var(--text-primary);
    position: relative;
    border-bottom: 3px solid var(--leaf-green);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(76,175,80,.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 700;
    color: var(--deep-pine);
}

.hero-content h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hero-button {
    background-color: var(--forest);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.1rem;
    display: inline-block;
    border: 2px solid var(--forest);
    box-shadow: var(--shadow);
}

.hero-button:hover {
    background-color: var(--deep-pine);
    border-color: var(--deep-pine);
    transform: translateY(-3px);
    box-shadow: var(--shadowHover);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(28px, 3.5vw, 36px);
    margin-bottom: 1rem;
    color: var(--deep-pine);
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--leaf-green);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background-color: var(--white);
}

.service-highlight {
    text-align: center;
    margin-bottom: 3rem;
}

.service-highlight h3 {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 1rem;
    color: var(--forest);
    font-weight: 600;
}

.service-highlight p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-areas h3 {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 1.5rem;
    color: var(--forest);
    font-weight: 600;
}

.areas-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.areas-list li {
    background-color: var(--sage-light);
    color: var(--deep-pine);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--leaf-green);
}

.areas-list li:hover {
    background-color: var(--leaf-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadowSoft);
}

/* Sustainability Section */
.sustainability {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--fresh-mint) 100%);
}

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

.sustainability-item {
    padding: 2rem;
    border-radius: var(--radius);
    background-color: var(--white);
    transition: var(--transition);
    border: 2px solid var(--sage-light);
    box-shadow: var(--shadowSoft);
}

.sustainability-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadowHover);
    border-color: var(--leaf-green);
}

.toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.toggle-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--forest);
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--leaf-green);
    font-weight: bold;
}

.toggle-content {
    margin-top: 1rem;
    display: none;
}

.toggle-content.active {
    display: block;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background-color: var(--fresh-mint);
    box-shadow: var(--shadowSoft);
    transition: var(--transition);
    border: 2px solid var(--sage-light);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadowHover);
    border-color: var(--leaf-green);
    background-color: var(--white);
}

.feature-item h3 {
    color: var(--forest);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--leaf-green);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    color: #fff;
    position: relative;
    background: linear-gradient(135deg, var(--forest) 0%, var(--deep-pine) 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom left, rgba(76,175,80,.15) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, var(--deep-pine) 0%, #0a3d1a 100%);
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

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

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--leaf-green);
    border-radius: 2px;
}

.footer-column p {
    margin-bottom: 1rem;
}

.address-info, .contact-info {
    display: flex;
    align-items: flex-start;
}

.address-info i, .contact-info i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.social-media {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #ecf0f1;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--leaf-green);
    background-color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--leaf-green);
}

.copyright p {
    margin-bottom: 0;
}

/* Buttons and Links */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--forest);
    color: #fff;
    border-color: var(--forest);
    box-shadow: var(--shadowSoft);
}

.btn-primary:hover {
    background-color: var(--deep-pine);
    border-color: var(--deep-pine);
    transform: translateY(-2px);
    box-shadow: var(--shadowHover);
}

.btn-secondary {
    background-color: var(--leaf-green);
    color: #fff;
    border-color: var(--leaf-green);
    box-shadow: var(--shadowSoft);
}

.btn-secondary:hover {
    background-color: var(--forest);
    border-color: var(--forest);
    transform: translateY(-2px);
    box-shadow: var(--shadowHover);
}

/* Utilities */
.green-accent {
    color: var(--leaf-green);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-highlight h3 {
        font-size: 1.5rem;
    }

    .service-areas h3 {
        font-size: 1.5rem;
    }

    .sustainability-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        margin-bottom: 1rem;
    }

    .footer-links a {
        display: block;
        margin: 0.25rem 0;
    }
}

/* Mobile-Specific Optimizations */
@media (max-width: 920px) {
    /* Lazy loading for images on mobile */
    img {
        content: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1"%3E%3C/svg%3E');
        background-size: cover;
        background-position: center;
    }

    /* Optimize animations for mobile */
    * {
        will-change: transform, opacity;
    }

    /* Reduce motion for better performance */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
}

/* Desktop Performance Optimizations */
@media (min-width: 921px) {
    /* Smooth scrolling for desktop */
    html {
        scroll-behavior: smooth;
    }

    /* Hardware acceleration for animations */
    .feature-item, .service-item, .toggle-header {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
    }
}

/* Accessibility Enhancements */
:focus-visible {
    outline: 3px solid var(--leaf-green);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--deep-pine);
    color: var(--white);
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 0;
}

/* Print Styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }

    .main-nav, .main-footer, .cta-section {
        display: none !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 920px) {
    /* Mobile Navigation */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: #0f1a2f;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 70px 25px 25px;
        gap: 15px;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }

    .nav-menu:not(.active) {
        transform: translateX(100%);
    }

    /* Mobile dropdown enhancements */
    .menu-item.has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-left: 15px;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        padding-left: 10px;
        border-radius: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 8px;
        margin-bottom: 8px;
    }

    /* Mobile dropdown indicator */
    .menu-item.has-dropdown::after {
        content: "▶";
        font-size: 12px;
        margin-left: 8px;
        transition: var(--transition);
    }

    .menu-item.has-dropdown.active::after {
        transform: rotate(90deg);
    }

    /* Mobile CTA button styling */
    .cta-item {
        width: 100%;
        margin-top: 20px;
    }

    .cta-item .cta-button {
        display: block;
        width: 100%;
        padding: 16px 20px;
        font-size: 17px;
        font-weight: 600;
        border-radius: var(--radius);
        background: var(--forest);
        text-align: center;
    }

    /* Layout adjustments */
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: clamp(26px, 8vw, 40px);
        margin-bottom: 12px;
    }

    .hero h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .services-overview,
    .sustainability,
    .why-choose-us {
        padding: 40px 0;
    }

    .service-highlight h3,
    .sustainability-item h3,
    .feature-item h3 {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features-grid .feature-item {
        padding: 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .phone-number {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .address-info,
    .contact-info {
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .address-info i,
    .contact-info i {
        margin-right: 8px;
    }
}

/* Smaller mobile devices */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

    /* Desktop-specific enhancements */
    @media (min-width: 921px) {
        /* Desktop navigation */
        .mobile-menu-toggle {
            display: none;
        }
        
        /* Sidebar styles */
        .sidebar {
            width: 250px;
            background: var(--glass-bg);
            border-left: 1px solid var(--glass-border);
            padding: 20px 0;
            overflow-y: auto;
            position: fixed;
            top: 80px;
            right: 0;
            height: calc(100vh - 80px);
            z-index: 900;
            backdrop-filter: var(--glass-backdrop);
        }
        
        .sidebar-content {
            padding: 0 15px;
        }
        
        .sidebar-header {
            padding: 0 15px 15px;
            border-bottom: 1px solid var(--stroke);
            margin-bottom: 15px;
        }
        
        .sidebar-header h3 {
            font-size: 1.1rem;
            margin: 0;
            color: var(--text);
        }
        
        .sidebar-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .sidebar-menu {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .sidebar-menu li {
            margin: 0;
        }
        
        .sidebar-menu a {
            display: block;
            padding: 10px 15px;
            border-radius: 5px;
            color: var(--text);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }
        
.sidebar-menu a {
    display: block;
    padding: 10px 15px;
    border-radius: 50px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    backdrop-filter: var(--glass-backdrop);
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin: 0 10px;
}

.sidebar-menu a:hover {
    background-color: rgba(0,183,255,0.2);
    color: var(--teal);
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sidebar-menu a.active {
    background-color: rgba(0,183,255,0.3);
    color: var(--teal);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
        
        /* Main content adjustment for sidebar */
        .main-content-with-sidebar {
            margin-left: 250px;
            padding: 20px 0;
        }
        
        /* Ensure main content doesn't overlap with sidebar */
        .main-content {
            /* No direct margin-right needed as the wrapper handles it */
        }
        
        /* Alternative approach: use padding on wrapper */
        .sidebar-wrapper {
            padding-right: 250px;
        }
        
        /* For pages with sidebar, add spacing */
        .sidebar-wrapper {
            display: flex;
            flex-direction: row;
            gap: 20px;
            margin-top: 80px; /* Account for fixed header */
        }
        
        .sidebar-wrapper .main-content {
            flex: 1;
        }
        
        /* Ensure main content doesn't overlap with sidebar */
        .main-content {
            /* No direct margin-right needed as the wrapper handles it */
        }
        
        /* Alternative approach: use padding on wrapper */
        .sidebar-wrapper {
            padding-right: 250px;
        }
        
        /* Desktop CTA button in navigation */
    .cta-item {
        display: none;
    }

    /* Add desktop CTA button after nav menu */
    .nav-container::after {
        content: '';
        display: block;
        margin-left: 20px;
    }

    .nav-container {
        position: relative;
    }

    .desktop-cta {
        margin-left: 20px;
        display: block !important;
    }

    /* Desktop layout enhancements */
    .container {
        max-width: var(--max);
    }

    /* Two-pane style for desktop */
    .overview-content,
    .service-details,
    .industry-content,
    .contact-form-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }

    /* Desktop-specific hover effects */
    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    /* Enhanced desktop typography */
    .hero h1 {
        font-size: clamp(34px, 4.6vw, 56px);
    }

    .section-header h2 {
        font-size: 36px;
    }
    
    /* Desktop Dropdown Menus */
    .menu-item.has-dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #0f1a2f;
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 0.5rem 0;
        min-width: 200px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .dropdown-menu li {
        list-style: none;
    }
    
    .dropdown-menu a {
        display: block;
        padding: 0.75rem 1.5rem;
        color: #ecf0f1;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--leaf);
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in {
    animation: slideIn 0.6s ease-out forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* ===== Pills & Buttons ===== */
.pill{
    display:inline-flex;gap:8px;align-items:center;
    padding:9px 13px;border-radius:999px;
    background: rgba(255,255,255,.65);
    border: 1px solid var(--stroke);
    color: rgba(6,32,58,.70);
    font-size:14px;
}

.btn{
    display:inline-flex;align-items:center;justify-content:center;gap:10px;
    padding:12px 18px;border-radius:14px;
    font-weight:900;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadowSoft);
    background: linear-gradient(135deg, var(--aqua), var(--teal));
    color:#052033;
    transition:.15s ease;
}
.btn:hover{transform:translateY(-2px);filter:saturate(1.05)}
.btn.secondary{
    background: rgba(255,255,255,.75);
    color: rgba(6,32,58,.85);
    box-shadow:none;
}

/* ===== Sections & Cards ===== */
section{padding:54px 0}

.section-surface{
    border-radius: calc(var(--radius) + 8px);
    background: rgba(255,255,255,.72);
    border:1px solid var(--stroke);
    box-shadow: var(--shadow);
    padding:22px;
}

.grid3{display:grid;gap:14px;grid-template-columns:repeat(3,1fr)}

.card{
    background: rgba(255,255,255,.82);
    border:1px solid var(--stroke);
    border-radius: var(--radius);
    padding:16px;
    box-shadow: 0 12px 22px rgba(6,32,58,.10);
}
.card h3{margin:10px 0 6px}
.card p{margin:0;color: rgba(6,32,58,.70)}

.icon{
    width:46px;height:46px;border-radius:16px;
    display:grid;place-items:center;
    background: linear-gradient(135deg, rgba(0,214,201,.22), rgba(0,183,255,.14));
    border:1px solid rgba(6,32,58,.08);
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

/* ===== Contact Form Container ===== */
.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ===== Contact Grid ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* ===== Checkbox Group ===== */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Responsive adjustments */
@media (max-width: 920px) {
    .contact-form-container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Card ===== */
.contact-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    margin-bottom: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadowSoft);
}
.contact-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
.contact-card h3 {
    margin: 12px 0 8px;
    font-size: 1.3rem;
}
.contact-card p {
    margin: 8px 0;
    flex-grow: 1;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--stroke);
    border-radius: 8px;
    background: rgba(255,255,255,.9);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.03), 0 0 0 2px rgba(0,183,255,0.2);
}
.submit-button {
    background: linear-gradient(135deg, var(--leaf), var(--teal));
    color: #052033;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadowSoft);
}
.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.form-sidebar {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}
.next-steps {
    list-style-type: none;
    padding: 0;
    margin-bottom: 24px;
}
.next-steps li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(6,32,58,.1);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.next-steps li:last-child {
    border-bottom: none;
}
.contact-alternative {
    text-align: center;
    padding: 20px 0;
    border-top: 1px dashed rgba(6,32,58,.1);
}
.phone-button,
.whatsapp-cta {
    display: block;
    margin: 10px auto;
    width: 80%;
    max-width: 250px;
}

/* ===== Service Areas ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.area-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.area-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.area-list li {
    background: rgba(255,255,255,.75);
    border: 1px solid var(--stroke);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.area-list li:hover {
    background: var(--card);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* ===== Areas Map ===== */
.areas-map {
    margin-top: 30px;
}

.areas-map img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

/* ===== FAQ Section ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.faq-item {
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadowSoft);
}

.faq-question {
    padding: 20px;
    background: var(--card);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text);
}

.faq-question h3 {
    margin: 0;
    flex-grow: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* ===== Hero Section ===== */
.hero {
    padding: 56px 0 28px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--text);
    position: relative;
}

/* ===== Final CTA Section ===== */
.final-cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 56px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== Scannable List Styles with Checkmarks ===== */
.checkmark-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.checkmark-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background-color: var(--leaf-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Info boxes for key information */
.info-box {
    background: linear-gradient(135deg, var(--fresh-mint) 0%, var(--sage-light) 100%);
    border-left: 4px solid var(--leaf-green);
    padding: 20px 24px;
    border-radius: var(--radius);
    margin: 24px 0;
    box-shadow: var(--shadowSoft);
}

.info-box h3 {
    color: var(--forest);
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-box p {
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Highlight boxes for important callouts */
.highlight-box {
    background: var(--white);
    border: 2px solid var(--leaf-green);
    padding: 24px;
    border-radius: var(--radius);
    margin: 24px 0;
    text-align: center;
    box-shadow: var(--shadow);
}

.highlight-box h3 {
    color: var(--forest);
    margin-bottom: 12px;
    font-size: clamp(20px, 2.5vw, 26px);
}

.highlight-box p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Icon badges for services */
.icon-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--leaf-green) 0%, var(--forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 16px;
    box-shadow: var(--shadowSoft);
}

/* Service item cards with better hierarchy */
.service-card {
    background: var(--white);
    border: 2px solid var(--sage-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    margin-bottom: 20px;
}

.service-card:hover {
    border-color: var(--leaf-green);
    transform: translateY(-3px);
    box-shadow: var(--shadowHover);
}

.service-card h3 {
    color: var(--forest);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

/* Two-column layout for easy scanning */
.two-column-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

/* Stats/Numbers display */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--fresh-mint);
    border-radius: var(--radius);
    border: 2px solid var(--sage-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Process steps for "how it works" */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.process-step {
    background: var(--white);
    border: 2px solid var(--sage-light);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--leaf-green);
    transform: translateY(-3px);
    box-shadow: var(--shadowHover);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--forest);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.process-step h3 {
    color: var(--forest);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-step p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Testimonial cards */
.testimonial-card {
    background: var(--white);
    border: 2px solid var(--sage-light);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadowSoft);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: var(--sage-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent-warm);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.testimonial-quote {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    color: var(--forest);
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Section dividers */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--leaf-green) 50%, transparent 100%);
    margin: 48px 0;
    border: none;
}

/* Phone number emphasis */
.phone-number {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--leaf-green);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.phone-number:hover {
    color: var(--forest);
    transform: scale(1.05);
}

/* Badge styles for certifications/features */
.badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--sage-light);
    color: var(--deep-pine);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 4px;
    border: 1px solid var(--leaf-green);
}

/* Improved table styles for service comparisons */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadowSoft);
}

.comparison-table th {
    background: var(--forest);
    color: white;
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--sage-light);
    color: var(--text-primary);
}

.comparison-table tr:hover {
    background: var(--fresh-mint);
}

/* Loading states and animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Better spacing utilities */
.section-spacing {
    padding: 5rem 0;
}

.section-spacing-sm {
    padding: 3rem 0;
}

.section-spacing-lg {
    padding: 7rem 0;
}

.content-spacing {
    margin: 24px 0;
}

/* Mobile optimization for scannable content */
@media (max-width: 768px) {
    .checkmark-list li {
        font-size: 1rem;
        padding-left: 32px;
    }
    
    .checkmark-list li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        top: 14px;
    }
    
    .process-steps,
    .stats-grid,
    .two-column-list {
        grid-template-columns: 1fr;
    }
    
    .info-box,
    .highlight-box {
        padding: 16px;
    }
    
    .icon-badge {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
