:root {
    --primary-green-dark: #0f4b34;
    --primary-green: #2f5e44;
    --primary-green-soft: #4a6a52;
    --sage-light: #9aa887;
    --sage-muted: #b6c2a4;
    --brand-white: #ffffff;
    --brand-black: #0b0b0b;
    --brand-gray-bg: #f3f3f3;

    --brand-green-darkest: #0e3b2b;
    --brand-green-dark: #114d38;
    --brand-green: #2f5e44;
    --brand-green-soft: #466a55;

    --accent-fresh: #3f7d5c;
    --accent-hover: #2c6a4c;
    --accent-glow: rgba(63, 125, 92, 0.4);

    --sage-medium: #7f9277;
    --sage-light: #9aa887;
    --sage-soft: #b6c2a4;
    --sage-pale: #d6dfc8;

    --dark-900: #0b0f0d;
    --dark-800: #111614;
    --dark-700: #1a211e;
    --dark-600: #242c28;

    --neutral-white: #ffffff;
    --neutral-100: #f4f6f3;
    --neutral-200: #e6ebe3;
    --neutral-300: #d5dbd2;

    --earth-warm-light: #c8d2c1;
    --earth-warm: #aab8a2;
    --earth-muted: #8e9d88;
    --earth-deep: #5d6d63;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

/* ============================= Custom Scrollbar ============================= */

::-webkit-scrollbar {
    width: 10px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--brand-gray-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            var(--primary-green),
            var(--primary-green-dark));
    border-radius: 10px;
    border: 2px solid var(--brand-gray-bg);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
            var(--primary-green-soft),
            var(--primary-green));
}

::-webkit-scrollbar-thumb:active {
    background: var(--primary-green-dark);
}

::-webkit-scrollbar-corner {
    background: var(--brand-gray-bg);
}


/* ============================================================================================================== NAVBAR */
.omg-navbar {
    padding: 12px 0;
    transition: transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease;
    background: white;
    z-index: 9999;
}

.omg-navbar.nav-hide {
    transform: translateY(-100%);
}

.omg-navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-logo {
    height: 60px;
}

.nav-link {
    color: var(--brand-black);
    font-weight: 500;
    font-size: 17px;
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-green);
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background: var(--primary-green-dark);
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary-green-dark);
    transition: 0.3s;
}

.navbar-toggler-icon::before {
    top: -7px;
}

.navbar-toggler-icon::after {
    top: 7px;
}

.custom-dropdown .dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 240px;
    background: var(--brand-white);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(15, 75, 52, 0.12),
        0 8px 16px rgba(15, 75, 52, 0.08);
    border: 1px solid var(--sage-pale);
    margin-top: 0;
}

.dropdown-item {
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    margin-bottom: 4px;
    border-left: 3px solid transparent;
    background: var(--brand-white);
}

.dropdown-item:last-child {
    /*margin-bottom: 0;*/
}

.dropdown-item span {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-green-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item small {
    font-size: 13px;
    color: var(--sage-medium);
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg,
            rgba(63, 125, 92, 0.08) 0%,
            rgba(47, 94, 68, 0.12) 100%);
    transform: translateX(4px);
    border-left-color: var(--accent-fresh);
    box-shadow: 0 4px 12px rgba(63, 125, 92, 0.1);
}

.dropdown-item:hover span {
    color: var(--accent-fresh);
}

.dropdown-item:hover span::before {
    color: var(--accent-fresh);
    transform: scale(1.3);
}

.dropdown-item:hover small {
    color: var(--primary-green-soft);
}

.dropdown-item:active {
    transform: translateX(4px) scale(0.98);
}

.dropdown-toggle::after {
    display: none;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-dropdown:hover .dropdown-menu {
    animation: dropdownSlideIn 0.3s ease-out;
}

.dropdown-item+.dropdown-item::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: -2px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--sage-pale) 20%,
            var(--sage-pale) 80%,
            transparent 100%);
}

