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

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --primary-green: #0D7B14;
    --dark-bg: #0B0B0B;
    --light-gray: #F9F9F9;
    --border-color: #ECECEC;
    --text-main: #111111;
    --text-gray: #555555;

    --fs-h1: clamp(2rem, 5vw, 48px);
    --fs-h2: clamp(1.6rem, 4.5vw, 45px);
    --fs-h3: clamp(1.4rem, 4vw, 2.5rem);
    --fs-p: 16px;
    --section-py: clamp(40px, 8vw, 100px);
    --container-px: clamp(15px, 4vw, 50px);
}

body {
    background-color: #fff;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    padding-top: 100px;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.logo {
    line-height: 0;
}

.btn-green {
    background-color: var(--primary-green);
    color: #fff;
    padding: 8px 8px 8px 26px;
    border-radius: 50px;
    font-size: var(--fs-p);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-green::after {
    content: '';
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
}

.btn-green:hover::after {
    transform: translateX(4px);
}

.btn-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-green:hover::before {
    left: 100%;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 123, 20, 0.3);
}



.btn-green-small {
    background-color: var(--primary-green);
    color: #fff;
    padding: 6px 6px 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-green-small::after {
    content: '';
    width: 34px;
    height: 34px;
    background-color: #fff;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
    transition: 0.3s;
    flex-shrink: 0;
}

.btn-green-small:hover::after {
    transform: translateX(4px);
}

.btn-green-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.4s;
}

.btn-green-small:hover::before {
    left: 100%;
}

.btn-green-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 123, 20, 0.3);
}



.btn-green-full {
    background-color: var(--primary-green);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    display: block;
    width: 100%;
    transition: 0.3s;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-green-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn-green-full:hover::before {
    left: 100%;
}

.btn-green-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 123, 20, 0.3);
}



.section-tag {
    display: inline-block;
    color: #888;
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-tag-center {
    display: block;
    margin: 0 auto 25px;
    width: fit-content;
    border: 4px solid #f9f9f9;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #0c0c0c;
    background: #faffff;
}

.section-title span,
.section-title-center span,
.hero-title span {
    color: var(--primary-green);
}

.highlight-green {
    color: var(--primary-green) !important;
}

.highlight-red {
    color: #FF1010 !important;
}

.service-tag {
    display: flex;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.15;
    color: #111;
}

.section-title-center {
    font-size: var(--fs-h2);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.1;
    text-align: center;
    color: #000;
}


.section-desc {
    color: var(--text-gray);
    font-size: var(--fs-p);
    margin-bottom: 30px;
    text-align: center;
}


.header-section {
    padding: 30px 0 0;
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

.header-section .container {
    pointer-events: all;
}


.navbar-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 40px;
    border-radius: 100px;
    border: 5px solid #fafafa;
}

.logo img {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a,
.footer-links a {
    font-weight: 500;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    display: block;
}

.footer-section .footer-links a {
    color: #000000;

}

.nav-links li a span,
.footer-links li a span {
    display: block;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav-links li a span::after,
.footer-links li a span::after {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--primary-green);
}

.nav-links a:hover span,
.footer-links a:hover span {
    transform: translateY(-100%);
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: 0.3s;
}


.hero-section {
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

.parallax-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.parallax-item {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.p-1 {
    width: 300px;
    height: 300px;
    background: rgba(15, 124, 22, 0.05);
    top: 50px;
    left: -50px;
}

.p-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.02);
    bottom: 0px;
    right: -100px;
}

.p-3 {
    width: 200px;
    height: 200px;
    background: rgba(15, 124, 22, 0.03);
    top: 40%;
    right: 15%;
}

.p-4 {
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.04);
    top: 10%;
    left: 20%;
}

.icon-box {
    filter: none;
    color: var(--primary-green);
    opacity: 0.1;
    z-index: -1;
    animation: drift-slow 20s infinite linear alternate;
}

.i-1 {
    top: 15%;
    left: 10%;
}

.i-2 {
    top: 60%;
    left: 15%;
}

.i-3 {
    top: 25%;
    right: 8%;
}

.mesh-box {
    filter: none;
    color: var(--primary-green);
    opacity: 0.05;
    z-index: -2;
    animation: drift-slow 40s infinite linear reverse;
}

.mesh-box svg circle {
    animation: node-pulse 4s infinite ease-in-out;
}

@keyframes node-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.m-1 {
    bottom: 10%;
    right: 5%;
}

.p-1,
.p-3 {
    animation: float-slow 15s infinite ease-in-out;
}


.p-2,
.p-4 {
    animation: float-slow 20s infinite ease-in-out reverse;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -40px);
    }
}

