:root {
    /* Colors */
    --color-bg-dark: #091A04;
    --color-bg-darker: #050d02;
    --color-bg-light: #F3F5EC;
    --color-accent: #61CE70;
    --color-accent-hover: #48b858;
    --color-text-dark: #19310C;
    --color-text-light: #87887E;
    --color-text-white: #ffffff;
    --color-border: #2a3a25;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    cursor: url('../images/cursor/leaf-cursor.png') 0 0, auto;
}

a, button, .btn, [role="button"], input[type="submit"], .slick-arrow {
    cursor: url('../images/cursor/leaf-cursor.png') 0 0, pointer !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.padding-y {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.text-center {
    text-align: center;
}

.section-heading {
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    color: var(--color-text-dark);
    line-height: 1.2;
    font-family: var(--font-heading);
    font-weight: 800;
    position: relative;
    margin-bottom: 0;
    display: inline-block;
}

.title-line {
    display: block;
    max-width: 250px;
    height: auto;
    margin-top: 5px;
}

.text-center .title-line {
    margin-left: auto;
    margin-right: auto;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #ffffff;
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(97, 206, 112, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-text-white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 18px 45px;
    font-size: 15px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.site-header.sticky {
    position: fixed;
    background-color: rgba(25, 74, 40, 0.85);
    /* Semi-transparent green */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 70px;
    width: auto;
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-logo-text span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    color: var(--color-text-white);
    font-size: 15px;
    font-weight: bolder;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--color-text-white);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--color-accent);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-text-white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: var(--color-bg-dark);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 26, 4, 0.8) 0%, rgba(9, 26, 4, 0.3) 100%);
    backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--color-text-white);
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.hero-content .hero-subtitle,
.hero-content .hero-title,
.hero-content .btn {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-slide.active .hero-content .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-slide.active .hero-content .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.hero-slide.active .hero-content .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 85px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    text-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: -2px;
}

/* Floating Social Links */
.hero-social-links {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.hero-social-links a {
    color: #fff;
    font-size: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-social-links a:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent);
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-down-indicator:hover {
    opacity: 1;
}

.scroll-down-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.scroll-down-indicator .wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite ease-in-out;
}

.scroll-down-indicator .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.scroll-down-indicator i {
    font-size: 14px;
    animation: bounceDown 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Marquee Section */
.marquee-section {
    background-color: #f6f5f2;
    /* Light off-white to match the design */
    padding: 30px 0;
    overflow: hidden;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
}

.marquee-content span {
    font-size: 90px;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-right: 50px;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--color-text-dark);
}

