/* =========================================================
   Nursery site design system — Divi-inspired forest theme
   ========================================================= */
:root {
    --primary: #14534f;
    --primary-dark: #0f3f3c;
    --primary-darker: #0c3330;
    --primary-light: #1a6b66;
    --primary-soft: #e8f3f2;
    --btn: #14534f;
    --btn-hover: #0f3f3c;
    --btn-active: #0c3330;
    --btn-disabled: #8aa8a6;
    --footer-bg: #0f3f3c;
    --green-900: #0c3330;
    --green-800: #14534f;
    --green-700: #1a6b66;
    --green-600: #2a7f79;
    --green-500: #3d9891;
    --green-200: #b7d8d5;
    --green-100: #e8f3f2;
    --green-50: #f4f9f8;
    --cream: #fbfcfb;
    --earth: #3d2b1f;
    --gold: #c9a227;
    --text: #1a2e2c;
    --muted: #5c6f6d;
    --shadow: 0 18px 48px rgba(20, 83, 79, 0.14);
    --radius: .45rem;
    --radius-lg: .75rem;
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Inter", "Segoe UI", sans-serif;
    --header-offset: 136px;
}

* { box-sizing: border-box; }

html {
    width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(ellipse at top, rgba(20, 83, 79, 0.05), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
    line-height: 1.65;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    padding-top: var(--header-offset);
}

h1, h2, h3, h4, .display-font {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a { color: var(--primary); text-decoration: none; transition: color .25s ease, transform .25s ease; }
a:hover { color: var(--primary-dark); }

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--btn);
    --bs-btn-border-color: var(--btn);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--btn-hover);
    --bs-btn-hover-border-color: var(--btn-hover);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--btn-active);
    --bs-btn-active-border-color: var(--btn-active);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--btn-disabled);
    --bs-btn-disabled-border-color: var(--btn-disabled);
}

.btn-outline-primary {
    --bs-btn-color: var(--btn);
    --bs-btn-border-color: var(--btn);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--btn);
    --bs-btn-hover-border-color: var(--btn);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--btn-active);
    --bs-btn-active-border-color: var(--btn-active);
    --bs-btn-disabled-color: var(--btn-disabled);
    --bs-btn-disabled-border-color: var(--btn-disabled);
}