.dropdown-item {
    position: relative;
}








.navbar-toggler {
    z-index: 10001;
    position: relative;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    transition: all 0.4s ease;
}








/* =================================================================== BUTTONS */
.cssbuttons-io-button {
    background: var(--primary-green-soft);
    color: var(--brand-white);
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    flex: 0 0 auto;
    padding: 0.6em 3.3em 0.6em 1.2em;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    letter-spacing: 0.05em;
    box-shadow:
        inset 0 0 1.6em -0.6em var(--primary-green-soft);
    overflow: hidden;
    position: relative;
    height: auto;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 1.2em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em var(--primary-green-soft);
    right: 0.3em;
    transition: all 0.3s ease;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: var(--primary-green-soft);
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}

.animated-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: auto;
    max-width: fit-content;
    padding: 10px 36px;
    font-size: 16px;
    background-color: transparent;
    border-radius: 100px;
    font-weight: 600;
    color: greenyellow;
    box-shadow: 0 0 0 2px greenyellow;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

.animated-button svg {
    position: absolute;
    width: 24px;
    fill: greenyellow;
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
    right: 16px;
}

.animated-button .arr-2 {
    left: -25%;
}

.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: greenyellow;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #212121;
    border-radius: 12px;
}

.animated-button:hover .arr-1 {
    right: -25%;
}

.animated-button:hover .arr-2 {
    left: 16px;
}

.animated-button:hover .text {
    transform: translateX(12px);
}

.animated-button:hover svg {
    fill: #212121;
}

.animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}

/* ========================== GLOBAL SECTION HEADING ========================== */
.section-heading {
    margin-bottom: 100px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.section-tag img {
    width: 22px;
    height: auto;
}

.section-title {
    margin: auto;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-green-dark);
    max-width: 800px;
}

.dark-section .section-title {
    color: var(--neutral-white);
}

.dark-section .section-tag {
    color: var(--sage-soft);
}

.dark-section .section-tag img {
    filter: brightness(0) invert(1);
}

/* =============================================================================================== HERO */
.hero-wrapper {
    margin-top: 100px;
}

.hero-box {
    /* height: 85vh; */
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-bg.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    color: white;
    max-width: 600px;
}

.hero-small {
    font-weight: 500;
    opacity: 0.9;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    margin-top: 15px;
}

.hero-title span {
    color: #c7df69;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-primary-custom {
    background: #c7df69;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: black;
}

.btn-outline-custom {
    background: white;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    color: black;
}

.hero-features {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    font-size: 16px;
}

.hero-features span::before {
    content: "•";
    margin-right: 8px;
    color: #c7df69;
}

.hero-thumbs {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.thumb {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    cursor: pointer;
    transition: 0.4s;
}

.thumb.active {
    border: 3px solid #c7df69;
    transform: scale(1.1);
}

/* ------------------------------------------------------------------------------------------- WHY CHOOSE US SECTION */
.who-we-are-section {
    padding: 80px 0;
}

.who-we-are-tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.who-we-are-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary-green-dark);
    line-height: 1.2;
}

.dark-section .who-we-are-title {
    color: var(--neutral-white);
}

.dark-section .who-we-are-tag {
    color: var(--sage-soft);
}

.pointer-list {
    margin-top: 60px;
}

.pointer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: .3s;
}

.pointer-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sage-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-green-dark);
    transition: .3s;
}

.pointer-text {
    font-weight: 500;
    color: var(--primary-green-soft);
    transition: .3s;
}

.pointer-item.active .pointer-icon,
.pointer-item:hover .pointer-icon {
    background: var(--primary-green);
    color: #fff;
}

.pointer-item.active .pointer-text,
.pointer-item:hover .pointer-text {
    color: var(--primary-green-dark);
}

