:root {
    --navbar-height: 80px;
    --navbar-height-mobile: 70px;
    
    /* Neutral Base Colors - Pure Neutral (No Blue) */
    --charcoal: #2D2D2D;
    --charcoal-dark: #1F1F1F;
    --charcoal-darker: #0A0A0A;
    --gray: #4A4A4A;
    --gray-light: #6B6B6B;
    --gray-lighter: #9B9B9B;
    
    /* Green Accent Colors */
    --primary-green: #478503;
    --primary-green-dark: #365A02;
    --secondary-green: #8CC63F;
    --secondary-green-light: #A5D65F;
    
    /* Backgrounds */
    --background: #F9FAFB;
    --background-dark: #F3F4F6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    background: #F9FAFB;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.97) 0%, rgba(31, 31, 31, 0.97) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: var(--navbar-height);
}

nav.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(140, 198, 63, 0.3);
}

.logo-icon::before {
    content: '\267B\FE0E';
    font-size: 2rem;
    color: white;
    -webkit-text-fill-color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Base nav-links (hidden by default, shown via media queries) */
.nav-links {
    display: none;
}

/* Dropdown Menu Base Styles */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: #2D2D2D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
}

.dropdown-menu a:hover {
    color: #8CC63F;
}

/* Desktop Navigation - Only show on large screens */
@media (min-width: 1025px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
        margin: 0 2rem 0 auto;
    }
    
    .nav-links .nav-phone {
        display: none;  /* Hide phone link on desktop - button already visible */
    }
    
    /* Desktop Dropdown Menu */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #2D2D2D;
        border-radius: 24px;
        padding: 1rem 0;
        min-width: 240px;
        box-shadow: 0 0 0 2px #8CC63F,
                    0 10px 40px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        margin-top: 0.5rem;
        transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
        z-index: 1002;
        overflow: hidden;
    }
    
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
    
    .dropdown-menu li {
        padding: 0;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
        display: block;
        background: transparent;
    }
    
    .dropdown-menu a:hover {
        background: linear-gradient(135deg, rgba(140, 198, 63, 0.15), rgba(71, 133, 3, 0.15));
    }
}

.nav-links a {
    text-decoration: none;
    color: #E5E7EB;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #8CC63F;
}

