﻿
:root {
    --primary: #349530;
    --primary-dark: #133d22;
    --primary-light: #2d7d4a;
    --secondary: #044e8a;
    --secondary-light: #66bb6a;
    --accent: #FFC107;
    --accent-dark: #e0a800;
    --bg: #F8FAF7;
    --bg-alt: #ffffff;
    --dark: #1A1A1A;
    --light: #666666;
    --border: rgba(30, 86, 49, 0.1);
    --shadow-sm: 0 4px 20px rgba(30, 86, 49, 0.06);
    --shadow-md: 0 10px 40px rgba(30, 86, 49, 0.1);
    --shadow-lg: 0 20px 60px rgba(30, 86, 49, 0.15);
    --shadow-accent: 0 8px 25px rgba(255, 193, 7, 0.35);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --navy: #044e8a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}




@media (min-width: 992px) and (max-width: 1199.98px) {
    .has-mega .mega-menu {
        max-width: calc(100vw - 48px);
    }
}


@media (max-width: 575.98px) {
    .scroll-cue {
        display: none;
    }
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
}

.section-padding {
    padding: 30px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 30px 0;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.preloader-icon {
    width: 90px;
    height: 90px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .preloader-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 3px solid rgba(255, 193, 7, 0.2);
        border-top-color: var(--accent);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .preloader-icon i {
        font-size: 36px;
        color: var(--accent);
        animation: pulse 1.5s ease-in-out infinite;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.preloader-text {
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    margin-top: 24px;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 13px;
}

    .preloader-text span {
        color: var(--accent);
    }

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    z-index: 9998;
    width: 0%;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

/* Navbar */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 5px 0;
    transition: all 0.4s ease;
    background: white;
}

    .navbar-custom.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        padding: 5px 0;
        border-bottom: 1px solid var(--border);
    }

    .navbar-custom .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(30, 86, 49, 0.35);
    position: relative;
    overflow: hidden;
}

    .logo-icon::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: rotate(45deg);
        animation: shine 3s infinite;
    }

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: white;
    letter-spacing: -0.02em;
    transition: color 0.3s;
}

.navbar-custom.scrolled .logo-text {
    color: var(--primary);
}

.logo-text span {
    color: var(--accent);
}

.navbar-custom .nav-link {
    color:var(--dark);
    font-weight: 500;
    font-size: 14.5px;
    padding: 8px 14px !important;
    position: relative;
    transition: color 0.3s;
}

.navbar-custom.scrolled .nav-link {
    color: var(--dark)!important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--navy)!important;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--navy);
    transition: width 0.3s;
    border-radius: 2px;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 18px;
}

.btn-quote {
    background: var(--navy);
    color: white !important;
    padding: 11px 26px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

    .btn-quote:hover {
        background: var(--primary);
        transform: translateY(-2px);
        color:white !important;
    }

    .btn-quote::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-quote:hover::before {
        width: 300px;
        height: 300px;
    }

/* Mobile Navbar Toggler Fix */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    box-shadow: none !important;
}

    .navbar-toggler span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--navy);
        margin: 6px 0;
        transition: all 0.3s;
        border-radius: 2px;
    }

.navbar-custom.scrolled .navbar-toggler span {
    background: var(--primary);
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
    .navbar-custom .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 16px;
        padding: 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-custom .nav-link {
        color: var(--dark)!important;
        padding: 12px 8px !important;
    }

        .navbar-custom .nav-link::after {
            display: none;
        }

    .navbar-custom .logo-text {
        color: white;
    }

    .navbar-custom.scrolled .logo-text {
        color: var(--primary);
    }
}

/* Hero Slider */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.18);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(19, 61, 34, 0.92) 0%, rgba(30, 86, 49, 0.78) 40%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

    .hero-tag i {
        color: var(--accent);
    }

.hero-content h1 {
    color: white;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
}

    .hero-content h1 .accent-text {
        color: var(--accent);
    }

.hero-content p {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-slide.active .hero-tag {
    animation: slideUpFade 0.8s 0.2s both;
}

.hero-slide.active .hero-content h1 {
    animation: slideUpFade 1s 0.4s both;
}

.hero-slide.active .hero-content p {
    animation: slideUpFade 1s 0.7s both;
}

.hero-slide.active .hero-buttons {
    animation: slideUpFade 1s 1s both;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--navy);
    color: white;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: var(--navy);
    border: none;
    position: relative;
    overflow: hidden;
}

    .btn-primary-custom:hover {
        background: white;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
        color: var(--primary);
    }