.btn-whatsapp { background: #25d366; border-color: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe57; border-color: #1ebe57; color: #fff; }
.btn-youtube { background: #ff0000; border-color: #ff0000; color: #fff; }
.btn-youtube:hover { background: #e60000; border-color: #e60000; color: #fff; }

.btn-primary,
.btn-primary:focus-visible { color: #fff !important; }

.btn {
    border-radius: .35rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 10px 24px rgba(20, 83, 79, 0.28); }

/* ---------- Fixed header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1030;
    transition: box-shadow .35s ease, background .35s ease;
}
.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(20, 83, 79, 0.12);
}

.announce-bar {
    background: var(--primary);
    color: #fff;
    font-size: .78rem;
    letter-spacing: .02em;
    overflow: hidden;
}
.announce-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .6rem 0;
    animation: announcePulse 4s ease-in-out infinite;
}
.announce-bar-inner span:last-child {
    text-align: right;
    white-space: nowrap;
}
@keyframes announcePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .88; }
}

.site-navbar {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    padding: .9rem 0;
}
.site-navbar-inner { display: flex; align-items: center; }

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}
.brand-mark.has-logo {
    width: auto;
    height: 72px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}
.brand-mark:hover {
    color: var(--primary);
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 22px rgba(20, 83, 79, 0.22);
}
.brand-mark.has-logo:hover {
    transform: scale(1.04);
    box-shadow: none;
}
.brand-mark-letter {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}
.brand-mark-img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}
.brand-mark.has-logo .brand-mark-img {
    width: auto;
    height: 72px;
    max-width: 220px;
    object-fit: contain;
}

.site-nav-links {
    margin-left: 1.75rem;
    align-items: center;
    gap: .15rem;
}
.site-navbar .nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    font-size: .88rem;
    padding: .45rem .75rem !important;
    position: relative;
    letter-spacing: .01em;
    transition: color .25s ease, transform .25s ease;
}
.site-navbar .nav-link:hover {
    color: var(--primary-dark) !important;
    transform: translateY(-1px);
}
.site-navbar .nav-link.active { color: var(--primary-dark) !important; font-weight: 600; }
.site-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: .75rem;
    right: .75rem;
    bottom: .05rem;
    height: 2px;
    background: var(--primary);
    animation: underlineGrow .45s ease both;
}
@keyframes underlineGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.site-navbar .dropdown-menu {
    border: 1px solid rgba(20, 83, 79, 0.1);
    box-shadow: var(--shadow);
    border-radius: .5rem;
    animation: dropIn .28s ease both;
}
@keyframes dropIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.site-navbar .dropdown-item.active,
.site-navbar .dropdown-item:active {
    background: var(--primary);
    color: #fff;
}

.nav-phone {
    margin-left: auto;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary) !important;
    letter-spacing: .01em;
    white-space: nowrap;
    padding-left: 1rem;
    transition: transform .3s ease, color .3s ease;
}
.nav-phone:hover {
    color: var(--primary-dark) !important;
    transform: scale(1.04);
}
.site-navbar .navbar-toggler { border-color: rgba(20, 83, 79, 0.2); }
.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2314534f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .announce-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: .2rem;
        padding: .45rem 0;
    }
    .announce-bar-inner span:last-child {
        text-align: center;
        white-space: normal;
    }
    .site-nav-links { margin-left: 0; padding: .75rem 0 .25rem; }
    .site-navbar .nav-link.active::after { display: none; }
    .nav-phone {
        display: block;
        margin: .35rem 0 .85rem;
        padding-left: 0;
        font-size: 1.2rem;
    }
}

/* ---------- Hero (fixed background, page scrolls over it) ---------- */
.hero-parallax {
    position: relative;
    height: calc(100svh - var(--header-offset, 112px));
    min-height: 560px;
    z-index: 0;
}
.hero-parallax-bg {
    position: fixed;
    top: var(--header-offset, 112px);
    left: 0;
    right: 0;
    height: calc(100svh - var(--header-offset, 112px));
    min-height: 560px;
    z-index: 0;
    overflow: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.hero-parallax-bg.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.hero-parallax-bg .carousel-inner,
.hero-parallax-bg .carousel-item {
    height: 100%;
}
.hero-parallax-bg .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.58) saturate(1.08);
    transform: scale(1.1);
    animation: heroKenBurns 16s ease-in-out infinite alternate;
}
.hero-parallax-foreground {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(8, 22, 20, 0.2), rgba(8, 22, 20, 0.45));
}
.hero-parallax-foreground h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
    margin-bottom: .45rem;
}
.hero-parallax-foreground .hero-location,
.hero-parallax-foreground p {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.4vw, 1.7rem);
    font-weight: 500;
    margin: 0;
    opacity: .96;
}
.hero-title-anim {
    animation: heroPop 1.1s cubic-bezier(.16, 1, .3, 1) both;
}
.hero-sub-anim {
    animation: heroPop 1.1s cubic-bezier(.16, 1, .3, 1) .2s both;
}
@keyframes heroKenBurns {
    from { transform: scale(1.1) translate(0, 0); }
    to { transform: scale(1.2) translate(-2%, -1.5%); }
}
@keyframes heroPop {
    0% { opacity: 0; transform: translateY(56px) scale(.94); filter: blur(6px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.hero-parallax-foreground .carousel-indicators {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.6rem;
    margin: 0;
    z-index: 2;
}
.hero-parallax-foreground .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 0;
    opacity: 1;
    transition: transform .3s ease, background .3s ease;
}
.hero-parallax-foreground .carousel-indicators .active {
    background: #fff;
    transform: scale(1.25);
}
.hero-parallax-foreground .carousel-control-prev,
.hero-parallax-foreground .carousel-control-next {
    z-index: 2;
    width: 8%;
}

/* Content after hero scrolls over the fixed image */
.hero-parallax ~ * {
    position: relative;
    z-index: 2;
    background: #fff;
}
.hero-parallax ~ .section-tint,
.hero-parallax ~ .why-choose-section {
    background: linear-gradient(180deg, rgba(244, 249, 248, 0.98) 0%, #fff 100%);
}
.hero-parallax ~ .site-footer {
    background: var(--footer-bg);
}

/* ---------- Featured plants (Green Plants style) ---------- */
.featured-plants-wrap {
    padding: 3.5rem 0 3.5rem;
    background: #fff;
}
.featured-plants-stage {
    padding: 0;
    background: transparent;
    min-height: 0;
}
.featured-plant-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    gap: 1.15rem;
}
.featured-plant-visual {
    width: min(100%, 240px);
    aspect-ratio: 3 / 4;
    display: grid;
    place-items: end center;
    filter: drop-shadow(0 18px 24px rgba(40, 55, 40, 0.14));
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), filter .55s ease;
}
.featured-plant-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}
.featured-plant-card:hover .featured-plant-visual {
    transform: translateY(-14px);
    filter: drop-shadow(0 28px 32px rgba(40, 55, 40, 0.2));
}
.featured-plant-card:hover .featured-plant-visual img {
    transform: scale(1.06);
}
.featured-plant-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: #6b736c;
    letter-spacing: .01em;
    transition: color .3s ease, transform .3s ease;
}
.featured-plant-card:hover .featured-plant-name {
    color: #14534f;
    transform: translateY(-2px);
}

/* Featured cards: stronger side-slide motion */
.featured-plants-stage .featured-plant-card.reveal.reveal-left {
    transform: translateX(-110px);
    opacity: 0;
}
.featured-plants-stage .featured-plant-card.reveal.reveal-right {
    transform: translateX(110px);
    opacity: 0;
}
.featured-plants-stage .featured-plant-card.reveal.reveal-scale {
    transform: translateY(50px) scale(.88);
    opacity: 0;
}
.featured-plants-stage .featured-plant-card.reveal.is-visible {
    transform: none;
    opacity: 1;
    filter: blur(0);
}

@media (max-width: 767.98px) {
    .featured-plants-wrap { padding: 2.5rem 0; }
    .featured-plant-visual { width: min(100%, 200px); }
    .featured-plants-stage .featured-plant-card.reveal.reveal-left,
    .featured-plants-stage .featured-plant-card.reveal.reveal-right {
        transform: translateY(48px);
    }
}

