/* =========================
   ECONEST BAMBOO PAGE
========================= */

:root {
    --green-dark: #064b36;
    --green: #176b4f;
    --green-soft: #eaf4ee;
    --lime: #b9e27b;
    --cream: #f7f5ef;
    --text: #17231e;
    --muted: #66736d;
    --white: #ffffff;
    --border: rgba(6, 75, 54, 0.12);
    --shadow: 0 18px 50px rgba(17, 42, 32, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    background: var(--white);
    line-height: 1.7;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
}


/* =========================
   OLD SITE HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    min-height: 92px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
}

.nav-container {
    padding: 0 4.5%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green-dark);
}

.brand:hover {
    color: var(--green-dark);
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 50% 12%;
    background: var(--green);
    color: var(--lime);
    font-size: 23px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-size: 25px;
    letter-spacing: -0.8px;
}

.brand-text span {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.3px;
}

.main-nav {
    gap: 10px;
}

.main-nav .nav-link {
    color: #17201c;
    font-size: 16px;
    font-weight: 500;
    padding: 31px 12px 27px !important;
    position: relative;
}

.main-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 17px;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--green);
}

.main-nav .nav-link:hover::before,
.main-nav .nav-link.active::before {
    transform: scaleX(1);
}

.main-nav .dropdown-toggle::after {
    border-top-color: var(--green);
    margin-left: 7px;
}

.main-nav .dropdown-menu {
    min-width: 290px;
    padding: 8px 0;
    margin-top: 4px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,.13);
}

.main-nav .dropdown-item {
    padding: 12px 18px;
    color: var(--green-dark);
    font-weight: 500;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
    background: var(--green-soft);
    color: var(--green);
}

.main-nav .dropdown-item.active-service {
    background: var(--green-soft);
    color: var(--green);
    font-weight: 700;
}

.nav-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-left: 24px;
}

.action-btn {
    min-width: 190px;
    min-height: 65px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 8px;
    color: white;
}

.action-btn:hover {
    color: white;
    transform: translateY(-1px);
}

.call-btn {
    background: var(--green-dark);
}

.whatsapp-btn {
    background: #3e875f;
}

.action-btn > i {
    font-size: 28px;
}

.action-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.action-btn strong {
    font-size: 18px;
}

.action-btn small {
    font-size: 12px;
    margin-top: 4px;
}


/* =========================
   HERO
========================= */

.bamboo-hero {
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        url("assets/bamboo-villa-night.jpg")
        center 58% / cover no-repeat;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 22, 16, .88) 0%,
            rgba(4, 22, 16, .54) 45%,
            rgba(4, 22, 16, .20) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 4%;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--lime);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.eyebrow span {
    width: 45px;
    height: 1px;
    background: var(--lime);
}

.hero-copy h1 {
    margin: 18px 0 20px;

    font-family: "Playfair Display", serif;

    font-size: clamp(58px, 7vw, 100px);

    line-height: .98;

    font-weight: 600;
}

.hero-copy h1 em {
    color: var(--lime);
    font-style: normal;
}

.hero-copy p {
    max-width: 650px;
    font-size: 18px;
    color: rgba(255,255,255,.88);
}

.hero-buttons,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.btn-primary-custom,
.btn-outline-custom {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    padding: 13px 22px;

    border-radius: 6px;

    font-weight: 700;

    transition: .25s ease;
}

.btn-primary-custom {
    color: #102018;
    background: var(--lime);
}

.btn-primary-custom:hover {
    color: #102018;
    transform: translateY(-2px);
    background: #c9ed96;
}

.btn-outline-custom {
    color: white;
    border: 1px solid rgba(255,255,255,.55);
}

.btn-outline-custom:hover {
    color: var(--green-dark);
    background: white;
}