.marquee-content span.filled {
    color: var(--color-text-dark);
    -webkit-text-stroke: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-section {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
}

.leaf-wrapper {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.leaf-wrapper img {
    width: 250px;
    border: none;
    outline: none;
    animation: float-leaf 6s ease-in-out infinite;
}

.leaf-1 {
    top: -50px;
    right: -50px;
    transform: rotate(45deg);
}

.leaf-2 {
    bottom: -50px;
    left: -50px;
    transform: rotate(-135deg);
}

.leaf-2 img {
    width: 200px;
    animation-delay: -3s;
}

.leaf-3 {
    top: 50px;
    left: -50px;
    transform: rotate(15deg);
}

.leaf-3 img {
    width: 180px;
    animation-delay: -1.5s;
}

.leaf-4 {
    bottom: -20px;
    right: -50px;
    transform: rotate(-100deg);
}

.leaf-4 img {
    width: 220px;
    animation-delay: -4s;
}

.leaf-5 {
    top: 15%;
    right: 5%;
    transform: rotate(-20deg);
    z-index: 5;
}

.leaf-5 img {
    width: 250px;
    animation: sway-leaf 9s ease-in-out infinite;
    animation-delay: -1s;
    opacity: 0.5;
}

.leaf-6 {
    bottom: 10%;
    left: 5%;
    transform: rotate(30deg);
    z-index: 5;
}

.leaf-6 img {
    width: 200px;
    animation: sway-leaf 12s ease-in-out infinite reverse;
    animation-delay: -3.5s;
    opacity: 0.5;
}

@keyframes sway-leaf {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(25px, -35px) rotate(20deg) scale(1.1);
    }
    66% {
        transform: translate(-15px, -20px) rotate(-15deg) scale(0.9);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

@keyframes float-leaf {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.about-container-new {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content .section-subtitle {
    color: var(--color-accent);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-text-content .section-title {
    color: var(--color-text-dark);
    font-size: 38px;
    line-height: 1.25;
    font-family: var(--font-heading);
}

.about-text-content .section-desc {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #34d399 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(97, 206, 112, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.feature-item:hover .feature-icon-box {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(97, 206, 112, 0.5);
    background: linear-gradient(135deg, #34d399 0%, var(--color-accent) 100%);
}

.feature-item:hover .feature-icon-box::before {
    left: 200%;
}

.feature-item h5 {
    font-size: 18px;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
}

.about-images-content {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.image-wrapper {
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.img-shape-1 {
    width: 50%;
    height: 450px;
    border-radius: 150px 0 150px 0;
}

.img-shape-2 {
    width: 50%;
    height: 450px;
    border-radius: 0 150px 0 150px;
}

.btn-explore {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background-color: #8CC63F;
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-explore:hover {
    background-color: #7ab332;
    color: var(--color-text-dark);
}

/* Services Section (using previous Reasons UI) */
.services-section {
    background-color: #f6f5f2;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.reason-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    flex: 1 1 280px;
    max-width: calc(25% - 18.75px);
}

@media (max-width: 1199px) {
    .reason-card {
        max-width: calc(33.333% - 16.66px);
    }
}

.reason-card:hover {
    transform: translateY(-10px);
}

.reason-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.reason-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: rgba(28, 168, 57, 0.05);
    border: 2px dashed #1CA839;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1CA839;
    transition: all 0.5s ease;
}

.reason-card:hover .reason-icon {
    background-color: #1CA839;
    color: #fff;
    transform: rotateY(180deg);
    border-style: solid;
}

.reason-number {
    font-size: 56px;
    font-weight: 800;
    color: rgba(28, 168, 57, 0.15);
    line-height: 1;
    transition: color 0.4s ease;
    font-family: var(--font-heading);
}

.reason-card:hover .reason-number {
    color: #1CA839;
}

.reason-title {
    font-size: 21px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.reason-desc {
    color: #6C757D;
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 3fr 4fr 3fr;
    grid-template-rows: 350px 350px;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-item {
    height: 100%;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Masonry Layout Rules */
.portfolio-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.portfolio-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.portfolio-item:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.portfolio-item:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(9, 26, 4, 0.9) 0%, transparent 100%);
    transition: height 0.3s, background 0.3s;
}

.portfolio-item:hover::before {
    height: 100%;
    background: linear-gradient(to top, rgba(9, 26, 4, 0.9) 0%, rgba(9, 26, 4, 0.4) 100%);
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    color: #fff;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(-15px);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-content h3 {
    font-size: 26px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonials-section {
    background-color: #fff;
    padding-top: 120px;
}

.testimonials-section .section-title {
    font-size: 42px;
    line-height: 1.2;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
}

.testimonials-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-testimonials 30s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    width: 400px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(97, 206, 112, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #ff6600;
    /* Orange stars */
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.quote-icon-outline {
    font-size: 28px;
    color: #4caf50;
}

.testimonial-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 15px;
    border-radius: 12px;
}

.author-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
    color: var(--color-text-dark);
    font-weight: 700;
}

.author-info p {
    font-size: 12px;
    color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
    background-color: var(--color-bg-dark);
    color: #fff;
    background-image: url('../images/hero/image5-copyright.jpg');
    /* fallback bg */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(9, 26, 4, 0.85);
}

.cta-title {
    font-size: 56px;
    margin-bottom: 40px;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-wrap .section-subtitle {
    color: var(--color-accent);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-info-wrap .section-title {
    color: var(--color-text-dark);
    font-size: 42px;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.contact-info-wrap .section-desc {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-detail-item .icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(97, 206, 112, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 20px;
}

.contact-detail-item h5 {
    font-size: 16px;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.contact-detail-item p {
    font-size: 14px;
    color: var(--color-text-light);
}

.contact-form-wrap {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-dark);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #f4f8f5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(97, 206, 112, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 18px 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-accent) 0%, #34d399 100%);
    box-shadow: 0 10px 20px rgba(97, 206, 112, 0.3);
    transition: all 0.3s ease;
    border: none;
    margin-top: 10px;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(97, 206, 112, 0.4);
    background: linear-gradient(135deg, #189832 0%, var(--color-accent) 100%);
}

/* Stats Section */
.stats-section {
    background-color: var(--color-bg-dark);
    color: #fff;
    text-align: center;
    position: relative;
    background-image: url('../images/portfolio/portf14-copyright-890x664.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(9, 26, 4, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    padding: 30px;
}

.stat-icon {
    font-size: 45px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 56px;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Float Animation for Hero */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-slide.active .hero-content h1 {
    animation: float 6s ease-in-out infinite;
}

/* Map Section */
.map-container {
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.map-section {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .map-section {
        padding: 0px 0;
    }

    .map-container {
        width: 100%;
        padding: 0 10px;
    }
}

.reasons-section .container,
.services-section .container {
    padding: 0;
}

.map-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 8px solid #ffffff;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
    filter: grayscale(15%) contrast(1.05);
}

/* Footer */
.footer-wrapper {
    padding: 0 20px;
    margin-bottom: 20px;
}

.site-footer {
    background: linear-gradient(135deg, #133a1e 0%, #194a28 100%);
    color: #fff;
    padding: 80px 60px 0;
    font-size: 14px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: inset 0 5px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bg-leaf {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 350px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-25deg);
    filter: brightness(0) invert(1);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mowix-logo {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    line-height: 1.1;
    color: #fff;
}

.mowix-logo span {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    display: block;
    margin-top: 5px;
}

.text-light-green {
    color: #aedb57;
}

.widget-title,
.widget-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
}

.widget-title {
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.widget-subtitle {
    line-height: 1.3;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.footer-links a i {
    margin-right: 12px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(6px);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links-new {
    display: flex;
    gap: 12px;
}

.social-links-new a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links-new a:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(97, 206, 112, 0.3);
    border-color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #aedb57;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #128c7e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.call-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.call-float:hover {
    background-color: #c0392b;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Stats Section Premium UI */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(97, 206, 112, 0.2) 0%, rgba(52, 211, 153, 0.05) 100%);
    border: 2px solid rgba(97, 206, 112, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-accent);
    margin-bottom: 25px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }

    .about-container-new {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .portfolio-item {
        height: 300px;
    }

    .portfolio-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        background-color: #11331c;
        z-index: 105;
        padding: 40px 30px;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
        transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        display: block !important;
    }

    .main-nav.mobile-menu-active {
        left: 0;
    }

    .mobile-nav-logo {
        display: block !important;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
    }

    .mobile-nav-logo img {
        height: 60px;
        margin: 0 auto;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.8);
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        color: var(--color-accent);
        padding-left: 10px;
    }

    .padding-y {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }

    .contact-section .container {
        padding: 0px;
    }

    .header-container {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .logo-img {
        margin-left: -5px;
        height: 50px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-social-links {
        flex-direction: row;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }

    .hero-subtitle {
        font-size: 11px;
        padding: 6px 15px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-content .btn-large {
        padding: 12px 25px;
        font-size: 14px;
    }

    .section-title,
    .about-text-content .section-title {
        font-size: 28px;
    }

    .section-desc {
        text-align: justify;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        align-items: center;
        text-align: center;
    }

    .about-images-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .img-shape-1,
    .img-shape-2 {
        width: 100%;
        height: 300px;
        margin-top: 0;
    }

    .img-shape-1 {
        margin-bottom: 20px;
    }

    .btn-explore {
        position: static;
        margin-top: 20px;
        align-self: center;
    }

    .reasons-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        gap: 15px;
    }

    .reasons-grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .reason-card {
        flex: 0 0 85%;
        max-width: none;
        scroll-snap-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .portfolio-item {
        height: 250px;
    }

    .portfolio-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-wrapper {
        padding: 0 10px;
    }

    .site-footer {
        padding: 50px 20px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-bottom-links a {
        margin-left: 0;
    }

    .cta-title {
        font-size: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .leaf-wrapper img {
        width: 150px;
    }

    .leaf-1 {
        top: -20px;
        right: -20px;
    }

    .leaf-2 {
        bottom: -30px;
        left: -20px;
    }

    .leaf-2 img {
        width: 150px;
    }
}