/* ---------- Sections ---------- */
.section-pad { padding: 5.25rem 0; background: #fff; }
.section-tint {
    background: linear-gradient(180deg, #f4f9f8 0%, #ffffff 100%);
    position: relative;
}
.section-intro {
    max-width: 38rem;
    margin-bottom: 2.4rem;
}
.section-intro .section-sub { margin-bottom: 0; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    color: var(--green-900);
    margin-bottom: .55rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.section-sub { color: var(--muted); max-width: 40rem; margin-bottom: 1.85rem; font-size: 1.05rem; }
.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .7rem;
    margin-bottom: .65rem;
    position: relative;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(20, 83, 79, 0.12);
}

/* ---------- Cards ---------- */
.product-card {
    background: #fff;
    border: 1px solid rgba(20, 83, 79, 0.1);
    border-radius: .5rem;
    overflow: hidden;
    height: 100%;
    transition:
        box-shadow .4s ease,
        border-color .4s ease,
        transform .45s cubic-bezier(.22, 1, .36, 1),
        border-radius .35s ease;
}
.product-card:hover {
    box-shadow: 0 18px 48px rgba(20, 83, 79, 0.16);
    border-color: rgba(20, 83, 79, 0.18);
    transform: translateY(-8px) scale(1.02);
}
.product-card .thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--green-100);
    position: relative;
    transition: aspect-ratio .35s ease;
}
.product-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}
.product-card:hover .thumb img { transform: scale(1.04); }
.product-card .body { padding: 1.1rem 1.15rem 1.25rem; }
.product-card .category-badge {
    font-size: .68rem;
    font-weight: 700;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: .07em;
}
.product-card .body h3 {
    font-family: var(--font-display);
    font-weight: 600;
}
.product-card .price { font-weight: 700; color: var(--green-800); font-size: 1.05rem; }
.product-card .price-old {
    text-decoration: line-through;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 500;
    margin-right: .35rem;
}

/* Instagram-style hover morph */
.product-card-ig .ig-post-header,
.product-card-ig .ig-post-actions,
.product-card-ig .ig-post-likes,
.product-card-ig .ig-caption-handle,
.product-card-ig .ig-heart-burst {
    display: none;
}
.product-card-ig:hover {
    border-radius: .85rem;
    border-color: #dbdbdb;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 22px 50px rgba(0, 0, 0, 0.14);
    transform: translateY(-10px) scale(1.03);
    z-index: 3;
}
.product-card-ig:hover .ig-post-header,
.product-card-ig:hover .ig-post-actions,
.product-card-ig:hover .ig-post-likes {
    display: flex;
}
.product-card-ig:hover .ig-caption-handle {
    display: inline;
    font-family: var(--font-body);
    font-weight: 700;
    margin-right: .3rem;
    color: #262626;
}
.product-card-ig:hover .ig-hide-on-hover { display: none; }
.product-card-ig:hover .thumb {
    aspect-ratio: 1 / 1;
}
.product-card-ig:hover .body h3,
.product-card-ig:hover .body h3 a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: .92rem;
    color: #262626;
}
.product-card-ig:hover .ig-caption-title {
    font-weight: 400;
}
.product-card-ig:hover .body {
    padding: .65rem .95rem 1rem;
}
.product-card-ig:hover .btn {
    border-radius: 999px;
    font-size: .72rem;
    padding: .25rem .7rem;
}

.ig-post-header {
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .7rem .85rem;
    border-bottom: 1px solid #efefef;
    animation: igSlideDown .35s ease both;
}
.ig-post-user {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-width: 0;
}
.ig-post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #111;
    border: 1.5px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
    flex-shrink: 0;
}
.ig-post-avatar-letter {
    display: grid;
    place-items: center;
    background:
        linear-gradient(#14534f, #14534f) padding-box,
        linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9rem;
}
.ig-post-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.2;
}
.ig-post-meta strong {
    font-size: .82rem;
    color: #262626;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ig-post-meta span {
    font-size: .7rem;
    color: #8e8e8e;
}
.ig-post-more {
    color: #262626;
    font-size: 1.05rem;
    line-height: 1;
}

.ig-post-actions {
    align-items: center;
    justify-content: space-between;
    padding: .65rem .9rem .15rem;
    animation: igFadeIn .35s ease .05s both;
}
.ig-post-actions-left {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
}
.ig-post-actions i {
    font-size: 1.35rem;
    color: #262626;
    line-height: 1;
    transition: transform .2s ease, color .2s ease;
}
.product-card-ig:hover .ig-post-actions-left .bi-heart {
    animation: igHeartPop .55s ease .15s both;
}
.ig-post-likes {
    font-size: .78rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: .2rem;
    display: none;
}

.ig-heart-burst {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3.4rem;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 2;
}
.product-card-ig:hover .ig-heart-burst {
    display: flex;
    animation: igBurst .7s ease .12s both;
}