.who-we-are-section .col-lg-4.text-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-we-are-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 600px;
    overflow: hidden;
    border-radius: 220px 220px 20px 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transform: scale(1.08);
    transition:
        opacity 1.2s cubic-bezier(.4, 0, .2, 1),
        transform 1.8s cubic-bezier(.4, 0, .2, 1);

    will-change: opacity, transform;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.right-content {
    padding-left: 40px;
}

.right-content p {
    color: var(--primary-green-soft);
    line-height: 1.7;
}

.know-btn {
    background: #c8df5d;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    margin-top: 20px;
    font-weight: 500;
    transition: .3s;
}

.know-btn:hover {
    background: var(--primary-green-dark);
    color: #fff;
}

.who-divider {
    height: 1px;
    background: #ddd;
    margin: 40px 0;
}

.award-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.award-badge {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green-dark);
}

.award-text {
    font-weight: 500;
    color: var(--primary-green-dark);
}

/* ========================================================================== PRODUCTS SECTION */
.products-heading {
    margin-bottom: 180px;
    text-align: center;
}

.products-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.products-tag img {
    width: 22px;
    height: auto;
}

.products-title {
    margin: auto;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-green-dark);
    max-width: 600px;
}

.dark-section .products-title {
    color: var(--neutral-white);
}

.dark-section .products-tag {
    color: var(--sage-soft);
}

.products-section {
    padding: 80px 0;
    background: url("../images/back-g.png");
    background-position: center;
}

/* .product-card {
    background: var(--sage-medium);
    border-radius: 20px;
    padding-top: 50px;
    position: relative;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
} */

.product-card {
    background: var(--sage-medium);
    border-radius: 20px;
    padding-top: 50px;
    position: relative;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);

    display: flex;
    flex-direction: column;
    width: 100%;
}


.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(47, 94, 68, 0.3);
}

.product-img {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 50%;
    box-shadow: 0px 0px 16px 0px #0000003d;
    padding: 18px;
}