/* =========================
   GENERIC SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.intro-section {
    background: var(--white);
}

.section-image {
    position: relative;
}

.image-stack {
    padding: 0 35px 35px 0;
}

.image-stack img {
    height: 590px;
    object-fit: cover;
    border-radius: 8px;
}

.image-stack::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 70%;
    height: 70%;

    border: 2px solid var(--lime);

    border-radius: 8px;

    z-index: -1;
}

.image-badge {
    position: absolute;

    left: -20px;
    bottom: 20px;

    padding: 17px 22px;

    background: var(--green-dark);
    color: white;

    border-radius: 7px;

    box-shadow: var(--shadow);
}

.image-badge strong,
.image-badge span {
    display: block;
}

.image-badge strong {
    font-size: 22px;
}

.image-badge span {
    color: var(--lime);
    font-size: 13px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 45px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.intro-section h2,
.video-section h2 {
    margin: 13px 0 17px;

    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.12;
}

.section-heading h2 span,
.intro-section h2 span,
.video-section h2 span {
    color: var(--green);
}

.section-heading p,
.intro-section p,
.video-section p {
    color: var(--muted);
}

.lead-copy {
    font-size: 18px;
}

.text-link {
    display: inline-flex;
    gap: 10px;

    margin-top: 15px;

    color: var(--green);

    font-weight: 700;
}

.text-link:hover {
    color: var(--green-dark);
}


/* =========================
   APPLICATIONS
========================= */

.applications-section,
.why-section {
    background: var(--cream);
}

.feature-card,
.why-card {
    height: 100%;

    padding: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 9px;

    transition: .3s ease;
}

.feature-card:hover,
.why-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.feature-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-soft);

    color: var(--green);

    font-size: 20px;

    margin-bottom: 22px;
}

.feature-card h3,
.why-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.feature-card p,
.why-card p {
    color: var(--muted);
    margin: 0;
}


/* =========================
   PROJECTS
========================= */

.projects-section {
    background: white;
}

.project-card {
    height: 100%;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: white;

    box-shadow:
        0 8px 30px rgba(0,0,0,.04);
}

.project-image {
    overflow: hidden;
    height: 290px;
}

.project-card-large .project-image {
    height: 390px;
}

.project-image img {
    height: 100%;

    object-fit: cover;

    transition:
        transform .55s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.045);
}

.project-content {
    padding: 25px;
}

.project-content > span {
    color: var(--green);

    font-size: 11px;

    letter-spacing: 1.8px;

    font-weight: 700;
}

.project-content h3 {
    margin: 7px 0 9px;

    font-family: "Playfair Display", serif;

    font-size: 29px;
}

.project-content p {
    color: var(--muted);
    margin-bottom: 15px;
}

.project-link {
    padding: 0;

    border: 0;

    background: transparent;

    color: var(--green);

    font-weight: 700;

    cursor: pointer;
}

.project-link i {
    margin-left: 7px;

    transition: .25s ease;
}

.project-link:hover i {
    transform: translateX(4px);
}


/* =========================
   VIDEO
========================= */

.video-section {
    background: #102a20;
    color: white;
}

.video-section .section-kicker {
    color: var(--lime);
}

.video-section h2 {
    color: white;
}

.video-section h2 span {
    color: var(--lime);
}

.video-section p {
    color: rgba(255,255,255,.72);
}

.video-points {
    display: grid;

    gap: 10px;

    margin-top: 25px;
}

.video-points div {
    display: flex;

    gap: 10px;

    align-items: center;
}

.video-points i {
    color: var(--lime);
}

.video-frame {
    overflow: hidden;

    border-radius: 10px;

    background: #000;

    box-shadow:
        0 20px 60px rgba(0,0,0,.3);
}

.video-frame video {
    width: 100%;

    display: block;

    max-height: 620px;
}


/* =========================
   WHY
========================= */

.why-card {
    background: rgba(255,255,255,.72);
}

.why-card > i {
    color: var(--green);

    font-size: 25px;

    margin-bottom: 22px;
}


/* =========================
   OLD GALLERY RULES
========================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        1.2fr .8fr .8fr;

    grid-auto-rows: 230px;

    gap: 14px;
}

.gallery-item {
    border: 0;

    padding: 0;

    overflow: hidden;

    border-radius: 7px;

    cursor: zoom-in;

    background: #ddd;
}

.gallery-item img {
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}


/* =========================
   OLD PROCESS RULES
========================= */

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;
}

.process-step {
    min-height: 240px;

    padding: 25px;

    background: white;

    border-radius: 8px;

    border: 1px solid var(--border);
}

.process-step > span {
    display: block;

    margin-bottom: 25px;

    color: var(--green);

    font-family:
        "Playfair Display",
        serif;

    font-size: 38px;
}

.process-step h3 {
    font-size: 19px;
}

.process-step p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================
   OLD CTA RULES
========================= */

.cta-section {
    padding: 35px 0 100px;

    background: var(--cream);
}

