/* ================================
   Eco Friendly Pests - Main Styles
   White & Green Theme
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #54B741;
    --dark-green: #3d8b2a;
    --light-green: #dff5d8;
    --white: #FFFFFF;
    --text-color: #333333;
    --light-gray: #F5F5F5;
    --border-color: #E0E0E0;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    padding-top: 130px;
}

/* ================================
   Container
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   Navigation Bar
   ================================ */
.navbar {
    background: #ffffff;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 8px 32px rgba(84, 183, 65, 0.15),
                0 0 20px rgba(84, 183, 65, 0.08);
    z-index: 1000;
    animation: slideDownNavbar 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-bottom: 3px solid rgba(84, 183, 65, 0.2);
    backdrop-filter: blur(10px);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 8s ease infinite;
}

@keyframes slideDownNavbar {
    from {
        opacity: 0;
        transform: translateY(-100%) scaleY(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.navbar .logo {
    color: #54B741;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: rotateIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 10px 0;
    border-radius: 8px;
    overflow: hidden;
    margin-right: auto;
}

.navbar .logo::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;
    z-index: -1;
}

.navbar .logo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-15deg) scale(0.7);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes spinLeaf {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.1); }
}

.navbar .logo:hover::before {
    left: 100%;
}

.navbar .logo:hover::after {
    opacity: 1;
}

.navbar .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #54B741;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 10px 15px;
    display: block;
    border-radius: 6px;
    font-size: 15px;
    letter-spacing: 0.3px;
    overflow: hidden;
    animation: navLinkFadeIn 0.6s ease-out both;
}

.nav-links li:nth-child(1) a { animation-delay: 0.3s; }
.nav-links li:nth-child(2) a { animation-delay: 0.4s; }
.nav-links li:nth-child(3) a { animation-delay: 0.5s; }
.nav-links li:nth-child(4) a { animation-delay: 0.6s; }
.nav-links li:nth-child(5) a { animation-delay: 0.7s; }
.nav-links li:nth-child(6) a { animation-delay: 0.8s; }

@keyframes navLinkFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 6px;
}

.nav-links a:hover {
    color: #2ecc71;
    letter-spacing: 0.8px;
    transform: translateY(-3px);
    text-shadow: 0 0 15px rgba(84, 183, 65, 0.4);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover::after {
    opacity: 1;
    animation: pulse-bg 0.6s ease-out;
}

@keyframes pulse-bg {
    from {
        box-shadow: 0 0 0 rgba(84, 183, 65, 0.3);
    }
    to {
        box-shadow: 0 0 15px rgba(84, 183, 65, 0);
    }
}

.nav-links a.active {
    background: rgba(84, 183, 65, 0.1);
    box-shadow: 0 4px 12px rgba(84, 183, 65, 0.15);
    color: #2ecc71;
    text-shadow: none;
}

.nav-links a.active::before {
    width: 100%;
    background: #54B741;
    box-shadow: 0 0 10px rgba(84, 183, 65, 0.5);
}

/* ================================
   Call Now Button
   ================================ */
.call-now-btn {
    background: linear-gradient(135deg, #54B741 0%, #3d8b2a 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(84, 183, 65, 0.3);
    z-index: 2;
    position: relative;
    animation: navLinkFadeIn 0.6s ease-out 0.7s both;
    white-space: nowrap;
}

.call-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(84, 183, 65, 0.45);
    background: linear-gradient(135deg, #3d8b2a 0%, #2d6b1f 100%);
    letter-spacing: 0.3px;
}

/* ================================
   Hamburger Menu
   ================================ */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 2;
    position: relative;
    margin-left: auto;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #54B741;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hamburger Menu Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .navbar {
        padding: 10px 0;
    }

    .navbar .logo {
        margin-right: 0;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
        margin-right: 15px;
    }

    .call-now-btn {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        border-bottom: 3px solid rgba(84, 183, 65, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 8px 32px rgba(84, 183, 65, 0.15);
        z-index: 900;
        width: 100%;
        list-style: none;
    }

    .nav-links.active {
        display: flex;
        max-height: 600px;
        overflow-y: auto;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        padding: 15px 20px;
        display: block;
        border-radius: 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(84, 183, 65, 0.1);
        animation: none;
        color: #54B741;
    }

    .nav-links a:hover {
        background: rgba(84, 183, 65, 0.1);
    }

    .nav-links a.active {
        background: rgba(84, 183, 65, 0.15);
    }

    .navbar .container {
        padding: 0 15px;
    }

    .navbar .logo img {
        height: 90px !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 85px;
    }

    .navbar .logo img {
        height: 80px !important;
    }

    .nav-links a {
        font-size: 14px;
        padding: 12px 15px;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    .hamburger {
        margin-right: 10px;
    }
}

/* ================================
   Hero Section
   ================================ */
.hero {
    background: linear-gradient(135deg, rgba(84, 183, 65, 0.85) 0%, rgba(61, 139, 42, 0.95) 100%),
                url('../images/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                           radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%); }
    50% { background: radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%); }
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 24px;
    margin-bottom: 45px;
    font-weight: 300;
    opacity: 0.98;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-green);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background-color: #f0f0f0;
}

.btn-secondary {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(84, 183, 65, 0.4);
}


/* ================================
   SEO Introduction Section
   ================================ */
.seo-intro-section {
    background: linear-gradient(180deg, #f0faf7 0%, var(--white) 100%);
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.seo-intro-section h2 {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.seo-intro-section > .container > p:first-of-type {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.seo-intro-section strong {
    color: var(--primary-green);
    font-weight: 700;
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.seo-feature {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 5px 20px rgba(84, 183, 65, 0.08);
    transition: all 0.3s ease;
}

.seo-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(84, 183, 65, 0.15);
}

.seo-feature h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.seo-feature ul {
    list-style: none;
    padding: 0;
}

.seo-feature li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.7;
    font-weight: 500;
}

.seo-feature ul strong {
    color: var(--primary-green);
}

.seo-closing {
    font-size: 16px;
    color: #555;
    text-align: center;
    line-height: 1.8;
    padding: 20px;
    background: rgba(84, 183, 65, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    font-weight: 500;
}

/* ================================
   Services Page Hero Section
   ================================ */
.services-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, #459933 50%, var(--dark-green) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.services-hero-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.services-hero-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--white), transparent);
    top: -100px;
    left: -150px;
    animation-delay: 0s;
}

.services-hero-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--white), transparent);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.services-hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.services-hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 500;
}

.services-hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    animation: slideInLeft 0.8s ease-out both;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateX(10px);
}