.product-img img {
    width: 120px;
    transition: 0.4s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* .product-body {
    padding: 30px;
    color: var(--brand-white);
} */

.product-body {
    padding: 30px;
    color: var(--brand-white);

    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-body .d-flex {
    margin-top: auto;
}

.product-body a {
    margin-top: auto;
}

.product-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.product-desc {
    color: var(--sage-pale);
    font-size: 14px;
    min-height: 60px;
}

.price {
    margin-top: 15px;
    font-weight: 600;
    color: var(--brand-white);
}

hr {
    border-color: rgba(255, 255, 255, 0.377);
}

.small-text {
    font-size: 13px;
    color: var(--sage-pale);
}

.features {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.features li {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--sage-pale);
}

.features i {
    color: var(--primary-green);
    margin-right: 8px;
}

/* -------------------------------------------------------------------- WHY CHOOSE US SECTION */
.why-choose-section {
    padding: 80px 0px 130px;
    background: url("../images/back-g2.png");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.why-left-content {
    text-align: -webkit-right;
}

.feature-box {
    margin-bottom: 100px;
}

.feature-box h5 {
    font-size: 22px;
    font-weight: 700;
    color: #1b4332;
    margin-bottom: 10px;
    ;
}

.feature-box p {
    font-size: 16px;
    color: #5f6f67;
    line-height: 1.6;
    max-width: 300px;
}

.feature-icon {
    margin: 0px 8px;
}

.center-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flower-rotate {
    position: absolute;
    animation: rotatingFlower 25s linear infinite;
}

.flower-rotate img {
    width: 100%;
}

.center-image {
    position: relative;
    z-index: 2;
    width: 280px;
}

.center-image img {
    width: 100%;
}

.bottom-feature h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1b4332;
    margin-bottom: 10px;
}

.bottom-feature p {
    font-size: 14px;
    color: #5f6f67;
}

@keyframes rotatingFlower {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ======================================================================= HOW TO USE SECTION */
.how-to-use-section {
    padding: 80px 0;
    background: url("../images/back-g.png"), linear-gradient(135deg,
            var(--primary-green-dark),
            var(--primary-green));
    background-position: center;
}

.steps-wrapper {
    display: flex;
    gap: 10px;
    height: 420px;
}

.step-card {
    flex-grow: 1;
    flex-basis: 0;
    position: relative;
    border-radius: 24px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition:
        flex-grow 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.4s ease;

    display: flex;
    flex-direction: column;
}

.step-card.active {
    flex-grow: 1.8;
    background: linear-gradient(135deg,
            rgba(74, 106, 82, 0.35),
            rgba(15, 75, 52, 0.8));
}

.step-number {
    font-size: 34px;
    margin-bottom: auto;
    color: var(--sage-muted);
}

.step-content h3 {
    color: white;
    font-size: 28px;
    width: 200px;
}

.step-content p {
    color: var(--sage-muted);
    font-size: 15px;
    max-width: 240px;
}

.step-image {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) scale(0.85);
    opacity: 0;
    transition:
        opacity 0.35s ease 0.2s,
        transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) 0.15s;
}

.step-card.active .step-image {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.step-image img {
    width: 220px;
    border-radius: 15px;
}

/* ================================================================================= PROMISE SECTION */
.stack-section {
    padding: 100px 0;
    background: var(--brand-white);
}

.stack-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.stack-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    max-height: 550px;
    margin-top: 40px;
    border-radius: 24px;
    background: var(--brand-white);
    box-shadow: 0 25px 70px rgba(15, 75, 52, 0.08);
    border: 1px solid rgba(47, 94, 68, 0.1);
    overflow: hidden;
    padding: 60px;
}

.stack-card-content {
    padding-right: 40px;
}

.stack-card-role {
    display: inline-block;
    background: rgba(47, 94, 68, 0.1);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.stack-card-name {
    font-size: 42px;
    color: var(--primary-green-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.stack-card-desc {
    color: var(--primary-green-soft);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.stack-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-green-dark);
    color: var(--brand-white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.stack-btn:hover {
    background: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 75, 52, 0.2);
}

.stack-card-image {
    position: relative;
    height: 115%;
    border-radius: 20px;
    overflow: hidden;
}

.stack-card-image img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
}

.stack-card:hover .stack-card-image img {
    transform: scale(1.05);
}

/* 
.spacer {
    height: 5vh;
} */

/* ================================================================================= BLOGS SECTION UI */

:root {
    --green-dark: #0f2d1e;
    --green-mid: #2e7d52;
    --green-soft: #7aaa8a;
    --white: #ffffff;
    --card-height: 520px;
    --card-padding: 36px;
    --img-width: 300px;
    --gap: 12px;
    --radius: 24px;
    --duration: 0.55s;
    --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

.blog-section {
    padding: 80px 0;
    background: url("../images/back-g.png");
    background-position: center;
}

.blog-wrapper {
    display: flex;
    gap: var(--gap);
    height: var(--card-height);
}

.blog-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    min-width: 0;
    transition:
        flex var(--duration) var(--ease),
        box-shadow var(--duration) ease;
}

.blog-card.active {
    flex: 2.2;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

.blog-body {
    position: absolute;
    inset: 0;
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
}

.blog-top {
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.blog-date {
    font-size: 13px;
    font-weight: 500;
    color: #888;
}

.blog-tag {
    background: #f2e85c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--green-dark);
    text-transform: uppercase;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    overflow: hidden;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 24px;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.blog-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-blog-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 2px;
    white-space: nowrap;
}

.author-blog-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: var(--green-soft);
    white-space: nowrap;
    text-transform: uppercase;
}

.blog-image {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    width: var(--img-width);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(16px) scale(0.97);
    pointer-events: none;
    transition:
        opacity 0.38s ease 0.2s,
        transform 0.48s cubic-bezier(0.34, 1.2, 0.64, 1) 0.14s;
}

.blog-card.active .blog-image {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card.active .blog-body {
    padding-right: calc(var(--img-width) + 36px);
    transition: padding-right var(--duration) var(--ease);
}

.blog-card:not(.active) .blog-body {
    padding-right: var(--card-padding);
    transition: padding-right var(--duration) var(--ease);
}

/* --------------------------------------------------------------------- TESTIMONIAL SECTION */
.testimonial-section {
    padding: 80px 0 0;
}

.testimonial-card {
    background: #F7F8ED;
    border-radius: 28px;
    padding: 120px 20px 60px;
    position: relative;
}

.left-highlight {
    background: #b7d54c;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    height: 100%;
}

.left-highlight img {
    width: 100%;
    border-radius: 18px;
    margin-top: 20px;
}

.highlight-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-green-dark);
}

.testimonial-tag {
    font-size: 13px;
    color: var(--primary-green-soft);
    letter-spacing: 1px;
    font-weight: 600;
}

.testimonial-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-green-dark);
    line-height: 1.2;
    margin: 15px 0 25px;
}

.btn-premium {
    background: var(--primary-green-dark);
    color: var(--brand-white);
    border-radius: 40px;
    padding: 10px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: .3s;
}

.btn-premium:hover {
    background: var(--primary-green);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.testimonial-item {
    min-width: 100%;
}

.quote {
    font-size: 20px;
    color: var(--primary-green-dark);
    margin-bottom: 20px;
}

.stars {
    color: #b7d54c;
    font-size: 18px;
}

.client-info {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.client-name {
    font-weight: 600;
    color: var(--primary-green-dark);
    font-size: 14px;
}

.client-role {
    font-size: 12px;
    color: var(--primary-green-soft);
}

.logo-bar {
    background: var(--primary-green-dark);
    padding: 25px 40px;
    border-radius: 0 0 28px 28px;
}

.logo-bar img {
    opacity: 0.9;
    transition: .3s;
}

.logo-bar img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.top-decoration {
    position: absolute;
    right: 10px;
    top: -80px;
}

.slider-nav {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    gap: 14px;
}

.navigation-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.navigation-btn i {
    font-size: 20px;
    color: var(--primary-green-dark);
    transition: 0.3s ease;
}

.navigation-btn:hover {
    background: #dcdcdc;
    transform: translateY(-3px);
}

.navigation-btn:hover i {
    transform: scale(1.1);
}

/* ===================================================================== FREQUENTLY ASKED QUESTION SECTION */
.faq-section {
    padding: 80px 0;
}

.faq-tag {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-green-dark);
    line-height: 1.2;
    margin-bottom: 50px;
}

.faq-cta-card {
    background: var(--brand-white);
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    padding: 35px;
    position: relative;
    /* overflow: hidden; */
}

.faq-cta-card img {
    position: absolute;
    right: 30px;
    bottom: 10px;
    width: 200px;
}

.faq-cta-text {
    max-width: 60%;
    font-weight: 500;
    color: var(--primary-green-dark);
    line-height: 1.6;
}

.faq-btn {
    margin-top: 20px;
    background: var(--primary-green-dark);
    color: var(--brand-white);
    border: none;
    padding: 12px 22px;
    border-radius: 40px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
}

.faq-btn:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.faq-item {
    background: var(--brand-green-soft);
    border-radius: 18px;
    padding: 25px 30px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all .4s ease;
    position: relative;
}

.faq-item.active {
    background: #dfe3d7;
}

.faq-item.active .faq-question {
    color: green;
}

.faq-question {
    color: var(--sage-pale);
}

.faq-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all .4s ease;
    color: var(--primary-green-dark);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .6s cubic-bezier(.4, 0, .2, 1),
        opacity .4s ease,
        margin-top .4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    margin-top: 15px;
    opacity: 1;
}

.faq-answer p {
    color: var(--primary-green-soft);
    margin: 0;
    line-height: 1.6;
}

/* ======================================================================== FOOTER SECTION */
.footer-section {
    background: #255520;
    color: var(--brand-white);
    padding: 70px 60px 18px;
    border-radius: 30px 30px 0px 0;
    /* position: relative; */
    overflow: hidden;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-img {
    width: 240px;
    height: auto;
    object-fit: contain;
}

.footer-contact {
    margin-top: 25px;
    font-size: 15px;
    color: var(--sage-muted);
}

.footer-phone {
    font-size: 26px;
    font-weight: 600;
    color: #b7e85e;
}

.footer-newsletter h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-newsletter p {
    color: var(--sage-muted);
    font-size: 14px;
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--neutral-100);
    border-radius: 50px;
    padding: 6px;
    max-width: 420px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 18px;
    color: var(--brand-white);
    outline: none;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--sage-light);
}