.btn-outline-custom {
    background: transparent;
    color: white;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

    .btn-outline-custom:hover {
        background: white;
        color: var(--primary);
        border-color: white;
        transform: translateY(-3px);
    }

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    padding: 0;
}

    .hero-dot.active {
        background: var(--accent);
        width: 44px;
        border-radius: 6px;
        box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
    }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

    .hero-scroll i {
        font-size: 20px;
        animation: bounce 2s infinite;
    }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.floating-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

.shape-1 {
    top: 10%;
    right: 5%;
    width: 80px;
    height: 80px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    left: 8%;
    width: 60px;
    height: 60px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(15deg);
    }
}

/* Section Title */
.section-title {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.12);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

    .section-tag::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--accent);
        border-radius: 50%;
    }

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 800;
}

    .section-title h2 .accent-text {
        color: var(--secondary);
    }

.section-title p {
    color: var(--light);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

/* About */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .about-image-wrap img {
        width: 100%;
        height: 580px;
        object-fit: cover;
        transition: transform 0.8s;
    }

    .about-image-wrap:hover img {
        transform: scale(1.05);
    }

.about-experience {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    padding: 22px 28px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-experience-num {
    font-family: 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-experience-text {
    font-size: 13px;
    color: var(--light);
    font-weight: 500;
    line-height: 1.4;
}

    .about-experience-text strong {
        color: var(--primary);
        display: block;
        font-size: 15px;
    }

.about-content h2 {
    margin-bottom: 24px;
    color:var(--navy);
}

.about-content p {
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: grid;
    gap: 14px;
    padding: 18px;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

    .about-feature:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--secondary);
    }

.about-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.about-feature h5 {
    margin-bottom: 4px;
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
}

.about-feature p {
    margin: 0;
    font-size: 12.5px;
    color: var(--light);
    line-height: 1.4;
}

/* Services */
.services-section {
    background: linear-gradient(180deg, var(--bg) 0%, #eef5ee 100%);
    position: relative;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
    }

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .service-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s;
    }

.service-card:hover .service-card-image img {
    transform: scale(1.12);
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 86, 49, 0.75) 0%, rgba(30, 86, 49, 0.1) 50%, transparent 100%);
}

.service-card-icon {
    position: absolute;
    bottom: 5px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.45);
    z-index: 2;
    transition: all 0.4s;
    border: 3px solid white;
}

.service-card:hover .service-card-icon {
    transform: rotate(-10deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 20px rgba(30, 86, 49, 0.4);
}

.service-card-body {
    padding: 38px 24px 24px;
}

    .service-card-body h4 {
        font-size: 19px;
        margin-bottom: 12px;
        color: var(--primary);
        font-weight: 700;
    }

    .service-card-body p {
        font-size: 14px;
        color: var(--light);
        margin-bottom: 18px;
        line-height: 1.65;
    }

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13.5px;
    transition: all 0.3s;
}

    .service-card-link i {
        transition: transform 0.3s;
    }

    .service-card-link:hover {
        color: var(--accent);
    }

        .service-card-link:hover i {
            transform: translateX(5px);
        }

/* Why Choose Us */
.why-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .why-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }

    .why-section .section-tag {
        background: rgba(255, 193, 7, 0.15);
        color: var(--accent);
    }

    .why-section h2 {
        color: white;
    }

        .why-section h2 .accent-text {
            color: var(--accent);
        }

    .why-section .section-title p {
        color: rgba(255, 255, 255, 0.8);
    }

.why-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .why-image-wrap img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

.why-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.3), transparent);
}

.why-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 18px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
}

.why-badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 22px;
}

.why-badge-text strong {
    display: block;
    color: var(--primary);
    font-size: 16px;
    font-family: 'Sora', sans-serif;
}

.why-badge-text span {
    font-size: 12px;
    color: var(--light);
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-feature {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px;
    border-radius: 16px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

    .why-feature::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: var(--accent);
        transition: height 0.4s;
    }

    .why-feature:hover::before {
        height: 100%;
    }

    .why-feature:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-4px);
        border-color: rgba(255, 193, 7, 0.3);
    }

.why-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 20px;
    margin-bottom: 14px;
}

.why-feature h5 {
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-feature p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.why-feature .check-icon {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--accent);
    font-size: 18px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
}