.hero-feature-item:nth-child(1) { animation-delay: 0.2s; }
.hero-feature-item:nth-child(2) { animation-delay: 0.3s; }
.hero-feature-item:nth-child(3) { animation-delay: 0.4s; }

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
}

.hero-feature-item:nth-child(1) .feature-icon { animation-delay: 0.2s; }
.hero-feature-item:nth-child(2) .feature-icon { animation-delay: 0.4s; }
.hero-feature-item:nth-child(3) .feature-icon { animation-delay: 0.6s; }

@keyframes iconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-cta {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-green);
    padding: 16px 40px;
    animation: slideInLeft 0.8s ease-out 0.5s both;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.services-hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: cardSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 10px);
    }
}

.hero-card-1 { animation-delay: 0.6s; }
.hero-card-2 { animation-delay: 0.7s; }
.hero-card-3 { animation-delay: 0.8s; }

.hero-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    animation: numberPulse 1s ease-in-out;
    position: relative;
    z-index: 1;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-card p {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.95;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ================================
   Featured Services Section
   ================================ */
.featured-services-section {
    background: linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.featured-services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(84, 183, 65, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.featured-services-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(84, 183, 65, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.featured-services-section .section-header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.featured-services-section .section-title {
    color: var(--primary-green);
    font-size: 42px;
}

.featured-services-section .section-subtitle {
    color: #666;
}

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* Responsive: 2 columns on tablets */
@media (max-width: 1024px) {
    .featured-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 768px) {
    .featured-services-grid {
        grid-template-columns: 1fr;
    }
}

.featured-services-grid .service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(84, 183, 65, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: cardSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    border-left: 5px solid var(--primary-green);
    position: relative;
}

.featured-services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.featured-services-grid .service-card:nth-child(2) { animation-delay: 0.25s; }
.featured-services-grid .service-card:nth-child(3) { animation-delay: 0.4s; }

.featured-services-grid .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(84, 183, 65, 0.2);
    border-left-color: #3d8b2a;
}

.featured-services-grid .service-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.featured-services-grid .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-services-grid .service-card:hover .service-image {
    transform: scale(1.08);
}

.featured-services-grid .service-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.featured-services-grid .service-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.featured-services-grid .service-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    font-weight: 500;
}

.featured-services-grid .service-pricing {
    display: none;
}

.featured-services-grid .price-value {
    display: none;
}

.featured-services-grid .price-label {
    display: none;
}

.featured-services-grid .service-features {
    display: none;
}

.featured-services-grid .service-features li {
    display: none;
}

.featured-services-grid .btn-service {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 5px 15px rgba(84, 183, 65, 0.3);
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    margin-top: auto;
}

.featured-services-grid .btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(84, 183, 65, 0.5);
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

.featured-services-grid .btn-service:active {
    transform: translateY(-1px);
}

.badge-orange {
    background: linear-gradient(135deg, #FF6B35 0%, #F34F1F 100%);
}

.badge-blue {
    background: linear-gradient(135deg, #0052CC 0%, #0038A3 100%);
}

.badge-red {
    background: linear-gradient(135deg, #E63946 0%, #C9184A 100%);
}

/* ================================
   Achievement Stats Section
   ================================ */
.achievement-section {
    background: linear-gradient(180deg, var(--white) 0%, #f9fdfb 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.achievement-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(84, 183, 65, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.achievement-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(84, 183, 65, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

:root {
    --primary-color: #54B741;
    --secondary-color: #4ECDC4;
    --accent-color: #FFD93D;
    --danger-color: #FF6B6B;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 16px;
    color: #888;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 1px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.achievement-card {
    position: relative;
    height: 100%;
    cursor: pointer;
    animation: cardSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.achievement-card:nth-child(1) { animation-delay: 0.1s; }
.achievement-card:nth-child(2) { animation-delay: 0.25s; }
.achievement-card:nth-child(3) { animation-delay: 0.4s; }
.achievement-card:nth-child(4) { animation-delay: 0.55s; }

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--white) 0%, #f0faf7 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(84, 183, 65, 0.08);
    border: 2px solid rgba(84, 183, 65, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.achievement-card:hover .card-bg {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(84, 183, 65, 0.25);
    border-color: rgba(84, 183, 65, 0.3);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.achievement-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.customers-icon .icon-bg { background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%); }
.experience-icon .icon-bg { background: linear-gradient(135deg, #4ECDC4 0%, #45B7B0 100%); }
.eco-icon .icon-bg { background: linear-gradient(135deg, #54B741 0%, #3d8b2a 100%); }
.support-icon .icon-bg { background: linear-gradient(135deg, #FFD93D 0%, #F7C600 100%); }

.icon-text {
    font-size: 48px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    display: block;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.2) rotateY(360deg);
}

.achievement-card:hover .icon-text {
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

.achievement-body {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.counter {
    margin-bottom: 15px;
}

.number {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-green);
    display: block;
    line-height: 1;
    transition: all 0.3s ease;
}

.unit {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-green);
    display: inline;
    margin-left: -5px;
}

.achievement-card:hover .number {
    color: var(--dark-green);
    transform: scale(1.1);
}

.achievement-body h3 {
    font-size: 22px;
    color: var(--text-color);
    font-weight: 800;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.achievement-card:hover h3 {
    color: var(--primary-green);
}

.achievement-body p {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(84, 183, 65, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-top: auto;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 10px;
    animation: fillWidth 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

@keyframes fillWidth {
    from {
        width: 0 !important;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.achievement-card:nth-child(1) .progress-fill { animation-delay: 0.4s; }
.achievement-card:nth-child(2) .progress-fill { animation-delay: 0.55s; }
.achievement-card:nth-child(3) .progress-fill { animation-delay: 0.7s; }
.achievement-card:nth-child(4) .progress-fill { animation-delay: 0.85s; }

.achievement-card:hover .progress-fill {
    background: linear-gradient(90deg, var(--dark-green) 0%, var(--primary-green) 100%);
    box-shadow: 0 0 15px rgba(84, 183, 65, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

/* ================================
   Why Choose Section - Dark Theme
   ================================ */
.why-choose-section {
    background: linear-gradient(135deg, #1a4d2e 0%, #0d3b1f 50%, #1a4d2e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.why-choose-bg-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--light-green), transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.why-choose-bg-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-green), transparent);
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.section-header-dark {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title-dark {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle-dark {
    font-size: 18px;
    color: var(--light-green);
    font-weight: 500;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.why-choose-card {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border: 2px solid rgba(84, 183, 65, 0.08);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(84, 183, 65, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    cursor: pointer;
    animation: cardSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.why-choose-card:nth-child(1) { animation-delay: 0.1s; }
.why-choose-card:nth-child(2) { animation-delay: 0.2s; }
.why-choose-card:nth-child(3) { animation-delay: 0.3s; }
.why-choose-card:nth-child(4) { animation-delay: 0.4s; }
.why-choose-card:nth-child(5) { animation-delay: 0.5s; }
.why-choose-card:nth-child(6) { animation-delay: 0.6s; }

.why-choose-card::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;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 20px 50px rgba(84, 183, 65, 0.25), 0 0 30px rgba(84, 183, 65, 0.15);
}

.card-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: 800;
    color: rgba(84, 183, 65, 0.2);
    transition: all 0.4s ease;
}

.why-choose-card:hover .card-number {
    color: rgba(84, 183, 65, 0.5);
    transform: scale(1.3) rotate(5deg);
}

.card-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.why-card-icon {
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.4s ease;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 12px;
    opacity: 0.15;
    transition: all 0.4s ease;
    z-index: 1;
}

.why-choose-card:hover .why-card-icon {
    transform: translate(-50%, -50%) scale(1.1) rotate(15deg);
}

.why-choose-card:hover .icon-bg {
    opacity: 0.3;
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(84, 183, 65, 0.4);
}

.why-choose-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.why-choose-card:hover h3 {
    color: var(--dark-green);
}

.why-choose-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.why-choose-card:hover p {
    color: var(--text-color);
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.why-choose-card:hover .card-accent {
    transform: scaleX(1);
}

/* ================================
   Client Testimonials Section
   ================================ */
.testimonials-section {
    background: linear-gradient(135deg, #f0faf7 0%, #dff5d8 50%, #f0faf7 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(84, 183, 65, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(84, 183, 65, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 9s ease-in-out infinite reverse;
}

.testimonials-section .section-title {
    color: #023020;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 42px;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 17px;
    color: #54B741;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(223, 245, 216, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(84, 183, 65, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(84, 183, 65, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: cardSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(84, 183, 65, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(84, 183, 65, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(84, 183, 65, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(223, 245, 216, 0.5) 100%);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.rating {
    font-size: 18px;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 48px;
    color: rgba(84, 183, 65, 0.2);
    font-weight: bold;
    line-height: 1;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    line-height: 1.9;
    font-weight: 500;
    position: relative;
    font-style: normal;
    letter-spacing: 0.3px;
}

.testimonial-author {
    padding-top: 20px;
    border-top: 2px solid rgba(84, 183, 65, 0.2);
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    color: #023020;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.testimonial-author p {
    font-size: 14px;
    color: #54B741;
    font-weight: 500;
}

/* ================================
   Process Section
   ================================ */
.process-section {
    background: linear-gradient(180deg, var(--light-gray) 0%, rgba(213, 244, 230, 0.5) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.process-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 1200 100"><defs><pattern id="dots" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(39,174,96,0.05)"/></pattern></defs><rect width="1200" height="100" fill="url(%23dots)"/></svg>');
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-steps .process-step {
    animation: zoomIn 0.6s ease-out both;
}

.process-steps .process-step:nth-child(1) { animation-delay: 0.1s; }
.process-steps .process-step:nth-child(2) { animation-delay: 0.2s; }
.process-steps .process-step:nth-child(3) { animation-delay: 0.3s; }
.process-steps .process-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.process-step {
    background-color: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(84, 183, 65, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(84, 183, 65, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(84, 183, 65, 0.2);
}

.process-step:hover::after {
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(84, 183, 65, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover .step-number {
    transform: scale(1.2) rotateZ(10deg);
    box-shadow: 0 10px 30px rgba(84, 183, 65, 0.5);
}

.process-step h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover h3 {
    color: var(--dark-green);
    letter-spacing: 1px;
}

/* ================================
   Advanced Technology Section
   ================================ */
.technology-section {
    background: linear-gradient(180deg, var(--white) 0%, #f8fdf6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tech-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}

.tech-bg-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-green), transparent);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.tech-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-green), transparent);
    bottom: -100px;
    left: -50px;
    animation-delay: 2s;
}

.tech-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.tech-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.tech-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.tech-card {
    background: var(--white);
    padding: 40px 30px;
    border: 2px solid rgba(84, 183, 65, 0.1);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(84, 183, 65, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.tech-card:nth-child(1) { animation-delay: 0.1s; }
.tech-card:nth-child(2) { animation-delay: 0.2s; }
.tech-card:nth-child(3) { animation-delay: 0.3s; }
.tech-card:nth-child(4) { animation-delay: 0.4s; }
.tech-card:nth-child(5) { animation-delay: 0.5s; }
.tech-card:nth-child(6) { animation-delay: 0.6s; }

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(84, 183, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-green);
    box-shadow: 0 20px 50px rgba(84, 183, 65, 0.2), 0 0 30px rgba(84, 183, 65, 0.1);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.15) rotate(15deg);
}

.tech-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.tech-card:hover h3 {
    color: var(--dark-green);
}

.tech-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.tech-card:hover p {
    color: var(--text-color);
}

.tech-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 1;
}

.tech-card:hover .tech-accent-line {
    transform: scaleX(1);
}

/* ================================
   Our Clients Section
   ================================ */
.clients-section {
    background: linear-gradient(180deg, #f8fdf6 0%, var(--white) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.clients-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: float 6s ease-in-out infinite;
}

.clients-bg-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-green), transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.clients-bg-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-green), transparent);
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.clients-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.clients-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.clients-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.client-logo-card {
    background: var(--white);
    padding: 40px;
    border: 2px solid rgba(84, 183, 65, 0.08);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(84, 183, 65, 0.06);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    animation: cardSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.client-logo-card:nth-child(1) { animation-delay: 0.1s; }
.client-logo-card:nth-child(2) { animation-delay: 0.2s; }
.client-logo-card:nth-child(3) { animation-delay: 0.3s; }
.client-logo-card:nth-child(4) { animation-delay: 0.4s; }

.client-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(84, 183, 65, 0.08), transparent);
    transition: left 0.5s ease;
}

.client-logo-card:hover::before {
    left: 100%;
}

.client-logo-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(84, 183, 65, 0.15), 0 0 20px rgba(84, 183, 65, 0.08);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.client-logo-card:hover img {
    transform: scale(1.1);
}

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(84, 183, 65, 0.1) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.client-logo-card:hover .logo-overlay {
    opacity: 1;
}

/* ================================
   FAQ Section
   ================================ */
.faq-section {
    background: linear-gradient(180deg, var(--white) 0%, #f8fdf6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: float 6s ease-in-out infinite;
}

.faq-bg-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-green), transparent);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.faq-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-green), transparent);
    bottom: -100px;
    left: -50px;
    animation-delay: 2s;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.faq-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: var(--white);
    border: 2px solid rgba(84, 183, 65, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInUp 0.8s ease-out both;
}

.faq-left .faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-left .faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-left .faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-left .faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-left .faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-left .faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-right .faq-item:nth-child(1) { animation-delay: 0.15s; }
.faq-right .faq-item:nth-child(2) { animation-delay: 0.25s; }
.faq-right .faq-item:nth-child(3) { animation-delay: 0.35s; }
.faq-right .faq-item:nth-child(4) { animation-delay: 0.45s; }
.faq-right .faq-item:nth-child(5) { animation-delay: 0.55s; }
.faq-right .faq-item:nth-child(6) { animation-delay: 0.65s; }

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(84, 183, 65, 0.15);
    transform: translateY(-5px);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(84, 183, 65, 0.02) 0%, transparent 100%);
    user-select: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(84, 183, 65, 0.06) 0%, transparent 100%);
}

.faq-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    min-width: 40px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(84, 183, 65, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    text-align: left;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--dark-green);
}

.faq-toggle {
    font-size: 28px;
    color: var(--primary-green);
    font-weight: bold;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--dark-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.4s ease;
    background: rgba(84, 183, 65, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   CTA Section
   ================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 50%, #1a6c3d 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta-section h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.98;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* ================================
   Main Content
   ================================ */
main {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
}

.content-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    border-radius: 2px;
}

/* ================================
   Services Section
   ================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Responsive: 2 columns on tablets */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.services-grid .service-card {
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards;
}

.services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { animation-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.service-card {
    background-color: var(--white);
    border-left: 5px solid var(--primary-green);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(84, 183, 65, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(84, 183, 65, 0.1), transparent);
    transition: right 0.6s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    transition: width 0.4s ease;
    z-index: 2;
}

.service-card:hover::after {
    right: 100%;
}

.service-card:hover::before {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-12px) translateX(5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(84, 183, 65, 0.2);
    border-left: 5px solid var(--dark-green);
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--dark-green);
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.7;
    flex-grow: 1;
}

/* ================================
   Hero Slider
   ================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 650px;
    z-index: 10;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: slideInHero 0.8s ease-in-out;
}

@keyframes slideInHero {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: slideUp 0.8s ease-out;
}

.slide-title {
    font-size: 64px;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    animation: titleSlideIn 0.8s ease-out;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-subtitle {
    font-size: 24px;
    margin-bottom: 45px;
    font-weight: 300;
    opacity: 0.98;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    animation: subtitleSlideIn 0.8s ease-out 0.2s both;
}

@keyframes subtitleSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 15px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(84, 183, 65, 0.25);
    border: 2px solid rgba(84, 183, 65, 0.6);
    color: var(--white);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: badgePulse 0.8s ease-out;
    box-shadow: 0 0 30px rgba(84, 183, 65, 0.2);
}

@keyframes badgePulse {
    from {
        opacity: 0;
        transform: scale(0.8);
        box-shadow: 0 0 0 rgba(84, 183, 65, 0.4);
    }
    to {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 30px rgba(84, 183, 65, 0.2);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    min-width: 150px;
    transition: all 0.3s ease;
    animation: statSlideIn 0.8s ease-out 0.4s both;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(84, 183, 65, 0.5);
    box-shadow: 0 15px 45px rgba(84, 183, 65, 0.2);
}

.stat-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #dff5d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

@keyframes statSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Elements */
.hero-decorative-element {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatElement 20s ease-in-out infinite;
}

.element-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #54B741 0%, #2ecc71 100%);
    top: -100px;
    left: -100px;
    animation: floatElement 25s ease-in-out infinite;
}

.element-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #27ae60 0%, #16a085 100%);
    bottom: -50px;
    right: -50px;
    animation: floatElement 20s ease-in-out infinite reverse;
}

.element-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #1e8449 0%, #0b5345 100%);
    top: 50%;
    right: 5%;
    animation: floatElement 22s ease-in-out infinite;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(-20px, 40px);
    }
    75% {
        transform: translate(-40px, -20px);
    }
}

/* ================================
   Mumbai Pest Control Section
   ================================ */
.mumbai-section {
    background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
    padding: 80px 0;
    position: relative;
}

.mumbai-section .section-title {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 42px;
    text-align: center;
}

.mumbai-section .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
}

.mumbai-content {
    max-width: 900px;
    margin: 0 auto;
}

.mumbai-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.mumbai-content p strong {
    color: var(--primary-green);
    font-size: 18px;
}

.mumbai-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
}

/* ================================
   Advanced Content Section
   ================================ */
.content-section {
    background: linear-gradient(180deg, #f5f5f5 0%, var(--white) 100%);
    padding: 80px 0;
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.content-block {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    border-left: 5px solid var(--primary-green);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideInUp 0.8s ease-out both;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.content-block:nth-child(1) { animation-delay: 0.1s; }
.content-block:nth-child(2) { animation-delay: 0.2s; }
.content-block:nth-child(3) { animation-delay: 0.3s; }

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), #459933);
}

.content-block:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(84, 183, 65, 0.2);
    border-left-width: 8px;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 15px;
}

.content-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #dff5d8;
    border-radius: 2px;
}

.content-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
    text-align: left;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: #023020;
    color: var(--white);
    padding: 80px 0 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    width: 100%;
    left: 0;
    right: 0;
}

.footer-bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.footer-bg-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--white), transparent);
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.footer-bg-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--white), transparent);
    bottom: -100px;
    left: -100px;
    animation-delay: 3s;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
    padding-top: 60px;
    position: relative;
    z-index: 2;
    justify-content: space-between;
}

.footer-about,
.footer-section {
    flex: 1 1 200px;
    min-width: 200px;
}

/* Responsive footer for smaller screens */
@media (max-width: 1024px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-about,
    .footer-section {
        flex: 1 1 180px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding-top: 40px;
        margin-bottom: 40px;
    }
    
    .footer-about,
    .footer-section {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 20px;
    }
}

/* Footer About Section */
.footer-about {
    animation: slideInUp 0.8s ease-out;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
.footer-section {
    animation: slideInUp 0.8s ease-out;
}

.footer-section:nth-child(2) { animation-delay: 0.1s; }
.footer-section:nth-child(3) { animation-delay: 0.2s; }
.footer-section:nth-child(4) { animation-delay: 0.3s; }

.footer-section h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--light-green);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(8px);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-green);
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section a:hover {
    color: var(--white);
}

/* Contact Info */
.contact-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-info-item .icon {
    font-size: 20px;
    min-width: 24px;
}

.contact-info-item .label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-green);
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.contact-info-item a {
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--white);
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.footer-newsletter h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.footer-newsletter p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(84, 183, 65, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-subscribe {
    padding: 14px 28px;
    background: var(--white);
    color: var(--primary-green);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-subscribe:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links span {
    opacity: 0.5;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mumbai Section Responsive */
@media (max-width: 768px) {
    .mumbai-section {
        padding: 60px 0;
    }

    .mumbai-section .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .mumbai-section .section-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .mumbai-content {
        max-width: 100%;
    }

    .mumbai-content p {
        font-size: 14px;
        text-align: left;
    }

    .mumbai-cta {
        padding: 25px;
        margin-top: 30px;
    }
}

/* Content Section Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-block {
        padding: 30px 20px;
        border-left-width: 4px;
    }

    .content-block:hover {
        transform: translateX(5px);
    }

    .content-block h3 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .content-block h3::after {
        width: 40px;
    }

    .content-block p {
        font-size: 13px;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 12px;
    }
}

/* ================================
   Service Areas Section
   ================================ */
.service-areas-section {
    background: linear-gradient(180deg, var(--white) 0%, #f9f9f9 100%);
    padding: 80px 0;
    position: relative;
}

.areas-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.areas-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.region-group {
    margin-bottom: 50px;
    animation: slideInUp 0.8s ease-out both;
}

.region-group:nth-child(1) { animation-delay: 0.1s; }
.region-group:nth-child(2) { animation-delay: 0.2s; }
.region-group:nth-child(3) { animation-delay: 0.3s; }
.region-group:nth-child(4) { animation-delay: 0.4s; }
.region-group:nth-child(5) { animation-delay: 0.5s; }

.region-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.region-name::before {
    content: '📍';
    position: absolute;
    left: 0;
    font-size: 20px;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.location-tag {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2a9d5d 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 15px rgba(84, 183, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.location-tag::before {
    content: '✦';
    margin-right: 8px;
    opacity: 0.7;
}

.location-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.location-tag:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(84, 183, 65, 0.4);
}

.location-tag:hover::after {
    left: 100%;
}

/* ================================
   Location Section
   ================================ */
.location-section {
    background: linear-gradient(135deg, #023020 0%, #0a5c30 50%, #023020 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.location-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.location-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.location-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.location-info {
    animation: slideInLeft 0.8s ease-out;
}

.location-info h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.info-block {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.info-block::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;
    z-index: -1;
}

.info-block:hover::before {
    left: 100%;
}

.info-block:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.info-icon {
    font-size: 48px;
    flex-shrink: 0;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    width: 60px;
    height: 60px;
}

.info-block h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    margin-top: 0;
    letter-spacing: -0.5px;
}

.info-block p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.info-block a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.info-block a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.8);
    color: #dff5d8;
}

.location-map {
    animation: slideInRight 0.8s ease-out;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.15);
    position: relative;
    transition: all 0.4s ease;
}

.location-map:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.25);
}

.location-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 16px;
    pointer-events: none;
    z-index: 1;
}

.location-map iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
}

/* ================================
   Location Section Responsive

/* ================================
   Service Areas Responsive
   ================================ */
@media (max-width: 768px) {
    .service-areas-section {
        padding: 60px 0;
    }

    .areas-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .areas-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .region-group {
        margin-bottom: 35px;
    }

    .region-name {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .locations-grid {
        gap: 12px;
    }

    .location-tag {
        padding: 10px 18px;
        font-size: 13px;
    }

    .location-tag:hover {
        transform: translateY(-4px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 60px 0;
    }

    .location-section::before {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -20%;
    }

    .location-section::after {
        width: 300px;
        height: 300px;
        bottom: -10%;
        left: -10%;
    }

    .location-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .location-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-info h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .info-block {
        padding: 20px;
        margin-bottom: 20px;
        gap: 15px;
    }

    .info-icon {
        font-size: 36px;
        min-width: 50px;
        width: 50px;
        height: 50px;
    }

    .info-block h4 {
        font-size: 16px;
    }

    .info-block p {
        font-size: 13px;
    }

    .location-map {
        border-radius: 12px;
    }

    .location-map iframe {
        height: 300px;
    }

    .location-map:hover {
        transform: translateY(-6px);
    }
}

/* ================================
   Footer Responsive*/
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
        margin-top: 80px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section a {
        font-size: 13px;
    }

    .footer-newsletter {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .footer-newsletter h3 {
        font-size: 18px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .btn-subscribe {
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-bg-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -50px;
    }

    .footer-bg-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: -50px;
    }
}


/* ================================
   Forms
   ================================ */
form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Lora', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
    /* Why Choose Section Mobile */
    .why-choose-section {
        padding: 60px 0;
    }

    .section-title-dark {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .section-subtitle-dark {
        font-size: 14px;
    }

    .section-header-dark {
        margin-bottom: 50px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-choose-card {
        padding: 30px 20px;
    }

    .card-number {
        font-size: 20px;
    }

    .why-choose-card h3 {
        font-size: 18px;
    }

    .why-choose-card p {
        font-size: 14px;
    }

    .why-choose-bg-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        left: -50px;
    }

    .why-choose-bg-2 {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: -30px;
    }

    /* Services Hero Mobile */
    .services-hero {
        padding: 60px 0;
    }

    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .services-hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .services-hero-features {
        margin-bottom: 30px;
        gap: 12px;
    }

    .hero-feature-item {
        font-size: 14px;
        gap: 12px;
    }

    .feature-icon {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 16px;
    }

    .services-hero-visual {
        gap: 20px;
    }

    .hero-card {
        padding: 25px 20px;
    }

    .card-number {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .hero-card p {
        font-size: 14px;
    }

    .services-hero-bg-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        left: -50px;
    }

    .services-hero-bg-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        right: -50px;
    }

    .seo-intro-section {
        padding: 40px 0;
    }

    .seo-intro-section h2 {
        font-size: 26px;
    }

    .seo-intro-section > .container > p:first-of-type {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .seo-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seo-feature {
        padding: 20px;
    }

    .seo-feature h3 {
        font-size: 18px;
    }

    .seo-feature li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .seo-closing {
        font-size: 14px;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-section .section-title {
        font-size: 32px;
    }

    .testimonials-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-header {
        margin-bottom: 20px;
    }

    .rating {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .testimonial-author h4 {
        font-size: 17px;
    }

    .testimonial-author p {
        font-size: 13px;
    }

    .testimonial-author h4 {
        font-size: 14px;
    }

    .testimonial-author p {
        font-size: 12px;
    }

    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero-slider {
        height: 500px;
    }

    .slide-title {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .slide-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid,
    .featured-services-grid,
    .services-grid,
    .achievement-grid,
    .stats-grid,
    .process-steps,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .featured-services-section {
        padding: 60px 0;
    }

    .featured-services-grid .service-image-wrapper {
        height: 180px;
    }

    .featured-services-grid .service-content {
        padding: 15px 12px;
    }

    .featured-services-grid .service-title {
        font-size: 14px;
    }

    .featured-services-grid .service-description {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .featured-services-grid .btn-service {
        font-size: 12px;
        padding: 10px 15px;
    }

    .service-card {
        margin-bottom: 15px;
    }

    .service-image-wrapper {
        height: 220px;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .price-value {
        font-size: 28px;
    }

    .achievement-section {
        padding: 60px 0;
    }

    .achievement-section::before,
    .achievement-section::after {
        display: none;
    }

    .achievement-card {
        margin-bottom: 20px;
    }

    .achievement-card:hover .card-bg {
        transform: translateY(-10px);
    }

    .card-content {
        padding: 30px 20px;
    }

    .achievement-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .icon-text {
        font-size: 36px;
    }

    .number {
        font-size: 48px;
    }

    .unit {
        font-size: 20px;
    }

    .achievement-body h3 {
        font-size: 18px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .tech-title {
        font-size: 28px;
    }

    .tech-subtitle {
        font-size: 14px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tech-card {
        padding: 30px 20px;
    }

    .tech-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .tech-card h3 {
        font-size: 18px;
    }

    .tech-card p {
        font-size: 14px;
    }

    .clients-section {
        padding: 60px 0;
    }

    .clients-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .clients-subtitle {
        font-size: 14px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .client-logo-card {
        padding: 30px 20px;
        min-height: 120px;
    }

    .client-logo-card img {
        max-height: 100px;
    }

    .clients-bg-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        left: -50px;
    }

    .clients-bg-2 {
        width: 200px;
        height: 200px;
        bottom: -30px;
        right: -30px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-toggle {
        font-size: 24px;
    }

    .faq-answer {
        padding: 0 20px !important;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px !important;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .feature-box,
    .why-card {
        padding: 25px;
    }
}

/* ================================
   Service Areas Section
   ================================ */
.service-areas-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.service-areas-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.6s ease-out;
}

.service-areas-section .section-title {
    color: var(--primary-green);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.service-areas-section .section-subtitle {
    color: var(--text-color);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Area Region Styling */
.area-region {
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.region-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.3px;
    color: var(--primary-green) !important;
}

/* Area Buttons Grid */
.area-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

/* Individual Area Button */
.area-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    max-width: 220px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 52px;
    color: white !important;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #54B741 0%, #2ecc71 100%) !important;
}

.area-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.area-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #459933 0%, #27ae60 100%) !important;
}

.area-btn:hover::before {
    width: 350px;
    height: 350px;
}

.pin-icon {
    font-size: 18px;
    display: inline-block;
}

/* ================================
   FORCE ALL SERVICE AREA COLORS TO GREEN
   ================================ */

/* OLD VERSION OVERRIDES - Force Green on All */
.region-group .location-tag {
    background: linear-gradient(135deg, #54B741 0%, #2a9d5d 100%) !important;
    color: white !important;
}

.region-group .location-tag:hover {
    background: linear-gradient(135deg, #459933 0%, #27ae60 100%) !important;
}

.region-name {
    color: var(--primary-green) !important;
}

.locations-grid .location-tag {
    background: linear-gradient(135deg, #54B741 0%, #2a9d5d 100%) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(84, 183, 65, 0.3) !important;
}

.locations-grid .location-tag:hover {
    background: linear-gradient(135deg, #459933 0%, #27ae60 100%) !important;
    box-shadow: 0 12px 30px rgba(84, 183, 65, 0.4) !important;
}

/* ALL BUTTONS IN SERVICE AREAS - FORCE GREEN */
[class*="area"] button,
[class*="area"] a,
.region-group a,
.locations-grid a,
.area-btn,
.area-btn:nth-child(n),
.area-region a:nth-child(n) {
    background: linear-gradient(135deg, #54B741 0%, #2ecc71 100%) !important;
    color: white !important;
}

[class*="area"] button:hover,
[class*="area"] a:hover,
.region-group a:hover,
.locations-grid a:hover {
    background: linear-gradient(135deg, #459933 0%, #27ae60 100%) !important;
    color: white !important;
}

/* Animation Classes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Service Areas */
@media (max-width: 1024px) {
    .area-buttons-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }

    .area-btn {
        padding: 16px 28px;
        font-size: 15px;
        max-width: 200px;
    }

    .region-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .service-areas-section {
        padding: 50px 0;
    }

    .service-areas-section .section-title {
        font-size: 32px;
    }

    .service-areas-section .section-subtitle {
        font-size: 16px;
    }

    .region-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .area-buttons-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }

    .area-btn {
        padding: 14px 20px;
        font-size: 14px;
        min-height: 48px;
        max-width: none;
    }

    .area-region {
        margin-bottom: 40px;
    }

    .pin-icon {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .service-areas-section {
        padding: 40px 0;
    }

    .service-areas-section .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .service-areas-section .section-subtitle {
        font-size: 14px;
    }

    .region-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .area-buttons-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 10px;
    }

    .area-btn {
        padding: 12px 16px;
        font-size: 13px;
        min-height: 45px;
    }

    .area-region {
        margin-bottom: 30px;
    }

    .pin-icon {
        font-size: 14px;
    }
}

/* ===== LOCATION PAGE INLINE-STYLE MOBILE RESPONSIVE OVERRIDES ===== */
/* These !important rules override inline style="..." grid attributes on location pages */

@media (max-width: 768px) {
    /* Collapse 3-col and 4-col hardcoded grids to single column */
    [style*="grid-template-columns: repeat(3, 1fr)"],
    [style*="grid-template-columns: repeat(4, 1fr)"],
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Reduce oversized section headings */
    [style*="font-size: 3em"],
    [style*="font-size: 2.8em"],
    [style*="font-size: 2.5em"] {
        font-size: 1.6em !important;
    }

    /* Reduce excessive vertical padding from inline 120px sections */
    [style*="padding: 120px"] {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 480px) {
    /* Also collapse explicit 2-col grids on very small screens */
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* Reduce medium headings further on small phones */
    [style*="font-size: 2.2em"] { font-size: 1.35em !important; }
    [style*="font-size: 1.8em"] { font-size: 1.25em !important; }
}