.newsletter-form button {
    background: #b7e85e;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-privacy {
    margin-top: 10px;
    font-size: 13px;
    color: var(--sage-light);
}

.footer-privacy a {
    color: var(--brand-white);
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--sage-muted);
    font-size: 16px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-white);
    padding-left: 6px;
}

.footer-divider {
    margin: 40px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 16px;
    color: var(--sage-light);
}

.foot-para a {
    color: var(--brand-white);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #b7e85e;
    color: var(--primary-green-dark);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: #b7e85e;
    color: var(--brand-black);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}



/* ======================================================================= BREADCRUMB SECTION */
.breadcrumb-wrapper {
    padding: 100px 0px 0;
}

.health-breadcrumb {
    position: relative;
    border-radius: 26px;
    padding: 200px 50px;
    overflow: hidden;
    color: var(--brand-white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

    background-image:
        linear-gradient(135deg,
            rgba(14, 59, 43, 0.35),
            rgba(47, 94, 68, 0.25)),
        url("../images/breadcrumb-img.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.health-breadcrumb::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: var(--accent-glow);
    border-radius: 50%;
    filter: blur(80px);
}

.health-breadcrumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.06),
            transparent);
    border-radius: 26px;
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.custom-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

.custom-breadcrumb a {
    text-decoration: none;
    color: var(--sage-soft);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.custom-breadcrumb a:hover {
    color: var(--brand-white);
    transform: translateY(-2px);
}

.custom-breadcrumb .active {
    color: var(--brand-white);
    font-weight: 500;
}

.breadcrumb-separator {
    color: var(--sage-medium);
}

/* ============================================================================== ABOUT PAGE */
.who-section {
    padding: 100px 0px 60px;
}

.who-image {
    display: flex;
    justify-content: center;
}

.who-image img {
    width: 88%;
    border-radius: 290px;
    object-fit: cover;
    height: 100vh;
}

.section-desc {
    color: var(--primary-green-soft);
    font-size: 16px;
    line-height: 1.8;
    max-width: 540px;
    margin: 25px 0px 30px;
}

.who-features {
    display: flex;
    flex-direction: column;
    gap: 15px 60px;
    margin-bottom: 40px;
}

.who-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--primary-green-dark);
}