.why-feature:hover .check-icon {
    opacity: 1;
    transform: scale(1);
}

/* Process */
.process-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    margin-top: 60px;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: rgba(30, 86, 49, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

    .process-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        transition: width 1.5s ease;
    }

    .process-line.animated::after {
        width: 100%;
    }

.process-step {
    text-align: center;
    position: relative;
    padding: 0 12px;
}

.process-step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.4s;
    border: 3px solid var(--bg);
}

.process-step:hover .process-step-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent);
}

.process-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
    border: 3px solid white;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--navy);
}

.process-step p {
    font-size: 13.5px;
    color: var(--light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .process-line {
        display: none;
    }

    .process-step {
        margin-bottom: 40px;
    }
}

/* Stats */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

    .stats-section::before {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .stats-section::after {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }

.stat-card {
    text-align: center;
    color: white;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 26px;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

    .stat-number .suffix {
        color: var(--accent);
    }

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Gallery */
.gallery-section {
    background: var(--bg);
}

.gallery-grid {
    column-count: 4;
    column-gap: 20px;
}

@media (max-width: 991px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

    .gallery-item img {
        width: 100%;
        display: block;
        transition: transform 0.6s;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 86, 49, 0.9) 0%, rgba(30, 86, 49, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content h5 {
    color: white;
    margin: 0;
    font-size: 16px;
    margin-bottom: 4px;
}

.gallery-overlay-content span {
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-zoom-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s;
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(10px);
}

    .lightbox.active {
        display: flex;
        animation: fadeIn 0.3s;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .lightbox-close:hover {
        background: var(--accent);
        color: var(--dark);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .lightbox-nav:hover {
        background: var(--accent);
        color: var(--dark);
    }

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    background: linear-gradient(180deg, #eef5ee 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

    .testimonials-section::before {
        content: '';
        position: absolute;
        top: 10%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient( circle, rgba(76, 175, 80, 0.15) 0%, transparent 70% );
        border-radius: 50%;
        pointer-events: none;
    }

/* Carousel Wrapper */
.testimonials-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track */
.testimonials-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}


/* Card */
.testimonial-card {
    flex: 0 0 calc(33.333333% - 24px);
    width: calc(33.333333% - 24px);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 175, 80, 0.12);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 16px 40px rgba(76, 175, 80, 0.10);
    position: relative;
    margin: 0 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        border-radius: 24px 24px 0 0;
        /*background: linear-gradient( 90deg, var(--primary), var(--accent) );*/
    }

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06), 0 24px 48px rgba(76, 175, 80, 0.16);
    }

/* Quote */
.testimonial-quote-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 60px;
    color: rgba(76, 175, 80, 0.15);
    line-height: 1;
    pointer-events: none;
}

/* Rating */
.testimonial-rating {
    margin-bottom: 22px;
    display: flex;
    gap: 4px;
}

    .testimonial-rating i {
        color: var(--accent);
        font-size: 18px;
    }

/* Text */
.testimonial-text {
    font-size: 17px;
    color: var(--dark);
    line-height: 1.85;
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 400;
    min-height: 125px;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.25);
}

.testimonial-author-info h5 {
    margin: 0;
    font-size: 17px;
    color: var(--primary);
    font-weight: 700;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--light);
}

/* Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .testimonial-btn:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
        transform: translateY(-2px);
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .testimonial-card {
        flex: 0 0 calc(50% - 24px);
        width: calc(50% - 24px);
        padding: 36px 30px;
    }

    .testimonial-text {
        min-height: 140px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .testimonial-card {
        flex: 0 0 calc(100% - 24px);
        width: calc(100% - 24px);
        padding: 35px 25px;
    }

    .testimonial-text {
        min-height: auto;
        font-size: 16px;
    }

    .testimonial-quote-icon {
        font-size: 50px;
        top: 25px;
        right: 25px;
    }

    .testimonials-controls {
        margin-top: 30px;
    }
}












/* FAQ */
.faq-section {
    background: var(--bg);
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

    .faq-item.active {
        box-shadow: var(--shadow-md);
        border-color: var(--secondary);
    }

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
    transition: all 0.3s;
}

    .faq-question:hover {
        color: var(--secondary);
    }

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(76, 175, 80, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: all 0.4s;
    min-width: 32px;
}

.faq-item.active .faq-icon {
    background: var(--accent);
    color: var(--dark);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 28px 24px;
    color: var(--light);
    font-size: 15px;
    line-height: 1.7;
}

/* CTA */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.92) 0%, rgba(19, 61, 34, 0.95) 100%), url('https://picsum.photos/seed/pestcontrol-cta-bg/1920/1080.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.15) 0%, transparent 50%);
    }

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

    .cta-content h2 {
        color: white;
        font-size: clamp(2rem, 5vw, 3.75rem);
        margin-bottom: 20px;
        font-weight: 800;
    }

        .cta-content h2 .accent-text {
            color: var(--accent);
        }

    .cta-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.15rem;
        max-width: 600px;
        margin: 0 auto 36px;
    }