@keyframes igSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes igFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes igHeartPop {
    0% { transform: scale(1); color: #262626; }
    40% { transform: scale(1.25); color: #ed4956; }
    100% { transform: scale(1); color: #ed4956; }
}
@keyframes igBurst {
    0% { opacity: 0; transform: scale(.4); }
    35% { opacity: 1; transform: scale(1.15); }
    100% { opacity: 0; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .product-card-ig:hover .ig-heart-burst,
    .product-card-ig:hover .ig-post-actions-left .bi-heart,
    .ig-post-header,
    .ig-post-actions {
        animation: none !important;
    }
    .product-card-ig:hover .ig-heart-burst { display: none; }
}

.size-price-table { background: #fff; }
.size-price-table th {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted);
}
.size-price-table td { vertical-align: middle; }
.size-price-table input[type="radio"] { accent-color: var(--btn); }

.category-tile {
    position: relative;
    border-radius: .5rem;
    overflow: hidden;
    min-height: 180px;
    display: block;
    box-shadow: 0 12px 32px rgba(20, 83, 79, 0.12);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease;
}
.category-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 44px rgba(20, 83, 79, 0.2);
}
.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    filter: brightness(.5) saturate(1.08);
    transition: transform .7s ease, filter .4s ease;
}
.category-tile:hover img {
    transform: scale(1.12);
    filter: brightness(.42) saturate(1.12);
}
.category-tile .label {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 1.6rem 1.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(transparent 30%, rgba(8, 22, 20, 0.78));
}
.category-tile .label strong {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.why-card, .testimonial-card, .blog-card {
    background: #fff;
    border-radius: .55rem;
    border: 1px solid rgba(20, 83, 79, 0.1);
    padding: 1.6rem 1.4rem;
    height: 100%;
    transition: box-shadow .4s ease, border-color .4s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 100%;
}
.why-card:hover, .blog-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(20, 83, 79, 0.22);
    transform: translateY(-10px);
}
.why-card h3,
.blog-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
}

/* Why Choose Us — bento cards */
.why-modern {
    background:
        radial-gradient(ellipse 70% 80% at 100% 0%, rgba(20, 83, 79, 0.08), transparent 55%),
        #f4f9f8;
}
.why-bento {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: repeat(3, minmax(140px, auto));
    gap: 1.1rem;
    align-items: stretch;
}
.why-bento-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(20, 83, 79, 0.1);
    border-radius: 1.25rem;
    padding: 1.6rem 1.5rem 1.5rem;
    box-shadow: 0 12px 32px rgba(20, 83, 79, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease, border-color .4s ease;
}
.why-bento-card.is-featured {
    grid-row: 1 / span 3;
    background: linear-gradient(165deg, #1a6b66 0%, #14534f 48%, #0c3330 100%);
    border: 0;
    color: #fff;
    padding: 2.4rem 2rem;
    justify-content: flex-end;
    box-shadow: 0 24px 50px rgba(20, 83, 79, 0.28);
}
.why-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(20, 83, 79, 0.14);
    border-color: rgba(20, 83, 79, 0.2);
}
.why-bento-card.is-featured:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 56px rgba(20, 83, 79, 0.34);
}
.why-bento-num {
    position: absolute;
    top: .35rem;
    right: .85rem;
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(20, 83, 79, 0.08);
    pointer-events: none;
}
.why-bento-card.is-featured .why-bento-num {
    font-size: 7rem;
    top: .4rem;
    right: .6rem;
    color: rgba(255, 255, 255, 0.1);
}
.why-bento-icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: .9rem;
    display: grid;
    place-items: center;
    background: var(--green-100);
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: .9rem;
    transition: transform .35s ease, background .35s ease, color .35s ease;
}
.why-bento-card.is-featured .why-bento-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 1.4rem;
}
.why-bento-card:hover .why-bento-icon {
    transform: rotate(-8deg) scale(1.08);
}
.why-bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: .4rem;
    letter-spacing: -0.02em;
}
.why-bento-card.is-featured h3 {
    color: #fff;
    font-size: clamp(1.7rem, 2.4vw, 2.15rem);
    max-width: 10ch;
    margin-bottom: .75rem;
}
.why-bento-card p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.55;
}
.why-bento-card.is-featured p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    max-width: 28ch;
}
@media (max-width: 991.98px) {
    .why-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .why-bento-card.is-featured {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 240px;
    }
}
@media (max-width: 575.98px) {
    .why-bento { grid-template-columns: 1fr; }
    .why-bento-card.is-featured .why-bento-num { font-size: 5rem; }
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: .85rem;
    background: var(--green-100);
    color: var(--green-800);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-choose-section.is-inview .why-bento-card.is-featured .why-bento-icon {
    animation: whyBounceIn .9s cubic-bezier(.34, 1.56, .64, 1) both;
}
@keyframes whyBounceIn {
    0% { opacity: 0; transform: scale(.35) translateY(30px); }
    70% { transform: scale(1.12) translateY(-4px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Modern About section ---------- */
.about-modern {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
    background: #f7faf8;
}
.about-modern-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 92% 20%, rgba(20, 83, 79, 0.09), transparent 55%),
        radial-gradient(ellipse 50% 60% at 8% 70%, rgba(174, 185, 154, 0.28), transparent 50%),
        linear-gradient(180deg, #f7faf8 0%, #ffffff 48%, #f7faf8 100%);
    z-index: 0;
}
.about-modern > .container {
    position: relative;
    z-index: 1;
}
.about-modern-media {
    position: relative;
    padding: 1.25rem 0 2rem 1.25rem;
}
.about-modern-frame {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-height: 560px;
    box-shadow: 0 28px 60px rgba(20, 83, 79, 0.18);
}
.about-modern-frame::before {
    content: "";
    position: absolute;
    inset: auto auto -12% -12%;
    width: 55%;
    height: 45%;
    background: #14534f;
    border-radius: 1.25rem;
    z-index: -1;
    transform: translate(-18%, 18%);
}
.about-modern-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(.22, 1, .36, 1);
}
.about-modern-media:hover .about-modern-frame img {
    transform: scale(1.06);
}
.about-modern-float {
    position: absolute;
    left: 1rem;
    bottom: .5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(20, 83, 79, 0.1);
    border-radius: 1rem;
    padding: .9rem 1.1rem;
    box-shadow: 0 16px 36px rgba(20, 83, 79, 0.14);
    display: grid;
    gap: .15rem;
    min-width: 180px;
    z-index: 2;
}
.about-modern-float-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--primary);
    font-weight: 700;
}
.about-modern-float strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--green-900);
    line-height: 1.2;
}
.about-modern-float span {
    font-size: .8rem;
    color: var(--muted);
}
.about-modern-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: .65rem;
    background: #14534f;
    color: #fff;
    border-radius: 999px;
    padding: .65rem .95rem .65rem .7rem;
    box-shadow: 0 14px 30px rgba(20, 83, 79, 0.28);
    z-index: 2;
}
.about-modern-badge i {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
}
.about-modern-badge strong {
    display: block;
    font-size: .82rem;
    line-height: 1.15;
}
.about-modern-badge span {
    display: block;
    font-size: .68rem;
    opacity: .8;
}