.who-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--brand-green-dark);
}

.who-feature-icon img {
    width: 18px;
    height: 18px;
}

/* ======================================================================== STATISTICS SECTION */
.stats-section {
    padding: 60px 0;
}

.stats-container {
    background: #255520;
    border-radius: 25px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    min-width: 220px;
    transition: 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(79%) sepia(33%) saturate(350%) hue-rotate(65deg);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--sage-soft);
    font-weight: 400;
}

/* =================================================================================== CONTACT PAGE */
.contact-wrapper {
    padding: 100px 0 40px;
}

.contact-section {
    background: url("../images/back-g2.png"), var(--brand-gray-bg);
    background-position: center;
    border-radius: 25px;
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
}

.rotating-flower {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    /* width: 240px; */
    pointer-events: none;
    /* filter: brightness(0) invert(1); */
    z-index: 1;
    animation: rotateFlower 45s linear infinite;
}

@keyframes rotateFlower {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.section-title,
.contact-content {
    position: relative;
    z-index: 2;
}

.form-card {
    background: var(--brand-white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
    color: var(--brand-green-darkest);
    font-weight: 700;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--accent-fresh);
    box-shadow: 0 0 0 0.25rem var(--accent-glow);
}

.info-card {
    background: var(--brand-green-dark);
    color: white;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-info-card {
    background: var(--brand-green-dark);
    color: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
    position: relative;
}

.info-box {
    text-align: left;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--accent-fresh);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 20px;
}

.info-box h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px 0 18px;
}