.cta-box {
    padding: 60px;

    border-radius: 12px;

    background: var(--green-dark);

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}

.cta-box .section-kicker {
    color: var(--lime);
}

.cta-box h2 {
    margin: 10px 0;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(35px, 4vw, 52px);
}

.cta-box p {
    color:
        rgba(255,255,255,.75);

    margin: 0;
}

.cta-actions {
    margin-top: 0;

    flex-shrink: 0;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 75px 0 20px;

    background: #071e16;

    color: white;
}

.footer-main {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.3fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 360px;

    color:
        rgba(255,255,255,.62);

    margin-top: 20px;
}

.footer-logo {
    color: white;
}

.footer-logo:hover {
    color: white;
}

.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 10px;

    font-size: 16px;

    color: var(--lime);
}

.footer-links a,
.footer-contact a {
    color:
        rgba(255,255,255,.7);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact i {
    width: 22px;

    color: var(--lime);
}

.footer-bottom {
    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.1);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255,255,255,.45);

    font-size: 12px;
}


/* =========================
   MODALS
========================= */

.project-modal .modal-content {
    position: relative;

    overflow: hidden;

    border: 0;

    border-radius: 12px;
}

.project-modal
.modal-content
> .row
> .col-md-6:first-child
img {

    height: 100%;

    min-height: 440px;

    object-fit: cover;
}

.modal-copy {
    padding: 45px;
}