.about-modern-copy {
    padding-right: .5rem;
}
.about-modern-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem .8rem;
    border-radius: 999px;
    background: rgba(20, 83, 79, 0.08);
    color: var(--primary);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.about-modern-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    font-weight: 700;
    color: var(--green-900);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 14ch;
}
.about-modern-lead {
    font-size: 1.08rem;
    color: var(--text);
    margin-bottom: .75rem;
    max-width: 38ch;
}
.about-modern-text {
    color: var(--muted);
    margin-bottom: 1.25rem;
    max-width: 42ch;
}
.about-modern-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.25rem;
}
.about-modern-chips span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(20, 83, 79, 0.12);
    color: var(--green-800);
    font-size: .82rem;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(20, 83, 79, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.about-modern-chips span:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(20, 83, 79, 0.12);
}
.about-modern-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: .55rem;
}
.about-modern-list li {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 500;
    color: var(--text);
}
.about-modern-list i {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .85rem;
    flex-shrink: 0;
}
.about-modern-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(20, 83, 79, 0.1);
    backdrop-filter: blur(8px);
}
.about-modern-stat {
    text-align: center;
    padding: .35rem .25rem;
}
.about-modern-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: .25rem;
}
.about-modern-stat span {
    display: block;
    font-size: .72rem;
    color: var(--muted);
    line-height: 1.3;
}
.about-modern-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}
.about-modern-actions .btn {
    min-width: 8rem;
    border-radius: 999px;
    padding: .65rem 1.35rem;
}

@media (max-width: 991.98px) {
    .about-modern { padding: 3.75rem 0; }
    .about-modern-media { padding: 1rem 0 2.5rem; }
    .about-modern-copy { padding-right: 0; }
    .about-modern-frame {
        aspect-ratio: 4 / 3;
        max-height: 420px;
    }
    .about-modern-title { max-width: none; }
    .about-modern-badge { top: .5rem; right: .5rem; }
}
@media (max-width: 575.98px) {
    .about-modern-stats { grid-template-columns: 1fr; }
    .about-modern-float { left: .75rem; right: .75rem; min-width: 0; }
}

/* Legacy about helpers (inner about page still uses some) */
.about-home-lead {
    color: var(--text);
    font-size: 1.08rem;
    margin-bottom: .75rem;
}
.about-home-text {
    color: var(--muted);
    margin-bottom: .75rem;
}
.about-home-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    gap: .55rem;
}
.about-home-points li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: var(--text);
    font-size: .98rem;
    font-weight: 500;
}
.about-home-points i {
    color: var(--primary);
    margin-top: .15rem;
    flex-shrink: 0;
}
.about-home-stats { margin-bottom: 1rem; }
.about-home-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
}
.about-home-actions .btn { min-width: 7.5rem; }
.about-home-image {
    border-radius: .55rem;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.founder-photo-wrap {
    border-radius: .55rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--green-100);
}
.founder-photo {
    display: block;
    width: 100%;
    height: auto;
    min-height: 380px;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
}
.about-phone-list a { color: inherit; font-weight: 600; }
.about-phone-list a:hover { color: var(--green-700); }
@media (max-width: 575.98px) {
    .founder-photo { min-height: 280px; max-height: 360px; }
}

/* Testimonials marquee */
.testimonial-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.testimonial-marquee-track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    padding: .25rem 1rem 1rem;
    animation: testimonial-marquee-scroll 40s linear infinite;
}
.testimonial-marquee:hover .testimonial-marquee-track,
.testimonial-marquee:focus-within .testimonial-marquee-track {
    animation-play-state: paused;
}
.testimonial-marquee-card {
    flex: 0 0 min(340px, 82vw);
    width: min(340px, 82vw);
    max-width: 340px;
    height: auto;
    box-shadow: 0 12px 32px rgba(20, 83, 79, 0.1);
}
.testimonial-marquee-card .testimonial-video { margin-bottom: .85rem; }
.testimonial-card p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text);
}
@keyframes testimonial-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .testimonial-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        justify-content: center;
    }
    .testimonial-marquee-card.is-clone { display: none; }
}