.cta-button {
    background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(140, 198, 63, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(140, 198, 63, 0.4);
}

.cta-btn-text { display: inline; }
.cta-btn-icon { display: none; width: 22px; height: 22px; stroke: white; vertical-align: middle; }



/* Hero Section */
.hero {
    margin-top: var(--navbar-height);
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(31, 31, 31, 0.92) 50%, rgba(45, 45, 45, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('bales_of_trash_at_facility.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(140, 198, 63, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.leaf-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px);
    z-index: 1;
}

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

.hero-text h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text h1 .highlight {
    background: #6AA621;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: none;
}

.hero-text p {
    font-size: 1.3rem;
    color: #D1D5DB;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.primary-btn {
    background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
    color: white;
    padding: 1.2rem 2.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(140, 198, 63, 0.35);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(140, 198, 63, 0.45);
}

.secondary-btn {
    background: transparent;
    color: white;
    padding: 1.2rem 2.8rem;
    border: 2px solid #8CC63F;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: inline-block;
}

.secondary-btn:hover {
    background: #8CC63F;
    color: #2D2D2D;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(140, 198, 63, 0.3);
}

.hero-visual {
    position: relative;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #F3F4F6;
    padding: 2.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stat-card:hover {
    background: white;
    border-color: #8CC63F;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(140, 198, 63, 0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4A4A4A;
    font-size: 1rem;
    font-weight: 600;
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
    padding: 3rem 2rem;
    border-top: none;
    border-bottom: none;
    box-shadow: none;
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trust-content p {
    color: #9B9B9B;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 700;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: #8CC63F;
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: #F9FAFB;
}

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

.section-tag {
    color: #8CC63F;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #2D2D2D;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #4A4A4A;
    line-height: 1.8;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid #F3F4F6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card.has-background {
    background: white;
}

.service-card.has-background::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-image: var(--card-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    border-radius: 22px;
}

.service-card.has-background::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    border-radius: 22px;
}

.service-card.has-background:hover {
    border-color: #8CC63F;
}

.service-card.has-background:hover::before {
    background: rgba(255, 255, 255, 0.80);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card.has-background .service-icon {
    margin-top: 0;
}

.service-card:hover {
    border-color: #8CC63F;
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(140, 198, 63, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(140, 198, 63, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(140, 198, 63, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2D2D2D;
    margin-bottom: 1rem;
    font-weight: 800;
}

.service-card p {
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    color: white;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
    padding: 0.55rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.service-link:hover {
    gap: 0.75rem;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us */
.why-choose {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 50%, #2D2D2D 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.why-text h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.why-text p {
    font-size: 1.2rem;
    color: #D1D5DB;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(140, 198, 63, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(140, 198, 63, 0.2);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #8CC63F;
}

.feature-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.feature-content p {
    color: #D1D5DB;
    margin: 0;
    font-size: 1rem;
}

/* Process Section */
.process {
    padding: 6rem 2rem;
    background: #F9FAFB;
}

.process-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Style for process step links to maintain consistent sizing */
.process-steps > a {
    text-decoration: none;
    color: inherit;
    display: flex;
    height: 100%;
}

.step {
    text-align: center;
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 25px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step:hover,
.process-steps > a:hover .step {
    border-color: #8CC63F;
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(140, 198, 63, 0.15);
}

.step::after {
    content: 'ÃƒÂ¢Ã¢â‚¬Â Ã¢â‚¬â„¢';
    position: absolute;
    right: -1.5rem;
    top: 40px;
    font-size: 2rem;
    color: #8CC63F;
    font-weight: bold;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #8CC63F, #478503);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(140, 198, 63, 0.3);
}

.step h4 {
    font-size: 1.3rem;
    color: #2D2D2D;
    margin-bottom: 1rem;
    font-weight: 800;
}

.step p {
    color: #4A4A4A;
    line-height: 1.7;
}

/* Step background images */
.step.has-background {
    background: white;
    overflow: hidden;
}

.step.has-background::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-image: var(--step-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    border-radius: 22px;
    opacity: 0.15;
}

/* Special positioning for certification step */
#certification-step.has-background::before {
    background-position: left center;
}

.step.has-background > * {
    position: relative;
    z-index: 2;
}

.step.has-background:hover::before,
.process-steps > a:hover .step.has-background::before {
    opacity: 0.2;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

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

.cta-content h2 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-content .primary-btn {
    background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(140, 198, 63, 0.3);
}

.cta-content .primary-btn:hover {
    background: linear-gradient(135deg, #A5D65F 0%, #8CC63F 100%);
    box-shadow: 0 12px 40px rgba(140, 198, 63, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0A0A0A 0%, #1F1F1F 100%);
    padding: 4rem 2rem 2rem;
    color: #9B9B9B;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-text {
    color: white;
}

.footer-logo-highlight {
    background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(140, 198, 63, 0.3);
}

.footer-logo-icon::before {
    content: '\267B\FE0E';
    font-size: 2rem;
    color: white;
    -webkit-text-fill-color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.footer-brand h3 span {
    background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #9B9B9B;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #9B9B9B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8CC63F;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #6B6B6B;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #E5E7EB;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.mobile-menu-btn:active {
    opacity: 0.7;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    border: 2px solid rgba(140, 198, 63, 0.2);
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #4A4A4A;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #F3F4F6;
    color: #2D2D2D;
}

.modal-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #8CC63F, #478503);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    box-shadow: 0 8px 30px rgba(140, 198, 63, 0.3);
}

.modal-content h3 {
    font-size: 2rem;
    color: #2D2D2D;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 900;
}

.modal-content p {
    color: #4A4A4A;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-phone {
    display: block;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8CC63F, #478503);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.modal-phone:hover {
    transform: scale(1.05);
}

.modal-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #8CC63F, #478503);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(140, 198, 63, 0.3);
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(140, 198, 63, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .cta-button {
        padding: 0;
        font-size: 0;
        white-space: nowrap;
        width: 36px;
        height: 36px;
        min-width: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        box-shadow: none;
        position: relative;
        flex-shrink: 0;
    }

    .cta-btn-text { display: none; }
    .cta-btn-icon { display: block; }

    .cta-button:hover {
        background: transparent;
        transform: none;
        box-shadow: none;
    }

    /* Mobile menu backdrop */
    .mobile-menu-backdrop {
        display: none;
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-backdrop.active {
        display: block;
        opacity: 1;
    }

    .mobile-menu-btn {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #E5E7EB;
    }

    .mobile-menu-btn:hover {
        transform: scale(1.1);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: #2D2D2D;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        overflow-y: auto;
        list-style: none;
    }

    .nav-links.active {
        display: flex !important;
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
        display: block;
    }

    .nav-links a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
        color: #E5E7EB;
        text-decoration: none;
        font-weight: 600;
    }

    .nav-links .nav-phone {
        background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
        color: white;
        padding: 1rem;
        border-radius: 12px;
        text-align: center;
        font-weight: 700;
        margin-top: 1rem;
    }
    
    /* Mobile Dropdown Menu */
    .has-dropdown > a {
        position: relative;
    }
    
    .has-dropdown > a::after {
        content: '\25BC';
        font-size: 0.7rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .has-dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 1.5rem;
        background: #F9FAFB;
        border-radius: 16px;
        margin-top: 0.5rem;
    }
    
    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .dropdown-menu li {
        border-bottom: none;
        padding: 0;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 0.5rem;
        font-size: 1rem;
        font-weight: 500;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step::after {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        height: var(--navbar-height-mobile);
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .cta-button {
        padding: 0;
        font-size: 0;
        white-space: nowrap;
        width: 36px;
        height: 36px;
        min-width: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        box-shadow: none;
        position: relative;
        flex-shrink: 0;
    }

    .cta-btn-text { display: none; }
    .cta-btn-icon { display: block; }

    .cta-button:hover {
        background: transparent;
        transform: none;
        box-shadow: none;
    }

    /* Mobile menu backdrop */
    .mobile-menu-backdrop {
        display: none;
        position: fixed;
        top: var(--navbar-height-mobile);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--navbar-height-mobile));
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-backdrop.active {
        display: block;
        opacity: 1;
    }

    .mobile-menu-btn {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #E5E7EB;
    }

    .mobile-menu-btn:hover {
        transform: scale(1.1);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--navbar-height-mobile);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height-mobile));
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 30px rgba(140, 198, 63, 0.15);
        z-index: 999;
        overflow-y: auto;
        list-style: none;
    }

    .nav-links.active {
        display: flex !important;
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(140, 198, 63, 0.1);
        list-style: none;
        display: block;
    }

    .nav-links a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
        color: #2D2D2D;
        text-decoration: none;
        font-weight: 600;
    }

    .nav-links .nav-phone {
        background: linear-gradient(135deg, #8CC63F 0%, #478503 100%);
        color: white;
        padding: 1rem;
        border-radius: 12px;
        text-align: center;
        font-weight: 700;
        margin-top: 1rem;
    }

    .logo {
        font-size: 1.1rem;
        gap: 0.4rem;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .logo-icon::before {
        content: '\267B\FE0E';
        font-size: 1.7rem;
        color: white !important;
        -webkit-text-fill-color: white !important;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }

    .logo-text {
        line-height: 1.2;
    }

    .hero {
        margin-top: var(--navbar-height-mobile);
    }






























    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .stats-grid {
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

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

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

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

    .why-text h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .footer-brand h3 {
        font-size: 1.3rem;
        flex-wrap: wrap;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-logo-link {
        font-size: 1.3rem;
        flex-wrap: wrap;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-brand p {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
    }

    .footer-logo-icon::before {
        font-size: 1.7rem;
    }

    footer {
        padding: 3rem 1.5rem 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
    }

    .modal-content {
        padding: 2rem;
    }

    .modal-content h3 {
        font-size: 1.5rem;
    }

    .modal-phone {
        font-size: 1.8rem;
    }
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.fade-in-slow {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.fade-in-slow.visible {
    opacity: 1;
}

/* Extra small phones */
@media (max-width: 480px) {
    :root {
        --navbar-height-mobile: 65px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1rem;
        gap: 0.35rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .logo-icon::before {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0;
        font-size: 0;
        white-space: nowrap;
        width: 32px;
        height: 32px;
        min-width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        box-shadow: none;
        position: relative;
        flex-shrink: 0;
    }

    .cta-btn-text { display: none; }
    .cta-btn-icon { display: block; width: 20px; height: 20px; }

    .cta-button:hover {
        background: transparent;
        transform: none;
        box-shadow: none;
    }

    .mobile-menu-btn {
        width: 32px;
        height: 32px;
        font-size: 1.4rem;
    }

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

    .hero-text p {
        font-size: 1rem;
    }

    .stat-card {
        padding: 1.2rem 0.8rem;
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .why-text h2, .cta-content h2 {
        font-size: 1.7rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-content h3 {
        font-size: 1.3rem;
    }

    .modal-phone {
        font-size: 1.5rem;
    }
}

/* Stagger animation delays */
.fade-in:nth-child(1), .scale-in:nth-child(1), .slide-right:nth-child(1), .slide-left:nth-child(1), .fade-in-slow:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2), .scale-in:nth-child(2), .slide-right:nth-child(2), .slide-left:nth-child(2), .fade-in-slow:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3), .scale-in:nth-child(3), .slide-right:nth-child(3), .slide-left:nth-child(3), .fade-in-slow:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4), .scale-in:nth-child(4), .slide-right:nth-child(4), .slide-left:nth-child(4), .fade-in-slow:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5), .scale-in:nth-child(5), .fade-in-slow:nth-child(5) { transition-delay: 0.5s; }
.fade-in:nth-child(6), .scale-in:nth-child(6), .fade-in-slow:nth-child(6) { transition-delay: 0.6s; }
.fade-in-slow:nth-child(7) { transition-delay: 0.7s; }
.fade-in-slow:nth-child(8) { transition-delay: 0.8s; }
.fade-in-slow:nth-child(9) { transition-delay: 0.9s; }
.fade-in-slow:nth-child(10) { transition-delay: 1s; }
.fade-in-slow:nth-child(11) { transition-delay: 1.1s; }
.fade-in-slow:nth-child(12) { transition-delay: 1.2s; }