@keyframes drift-slow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, 40px) rotate(10deg);
    }
}

.top-pill {
    display: inline-block;
    border: 4px solid #f9f9f9;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 25px;
    background: #faffff;
}

.abTag {
    display: flex;
    justify-content: center;
    width: fit-content;
    border: 4px solid #f9f9f9;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin: 0 auto 25px;
    background: #faffff;
}

.hero-title {
    font-size: var(--fs-h1);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #111;
}

.hero-title span.highlight-green {
    color: var(--primary-green) !important;
}

.hero-subtext {
    font-size: 17px;
    color: #555;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.5;
}

.hero-cta {
    margin-bottom: 50px;
}

.hero-image-box {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.hero-image-box img {
    border-radius: 24px;
    -webkit-mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
}

.what-is-section {
    padding: 100px 0;
    overflow: hidden;
}

.what-is-section .container {
    padding-left: clamp(15px, 10vw, 120px);
    padding-right: clamp(15px, 10vw, 120px);
    max-width: 1400px;
}


.about-main-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111;
}

.about-desc {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
}

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1.5px solid #d1d1d1;
    border-radius: 50px;
    color: #444;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.btn-outline-pill:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-outline-pill svg {
    transition: 0.3s transform;
}

.btn-outline-pill:hover svg {
    transform: translateX(5px);
}

.about-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-stack {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.img-main {
    width: 80%;
    z-index: 1;
    border: 1px solid #f0f0f0;
}

.img-top {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 45%;
    z-index: 2;
}

.img-bottom {
    position: absolute;
    bottom: -30px;
    right: 40px;
    width: 42%;
    z-index: 3;
}

.img-stack:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12);
}




.video-section {
    padding: 100px 0;
}

.video-section .main-div {
    padding: 0 50px;
}

.video-section .section-desc {
    text-align: left;
    font-size: 16px !important;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.video-placeholder-container {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: visible;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.experience-video-thumbnail {
    width: 100%;
    display: block;
    border-radius: 30px;
}

/* PLAY BUTTON */
.play-btn-large {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
    z-index: 100;
    box-shadow: 0 15px 30px rgba(15, 124, 22, 0.4);
}

.play-btn-large::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-green);
    opacity: 0.6;
    z-index: -1;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.play-btn-large:hover {
    transform: scale(1.08);
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 26px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 6px;
}

/* VIDEO POPUP */
.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    padding: 20px;
}

/* ACTIVE */
.video-popup.active {
    display: flex;
}

/* VIDEO BOX */
.video-popup-content {
    width: 100%;
    max-width: 1050px;
    position: relative;
}

/* VIDEO */
.popup-video {
    width: 100%;
    border-radius: 20px;
    background: #000;
}

/* CLOSE BUTTON */
.video-close-btn {
    position: absolute;
    top: -50px;
    right: 0;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #fff;
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
}

.video-close-btn:hover {
    transform: rotate(90deg);
}

@media(max-width:768px) {

    .play-btn-large {
        width: 65px;
        height: 65px;
        left: 10px;
        bottom: -20px;
    }

    .play-triangle {
        border-left: 20px solid #fff;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }

}



body.popup-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}