.testimonial-card .stars { color: var(--gold); }
.testimonial-col {
    opacity: 0;
    animation: testimonialCardIn .75s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: var(--delay, 0s);
}
.testimonial-card-animate {
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.testimonial-card-animate:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 44px rgba(20, 83, 79, 0.16);
    border-color: rgba(20, 83, 79, 0.22);
}
@keyframes testimonialCardIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-type-tabs {
    display: inline-flex;
    gap: .35rem;
    padding: .3rem;
    background: var(--green-50);
    border: 1px solid rgba(20, 83, 79, 0.1);
    border-radius: .4rem;
}
.gallery-type-tab {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    border-radius: .3rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.gallery-type-tab:hover {
    color: var(--green-800);
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
}
.gallery-type-tab.active { background: var(--btn); color: #fff; }
.gallery-type-tab.active:hover { color: #fff; }

.gallery-grid .gallery-item { height: 100%; }
.gallery-grid .gallery-open {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
}
.gallery-grid img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform .55s ease;
}
.gallery-grid a:hover img,
.gallery-open:hover img { transform: none; }
.gallery-open {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 200px;
    min-width: 0;
    padding: 0;
    border: 0;
    background: #e8eee9;
    cursor: zoom-in;
    overflow: hidden;
    border-radius: .4rem;
    perspective: 1000px;
    transform-style: preserve-3d;
}
.gallery-open > img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transform-origin: center center;
    backface-visibility: hidden;
    transition: none;
}
.gallery-open:hover > img,
.gallery-open:focus-visible > img {
    animation: galleryFlip360 .85s cubic-bezier(.22, 1, .36, 1);
}
@keyframes galleryFlip360 {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}
.gallery-open-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    background: rgba(14, 28, 18, 0.42);
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
    z-index: 3;
    transform: scale(.9);
}
.gallery-open:hover .gallery-open-icon,
.gallery-open:focus-visible .gallery-open-icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
    width: 100%;
    max-width: 100%;
}
.gallery-mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: .4rem;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    perspective: 1000px;
}
.gallery-mosaic-item .gallery-open {
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
    border-radius: .4rem;
}
.gallery-mosaic-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-width: 100%;
    object-fit: cover;
    transform-origin: center center;
}
.gallery-mosaic-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: .85rem 1rem;
    color: #fff;
    font-size: .86rem;
    font-weight: 600;
    background: linear-gradient(transparent, rgba(10, 20, 14, 0.78));
    pointer-events: none;
    margin: 0;
}
@media (max-width: 991.98px) {
    .gallery-mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
    .gallery-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .5rem;
    }
}

.gallery-lightbox-content {
    background: #0b1210;
    border: 0;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}
.gallery-lightbox-close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    z-index: 5;
}
.gallery-lightbox-stage {
    display: grid;
    place-items: center;
    min-height: min(70vh, 640px);
    padding: 2.5rem 3.5rem 1rem;
}
.gallery-lightbox-stage img,
.gallery-lightbox-stage video,
.gallery-lightbox-stage iframe {
    max-width: 100%;
    max-height: min(68vh, 600px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: .5rem;
    border: 0;
    background: #000;
}
.gallery-lightbox-stage iframe {
    width: min(100%, 960px);
    height: min(68vh, 540px);
}
.gallery-lightbox-stage video {
    width: min(100%, 960px);
    position: relative;
    z-index: 2;
    pointer-events: auto;
}
.gallery-lightbox-caption {
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    padding: 0 1.5rem 1.25rem;
    font-size: .95rem;
}
.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
}
.gallery-lightbox-nav:hover { background: rgba(255, 255, 255, 0.28); }
.gallery-lightbox-prev { left: .75rem; }
.gallery-lightbox-next { right: .75rem; }

.social-links {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: .55rem;
}
.social-links a {
    display: inline-grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.social-links-footer a,
.social-links-about a {
    color: inherit;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.05rem;
}
.social-links-about a {
    color: var(--green-800);
    background: rgba(20, 83, 79, 0.1);
    font-size: 1.2rem;
    width: 2.5rem;
    height: 2.5rem;
}
.social-links-footer a:hover {
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
    transform: translateY(-3px);
}
.social-links-about a:hover {
    background: var(--green-700);
    color: #fff;
    transform: translateY(-3px);
}

.page-hero {
    --page-hero-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&h=500&fit=crop');
    background:
        linear-gradient(180deg, rgba(8, 22, 20, 0.45), rgba(8, 22, 20, 0.4)),
        var(--page-hero-image) center/cover;
    color: #fff;
    padding: 7.5rem 0 5.75rem;
    text-align: center;
    min-height: 320px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    transform: scale(1.08);
    animation: heroKenBurns 18s ease-in-out infinite alternate;
    z-index: 0;
    opacity: 0;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    animation: heroPop 1s cubic-bezier(.16, 1, .3, 1) both;
}
.page-hero p {
    color: rgba(255,255,255,.94);
    font-family: var(--font-display);
    font-size: 1.2rem;
    opacity: 1;
    margin-top: .4rem;
    animation: heroPop 1s cubic-bezier(.16, 1, .3, 1) .15s both;
}

.site-footer {
    background: var(--footer-bg);
    color: #fff;
    padding-top: 4.25rem;
    border-top: none;
    margin-top: 0 !important;
}
.site-footer a { color: #fff; }
.site-footer a:hover:not(.btn) { color: #fff; opacity: .92; }
.site-footer h5 {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
}
.site-footer p,
.site-footer li { color: rgba(255, 255, 255, 0.92); font-size: .95rem; }
.site-footer .social-links {
    flex-wrap: nowrap;
    margin-top: .25rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 2.5rem;
    padding: 1.2rem 0;
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.75);
}
.footer-bottom a { color: #fff; }
.site-footer .btn-outline-primary {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.7);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.16);
    --bs-btn-hover-border-color: #fff;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgba(255, 255, 255, 0.22);
    --bs-btn-active-border-color: #fff;
}
.site-footer .btn-outline-primary:hover,
.site-footer .btn-outline-primary:focus-visible {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.16);
    border-color: #fff;
}

.site-logo {
    height: 72px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}
.footer-logo {
    height: 86px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    margin-bottom: .85rem;
    display: block;
}
.login-logo {
    height: 96px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}

.testimonial-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 200px;
    border-radius: .75rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #111;
    flex-shrink: 0;
}
.testimonial-video-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    background: #111;
    pointer-events: none;
}
.testimonial-video video.testimonial-video-preview[controls] {
    pointer-events: auto;
    object-fit: contain;
}
.testimonial-video-fallback {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 2rem;
}
.testimonial-video-open {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    margin: 0;
    padding: .75rem;
    border: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
    color: #fff;
    cursor: pointer;
    transition: background .2s ease;
}
.testimonial-video-open:hover,
.testimonial-video-open:focus-visible {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
    outline: none;
}
.testimonial-video-play {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--green-800);
    font-size: 1.35rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