.modal-copy > span {
    color: var(--green);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.modal-copy h2 {
    margin: 10px 0 15px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 40px;
}

.modal-copy p,
.modal-copy li {
    color: var(--muted);
}

.modal-copy ul {
    padding-left: 20px;
}

.modal-copy .btn-primary-custom {
    margin-top: 15px;
}

.modal-close,
.lightbox-close {
    position: absolute;

    top: 15px;

    right: 15px;

    z-index: 5;

    width: 40px;

    height: 40px;

    display: grid;

    place-items: center;

    border: 0;

    border-radius: 50%;

    background: white;

    color: var(--green-dark);

    box-shadow:
        0 5px 18px rgba(0,0,0,.15);

    cursor: pointer;
}


/* =========================
   LIGHTBOX
========================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 3000;

    padding: 50px;

    display: none;

    align-items: center;

    justify-content: center;

    background:
        rgba(0,0,0,.92);
}

.gallery-lightbox.show {
    display: flex;
}

.gallery-lightbox img {
    width: auto;

    max-width: 94vw;

    max-height: 90vh;

    object-fit: contain;
}

.lightbox-close {
    top: 25px;

    right: 25px;
}


/* =========================
   ORIGINAL RESPONSIVE
========================= */

@media (max-width: 1399px) {

    .main-nav {
        gap: 0;
    }

    .main-nav .nav-link {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .main-nav .nav-link::before {
        left: 9px;
        right: 9px;
    }

    .nav-actions {
        gap: 8px;
        margin-left: 12px;
    }

    .action-btn {
        min-width: 165px;
    }

}


@media (max-width: 1199px) {

    .nav-actions {
        margin: 15px 0 20px;

        flex-wrap: wrap;
    }

    .main-nav .nav-link {
        padding: 13px 5px !important;
    }

    .main-nav .nav-link::before {
        display: none;
    }

    .process-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 991px) {

    .navbar {
        min-height: 78px;
    }

    .nav-container {
        padding: 0 5%;
    }

    .navbar-toggler {
        border: 0;

        box-shadow: none !important;
    }

    .main-nav .nav-link {
        padding: 11px 5px !important;
    }

    .main-nav .dropdown-menu {
        box-shadow: none;

        border-radius: 6px;

        background:
            var(--green-soft);
    }

    .nav-actions {
        align-items: stretch;
    }

    .action-btn {
        flex: 1;
    }

    .bamboo-hero {
        min-height: 74vh;
    }

    .hero-content {
        padding: 80px 6%;
    }

    .section {
        padding: 75px 0;
    }

    .cta-box {
        padding: 45px;

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 21px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .hero-copy h1 {
        font-size:
            clamp(49px, 15vw, 72px);
    }

    .hero-copy p {
        font-size: 16px;
    }

    .hero-buttons
    .btn-primary-custom,
    .hero-buttons
    .btn-outline-custom {

        width: 100%;
    }

    .image-stack {
        padding: 0 15px 15px 0;
    }

    .image-stack img {
        height: 450px;
    }

    .image-badge {
        left: 0;
    }

    .gallery-grid {
        grid-template-columns:
            1fr 1fr;

        grid-auto-rows:
            190px;
    }

    .gallery-tall {
        grid-row: span 2;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: auto;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions a {
        flex: 1;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .project-modal
    .modal-content
    > .row
    > .col-md-6:first-child
    img {

        min-height: 280px;

        max-height: 400px;
    }

    .modal-copy {
        padding: 30px 25px 35px;
    }

    .modal-copy h2 {
        font-size: 33px;
    }

    .gallery-lightbox {
        padding: 20px;
    }

}


@media (max-width: 480px) {

    .action-btn {
        min-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-tall,
    .gallery-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item {
        height: 250px;
    }

}


/* =========================================================
   FINAL BAMBOO PAGE FIXES
   ========================================================= */


/* ---------------------------------------------------------
   GLOBAL OVERFLOW
--------------------------------------------------------- */

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


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.bamboo-page-header {
    position: sticky;

    top: 0;

    z-index: 1050;

    width: 100%;

    background:
        rgba(255, 255, 255, 0.98);

    border-bottom:
        1px solid rgba(9, 72, 52, 0.12);

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(12px);
}


.bamboo-nav-container {
    width: 100%;

    max-width: 1440px;

    min-height: 68px;

    margin: 0 auto;

    padding: 0 24px;

    display: flex;

    align-items: center;

    gap: 20px;
}


/* ---------------------------------------------------------
   HEADER LOGO
--------------------------------------------------------- */

.bamboo-brand {
    display: inline-flex;

    align-items: center;

    flex: 0 0 170px;

    width: 170px;

    max-width: 170px;

    min-width: 0;

    overflow: hidden;

    color: #064c37;

    text-decoration: none;
}


/*
   IMPORTANT:
   This overrides the global img { width:100%; }
*/

.bamboo-brand img {
    display: block;

    width: 170px !important;

    max-width: 100% !important;

    height: auto !important;

    object-fit: contain;
}


/* ---------------------------------------------------------
   HEADER TITLE
--------------------------------------------------------- */

.bamboo-page-title {
    display: flex;

    flex-direction: column;

    flex: 0 0 auto;

    min-width: 145px;

    padding-left: 16px;

    border-left:
        1px solid rgba(9, 72, 52, .18);

    color: #12382c;

    line-height: 1.1;

    white-space: nowrap;
}

.bamboo-page-title span {
    font-size: 13px;

    font-weight: 700;
}

.bamboo-page-title small {
    margin-top: 3px;

    color: #6d7d76;

    font-size: 10px;
}


/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */

.bamboo-page-nav {
    min-width: 0;

    margin-left: auto;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 2px;
}

.bamboo-page-nav a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding: 8px 10px;

    border-radius: 8px;

    color: #263a33;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color .25s ease,
        background .25s ease;
}

.bamboo-page-nav a:hover,
.bamboo-page-nav a.active {
    color: #07583e;

    background:
        rgba(7, 88, 62, .07);
}

.bamboo-page-nav .bamboo-nav-cta {
    margin-left: 6px;

    padding: 9px 14px;

    background: #07583e;

    color: #fff;
}

.bamboo-page-nav .bamboo-nav-cta:hover {
    background: #043e2d;

    color: #fff;
}


/* ---------------------------------------------------------
   MOBILE TOGGLE
--------------------------------------------------------- */

.bamboo-nav-toggle {
    display: none;

    flex: 0 0 auto;

    width: 44px;

    height: 42px;

    margin-left: auto;

    padding: 8px 9px;

    border:
        1px solid rgba(7, 88, 62, .2);

    border-radius: 8px;

    background: #fff;

    cursor: pointer;
}

.bamboo-nav-toggle span {
    display: block;

    height: 2px;

    margin: 5px 0;

    background: #07583e;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* =========================================================
   GALLERY FIX
========================================================= */

/*
   HTML uses:
   .bamboo-gallery-grid

   The old CSS was styling:
   .gallery-grid

   This is the actual fix.
*/

.bamboo-gallery-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;
}


.bamboo-gallery-grid .gallery-item {
    width: 100%;

    min-width: 0;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    border-radius: 10px;

    background: #e7ece9;

    position: relative;

    cursor: zoom-in;

    box-shadow:
        0 6px 24px rgba(17, 42, 32, 0.06);
}


.bamboo-gallery-grid .gallery-item img {
    display: block;

    width: 100%;

    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position: center;

    transition:
        transform .5s ease;
}


.bamboo-gallery-grid
.gallery-item:hover
img {

    transform:
        scale(1.045);
}


/* Gallery tablet */

@media (max-width: 1100px) {

    .bamboo-gallery-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 14px;
    }

}


/* Gallery mobile */

@media (max-width: 767px) {

    .bamboo-gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .bamboo-gallery-grid
    .gallery-item {

        aspect-ratio: 1 / 1;

        border-radius: 8px;
    }

}


/* Gallery very small */

@media (max-width: 480px) {

    .bamboo-gallery-grid {
        grid-template-columns: 1fr;
    }

    .bamboo-gallery-grid
    .gallery-item {

        aspect-ratio: 4 / 3;
    }

}


/* =========================================================
   PROCESS FIX
========================================================= */

/*
   HTML uses .process-card.

   The old CSS was styling .process-step.

   Bootstrap's row/columns are retained.
*/

.process-grid {

    display: flex !important;

    flex-wrap: wrap;

    align-items: stretch;

    margin-left: -12px;

    margin-right: -12px;

    grid-template-columns: none !important;
}


.process-grid > [class*="col-"] {

    display: flex;

    flex-direction: column;

    padding-left: 12px;

    padding-right: 12px;

    margin-bottom: 24px;
}


.process-card {

    position: relative;

    width: 100%;

    height: 100%;

    min-height: 285px;

    padding: 30px 26px 26px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 12px;

    box-shadow:
        0 8px 28px
        rgba(17, 42, 32, 0.05);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.process-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow);
}


.process-number {

    position: absolute;

    top: 18px;

    right: 20px;

    color:
        rgba(23, 107, 79, .13);

    font-family:
        "Playfair Display",
        serif;

    font-size: 48px;

    line-height: 1;

    font-weight: 700;

    pointer-events: none;
}


.process-icon {

    width: 54px;

    height: 54px;

    margin-bottom: 22px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        var(--green-soft);

    color:
        var(--green);

    font-size: 20px;
}


.process-card h3 {

    margin: 0 0 10px;

    font-size: 20px;

    line-height: 1.25;

    font-weight: 700;
}


.process-card p {

    margin: 0;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* Process tablet */

@media (max-width: 991px) {

    .process-grid > .col-md-6 {

        width: 50%;
    }

    .process-card {

        min-height: 270px;
    }

}


/* Process mobile */

@media (max-width: 575px) {

    .process-grid > .col-md-6 {

        width: 100%;
    }

    .process-grid > [class*="col-"] {

        margin-bottom: 16px;
    }

    .process-card {

        min-height: 0;

        padding:
            26px 22px;
    }

}


/* =========================================================
   CONTACT / CTA FIX
========================================================= */

/*
   HTML uses .bamboo-contact-box.

   The old CSS was styling .cta-box.
*/

.bamboo-contact-section {

    padding-top: 35px;

    padding-bottom: 100px;

    background:
        var(--cream);
}


.bamboo-contact-box {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px 60px;

    border-radius: 14px;

    background:
        var(--green-dark);

    color:
        var(--white);

    box-shadow:
        var(--shadow);
}


.bamboo-contact-content {

    flex: 1 1 auto;

    max-width: 650px;
}


.bamboo-contact-content
.section-kicker {

    color:
        var(--lime);
}


.bamboo-contact-content h2 {

    margin:
        10px 0 14px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(34px, 4vw, 50px);

    line-height: 1.1;
}


.bamboo-contact-content h2 span {

    color:
        var(--lime);
}


.bamboo-contact-content p {

    max-width: 580px;

    margin: 0;

    color:
        rgba(255,255,255,.74);
}


/* Contact action grid */

.bamboo-contact-actions {

    flex: 0 0 430px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;
}


.contact-action {

    min-width: 0;

    min-height: 76px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 13px 14px;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 9px;

    background:
        rgba(255,255,255,.06);

    color:
        var(--white);

    transition:
        transform .25s ease,
        background .25s ease;
}


.contact-action:hover {

    color:
        var(--white);

    background:
        rgba(255,255,255,.12);

    transform:
        translateY(-3px);
}


.contact-action > i {

    flex: 0 0 auto;

    color:
        var(--lime);

    font-size: 19px;
}


.contact-action > span {

    display: flex;

    flex-direction: column;

    min-width: 0;

    line-height: 1.25;

    font-size: 12px;

    font-weight: 600;
}


.contact-action small {

    margin-bottom: 3px;

    color:
        rgba(255,255,255,.55);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* CTA tablet */

@media (max-width: 1100px) {

    .bamboo-contact-box {

        padding:
            45px;
    }

    .bamboo-contact-actions {

        flex-basis:
            390px;
    }

}


/* CTA smaller tablet */

@media (max-width: 991px) {

    .bamboo-contact-box {

        flex-direction:
            column;

        align-items:
            stretch;

        padding:
            40px;
    }

    .bamboo-contact-content {

        max-width:
            100%;
    }

    .bamboo-contact-actions {

        width:
            100%;

        flex-basis:
            auto;
    }

}


/* CTA mobile */

@media (max-width: 767px) {

    .bamboo-contact-section {

        padding-top:
            25px;

        padding-bottom:
            75px;
    }

    .bamboo-contact-box {

        padding:
            32px 24px;
    }

    .bamboo-contact-actions {

        grid-template-columns:
            1fr;
    }

    .contact-action {

        min-height:
            68px;
    }

}


/* =========================================================
   FOOTER LOGO FIX
========================================================= */

.footer-logo {

    display:
        inline-flex;

    align-items:
        center;

    flex:
        0 0 auto;

    width:
        190px;

    max-width:
        190px;

    overflow:
        hidden;
}


.footer-logo img {

    display:
        block;

    width:
        190px !important;

    max-width:
        100% !important;

    height:
        auto !important;

    object-fit:
        contain;
}


@media (max-width: 767px) {

    .footer-logo {

        width:
            175px;

        max-width:
            175px;
    }

    .footer-logo img {

        width:
            175px !important;

        max-width:
            100% !important;
    }

}


/* =========================================================
   FLOATING WHATSAPP FIX
========================================================= */

.floating-whatsapp {

    position:
        fixed !important;

    right:
        22px !important;

    bottom:
        22px !important;

    z-index:
        2000 !important;

    width:
        56px !important;

    height:
        56px !important;

    min-width:
        56px !important;

    min-height:
        56px !important;

    display:
        grid !important;

    place-items:
        center !important;

    padding:
        0 !important;

    margin:
        0 !important;

    border:
        0;

    border-radius:
        50% !important;

    background:
        #25D366;

    color:
        #ffffff;

    font-size:
        26px;

    line-height:
        1;

    text-decoration:
        none;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, .20);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.floating-whatsapp i {

    margin:
        0;

    font-size:
        26px;

    line-height:
        1;
}


.floating-whatsapp span {

    display:
        none;
}


.floating-whatsapp:hover {

    background:
        #1ebe5d;

    color:
        #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, .24);
}


/* Floating WhatsApp mobile */

@media (max-width: 576px) {

    .floating-whatsapp {

        right:
            16px !important;

        bottom:
            16px !important;

        width:
            52px !important;

        height:
            52px !important;

        min-width:
            52px !important;

        min-height:
            52px !important;

        font-size:
            24px;
    }

    .floating-whatsapp i {

        font-size:
            24px;
    }

}


/* =========================================================
   FINAL HEADER RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .bamboo-nav-container {

        padding:
            0 18px;

        gap:
            14px;
    }

    .bamboo-brand {

        flex-basis:
            155px;

        width:
            155px;

        max-width:
            155px;
    }

    .bamboo-brand img {

        width:
            155px !important;
    }

    .bamboo-page-title {

        min-width:
            125px;

        padding-left:
            12px;
    }

    .bamboo-page-title span {

        font-size:
            12px;
    }

    .bamboo-page-title small {

        font-size:
            9px;
    }

    .bamboo-page-nav a {

        padding-left:
            7px;

        padding-right:
            7px;

        font-size:
            12px;
    }

    .bamboo-page-nav .bamboo-nav-cta {

        padding-left:
            10px;

        padding-right:
            10px;
    }

}


/* Header tablet/mobile */

@media (max-width: 991px) {

    .bamboo-nav-container {

        min-height:
            66px;
    }

    .bamboo-page-title {

        display:
            none;
    }

    .bamboo-page-nav {

        display:
            none;
    }

    .bamboo-nav-toggle {

        display:
            block;
    }

    .bamboo-page-nav.is-open {

        position:
            absolute;

        top:
            100%;

        left:
            0;

        right:
            0;

        display:
            flex;

        flex-direction:
            column;

        align-items:
            stretch;

        justify-content:
            flex-start;

        gap:
            2px;

        padding:
            10px 16px 14px;

        background:
            #fff;

        border-bottom:
            1px solid rgba(9, 72, 52, .12);

        box-shadow:
            0 12px 22px
            rgba(0, 0, 0, .08);
    }

    .bamboo-page-nav.is-open a {

        width:
            100%;

        justify-content:
            flex-start;

        padding:
            12px 13px;
    }

    .bamboo-page-nav.is-open
    .bamboo-nav-cta {

        margin:
            5px 0 0;

        justify-content:
            center;
    }

}


/* =========================================================
   FINAL TYPOGRAPHY REFINEMENT
========================================================= */

.bamboo-hero h1 {

    font-size:
        clamp(3.25rem, 5.2vw, 5.15rem);

    line-height:
        .98;

    letter-spacing:
        -1.5px;
}


.bamboo-hero
.hero-copy > p {

    max-width:
        610px;

    font-size:
        1rem;

    line-height:
        1.65;
}


.bamboo-hero
.hero-buttons {

    gap:
        12px;
}


.bamboo-hero
.hero-buttons a {

    min-height:
        50px;

    padding:
        12px 21px;

    font-size:
        14px;

    border-radius:
        7px;
}


.bamboo-hero
.hero-buttons i {

    font-size:
        13px;
}


.section h2 {

    font-size:
        clamp(2rem, 3.2vw, 3rem);

    line-height:
        1.1;
}


.section h3 {

    font-size:
        1.2rem;
}


.btn-primary-custom,
.btn-outline-custom {

    font-size:
        14px;
}


/* Hero mobile */

@media (max-width: 767px) {

    .bamboo-hero h1 {

        font-size:
            clamp(2.6rem, 11vw, 3.8rem);

        letter-spacing:
            -.8px;
    }

    .bamboo-hero
    .hero-copy > p {

        font-size:
            .94rem;
    }

    .bamboo-hero
    .hero-buttons a {

        min-height:
            46px;

        padding:
            11px 16px;

        font-size:
            13px;
    }

}


/* =========================================================
   FINAL FOOTER RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 767px) {

    .footer-main {

        grid-template-columns:
            1fr;

        gap:
            35px;
    }

    .footer-bottom {

        flex-direction:
            column;
    }

}


/* =========================================================
   PROCESS SECTION - 4 CARDS IN ONE ROW
========================================================= */

.process-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 0;
    margin-left: -12px;
    margin-right: -12px;
}

.process-grid > [class*="col-"] {
    flex: 0 0 25% !important;
    width: 25% !important;
    max-width: 25% !important;

    display: flex;
    flex-direction: column;

    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 0;
}

.process-card {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 285px;

    padding: 30px 26px 26px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow:
        0 8px 28px rgba(17, 42, 32, 0.05);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.process-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 50px rgba(17, 42, 32, 0.10);
}


/* STEP NUMBER */

.process-number {
    position: absolute;

    top: 18px;
    right: 20px;

    color: rgba(23, 107, 79, 0.13);

    font-family: "Playfair Display", serif;

    font-size: 48px;

    line-height: 1;

    font-weight: 700;

    pointer-events: none;
}


/* ICON */

.process-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 22px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-soft);

    color: var(--green);

    font-size: 20px;
}


/* TITLE */

.process-card h3 {
    margin: 0 0 10px;

    font-size: 20px;

    line-height: 1.25;

    font-weight: 700;
}


/* DESCRIPTION */

.process-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS - TABLET
========================================================= */

@media (max-width: 991px) {

    .process-grid {
        flex-wrap: wrap !important;
    }

    .process-grid > [class*="col-"] {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;

        margin-bottom: 24px;
    }

}


/* =========================================================
   PROCESS - MOBILE
========================================================= */

@media (max-width: 575px) {

    .process-grid {
        flex-wrap: wrap !important;
    }

    .process-grid > [class*="col-"] {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;

        margin-bottom: 16px;
    }

    .process-card {
        min-height: 0;

        padding: 26px 22px;
    }

}