.info-box p {
    margin-bottom: 6px;
    font-size: 14px;
    opacity: 0.9;
}

.social-bar {
    background: #a6ce39;
    padding: 40px 30px 20px;
    border-radius: 0 0 30px 30px;
    margin-top: -25px;
}

.social-bar i {
    margin-left: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.social-bar i:hover {
    transform: scale(1.2);
}

/* ======================================================================= PRODUCT DETAILS SECTION */
.product-wrapper {
    padding: 80px 0;
}

.product-images {
    position: sticky;
    top: 20px;
}

.thumbnail-list {
    width: 80px;
}

.thumbnail-list img {
    width: 70px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-list img:hover,
.thumbnail-list img.active {
    border-color: var(--accent-fresh);
    box-shadow: 0 0 15px var(--accent-glow);
    transform: scale(1.05);
}

.pro-main-image img {
    height: auto;
    width: auto;
    object-fit: cover;
    border-radius: 20px;
}

.product-details {
    padding-left: 40px;
}

.rating {
    color: #f4b400;
    font-size: 14px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: var(--sage-medium);
    font-size: 16px;
    margin-left: 10px;
}

.discount-badge {
    background: var(--sage-pale);
    color: var(--primary-green-dark);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    margin-left: 10px;
}

.product-description {
    margin-top: 20px;
    color: #555;
    line-height: 1.7;
}

.size-selector {
    margin-top: 30px;
}

.size-btn {
    border: 1px solid var(--sage-soft);
    padding: 10px 25px;
    border-radius: 30px;
    background: transparent;
    margin-right: 10px;
    transition: 0.3s ease;
    cursor: pointer;
}

.size-btn.active,
.size-btn:hover {
    background: var(--accent-fresh);
    color: white;
    border-color: var(--accent-fresh);
    box-shadow: 0 0 15px var(--accent-glow);
}

.specs-icon {
    margin-top: 40px;
    background: var(--brand-gray-bg);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.specs-item {
    text-align: center;
    font-size: 13px;
    color: var(--primary-green-dark);
}

.specs-item i {
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}

.details-section {
    margin-top: 40px;
}

.details-section h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.details-section p {
    color: #555;
    line-height: 1.7;
}

/* ========================================================================== HOW TO USE PRODUCT SECTION */
.how-use-pro-section {
    margin: 0px 0px 60px;
    overflow: hidden;
}

.how-use-pro-wrapper {
    background: linear-gradient(135deg, #0f4b34, #1e6b4b);
    border-radius: 26px;
    padding: 60px 50px;
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
}

.how-use-pro-wrapper::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-glow);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.section-subtitle {
    opacity: 0.9;
    max-width: 500px;
    margin-top: 10px;
    color: var(--sage-soft);
}

.use-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.use-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px var(--accent-glow);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--accent-fresh),
            var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand-white);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.use-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--brand-white);
}

.use-card p {
    font-size: 14px;
    color: var(--sage-soft);
    margin-bottom: 0;
}

/* ========================================================================== ALL BLOGS PAGE */
.blog-details-wrapper {
    padding: 100px 0 40px;
}

.blog-details-section {
    background: url("../images/back-g2.png"), var(--brand-gray-bg);
    background-position: center;
    border-radius: 25px;
    padding: 140px 40px 80px;
    position: relative;
    overflow: hidden;
}