.testimonial-video-label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
#testimonialVideoModal .modal-content {
    background: #000;
    border: 0;
    border-radius: 1rem;
    overflow: hidden;
}
#testimonialVideoModal .btn-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 5;
    filter: invert(1) grayscale(1);
    opacity: .85;
}
#testimonialVideoModal .testimonial-video-modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
#testimonialVideoModal .testimonial-video-modal-frame iframe,
#testimonialVideoModal .testimonial-video-modal-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
    background: #000;
}

.filter-panel {
    background: #fff;
    border-radius: .45rem;
    border: 1px solid rgba(20, 83, 79, 0.12);
    padding: 1.35rem;
    box-shadow: 0 10px 28px rgba(20, 83, 79, 0.07);
}
.filter-panel .form-label {
    font-weight: 600;
    color: var(--text);
    font-size: .88rem;
}
.filter-panel .form-select,
.filter-panel .form-control {
    border-color: rgba(20, 83, 79, 0.18);
    border-radius: .35rem;
}
.filter-panel .form-select:focus,
.filter-panel .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(20, 83, 79, 0.15);
}

.form-control,
.form-select {
    border-color: rgba(20, 83, 79, 0.16);
    border-radius: .35rem;
    padding: .65rem .85rem;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(20, 83, 79, 0.14);
}
.form-label {
    font-weight: 600;
    font-size: .88rem;
    color: var(--text);
}
.spec-table th {
    width: 40%;
    color: var(--muted);
    font-weight: 600;
    background: var(--green-50);
}