/* Contact Section Updated */
.contact-section {
    background: var(--bg);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-md);
}

    .contact-info-card h3 {
        font-size: 22px;
        margin-bottom: 8px;
        color: var(--primary);
    }

    .contact-info-card > p {
        color: var(--light);
        font-size: 14px;
        margin-bottom: 28px;
    }

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

    .contact-info-item:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    min-width: 48px;
}

.contact-info-item h5 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--dark);
    font-weight: 600;
}

.contact-info-item p {
    margin: 0;
    font-size: 14px;
    color: var(--light);
    line-height: 1.5;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 250px;
    flex-grow: 1;
}

    .contact-map iframe {
        width: 100%;
        height: 100%;
        border: 0;
        min-height: 250px;
        display: block;
    }

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

    .contact-form h3 {
        font-size: 24px;
        margin-bottom: 8px;
        color: var(--primary);
    }

    .contact-form p {
        color: var(--light);
        font-size: 14px;
        margin-bottom: 28px;
    }

.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14.5px;
    transition: all 0.3s;
    background: var(--bg);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--secondary);
        box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
        background: white;
    }

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(30, 86, 49, 0.3);
    width: 100%;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(30, 86, 49, 0.4);
        color: white;
    }

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

    .footer-logo .logo-text {
        color: white;
    }

        .footer-logo .logo-text span {
            color: var(--accent);
        }

.footer-widget p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    color:white;
}

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 16px;
        transition: all 0.3s;
    }

        .footer-social a:hover {
            background: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }

.footer-widget h5 {
    color: white;
    font-size: 17px;
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

    .footer-widget h5::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--accent);
        border-radius: 2px;
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: white;
        font-size: 14px;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 12px;
            opacity: 0.6;
            color:white;
        }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color:white;
}

    .footer-contact-item i {
        color: var(--accent);
        font-size: 16px;
        margin-top: 4px;
    }

.footer-newsletter {
    position: relative;
}

    .footer-newsletter input {
        width: 100%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50px;
        padding: 12px 60px 12px 20px;
        color: white;
        font-size: 14px;
    }

        .footer-newsletter input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-newsletter input:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.12);
        }

    .footer-newsletter button {
        position: absolute;
        right: 5px;
        top: 5px;
        bottom: 5px;
        width: 44px;
        border: none;
        background: var(--accent);
        color: var(--dark);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
    }

        .footer-newsletter button:hover {
            background: white;
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 40px;
}

    .footer-bottom p {
        margin: 0;
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.6);
    }

.footer-bottom-links {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.6);
        font-size: 13.5px;
        transition: color 0.3s;
    }

        .footer-bottom-links a:hover {
            color: var(--accent);
        }

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 12px;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    position: relative;
}

    .floating-btn:hover {
        transform: scale(1.1) translateY(-2px);
    }

.floating-btn-whatsapp {
    background: #25D366;
}

    .floating-btn-whatsapp::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: #25D366;
        animation: pulse-ring 2s infinite;
        z-index: -1;
    }

.floating-btn-call {
    background: #25D366;
    color: white;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 998;
    box-shadow: 0 8px 25px rgba(30, 86, 49, 0.4);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--primary);
        color:white;
        transform: translateY(-4px);
    }

.toast-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.4s;
    border-left: 4px solid var(--secondary);
}

    .toast-notification.show {
        transform: translateX(0);
    }

    .toast-notification i {
        color: var(--secondary);
        font-size: 24px;
    }

    .toast-notification div h6 {
        margin: 0;
        font-size: 15px;
        color: var(--primary);
    }

    .toast-notification div p {
        margin: 0;
        font-size: 13px;
        color: var(--light);
    }

.footerurl {
    color: white !important;
}