.blog-details-item {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 0;
    position: relative;
    transition: all 0.4s ease;
}

.blog-details-meta {
    min-width: 140px;
}

.blog-details-badge {
    display: inline-block;
    background: #e3df00;
    color: var(--brand-black);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: .5px;
}

.blog-details-date {
    margin-top: 40px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--sage-medium);
}

.blog-content {
    padding-right: 30px;
}

.blog-details-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--brand-green-darkest);
    margin-bottom: 12px;
    transition: 0.3s;
}

.blog-details-desc {
    font-size: 15px;
    color: var(--sage-medium);
    max-width: 520px;
    line-height: 1.7;
}

.blog-details-img-col {
    display: flex;
    justify-content: flex-end;
}

.blog-details-img-wrapper {
    width: 260px;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    transition: width 0.5s cubic-bezier(.77, 0, .18, 1);
}

.blog-details-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-details-item:hover .blog-details-img-wrapper {
    width: 360px;
}

.blog-details-item:hover .blog-details-img-wrapper img {
    transform: scale(1.05);
}

.blog-details-item:hover .blog-details-title {
    color: var(--accent-fresh);
}

/* =================================================================== BLOG DETAILS PAGE */
.article-hero {
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.meta-date {
    font-size: 0.8rem;
    color: var(--sage-medium);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.meta-dot {
    color: var(--sage-soft);
    font-size: 0.7rem;
}

.category-tag {
    background: var(--primary-green-dark);
    color: var(--brand-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--primary-green-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.hero-image-wrap {
    margin-top: 40px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 420px;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 75, 52, 0.15) 100%);
}

.article-body {
    padding: 48px 100px 60px;
}

.author-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: var(--brand-white);
    border: 1.5px solid var(--sage-pale);
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(15, 75, 52, 0.06);
}

.author-detail-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sage-pale);
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-soft), var(--sage-medium));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-category {
    font-size: 0.72rem;
    color: var(--accent-fresh);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-black);
}

.share-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-size: 0.8rem;
    color: var(--sage-medium);
    font-weight: 500;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--sage-pale);
    background: var(--brand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    color: var(--sage-medium);
    font-size: 0.85rem;
    text-decoration: none;
    position: relative;
}

.share-btn:hover {
    background: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--accent-glow);
}

.blog-details-head {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.body-text {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 18px;
}

.content-image {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin: 28px 0;
    position: relative;
}

.content-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.quote-block {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--brand-green) 100%);
    border-radius: 20px;
    padding: 36px 40px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}

.quote-block::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.quote-icon {
    color: var(--sage-soft);
    font-size: 1.4rem;
    margin-bottom: 14px;
    display: block;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--brand-white);
    line-height: 1.65;
}

.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    margin: 28px 0;
}

.two-col-image {
    border-radius: 16px;
    overflow: hidden;
}

.two-col-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #3a3a3a;
}

.tip-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--accent-fresh);
    margin-top: 7px;
}

.tip-label {
    font-weight: 600;
    color: var(--primary-green-dark);
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sage-pale), transparent);
    margin: 40px 0;
}

.related-section {
    background: var(--brand-gray-bg);
    padding: 60px 0;
}

.related-section a {
    text-decoration: none;
}

.card-post {
    background: var(--brand-white);
    border-radius: 20px;
    overflow: hidden;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 100%;
}

.card-post:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 75, 52, 0.12);
}

.card-post-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-post-body {
    padding: 20px 22px 24px;
}

.card-post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-post-date {
    font-size: 0.75rem;
    color: var(--sage-medium);
}

.card-post-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-fresh);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.card-post-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    line-height: 1.35;
}

.toast-container {
    z-index: 9999;
}

.custom-toast {
    background: var(--primary-green-dark);
    color: white;
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(15, 75, 52, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent-fresh), var(--sage-light));
    z-index: 99999;
    transition: width 0.1s linear;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}