.service-card {
    background-color: #F9F9F9;
    border-radius: 40px;
    padding: 30px;
    margin: 48px auto;
    position: sticky;
    top: 100px;
    max-width: 1100px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.service-box-num {
    background-color: #000;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-card-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.25;
}

.service-card-desc {
    color: #555;
    font-size: 17px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.service-img-wrap-outer {
    background-color: #f1f1f1;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-img-wrap-outer img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.btn-green-small {
    background-color: #117a2d;
    color: #fff;
    padding: 8px 10px 8px 23px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    gap: 20px;
}


.features-section {
    padding: var(--section-py) 0;
    padding-bottom: 0;
}

.feature-card {
    padding: 50px 30px;
    background-color: #F8F8F8;
    border-radius: 24px;
    height: 100%;
    transition: 0.3s;
    border: none;
}

.video-placeholder-container {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 100px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: #f7f8f9;
    border-radius: 18px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: 0.3s all ease;
    border: 1px solid transparent;
}

.faq-item.active {
    background-color: #f7fdf8;
    border-color: #e2fce8;
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.faq-arrow {
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #333;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
    color: var(--primary-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 30px 24px;
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
}

.feature-icon img {
    height: 40px;
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.feature-desc-long p {
    font-size: 15px;
    line-height: 1.6;
}


.pricing-section {
    padding: var(--section-py) 0;
}

.pricing-toggle-wrap {
    margin: 40px auto;
    display: flex;
    justify-content: center;
}

.pricing-toggle {
    background: #f5f5f5;
    padding: 6px;
    border-radius: 100px;
    display: inline-flex;
    gap: 5px;
}

.pricing-toggle button {
    padding: 10px 25px;
    border: none;
    background: transparent;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    transition: 0.3s;
}

.pricing-toggle button.active {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #000;
}

.pricing-card {
    padding: 50px 40px;
    background-color: #F8F8F8;
    border-radius: 30px;
    text-align: left;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
}

.pricing-card.highlighted {
    border: 1.5px solid #2f74f3;
    background-color: #ffff;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2f74f3;
    color: #fff;
    padding: 6px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.plan-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.plan-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: left;
}

.pricing-divider {
    height: 1.5px;
    background-color: #eee;
    margin: 25px 0 0px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
    position: relative;
}

.price-top-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0 0;
    height: 25px;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge {
    font-size: 11px;
    background: #FFEDEA;
    color: #FF5A36;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.currency {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 5px;
    color: #999;
    font-weight: 500;
}

.per-unit {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin-left: -5px;
}


.custom-pricing-text {
    font-size: 32px;
}

.plan-features {
    margin-bottom: 45px;
    padding-left: 0;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.plan-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
}

.btn-green-pricing {
    background-color: #0F7C16;
    color: #fff;
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s;
}

.btn-green-pricing::after {
    content: '';
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    transition: 0.3s;
    flex-shrink: 0;
}

.btn-green-pricing:hover::after {
    transform: translateX(4px);
}

.btn-green-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-green-pricing:hover::before {
    left: 100%;
}

.btn-green-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 124, 22, 0.3);
}

.btn-dark-pricing {
    background-color: #053109;
    color: #fff;
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s;
}

.btn-dark-pricing::after {
    content: '';
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    transition: 0.3s;
    flex-shrink: 0;
}

.btn-dark-pricing:hover::after {
    transform: translateX(4px);
}

.btn-dark-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-dark-pricing:hover::before {
    left: 100%;
}

.btn-dark-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(5, 49, 9, 0.3);
}



.testi-card-new {
    border-radius: 24px;
    padding: 30px;
    transition: 0.3s;
    border: 1px solid transparent;
    margin-bottom: 20px;
}

.green-variant {
    background-color: #F8FFF9;
    border: 1.5px solid #E2FCE8;
}

.white-variant {
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f1f1;
}

.testi-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.testi-marquee-container::before,
.testi-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.testi-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.testi-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}


.testi-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testi-track:hover {
    animation-play-state: paused;
}

.testi-card-lite {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 40px;
    min-width: 400px;
    max-width: 400px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
}

.testi-card-lite:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.stars-green {
    color: #00D215;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    white-space: normal;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar-box img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-meta h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #111;
}

.user-meta p {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
}

.dark-variant {
    background-color: #1a8e3d;
    color: #fff;
}


.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testi-user-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #1a8e3d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    overflow: hidden;
}

.av-pink {
    background-color: #F7D6E0;
    color: #D14D72;
}

.av-blue {
    background-color: #E2FCE8;
    color: #25B446;
}

.av-black {
    background-color: #ffffff;
    color: #1a8e3d;
}

.av-orange {
    background-color: #F7E7D6;
    color: #D1724D;
}


.testi-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: inherit;
}

.testi-info p {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
}

.dark-variant .testi-info p {
    color: #aaa;
}

.quote-mark {
    font-size: 50px;
    color: #E2FCE8;
    line-height: 1;
    font-family: serif;
}

.stars {
    font-size: 14px;
    letter-spacing: 2px;
}

.yellow-stars {
    color: #FFB800;
}

.green-stars {
    color: #25B446;
}


.testi-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    font-weight: 500;
}

.dark-variant .testi-text {
    color: #ddd;
}

.testi-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #E2FCE8;
}

.verified {
    font-size: 13px;
    color: #25B446;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.stats-pill {
    background-color: #E2FCE8;
    color: #25B446;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.rating-badge {
    background-color: #FFF9E6;
    color: #FFB800;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.small-v {
    padding: 24px;
}

.inline {
    margin-bottom: 0 !important;
}

.role-inline {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
    margin-left: 8px;
}