/* Admin */
body.admin-body {
    padding-top: 0;
    background: #e8eeec;
    overflow-x: auto;
}
.admin-shell { min-height: 100vh; background: #e8eeec; }
.admin-sidebar {
    width: 268px;
    flex-shrink: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 42%),
        linear-gradient(180deg, #14534f 0%, #0c3330 100%);
    color: #fff;
    min-height: 100vh;
    position: sticky;
    top: 0;
}
.admin-sidebar .brand {
    display: flex;
    align-items: center;
    gap: .85rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    padding: 1.35rem 1.15rem 1.15rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    line-height: 1.25;
}
.admin-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
}
.admin-brand-mark:has(img) {
    width: 78px;
    height: 52px;
    border-radius: 40px;
    background: #000;
    border: 1px solid rgba(255,255,255,.14);
}
.admin-brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.admin-brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.admin-brand-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.admin-brand-sub {
    font-family: var(--font-body);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.62);
    margin-top: .15rem;
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,.78);
    padding: .62rem .9rem;
    margin: 0 .7rem;
    border-radius: 999px;
    display: flex;
    gap: .65rem;
    align-items: center;
    font-size: .95rem;
}
.admin-sidebar .nav-link i {
    width: 1.1rem;
    text-align: center;
    opacity: .9;
}
.admin-sidebar .nav-link:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}
.admin-sidebar .nav-link.active {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
}
.admin-sidebar .nav-link.active i { opacity: 1; }
.admin-user {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: auto .85rem 1rem;
    padding: .7rem .8rem;
    border-radius: .85rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
}
.admin-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}
.admin-user-name {
    font-size: .88rem;
    opacity: .9;
}
.admin-content {
    flex: 1;
    min-width: 0;
    padding: 1.75rem 1.6rem 2.5rem;
}
.admin-content > .d-flex:first-child h1,
.admin-content > .d-flex:first-child .h3 {
    font-family: var(--font-display);
}
.stat-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.1rem 1.15rem;
    border: 1px solid rgba(20, 83, 79, .08);
    box-shadow: 0 10px 28px rgba(20, 83, 79, .05);
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    height: 100%;
    min-height: 118px;
}
a.stat-card-link {
    color: inherit;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
a.stat-card-link:hover {
    color: inherit;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(20, 83, 79, .1);
}
.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--green-100);
    color: var(--primary);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.stat-label {
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}
.stat-card .value {
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1.15;
    color: var(--green-800);
}
.stat-hint {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .15rem;
}
.admin-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(20, 83, 79, 0.1);
    padding: 1.5rem;
    box-shadow: 0 10px 28px rgba(20, 83, 79, 0.06);
}
.dash-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.6rem 1.75rem;
    border-radius: 1.15rem;
    color: #fff;
    background:
        radial-gradient(circle at 88% 18%, rgba(201,162,39,.28), transparent 28%),
        linear-gradient(135deg, #14534f 0%, #0c3330 100%);
    box-shadow: 0 18px 40px rgba(20, 83, 79, .22);
}
.dash-kicker {
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .72;
    margin-bottom: .35rem;
}
.dash-hero h1 {
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    margin-bottom: .35rem;
    color: #fff;
}
.dash-hero-copy {
    margin: 0;
    opacity: .82;
    max-width: 36rem;
}
.dash-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.dash-hero-actions .btn-outline-primary {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255,255,255,.4);
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-color: var(--primary);
    --bs-btn-hover-border-color: #fff;
}
.dash-quick {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}
.dash-quick-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .95rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(20, 83, 79, .1);
    color: var(--text);
    font-size: .9rem;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(20, 83, 79, .05);
}
.dash-quick-link:hover {
    color: var(--primary);
    border-color: var(--primary);
}
.dash-empty {
    text-align: center;
    padding: 2.2rem 1rem 1.4rem;
}
.dash-empty-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto .85rem;
    background: var(--green-100);
    color: var(--primary);
    font-size: 1.4rem;
}
.dash-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dash-list li + li {
    border-top: 1px solid rgba(20, 83, 79, .08);
}
.dash-list-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .8rem 0;
    color: inherit;
}
.dash-list-row:hover { color: inherit; }
.dash-list-row:hover strong { color: var(--primary); }
.dash-avatar,
.dash-thumb {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.dash-avatar {
    display: grid;
    place-items: center;
    background: var(--green-100);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 600;
}
.dash-thumb-fallback {
    display: grid;
    place-items: center;
    background: var(--green-50);
    color: var(--primary);
}
.dash-list-copy {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.dash-list-copy strong {
    font-size: .95rem;
}
.dash-list-copy span {
    font-size: .8rem;
    color: var(--muted);
}
.dash-list-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .25rem;
    flex-shrink: 0;
}
.dash-price {
    font-weight: 600;
    font-size: .88rem;
}
.status-pill {
    display: inline-flex;
    align-items: center;
    padding: .15rem .55rem;
    border-radius: 999px;
    background: var(--green-100);
    color: var(--primary);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.status-pill-muted {
    background: #eef0ef;
    color: #667573;
}
.status-pill-gold {
    background: #f7edd0;
    color: #8a6a12;
}

/* =========================================================
   SCROLL REVEALS — large, obvious motion
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(72px);
    transition:
        opacity 1s cubic-bezier(.16, 1, .3, 1),
        transform 1s cubic-bezier(.16, 1, .3, 1),
        filter 1s cubic-bezier(.16, 1, .3, 1);
    transition-delay: var(--delay, 0s);
    filter: blur(4px);
    will-change: opacity, transform, filter;
}
.reveal.reveal-left {
    transform: translateX(-80px);
}
.reveal.reveal-right {
    transform: translateX(80px);
}
.reveal.reveal-scale {
    transform: scale(.82) translateY(40px);
}
.reveal.reveal-why {
    transform: translateY(90px) scale(.85);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.fade-up { animation: fadeUp .85s ease both; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating contact */
.floating-social,
.floating-contact {
    position: fixed;
    right: 14px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: transparent;
    padding: 0;
    border: 0;
    box-shadow: none;
}
.floating-social {
    left: auto;
    top: auto;
    bottom: 142px;
    transform: none;
}
.floating-contact { bottom: 18px; }
.float-btn {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(16, 28, 20, 0.2);
    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease,
        background .25s ease,
        filter .25s ease;
    animation: floatBob 3s ease-in-out infinite;
}
.floating-contact .float-btn:nth-child(2) { animation-delay: .4s; }
.floating-social .float-btn:nth-child(2) { animation-delay: .25s; }
.floating-social .float-btn:nth-child(3) { animation-delay: .5s; }
.floating-social .float-btn:nth-child(4) { animation-delay: .75s; }
@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
.float-btn:hover,
.float-btn:focus-visible {
    transform: translateY(-8px) scale(1.1);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(16, 28, 20, 0.3);
    animation: none;
}
.float-btn i,
.floating-contact .float-btn i {
    font-size: 1.25rem;
    line-height: 1;
}
.float-call { background: var(--btn); }
.float-call:hover { background: var(--btn-hover); }
.float-whatsapp { background: #25d366; }
.float-whatsapp:hover { background: #1ebe57; }
.float-instagram { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.float-instagram:hover { filter: brightness(1.08); }
.float-facebook { background: #1877f2; }
.float-facebook:hover { background: #0f65d8; }
.float-twitter { background: #0f1419; }
.float-twitter:hover { background: #000; }
.float-youtube { background: #ff0000; }
.float-youtube:hover { background: #e60000; }

.text-success { color: var(--primary) !important; }
.bg-success { background-color: var(--primary) !important; }
.border-success { border-color: var(--primary) !important; }
.table-success { --bs-table-bg: var(--primary-soft); --bs-table-color: var(--text); }

@media (max-width: 575px) {
    .floating-social {
        right: 10px;
        bottom: 128px;
        gap: 8px;
    }
    .floating-contact { right: 10px; bottom: 12px; gap: 8px; }
    .float-btn,
    .floating-contact .float-btn {
        width: 44px;
        height: 44px;
    }
    .float-btn i,
    .floating-contact .float-btn i { font-size: 1.15rem; }
}

@media (max-width: 991px) {
    .admin-sidebar { width: 100%; min-height: auto; position: relative; }
    .admin-user { margin-top: 1rem; }
    .dash-hero { padding: 1.25rem 1.2rem; }
    .brand-mark.has-logo,
    .brand-mark.has-logo .brand-mark-img {
        height: 56px;
    }
    .brand-mark.has-logo .brand-mark-img { max-width: 170px; }
    :root { --header-offset: 118px; }
    .hero-parallax,
    .hero-parallax-bg {
        height: calc(100svh - var(--header-offset, 112px));
        min-height: 480px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.reveal-left,
    .reveal.reveal-right,
    .reveal.reveal-scale,
    .reveal.reveal-why {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
    .hero-parallax-bg .carousel-item img,
    .hero-title-anim,
    .hero-sub-anim,
    .page-hero h1,
    .page-hero p,
    .why-choose-section.is-inview .why-bento-card.is-featured .why-bento-icon,
    .announce-bar-inner,
    .float-btn,
    .about-home-points i,
    .gallery-open:hover > img,
    .gallery-open:focus-visible > img {
        animation: none !important;
    }
}