/* 
.footer-section {
    background-color: #000;
    color: #fff;
    padding: 100px 0 40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.footer-logo img {
    height: 35px;
}

.footer-about {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-links a {
    color: #f1f1f1;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: #fff;
}

.contact-info li {
    color: #777;
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-bottom-brand {
    margin: 60px 0 40px;
}

.footer-bottom-brand img {
    width: 60%;
}

.footer-divider {
    height: 1px;
    background-color: #4f4f4f;
    margin-bottom: 30px;
}

.copyright {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
} */



/* FOOTER SECTION */
.footer-section {
    position: relative;
    background: #f5f5fa;
    color: #111;
    padding: 120px 0 40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    overflow: hidden;
}


.footer-section::before {
    content: "Bizdot";
    position: absolute;
    top: 117px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 300px;
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: 10px;
    pointer-events: none;
    white-space: nowrap;
}


.footer-section .main-div {
    position: relative;
    z-index: 2;
}

.footer-logo img {
    height: 55px;
}

.footer-about {
    color: #4d4d4d;
    font-size: 15px;
    line-height: 1.9;
    max-width: 360px;
}


.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #111;
}


.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    list-style: none;
}

.footer-links a {
    color: #444;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
    text-decoration: none;
    overflow: hidden;
}

.footer-links li a span {
    display: block;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-links li a span::after {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--primary-green);
}

.footer-links a:hover span {
    transform: translateY(-100%);
}

.footer-status {
    margin-top: 60px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.footer-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8ce300;
}

.footer-status-text {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-top: 80px;
    margin-bottom: 30px;
}

.copyright {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media(max-width:991px) {
    .footer-section {
        padding: 90px 0 40px;
    }

    .footer-section::before {
        font-size: 160px;
        top: 40px;
    }

    .footer-title {
        margin-top: 20px;
    }
}

@media(max-width:768px) {
    .footer-section {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }

    .footer-section::before {
        font-size: 90px;
        top: 70px;
        letter-spacing: 5px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-divider {
        margin-top: 50px;
    }
}










.list-01 {
    background-color: #e3313312;
}

.list-02 {
    background-color: #2f72f324;
}

.list-03 {
    background-color: #e6860621;
}

.list-04 {
    background-color: #09a1712e;
}

.box-01 {
    background-color: #e33133;
    color: #fff;
}

.box-02 {
    background-color: #2f74f3;
    color: #fff;
}

.box-03 {
    background-color: #e68606;
    color: #fff;
}

.box-04 {
    background-color: #09a171;
    color: #fff;
}

/* ==========================================================================
   Service Assistant (Premium Redesign)
   ========================================================================== */
.chat-launcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-green), #0a5c0f);
    box-shadow: 0 10px 25px rgba(13, 123, 20, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-launcher:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 123, 20, 0.5);
}

.chat-launcher span {
    font-size: 28px;
    transition: transform 0.3s ease;
}

.chat-launcher:hover span {
    transform: rotate(10deg) scale(1.1);
}

.chat-widget {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 400px;
    height: 540px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
    
    visibility: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: bottom right;
}

.chat-widget.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-green), #0a6610);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.header-left {
    display: flex;
    gap: 15px;
    align-items: center;
}

.avatar-wrap {
    position: relative;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.online-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #4ade80;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
}

.chat-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.chat-header small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.close-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}


.chat-body {
    flex: 1;
    padding: 25px;
    background: #ffffff;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scroll-behavior: smooth;
}

.chat-body::-webkit-scrollbar {
    width: 4px;
}
.chat-body::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}

.bot-msg {
    align-self: flex-start;
    background: #f0f7f1; /* Subtle green tint */
    color: #1f2937;
    padding: 12px 18px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    font-size: 15px;
    line-height: 1.5;
    max-width: 85%;
    box-shadow: 0 2px 5px rgba(13, 123, 20, 0.05);
    animation: slideInUp 0.3s ease-out;
}

.user-msg {
    align-self: flex-end;
    background: var(--primary-green);
    color: #fff;
    padding: 12px 18px;
    border-radius: 18px;
    border-bottom-right-radius: 4px;
    font-size: 15px;
    line-height: 1.5;
    max-width: 85%;
    box-shadow: 0 4px 15px rgba(13, 123, 20, 0.2);
    animation: slideInUp 0.3s ease-out;
}

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

.typing {
    padding: 15px 20px;
    display: flex;
    gap: 4px;
}

.typing span {
    width: 6px;
    height: 6px;
    background: #d1d5db;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 5px;
    animation: fadeIn 0.5s ease;
}

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

.option-btn {
    background: #fff;
    border: 1.5px solid #f0f0f0;
    padding: 14px 20px;
    border-radius: 14px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-btn::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.option-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: #f4fdf6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.option-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.back-btn {
    margin-top: 10px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.7;
    transition: 0.3s;
}

.back-btn:hover {
    opacity: 1;
    color: #111;
}

.chat-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.chat-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.chat-active-lock {
    overflow: hidden !important;
    height: 100vh;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .chat-widget {
        top: 50%;
        left: 50%;
        bottom: auto;
        right: auto;
        width: calc(100% - 40px);
        max-width: 380px;
        height: 75vh;
        max-height: 550px;
        border-radius: 24px;
        transform: translate(-50%, -40%) scale(0.9);
    }

    .chat-widget.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .chat-launcher {
        width: 58px;
        height: 58px;
        bottom: 20px;
        right: 20px;
    }
}









/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-page {
    background-color: var(--light-gray);
}

.contact-hero {
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
}

.contact-main-section {
    padding: 90px 0 80px;
    position: relative;
    z-index: 2;
}

/* Sidebar Info Styles */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

.info-pill {
    display: inline-block;
    color: var(--primary-green);
    background: rgba(13, 123, 20, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.info-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    text-align: left;
}

.info-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 46px;
    height: 46px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: 0.3s;
}

.info-detail-item:hover .info-icon {
    background: var(--primary-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.info-text span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888888;
    margin-bottom: 4px;
    font-weight: 600;
}

.info-text p {
    font-size: 15px;
    color: var(--text-main);
    margin: 0;
    font-weight: 500;
}

.info-link {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 600;
    transition: 0.3s;
}

.info-link:hover {
    color: var(--primary-green);
}

/* Trust Card */
.trust-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
}

.trust-avatars {
    display: flex;
    margin-right: -10px;
}

.trust-avatars .avatar {
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: -12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.trust-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.trust-text p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

/* Contact Form Container */
.contact-form-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 40px;
}

/* Form Fields Styling (Premium floating labels) */
.form-group-premium {
    position: relative;
}

.form-input-premium,
.form-textarea-premium {
    width: 100%;
    padding: 18px 16px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-main);
    background-color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-textarea-premium {
    resize: none;
}

.form-input-premium:focus,
.form-textarea-premium:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(13, 123, 20, 0.08);
}

.form-label-premium {
    position: absolute;
    left: 16px;
    top: 17px;
    font-size: 15px;
    color: #888888;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: #ffffff;
    padding: 0 6px;
}

/* Floating logic */
.form-input-premium:focus~.form-label-premium,
.form-input-premium:not(:placeholder-shown)~.form-label-premium,
.form-textarea-premium:focus~.form-label-premium,
.form-textarea-premium:not(:placeholder-shown)~.form-label-premium {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: var(--primary-green);
    font-weight: 600;
}

/* Form Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    z-index: 10;
    animation: fadeIn 0.4s ease forwards;
}

.success-icon-box {
    width: 90px;
    height: 90px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.animate-success svg {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.6s ease-in-out forwards 0.2s;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.success-desc {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Spinner Loader */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.d-none {
    display: none !important;
}

/* Global Presence Section */
.global-presence-section {
    padding: 80px 0 90px;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
}

.office-card {
    /*background: var(--light-gray);*/
    /*border: 1px solid var(--border-color);*/
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.office-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: rgba(13, 123, 20, 0.2);
}

.office-flag-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.office-flag-emoji {
    font-size: 26px;
    line-height: 1;
}

.office-country-name {
    font-size: 13px;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-divider {
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 20px;
}

.office-card:hover .office-divider {
    background-color: rgba(13, 123, 20, 0.15);
}

.office-city {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.office-address {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.office-meta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.office-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 14px;
}

.office-meta-item svg {
    color: var(--primary-green);
    opacity: 0.8;
}

.office-meta-item a {
    color: var(--text-main);
    font-weight: 500;
    transition: 0.2s;
}

.office-meta-item a:hover {
    color: var(--primary-green);
}

.office-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    width: fit-content;
    margin-top: auto;
    transition: 0.3s;
}

.office-map-link svg {
    transition: transform 0.3s;
}

.office-map-link:hover svg {
    transform: translate(3px, -3px);
}

/* Adjustments for Responsive on Contact Form */
@media (max-width: 991px) {
    .contact-form-container {
        padding: 35px 25px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .contact-hero {
        padding: 50px 0 20px;
    }
}