
:root {
    --ink: #16241f;
    --forest: #1f4b3f;
    --forest-light: #2e6e5a;
    --forest-pale: #e7efe9;
    --ivory: #f7f2e9;
    --paper: #fbf8f2;
    --copper: #be7c4d;
    --copper-light: #e0a875;
    --sage: #a9bfae;
    --gold: #c9a66b;
    --white: #ffffff;
    --line: rgba(22,36,31,0.1);
    --shadow-soft: 0 20px 50px -20px rgba(22,36,31,0.25);
    --radius: 18px;
    --ff-body: 'Vazirmatn', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

::selection {
    background: var(--copper);
    color: var(--white);
}

h1, h2, h3, h4, .display-font {
    font-family: var(--ff-body);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--copper);
    text-transform: uppercase;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        background: var(--copper);
        display: inline-block;
    }

.section-pad {
    padding: 96px 0;
}

@media(max-width:768px) {
    .section-pad {
        padding: 64px 0;
    }
}

.bg-ivory {
    background: var(--ivory);
}

.bg-forest {
    background: var(--forest);
    color: var(--ivory);
}

    .bg-forest h2, .bg-forest h3, .bg-forest .display-font {
        color: var(--ivory);
    }

.text-copper {
    color: var(--copper) !important;
}

.text-forest {
    color: var(--forest) !important;
}

.divider-gold {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg,var(--copper),var(--gold));
    border-radius: 3px;
}

/* blueprint grid texture */
.blueprint-bg {
    background-image: linear-gradient(rgba(31,75,63,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(31,75,63,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
}

.blueprint-bg-dark {
    background-image: linear-gradient(rgba(247,242,233,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,233,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* ===== NAVBAR ===== */
.navbar-custom {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    padding: 22px 0;
    transition: all .35s ease;
    background: transparent;
}

    .navbar-custom.scrolled {
        padding: 12px 0;
        background: rgba(251,248,242,0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 24px rgba(22,36,31,0.08);
    }

.nav-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ivory) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-brand {
    color: var(--ink) !important;
}

.navbar-toggler {
    color: var(--ivory);
    border-color: rgba(247,242,233,0.4) !important;
}

.navbar-custom.scrolled .navbar-toggler {
    color: var(--ink);
    border-color: rgba(22,36,31,0.2) !important;
}

@media(max-width:991px) {
    .navbar-collapse.show {
        background: var(--forest);
        border-radius: 16px;
        margin-top: 14px;
        padding: 10px 20px 18px;
    }

        .navbar-collapse.show .nav-link {
            color: var(--ivory) !important;
        }
}

.nav-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-weight: 800;
    font-size: 1.05rem;
    transform: rotate(-6deg);
    box-shadow: 0 8px 18px -6px rgba(31,75,63,0.55);
}

.navbar-custom .nav-link {
    font-weight: 600;
    color: var(--ivory) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-link {
    color: var(--ink) !important;
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.navbar-custom .nav-link:hover::after {
    transform: scaleX(1);
}

.btn-copper {
    background: var(--copper);
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all .3s ease;
    box-shadow: 0 10px 24px -8px rgba(190,124,77,0.65);
}

    .btn-copper:hover {
        background: #a86a3f;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -8px rgba(190,124,77,0.75);
    }

.btn-outline-forest {
    border: 1.5px solid var(--forest);
    color: var(--forest);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-forest:hover {
        background: var(--forest);
        color: var(--ivory);
    }

.btn-outline-ivory {
    border: 1.5px solid rgba(247,242,233,0.5);
    color: var(--ivory);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-ivory:hover {
        background: var(--ivory);
        color: var(--forest);
        border-color: var(--ivory);
    }

/* ===== HERO SLIDER BANNER ===== */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 640px;
    margin-top: 0;
    overflow: hidden;
    background: var(--ink);
}

@media(max-width:768px) {
    .hero-slider {
        height: auto;
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 150px;
    }
}

.hs-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}

    .hs-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

@media(max-width:768px) {
    .hs-slide {
        position: relative;
        display: none;
        height: auto;
        padding: 20px 0 40px;
    }

        .hs-slide.active {
            display: block;
        }
}

.hs-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

@media(max-width:768px) {
    .hs-media {
        position: relative;
        height: 340px;
        border-radius: 22px;
        margin: 0 16px;
        overflow: hidden;
    }
}

.hs-media .hs-img,
.hs-media .hs-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 8s ease-out;
}

.hs-slide.active .hs-img,
.hs-slide.active .hs-placeholder {
    transform: scale(1);
}

.hs-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(247,242,233,0.55);
    border: 2px dashed rgba(247,242,233,0.22);
}

    .hs-placeholder i {
        font-size: 2.6rem;
    }

    .hs-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        max-width: 260px;
        text-align: center;
    }

.hs-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(85deg, rgba(15,26,22,0.92) 8%, rgba(15,26,22,0.55) 42%, rgba(15,26,22,0.15) 68%);
    z-index: 2;
}

@media(max-width:768px) {
    .hs-media::before {
        background: linear-gradient(0deg, rgba(15,26,22,0.85) 10%, rgba(15,26,22,0.15) 60%);
    }
}

/* organic bottom shape cut */
.hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 5;
    line-height: 0;
}

    .hs-shape svg {
        width: 100%;
        height: 90px;
        display: block;
    }

@media(max-width:768px) {
    .hs-shape {
        display: none;
    }
}

.hs-content {
    position: relative;
    z-index: 6;
    height: 100%;
    display: flex;
    align-items: center;
}

@media(max-width:768px) {
    .hs-content {
        height: auto;
        padding: 0 34px;
        margin-top: 22px;
    }
}

.hs-num {
    font-size: .8rem;
    font-weight: 800;
    color: var(--copper-light);
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .hs-num::after {
        content: "";
        width: 38px;
        height: 1px;
        background: rgba(247,242,233,0.35);
    }

.hs-tagpill {
    display: inline-block;
    background: var(--copper);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hs-content h1 {
    color: var(--ivory);
    font-size: clamp(2.1rem,4.2vw,3.35rem);
    line-height: 1.22;
    max-width: 620px;
    margin-bottom: 18px;
}

.hs-content p {
    color: rgba(247,242,233,0.72);
    max-width: 460px;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* custom side progress indicators (vertical dashes, right side) */
.hs-indicators {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media(max-width:991px) {
    .hs-indicators {
        display: none;
    }
}

.hs-dash {
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: rgba(247,242,233,0.3);
    border: none;
    cursor: pointer;
    transition: .3s;
    position: relative;
}

    .hs-dash.active {
        background: var(--copper);
        width: 50px;
    }

/* arrows */
.hs-arrows {
    position: absolute;
    bottom: 28px;
    left: 24px;
    z-index: 7;
    display: flex;
    gap: 10px;
}

@media(max-width:768px) {
    .hs-arrows {
        bottom: 16px;
    }
}

.hs-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.3);
    background: rgba(247,242,233,0.06);
    backdrop-filter: blur(6px);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

    .hs-arrow:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* slide counter */
.hs-counter {
    position: absolute;
    bottom: 34px;
    right: 24px;
    z-index: 7;
    color: rgba(247,242,233,0.6);
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media(max-width:768px) {
    .hs-counter {
        display: none;
    }
}

.hs-counter b {
    color: var(--ivory);
    font-size: 1.15rem;
}

/* floating stat card overlapping the wave */
.hero-stats-float {
    position: relative;
    z-index: 8;
    margin-top: -64px;
}

@media(max-width:768px) {
    .hero-stats-float {
        margin-top: -120px;
    }
}

.hero-stats-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 30px 60px -20px rgba(22,36,31,0.35);
    padding: 26px 20px;
}

    .hero-stats-card .stat-num {
        font-size: 1.9rem;
        font-weight: 800;
        color: var(--forest);
    }

    .hero-stats-card .stat-label {
        font-size: .8rem;
        color: #5c6a64;
        font-weight: 600;
    }

    .hero-stats-card .vr-line {
        width: 1px;
        background: var(--line);
    }

/* ===== SERVICES ===== */
.card-3d-wrap {
    perspective: 1200px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    height: 100%;
    border: 1px solid var(--line);
    transition: box-shadow .35s ease, transform .1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(190,124,77,0.06),transparent 60%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card:hover {
        box-shadow: 0 30px 60px -20px rgba(22,36,31,0.28);
    }

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--forest-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.service-card h4 {
    font-size: 1.15rem;
    transform: translateZ(20px);
}

.service-card p {
    color: #5c6a64;
    font-size: .94rem;
    line-height: 1.9;
    transform: translateZ(15px);
}

.service-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: .75rem;
    font-weight: 800;
    color: rgba(31,75,63,0.25);
}

/* ===== PROCESS ===== */
.process-line {
    position: relative;
}

    .process-line::before {
        content: "";
        position: absolute;
        top: 26px;
        right: 8%;
        left: 8%;
        height: 2px;
        background: repeating-linear-gradient(90deg,var(--copper) 0 8px, transparent 8px 16px);
    }

@media(max-width:768px) {
    .process-line::before {
        display: none;
    }
}

.process-step {
    position: relative;
    text-align: center;
}

.process-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.5);
}

.process-step h5 {
    font-weight: 800;
}

.process-step p {
    color: #5c6a64;
    font-size: .9rem;
    max-width: 220px;
    margin: 8px auto 0;
}

/* ===== PROJECTS ===== */
.filter-pills .btn {
    border-radius: 50px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
    font-size: .88rem;
    padding: 8px 20px;
    background: var(--white);
    margin: 4px;
    transition: .25s;
}

    .filter-pills .btn.active {
        background: var(--forest);
        color: var(--ivory);
        border-color: var(--forest);
    }

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}

    .project-card:hover {
        transform: translateY(-10px) rotateX(4deg);
        box-shadow: 0 40px 70px -25px rgba(22,36,31,0.4);
    }

.project-visual {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(22,36,31,0.06) 1px,transparent 1px), linear-gradient(90deg,rgba(22,36,31,0.06) 1px,transparent 1px);
    background-size: 24px 24px;
    transition: transform .6s ease;
}

.project-card:hover .project-visual {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,36,31,0.92) 5%, rgba(22,36,31,0.15) 55%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--ivory);
}

.project-tag {
    display: inline-block;
    background: rgba(247,242,233,0.15);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
    backdrop-filter: blur(6px);
}

.project-hidden {
    display: none !important;
}

/* ===== MOBILE SCROLL-SNAP SLIDER (projects & blog) ===== */
.swipe-hint {
    display: none;
    align-items: center;
    gap: 8px;
    color: #8a958f;
    font-size: .82rem;
    font-weight: 600;
    margin: -10px 0 18px;
}

    .swipe-hint i {
        font-size: 1rem;
        color: var(--copper);
    }

@media(max-width:768px) {
    .swipe-hint {
        display: flex;
    }

    .mobile-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-inline: calc(-1 * var(--bs-gutter-x, .75rem));
        padding-inline: 20px;
        padding-bottom: 10px;
    }

        .mobile-slider::-webkit-scrollbar {
            display: none;
        }

        .mobile-slider > * {
            flex: 0 0 78%;
            max-width: 78%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }

        .mobile-slider .project-card {
            height: 280px;
        }
}

@media(max-width:420px) {
    .mobile-slider > * {
        flex-basis: 86%;
        max-width: 86%;
    }
}

/* ===== TESTIMONIALS ===== */
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--line);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testi-quote {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--ink);
    font-weight: 500;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--copper),var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    margin: 0 auto 12px;
}

.carousel-indicators [data-bs-target] {
    background: var(--copper);
}

/* ===== BLOG ===== */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    height: 100%;
    transition: .35s;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.blog-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
}

    .blog-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.08) 1px,transparent 1px);
        background-size: 22px 22px;
    }

.blog-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--forest);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

.blog-body {
    padding: 22px;
}

    .blog-body h5 {
        font-weight: 800;
        font-size: 1.05rem;
    }

    .blog-body p {
        color: #5c6a64;
        font-size: .89rem;
    }

.blog-meta {
    font-size: .78rem;
    color: #8a958f;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 28px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: var(--ivory);
}

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 90% 20%, rgba(190,124,77,0.35), transparent 45%);
    }

/* ===== CONTACT ===== */
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-control-custom {
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .95rem;
}

    .form-control-custom:focus {
        border-color: var(--forest-light);
        box-shadow: 0 0 0 3px rgba(46,110,90,0.15);
    }

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(247,242,233,0.75);
    padding: 64px 0 24px;
}

    footer h6 {
        color: var(--ivory);
        font-weight: 800;
        margin-bottom: 18px;
    }

    footer a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
        transition: .2s;
    }

        footer a:hover {
            color: var(--copper);
        }

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: .25s;
}

    .footer-social:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* back to top */
#backTop {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.6);
}

    #backTop.show {
        opacity: 1;
        pointer-events: auto;
    }




:root {
    --ink: #16241f;
    --forest: #1f4b3f;
    --forest-light: #2e6e5a;
    --forest-pale: #e7efe9;
    --ivory: #f7f2e9;
    --paper: #fbf8f2;
    --copper: #be7c4d;
    --copper-light: #e0a875;
    --sage: #a9bfae;
    --gold: #c9a66b;
    --white: #ffffff;
    --line: rgba(22,36,31,0.1);
    --shadow-soft: 0 20px 50px -20px rgba(22,36,31,0.25);
    --radius: 18px;
    --ff-body: 'Vazirmatn', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

::selection {
    background: var(--copper);
    color: var(--white);
}

h1, h2, h3, h4, .display-font {
    font-family: var(--ff-body);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--copper);
    text-transform: uppercase;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        background: var(--copper);
        display: inline-block;
    }

.section-pad {
    padding: 96px 0;
}

@media(max-width:768px) {
    .section-pad {
        padding: 64px 0;
    }
}

.bg-ivory {
    background: var(--ivory);
}

.bg-forest {
    background: var(--forest);
    color: var(--ivory);
}

    .bg-forest h2, .bg-forest h3, .bg-forest .display-font {
        color: var(--ivory);
    }

.text-copper {
    color: var(--copper) !important;
}

.text-forest {
    color: var(--forest) !important;
}

.divider-gold {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg,var(--copper),var(--gold));
    border-radius: 3px;
}

/* blueprint grid texture */
.blueprint-bg {
    background-image: linear-gradient(rgba(31,75,63,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(31,75,63,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
}

.blueprint-bg-dark {
    background-image: linear-gradient(rgba(247,242,233,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,233,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* ===== NAVBAR ===== */
.navbar-custom {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    padding: 22px 0;
    transition: all .35s ease;
    background: transparent;
}

    .navbar-custom.scrolled {
        padding: 12px 0;
        background: rgba(251,248,242,0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 24px rgba(22,36,31,0.08);
    }

.nav-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ivory) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-brand {
    color: var(--ink) !important;
}

.navbar-toggler {
    color: var(--ivory);
    border-color: rgba(247,242,233,0.4) !important;
}

.navbar-custom.scrolled .navbar-toggler {
    color: var(--ink);
    border-color: rgba(22,36,31,0.2) !important;
}

@media(max-width:991px) {
    .navbar-collapse.show {
        background: var(--forest);
        border-radius: 16px;
        margin-top: 14px;
        padding: 10px 20px 18px;
    }

        .navbar-collapse.show .nav-link {
            color: var(--ivory) !important;
        }
}

.nav-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-weight: 800;
    font-size: 1.05rem;
    transform: rotate(-6deg);
    box-shadow: 0 8px 18px -6px rgba(31,75,63,0.55);
}

.navbar-custom .nav-link {
    font-weight: 600;
    color: var(--ivory) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-link {
    color: var(--ink) !important;
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.navbar-custom .nav-link:hover::after {
    transform: scaleX(1);
}

.btn-copper {
    background: var(--copper);
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all .3s ease;
    box-shadow: 0 10px 24px -8px rgba(190,124,77,0.65);
}

    .btn-copper:hover {
        background: #a86a3f;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -8px rgba(190,124,77,0.75);
    }

.btn-outline-forest {
    border: 1.5px solid var(--forest);
    color: var(--forest);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-forest:hover {
        background: var(--forest);
        color: var(--ivory);
    }

.btn-outline-ivory {
    border: 1.5px solid rgba(247,242,233,0.5);
    color: var(--ivory);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-ivory:hover {
        background: var(--ivory);
        color: var(--forest);
        border-color: var(--ivory);
    }

/* ===== HERO SLIDER BANNER ===== */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 640px;
    margin-top: 0;
    overflow: hidden;
    background: var(--ink);
}

@media(max-width:768px) {
    .hero-slider {
        height: auto;
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 150px;
    }
}

.hs-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}

    .hs-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

@media(max-width:768px) {
    .hs-slide {
        position: relative;
        display: none;
        height: auto;
        padding: 20px 0 40px;
    }

        .hs-slide.active {
            display: block;
        }
}

.hs-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

@media(max-width:768px) {
    .hs-media {
        position: relative;
        height: 340px;
        border-radius: 22px;
        margin: 0 16px;
        overflow: hidden;
    }
}

.hs-media .hs-img,
.hs-media .hs-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 8s ease-out;
}

.hs-slide.active .hs-img,
.hs-slide.active .hs-placeholder {
    transform: scale(1);
}

.hs-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(247,242,233,0.55);
    border: 2px dashed rgba(247,242,233,0.22);
}

    .hs-placeholder i {
        font-size: 2.6rem;
    }

    .hs-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        max-width: 260px;
        text-align: center;
    }

.hs-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(85deg, rgba(15,26,22,0.92) 8%, rgba(15,26,22,0.55) 42%, rgba(15,26,22,0.15) 68%);
    z-index: 2;
}

@media(max-width:768px) {
    .hs-media::before {
        background: linear-gradient(0deg, rgba(15,26,22,0.85) 10%, rgba(15,26,22,0.15) 60%);
    }
}

/* organic bottom shape cut */
.hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 5;
    line-height: 0;
}

    .hs-shape svg {
        width: 100%;
        height: 90px;
        display: block;
    }

@media(max-width:768px) {
    .hs-shape {
        display: none;
    }
}

.hs-content {
    position: relative;
    z-index: 6;
    height: 100%;
    display: flex;
    align-items: center;
}

@media(max-width:768px) {
    .hs-content {
        height: auto;
        padding: 0 34px;
        margin-top: 22px;
    }
}

.hs-num {
    font-size: .8rem;
    font-weight: 800;
    color: var(--copper-light);
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .hs-num::after {
        content: "";
        width: 38px;
        height: 1px;
        background: rgba(247,242,233,0.35);
    }

.hs-tagpill {
    display: inline-block;
    background: var(--copper);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hs-content h1 {
    color: var(--ivory);
    font-size: clamp(2.1rem,4.2vw,3.35rem);
    line-height: 1.22;
    max-width: 620px;
    margin-bottom: 18px;
}

.hs-content p {
    color: rgba(247,242,233,0.72);
    max-width: 460px;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* custom side progress indicators (vertical dashes, right side) */
.hs-indicators {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media(max-width:991px) {
    .hs-indicators {
        display: none;
    }
}

.hs-dash {
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: rgba(247,242,233,0.3);
    border: none;
    cursor: pointer;
    transition: .3s;
    position: relative;
}

    .hs-dash.active {
        background: var(--copper);
        width: 50px;
    }

/* arrows */
.hs-arrows {
    position: absolute;
    bottom: 28px;
    left: 24px;
    z-index: 7;
    display: flex;
    gap: 10px;
}

@media(max-width:768px) {
    .hs-arrows {
        bottom: 16px;
    }
}

.hs-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.3);
    background: rgba(247,242,233,0.06);
    backdrop-filter: blur(6px);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

    .hs-arrow:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* slide counter */
.hs-counter {
    position: absolute;
    bottom: 34px;
    right: 24px;
    z-index: 7;
    color: rgba(247,242,233,0.6);
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media(max-width:768px) {
    .hs-counter {
        display: none;
    }
}

.hs-counter b {
    color: var(--ivory);
    font-size: 1.15rem;
}

/* floating stat card overlapping the wave */
.hero-stats-float {
    position: relative;
    z-index: 8;
    margin-top: -64px;
}

@media(max-width:768px) {
    .hero-stats-float {
        margin-top: -120px;
    }
}

.hero-stats-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 30px 60px -20px rgba(22,36,31,0.35);
    padding: 26px 20px;
}

    .hero-stats-card .stat-num {
        font-size: 1.9rem;
        font-weight: 800;
        color: var(--forest);
    }

    .hero-stats-card .stat-label {
        font-size: .8rem;
        color: #5c6a64;
        font-weight: 600;
    }

    .hero-stats-card .vr-line {
        width: 1px;
        background: var(--line);
    }

/* ===== SERVICES ===== */
.card-3d-wrap {
    perspective: 1200px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    height: 100%;
    border: 1px solid var(--line);
    transition: box-shadow .35s ease, transform .1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(190,124,77,0.06),transparent 60%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card:hover {
        box-shadow: 0 30px 60px -20px rgba(22,36,31,0.28);
    }

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--forest-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.service-card h4 {
    font-size: 1.15rem;
    transform: translateZ(20px);
}

.service-card p {
    color: #5c6a64;
    font-size: .94rem;
    line-height: 1.9;
    transform: translateZ(15px);
}

.service-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: .75rem;
    font-weight: 800;
    color: rgba(31,75,63,0.25);
}

/* ===== PROCESS ===== */
.process-line {
    position: relative;
}

    .process-line::before {
        content: "";
        position: absolute;
        top: 26px;
        right: 8%;
        left: 8%;
        height: 2px;
        background: repeating-linear-gradient(90deg,var(--copper) 0 8px, transparent 8px 16px);
    }

@media(max-width:768px) {
    .process-line::before {
        display: none;
    }
}

.process-step {
    position: relative;
    text-align: center;
}

.process-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.5);
}

.process-step h5 {
    font-weight: 800;
}

.process-step p {
    color: #5c6a64;
    font-size: .9rem;
    max-width: 220px;
    margin: 8px auto 0;
}

/* ===== PROJECTS ===== */
.filter-pills .btn {
    border-radius: 50px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
    font-size: .88rem;
    padding: 8px 20px;
    background: var(--white);
    margin: 4px;
    transition: .25s;
}

    .filter-pills .btn.active {
        background: var(--forest);
        color: var(--ivory);
        border-color: var(--forest);
    }

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}

    .project-card:hover {
        transform: translateY(-10px) rotateX(4deg);
        box-shadow: 0 40px 70px -25px rgba(22,36,31,0.4);
    }

.project-visual {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(22,36,31,0.06) 1px,transparent 1px), linear-gradient(90deg,rgba(22,36,31,0.06) 1px,transparent 1px);
    background-size: 24px 24px;
    transition: transform .6s ease;
}

.project-card:hover .project-visual {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,36,31,0.92) 5%, rgba(22,36,31,0.15) 55%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--ivory);
}

.project-tag {
    display: inline-block;
    background: rgba(247,242,233,0.15);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
    backdrop-filter: blur(6px);
}

.project-hidden {
    display: none !important;
}

/* ===== MOBILE SCROLL-SNAP SLIDER (projects & blog) ===== */
.swipe-hint {
    display: none;
    align-items: center;
    gap: 8px;
    color: #8a958f;
    font-size: .82rem;
    font-weight: 600;
    margin: -10px 0 18px;
}

    .swipe-hint i {
        font-size: 1rem;
        color: var(--copper);
    }

@media(max-width:768px) {
    .swipe-hint {
        display: flex;
    }

    .mobile-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-inline: calc(-1 * var(--bs-gutter-x, .75rem));
        padding-inline: 20px;
        padding-bottom: 10px;
    }

        .mobile-slider::-webkit-scrollbar {
            display: none;
        }

        .mobile-slider > * {
            flex: 0 0 78%;
            max-width: 78%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }

        .mobile-slider .project-card {
            height: 280px;
        }
}

@media(max-width:420px) {
    .mobile-slider > * {
        flex-basis: 86%;
        max-width: 86%;
    }
}

/* ===== TESTIMONIALS ===== */
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--line);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testi-quote {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--ink);
    font-weight: 500;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--copper),var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    margin: 0 auto 12px;
}

.carousel-indicators [data-bs-target] {
    background: var(--copper);
}

/* ===== BLOG ===== */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    height: 100%;
    transition: .35s;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.blog-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
}

    .blog-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.08) 1px,transparent 1px);
        background-size: 22px 22px;
    }

.blog-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--forest);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

.blog-body {
    padding: 22px;
}

    .blog-body h5 {
        font-weight: 800;
        font-size: 1.05rem;
    }

    .blog-body p {
        color: #5c6a64;
        font-size: .89rem;
    }

.blog-meta {
    font-size: .78rem;
    color: #8a958f;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 28px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: var(--ivory);
}

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 90% 20%, rgba(190,124,77,0.35), transparent 45%);
    }

/* ===== CONTACT ===== */
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-control-custom {
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .95rem;
}

    .form-control-custom:focus {
        border-color: var(--forest-light);
        box-shadow: 0 0 0 3px rgba(46,110,90,0.15);
    }

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(247,242,233,0.75);
    padding: 64px 0 24px;
}

    footer h6 {
        color: var(--ivory);
        font-weight: 800;
        margin-bottom: 18px;
    }

    footer a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
        transition: .2s;
    }

        footer a:hover {
            color: var(--copper);
        }

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: .25s;
}

    .footer-social:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* back to top */
#backTop {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.6);
}

    #backTop.show {
        opacity: 1;
        pointer-events: auto;
    }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    position: relative;
    background: linear-gradient(120deg,var(--ink) 0%, var(--forest) 100%);
    padding: 170px 0 100px;
    overflow: hidden;
    color: var(--ivory);
}

@media(max-width:768px) {
    .page-header {
        padding: 150px 0 80px;
    }
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 20%, rgba(190,124,77,0.25), transparent 50%);
}

.page-crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(247,242,233,0.65);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

    .page-crumb a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
    }

        .page-crumb a:hover {
            color: var(--copper-light);
        }

    .page-crumb .sep {
        color: var(--copper-light);
    }

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(2.1rem,4vw,3.1rem);
    margin-bottom: 14px;
    color: var(--ivory);
}

.page-header p {
    position: relative;
    z-index: 2;
    color: rgba(247,242,233,0.75);
    max-width: 580px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.page-header .hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

    .page-header .hs-shape svg {
        width: 100%;
        height: 70px;
        display: block;
    }

/* ===== TIMELINE (about) ===== */
.timeline {
    position: relative;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 4px;
        bottom: 4px;
        right: 23px;
        width: 2px;
        background: var(--line);
    }

@media(max-width:576px) {
    .timeline::before {
        right: 19px;
    }
}

.timeline-item {
    position: relative;
    padding-right: 64px;
    margin-bottom: 38px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-dot {
    position: absolute;
    right: 6px;
    top: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--paper);
}

.timeline-item h5 {
    font-weight: 800;
    margin-bottom: 4px;
}

.timeline-item .timeline-year {
    color: var(--copper);
    font-weight: 800;
    font-size: .85rem;
    margin-bottom: 6px;
    display: block;
}

.timeline-item p {
    color: #5c6a64;
    font-size: .92rem;
    margin-bottom: 0;
}

/* ===== TEAM ===== */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--line);
    transition: .3s;
    height: 100%;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.team-role {
    color: var(--copper);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

    .team-social a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--forest);
        transition: .2s;
    }

        .team-social a:hover {
            background: var(--forest);
            color: var(--ivory);
            border-color: var(--forest);
        }

/* ===== FAQ ACCORDION ===== */
.accordion-custom .accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.accordion-custom .accordion-button {
    font-weight: 700;
    background: var(--white);
    padding: 18px 22px;
}

    .accordion-custom .accordion-button:not(.collapsed) {
        color: var(--forest);
        background: var(--forest-pale);
        box-shadow: none;
    }

    .accordion-custom .accordion-button:focus {
        box-shadow: none;
        border-color: var(--line);
    }

.accordion-custom .accordion-body {
    padding: 2px 22px 22px;
    color: #5c6a64;
    line-height: 1.9;
    font-size: .94rem;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    height: 360px;
    border-radius: var(--radius);
    background: var(--forest-pale);
    background-image: linear-gradient(rgba(31,75,63,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(31,75,63,0.08) 1px,transparent 1px);
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--forest);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

    .map-placeholder i.pin-icon {
        font-size: 2.2rem;
        color: var(--copper);
    }

    .map-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        color: #4b5a54;
        max-width: 260px;
    }

/* ===== WORKING HOURS ===== */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: .92rem;
}

    .hours-row:last-child {
        border-bottom: none;
    }

/* ===== NEWSLETTER BAND ===== */
.newsletter-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 26px;
    padding: 50px;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

    .newsletter-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 30%, rgba(190,124,77,0.3), transparent 45%);
    }

    .newsletter-band input {
        border: none;
        border-radius: 50px;
        padding: 14px 22px;
        width: 100%;
        font-family: var(--ff-body);
    }

        .newsletter-band input:focus {
            outline: 2px solid var(--copper);
        }

/* ===== PAGINATION ===== */
.pagination-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
}

    .pagination-custom button {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: var(--white);
        font-weight: 700;
        color: var(--ink);
        transition: .2s;
    }

        .pagination-custom button.active, .pagination-custom button:hover {
            background: var(--forest);
            color: var(--ivory);
            border-color: var(--forest);
        }

/* ===== LOAD MORE / MISC BUTTON ===== */
.btn-loadmore {
    border: 1.5px dashed var(--sage);
    border-radius: 50px;
    padding: 12px 36px;
    background: transparent;
    color: var(--forest);
    font-weight: 700;
    transition: .25s;
}

    .btn-loadmore:hover {
        background: var(--forest);
        color: var(--ivory);
        border-style: solid;
        border-color: var(--forest);
    }

/* ===== VALUE / ICON ROW (about) ===== */
.value-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* nav active underline */
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
}



:root {
    --ink: #16241f;
    --forest: #1f4b3f;
    --forest-light: #2e6e5a;
    --forest-pale: #e7efe9;
    --ivory: #f7f2e9;
    --paper: #fbf8f2;
    --copper: #be7c4d;
    --copper-light: #e0a875;
    --sage: #a9bfae;
    --gold: #c9a66b;
    --white: #ffffff;
    --line: rgba(22,36,31,0.1);
    --shadow-soft: 0 20px 50px -20px rgba(22,36,31,0.25);
    --radius: 18px;
    --ff-body: 'Vazirmatn', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

::selection {
    background: var(--copper);
    color: var(--white);
}

h1, h2, h3, h4, .display-font {
    font-family: var(--ff-body);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--copper);
    text-transform: uppercase;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        background: var(--copper);
        display: inline-block;
    }

.section-pad {
    padding: 96px 0;
}

@media(max-width:768px) {
    .section-pad {
        padding: 64px 0;
    }
}

.bg-ivory {
    background: var(--ivory);
}

.bg-forest {
    background: var(--forest);
    color: var(--ivory);
}

    .bg-forest h2, .bg-forest h3, .bg-forest .display-font {
        color: var(--ivory);
    }

.text-copper {
    color: var(--copper) !important;
}

.text-forest {
    color: var(--forest) !important;
}

.divider-gold {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg,var(--copper),var(--gold));
    border-radius: 3px;
}

/* blueprint grid texture */
.blueprint-bg {
    background-image: linear-gradient(rgba(31,75,63,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(31,75,63,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
}

.blueprint-bg-dark {
    background-image: linear-gradient(rgba(247,242,233,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,233,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* ===== NAVBAR ===== */
.navbar-custom {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    padding: 22px 0;
    transition: all .35s ease;
    background: transparent;
}

    .navbar-custom.scrolled {
        padding: 12px 0;
        background: rgba(251,248,242,0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 24px rgba(22,36,31,0.08);
    }

.nav-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ivory) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-brand {
    color: var(--ink) !important;
}

.navbar-toggler {
    color: var(--ivory);
    border-color: rgba(247,242,233,0.4) !important;
}

.navbar-custom.scrolled .navbar-toggler {
    color: var(--ink);
    border-color: rgba(22,36,31,0.2) !important;
}

@media(max-width:991px) {
    .navbar-collapse.show {
        background: var(--forest);
        border-radius: 16px;
        margin-top: 14px;
        padding: 10px 20px 18px;
    }

        .navbar-collapse.show .nav-link {
            color: var(--ivory) !important;
        }
}

.nav-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-weight: 800;
    font-size: 1.05rem;
    transform: rotate(-6deg);
    box-shadow: 0 8px 18px -6px rgba(31,75,63,0.55);
}

.navbar-custom .nav-link {
    font-weight: 600;
    color: var(--ivory) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-link {
    color: var(--ink) !important;
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.navbar-custom .nav-link:hover::after {
    transform: scaleX(1);
}

.btn-copper {
    background: var(--copper);
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all .3s ease;
    box-shadow: 0 10px 24px -8px rgba(190,124,77,0.65);
}

    .btn-copper:hover {
        background: #a86a3f;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -8px rgba(190,124,77,0.75);
    }

.btn-outline-forest {
    border: 1.5px solid var(--forest);
    color: var(--forest);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-forest:hover {
        background: var(--forest);
        color: var(--ivory);
    }

.btn-outline-ivory {
    border: 1.5px solid rgba(247,242,233,0.5);
    color: var(--ivory);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-ivory:hover {
        background: var(--ivory);
        color: var(--forest);
        border-color: var(--ivory);
    }

/* ===== HERO SLIDER BANNER ===== */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 640px;
    margin-top: 0;
    overflow: hidden;
    background: var(--ink);
}

@media(max-width:768px) {
    .hero-slider {
        height: auto;
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 150px;
    }
}

.hs-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}

    .hs-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

@media(max-width:768px) {
    .hs-slide {
        position: relative;
        display: none;
        height: auto;
        padding: 20px 0 40px;
    }

        .hs-slide.active {
            display: block;
        }
}

.hs-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

@media(max-width:768px) {
    .hs-media {
        position: relative;
        height: 340px;
        border-radius: 22px;
        margin: 0 16px;
        overflow: hidden;
    }
}

.hs-media .hs-img,
.hs-media .hs-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 8s ease-out;
}

.hs-slide.active .hs-img,
.hs-slide.active .hs-placeholder {
    transform: scale(1);
}

.hs-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(247,242,233,0.55);
    border: 2px dashed rgba(247,242,233,0.22);
}

    .hs-placeholder i {
        font-size: 2.6rem;
    }

    .hs-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        max-width: 260px;
        text-align: center;
    }

.hs-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(85deg, rgba(15,26,22,0.92) 8%, rgba(15,26,22,0.55) 42%, rgba(15,26,22,0.15) 68%);
    z-index: 2;
}

@media(max-width:768px) {
    .hs-media::before {
        background: linear-gradient(0deg, rgba(15,26,22,0.85) 10%, rgba(15,26,22,0.15) 60%);
    }
}

/* organic bottom shape cut */
.hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 5;
    line-height: 0;
}

    .hs-shape svg {
        width: 100%;
        height: 90px;
        display: block;
    }

@media(max-width:768px) {
    .hs-shape {
        display: none;
    }
}

.hs-content {
    position: relative;
    z-index: 6;
    height: 100%;
    display: flex;
    align-items: center;
}

@media(max-width:768px) {
    .hs-content {
        height: auto;
        padding: 0 34px;
        margin-top: 22px;
    }
}

.hs-num {
    font-size: .8rem;
    font-weight: 800;
    color: var(--copper-light);
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .hs-num::after {
        content: "";
        width: 38px;
        height: 1px;
        background: rgba(247,242,233,0.35);
    }

.hs-tagpill {
    display: inline-block;
    background: var(--copper);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hs-content h1 {
    color: var(--ivory);
    font-size: clamp(2.1rem,4.2vw,3.35rem);
    line-height: 1.22;
    max-width: 620px;
    margin-bottom: 18px;
}

.hs-content p {
    color: rgba(247,242,233,0.72);
    max-width: 460px;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* custom side progress indicators (vertical dashes, right side) */
.hs-indicators {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media(max-width:991px) {
    .hs-indicators {
        display: none;
    }
}

.hs-dash {
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: rgba(247,242,233,0.3);
    border: none;
    cursor: pointer;
    transition: .3s;
    position: relative;
}

    .hs-dash.active {
        background: var(--copper);
        width: 50px;
    }

/* arrows */
.hs-arrows {
    position: absolute;
    bottom: 28px;
    left: 24px;
    z-index: 7;
    display: flex;
    gap: 10px;
}

@media(max-width:768px) {
    .hs-arrows {
        bottom: 16px;
    }
}

.hs-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.3);
    background: rgba(247,242,233,0.06);
    backdrop-filter: blur(6px);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

    .hs-arrow:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* slide counter */
.hs-counter {
    position: absolute;
    bottom: 34px;
    right: 24px;
    z-index: 7;
    color: rgba(247,242,233,0.6);
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media(max-width:768px) {
    .hs-counter {
        display: none;
    }
}

.hs-counter b {
    color: var(--ivory);
    font-size: 1.15rem;
}

/* floating stat card overlapping the wave */
.hero-stats-float {
    position: relative;
    z-index: 8;
    margin-top: -64px;
}

@media(max-width:768px) {
    .hero-stats-float {
        margin-top: -120px;
    }
}

.hero-stats-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 30px 60px -20px rgba(22,36,31,0.35);
    padding: 26px 20px;
}

    .hero-stats-card .stat-num {
        font-size: 1.9rem;
        font-weight: 800;
        color: var(--forest);
    }

    .hero-stats-card .stat-label {
        font-size: .8rem;
        color: #5c6a64;
        font-weight: 600;
    }

    .hero-stats-card .vr-line {
        width: 1px;
        background: var(--line);
    }

/* ===== SERVICES ===== */
.card-3d-wrap {
    perspective: 1200px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    height: 100%;
    border: 1px solid var(--line);
    transition: box-shadow .35s ease, transform .1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(190,124,77,0.06),transparent 60%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card:hover {
        box-shadow: 0 30px 60px -20px rgba(22,36,31,0.28);
    }

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--forest-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.service-card h4 {
    font-size: 1.15rem;
    transform: translateZ(20px);
}

.service-card p {
    color: #5c6a64;
    font-size: .94rem;
    line-height: 1.9;
    transform: translateZ(15px);
}

.service-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: .75rem;
    font-weight: 800;
    color: rgba(31,75,63,0.25);
}

/* ===== PROCESS ===== */
.process-line {
    position: relative;
}

    .process-line::before {
        content: "";
        position: absolute;
        top: 26px;
        right: 8%;
        left: 8%;
        height: 2px;
        background: repeating-linear-gradient(90deg,var(--copper) 0 8px, transparent 8px 16px);
    }

@media(max-width:768px) {
    .process-line::before {
        display: none;
    }
}

.process-step {
    position: relative;
    text-align: center;
}

.process-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.5);
}

.process-step h5 {
    font-weight: 800;
}

.process-step p {
    color: #5c6a64;
    font-size: .9rem;
    max-width: 220px;
    margin: 8px auto 0;
}

/* ===== PROJECTS ===== */
.filter-pills .btn {
    border-radius: 50px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
    font-size: .88rem;
    padding: 8px 20px;
    background: var(--white);
    margin: 4px;
    transition: .25s;
}

    .filter-pills .btn.active {
        background: var(--forest);
        color: var(--ivory);
        border-color: var(--forest);
    }

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}

    .project-card:hover {
        transform: translateY(-10px) rotateX(4deg);
        box-shadow: 0 40px 70px -25px rgba(22,36,31,0.4);
    }

.project-visual {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(22,36,31,0.06) 1px,transparent 1px), linear-gradient(90deg,rgba(22,36,31,0.06) 1px,transparent 1px);
    background-size: 24px 24px;
    transition: transform .6s ease;
}

.project-card:hover .project-visual {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,36,31,0.92) 5%, rgba(22,36,31,0.15) 55%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--ivory);
}

.project-tag {
    display: inline-block;
    background: rgba(247,242,233,0.15);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
    backdrop-filter: blur(6px);
}

.project-hidden {
    display: none !important;
}

/* ===== MOBILE SCROLL-SNAP SLIDER (projects & blog) ===== */
.swipe-hint {
    display: none;
    align-items: center;
    gap: 8px;
    color: #8a958f;
    font-size: .82rem;
    font-weight: 600;
    margin: -10px 0 18px;
}

    .swipe-hint i {
        font-size: 1rem;
        color: var(--copper);
    }

@media(max-width:768px) {
    .swipe-hint {
        display: flex;
    }

    .mobile-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-inline: calc(-1 * var(--bs-gutter-x, .75rem));
        padding-inline: 20px;
        padding-bottom: 10px;
    }

        .mobile-slider::-webkit-scrollbar {
            display: none;
        }

        .mobile-slider > * {
            flex: 0 0 78%;
            max-width: 78%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }

        .mobile-slider .project-card {
            height: 280px;
        }
}

@media(max-width:420px) {
    .mobile-slider > * {
        flex-basis: 86%;
        max-width: 86%;
    }
}

/* ===== TESTIMONIALS ===== */
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--line);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testi-quote {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--ink);
    font-weight: 500;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--copper),var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    margin: 0 auto 12px;
}

.carousel-indicators [data-bs-target] {
    background: var(--copper);
}

/* ===== BLOG ===== */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    height: 100%;
    transition: .35s;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.blog-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
}

    .blog-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.08) 1px,transparent 1px);
        background-size: 22px 22px;
    }

.blog-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--forest);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

.blog-body {
    padding: 22px;
}

    .blog-body h5 {
        font-weight: 800;
        font-size: 1.05rem;
    }

    .blog-body p {
        color: #5c6a64;
        font-size: .89rem;
    }

.blog-meta {
    font-size: .78rem;
    color: #8a958f;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 28px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: var(--ivory);
}

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 90% 20%, rgba(190,124,77,0.35), transparent 45%);
    }

/* ===== CONTACT ===== */
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-control-custom {
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .95rem;
}

    .form-control-custom:focus {
        border-color: var(--forest-light);
        box-shadow: 0 0 0 3px rgba(46,110,90,0.15);
    }

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(247,242,233,0.75);
    padding: 64px 0 24px;
}

    footer h6 {
        color: var(--ivory);
        font-weight: 800;
        margin-bottom: 18px;
    }

    footer a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
        transition: .2s;
    }

        footer a:hover {
            color: var(--copper);
        }

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: .25s;
}

    .footer-social:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* back to top */
#backTop {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.6);
}

    #backTop.show {
        opacity: 1;
        pointer-events: auto;
    }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    position: relative;
    background: linear-gradient(120deg,var(--ink) 0%, var(--forest) 100%);
    padding: 170px 0 100px;
    overflow: hidden;
    color: var(--ivory);
}

@media(max-width:768px) {
    .page-header {
        padding: 150px 0 80px;
    }
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 20%, rgba(190,124,77,0.25), transparent 50%);
}

.page-crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(247,242,233,0.65);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

    .page-crumb a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
    }

        .page-crumb a:hover {
            color: var(--copper-light);
        }

    .page-crumb .sep {
        color: var(--copper-light);
    }

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(2.1rem,4vw,3.1rem);
    margin-bottom: 14px;
    color: var(--ivory);
}

.page-header p {
    position: relative;
    z-index: 2;
    color: rgba(247,242,233,0.75);
    max-width: 580px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.page-header .hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

    .page-header .hs-shape svg {
        width: 100%;
        height: 70px;
        display: block;
    }

/* ===== TIMELINE (about) ===== */
.timeline {
    position: relative;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 4px;
        bottom: 4px;
        right: 23px;
        width: 2px;
        background: var(--line);
    }

@media(max-width:576px) {
    .timeline::before {
        right: 19px;
    }
}

.timeline-item {
    position: relative;
    padding-right: 64px;
    margin-bottom: 38px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-dot {
    position: absolute;
    right: 6px;
    top: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--paper);
}

.timeline-item h5 {
    font-weight: 800;
    margin-bottom: 4px;
}

.timeline-item .timeline-year {
    color: var(--copper);
    font-weight: 800;
    font-size: .85rem;
    margin-bottom: 6px;
    display: block;
}

.timeline-item p {
    color: #5c6a64;
    font-size: .92rem;
    margin-bottom: 0;
}

/* ===== TEAM ===== */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--line);
    transition: .3s;
    height: 100%;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.team-role {
    color: var(--copper);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

    .team-social a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--forest);
        transition: .2s;
    }

        .team-social a:hover {
            background: var(--forest);
            color: var(--ivory);
            border-color: var(--forest);
        }

/* ===== FAQ ACCORDION ===== */
.accordion-custom .accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.accordion-custom .accordion-button {
    font-weight: 700;
    background: var(--white);
    padding: 18px 22px;
}

    .accordion-custom .accordion-button:not(.collapsed) {
        color: var(--forest);
        background: var(--forest-pale);
        box-shadow: none;
    }

    .accordion-custom .accordion-button:focus {
        box-shadow: none;
        border-color: var(--line);
    }

.accordion-custom .accordion-body {
    padding: 2px 22px 22px;
    color: #5c6a64;
    line-height: 1.9;
    font-size: .94rem;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    height: 360px;
    border-radius: var(--radius);
    background: var(--forest-pale);
    background-image: linear-gradient(rgba(31,75,63,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(31,75,63,0.08) 1px,transparent 1px);
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--forest);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

    .map-placeholder i.pin-icon {
        font-size: 2.2rem;
        color: var(--copper);
    }

    .map-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        color: #4b5a54;
        max-width: 260px;
    }

/* ===== WORKING HOURS ===== */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: .92rem;
}

    .hours-row:last-child {
        border-bottom: none;
    }

/* ===== NEWSLETTER BAND ===== */
.newsletter-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 26px;
    padding: 50px;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

    .newsletter-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 30%, rgba(190,124,77,0.3), transparent 45%);
    }

    .newsletter-band input {
        border: none;
        border-radius: 50px;
        padding: 14px 22px;
        width: 100%;
        font-family: var(--ff-body);
    }

        .newsletter-band input:focus {
            outline: 2px solid var(--copper);
        }

/* ===== PAGINATION ===== */
.pagination-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
}

    .pagination-custom button {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: var(--white);
        font-weight: 700;
        color: var(--ink);
        transition: .2s;
    }

        .pagination-custom button.active, .pagination-custom button:hover {
            background: var(--forest);
            color: var(--ivory);
            border-color: var(--forest);
        }

/* ===== LOAD MORE / MISC BUTTON ===== */
.btn-loadmore {
    border: 1.5px dashed var(--sage);
    border-radius: 50px;
    padding: 12px 36px;
    background: transparent;
    color: var(--forest);
    font-weight: 700;
    transition: .25s;
}

    .btn-loadmore:hover {
        background: var(--forest);
        color: var(--ivory);
        border-style: solid;
        border-color: var(--forest);
    }

/* ===== VALUE / ICON ROW (about) ===== */
.value-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* nav active underline */
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
}

















:root {
    --ink: #16241f;
    --forest: #1f4b3f;
    --forest-light: #2e6e5a;
    --forest-pale: #e7efe9;
    --ivory: #f7f2e9;
    --paper: #fbf8f2;
    --copper: #be7c4d;
    --copper-light: #e0a875;
    --sage: #a9bfae;
    --gold: #c9a66b;
    --white: #ffffff;
    --line: rgba(22,36,31,0.1);
    --shadow-soft: 0 20px 50px -20px rgba(22,36,31,0.25);
    --radius: 18px;
    --ff-body: 'Vazirmatn', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

::selection {
    background: var(--copper);
    color: var(--white);
}

h1, h2, h3, h4, .display-font {
    font-family: var(--ff-body);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--copper);
    text-transform: uppercase;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        background: var(--copper);
        display: inline-block;
    }

.section-pad {
    padding: 96px 0;
}

@media(max-width:768px) {
    .section-pad {
        padding: 64px 0;
    }
}

.bg-ivory {
    background: var(--ivory);
}

.bg-forest {
    background: var(--forest);
    color: var(--ivory);
}

    .bg-forest h2, .bg-forest h3, .bg-forest .display-font {
        color: var(--ivory);
    }

.text-copper {
    color: var(--copper) !important;
}

.text-forest {
    color: var(--forest) !important;
}

.divider-gold {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg,var(--copper),var(--gold));
    border-radius: 3px;
}

/* blueprint grid texture */
.blueprint-bg {
    background-image: linear-gradient(rgba(31,75,63,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(31,75,63,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
}

.blueprint-bg-dark {
    background-image: linear-gradient(rgba(247,242,233,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,233,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* ===== NAVBAR ===== */
.navbar-custom {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    padding: 22px 0;
    transition: all .35s ease;
    background: transparent;
}

    .navbar-custom.scrolled {
        padding: 12px 0;
        background: rgba(251,248,242,0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 24px rgba(22,36,31,0.08);
    }

.nav-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ivory) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-brand {
    color: var(--ink) !important;
}

.navbar-toggler {
    color: var(--ivory);
    border-color: rgba(247,242,233,0.4) !important;
}

.navbar-custom.scrolled .navbar-toggler {
    color: var(--ink);
    border-color: rgba(22,36,31,0.2) !important;
}

@media(max-width:991px) {
    .navbar-collapse.show {
        background: var(--forest);
        border-radius: 16px;
        margin-top: 14px;
        padding: 10px 20px 18px;
    }

        .navbar-collapse.show .nav-link {
            color: var(--ivory) !important;
        }
}

.nav-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-weight: 800;
    font-size: 1.05rem;
    transform: rotate(-6deg);
    box-shadow: 0 8px 18px -6px rgba(31,75,63,0.55);
}

.navbar-custom .nav-link {
    font-weight: 600;
    color: var(--ivory) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-link {
    color: var(--ink) !important;
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.navbar-custom .nav-link:hover::after {
    transform: scaleX(1);
}

.btn-copper {
    background: var(--copper);
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all .3s ease;
    box-shadow: 0 10px 24px -8px rgba(190,124,77,0.65);
}

    .btn-copper:hover {
        background: #a86a3f;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -8px rgba(190,124,77,0.75);
    }

.btn-outline-forest {
    border: 1.5px solid var(--forest);
    color: var(--forest);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-forest:hover {
        background: var(--forest);
        color: var(--ivory);
    }

.btn-outline-ivory {
    border: 1.5px solid rgba(247,242,233,0.5);
    color: var(--ivory);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-ivory:hover {
        background: var(--ivory);
        color: var(--forest);
        border-color: var(--ivory);
    }

/* ===== HERO SLIDER BANNER ===== */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 640px;
    margin-top: 0;
    overflow: hidden;
    background: var(--ink);
}

@media(max-width:768px) {
    .hero-slider {
        height: auto;
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 150px;
    }
}

.hs-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}

    .hs-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

@media(max-width:768px) {
    .hs-slide {
        position: relative;
        display: none;
        height: auto;
        padding: 20px 0 40px;
    }

        .hs-slide.active {
            display: block;
        }
}

.hs-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

@media(max-width:768px) {
    .hs-media {
        position: relative;
        height: 340px;
        border-radius: 22px;
        margin: 0 16px;
        overflow: hidden;
    }
}

.hs-media .hs-img,
.hs-media .hs-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 8s ease-out;
}

.hs-slide.active .hs-img,
.hs-slide.active .hs-placeholder {
    transform: scale(1);
}

.hs-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(247,242,233,0.55);
    border: 2px dashed rgba(247,242,233,0.22);
}

    .hs-placeholder i {
        font-size: 2.6rem;
    }

    .hs-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        max-width: 260px;
        text-align: center;
    }

.hs-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(85deg, rgba(15,26,22,0.92) 8%, rgba(15,26,22,0.55) 42%, rgba(15,26,22,0.15) 68%);
    z-index: 2;
}

@media(max-width:768px) {
    .hs-media::before {
        background: linear-gradient(0deg, rgba(15,26,22,0.85) 10%, rgba(15,26,22,0.15) 60%);
    }
}

/* organic bottom shape cut */
.hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 5;
    line-height: 0;
}

    .hs-shape svg {
        width: 100%;
        height: 90px;
        display: block;
    }

@media(max-width:768px) {
    .hs-shape {
        display: none;
    }
}

.hs-content {
    position: relative;
    z-index: 6;
    height: 100%;
    display: flex;
    align-items: center;
}

@media(max-width:768px) {
    .hs-content {
        height: auto;
        padding: 0 34px;
        margin-top: 22px;
    }
}

.hs-num {
    font-size: .8rem;
    font-weight: 800;
    color: var(--copper-light);
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .hs-num::after {
        content: "";
        width: 38px;
        height: 1px;
        background: rgba(247,242,233,0.35);
    }

.hs-tagpill {
    display: inline-block;
    background: var(--copper);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hs-content h1 {
    color: var(--ivory);
    font-size: clamp(2.1rem,4.2vw,3.35rem);
    line-height: 1.22;
    max-width: 620px;
    margin-bottom: 18px;
}

.hs-content p {
    color: rgba(247,242,233,0.72);
    max-width: 460px;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* custom side progress indicators (vertical dashes, right side) */
.hs-indicators {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media(max-width:991px) {
    .hs-indicators {
        display: none;
    }
}

.hs-dash {
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: rgba(247,242,233,0.3);
    border: none;
    cursor: pointer;
    transition: .3s;
    position: relative;
}

    .hs-dash.active {
        background: var(--copper);
        width: 50px;
    }

/* arrows */
.hs-arrows {
    position: absolute;
    bottom: 28px;
    left: 24px;
    z-index: 7;
    display: flex;
    gap: 10px;
}

@media(max-width:768px) {
    .hs-arrows {
        bottom: 16px;
    }
}

.hs-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.3);
    background: rgba(247,242,233,0.06);
    backdrop-filter: blur(6px);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

    .hs-arrow:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* slide counter */
.hs-counter {
    position: absolute;
    bottom: 34px;
    right: 24px;
    z-index: 7;
    color: rgba(247,242,233,0.6);
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media(max-width:768px) {
    .hs-counter {
        display: none;
    }
}

.hs-counter b {
    color: var(--ivory);
    font-size: 1.15rem;
}

/* floating stat card overlapping the wave */
.hero-stats-float {
    position: relative;
    z-index: 8;
    margin-top: -64px;
}

@media(max-width:768px) {
    .hero-stats-float {
        margin-top: -120px;
    }
}

.hero-stats-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 30px 60px -20px rgba(22,36,31,0.35);
    padding: 26px 20px;
}

    .hero-stats-card .stat-num {
        font-size: 1.9rem;
        font-weight: 800;
        color: var(--forest);
    }

    .hero-stats-card .stat-label {
        font-size: .8rem;
        color: #5c6a64;
        font-weight: 600;
    }

    .hero-stats-card .vr-line {
        width: 1px;
        background: var(--line);
    }

/* ===== SERVICES ===== */
.card-3d-wrap {
    perspective: 1200px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    height: 100%;
    border: 1px solid var(--line);
    transition: box-shadow .35s ease, transform .1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(190,124,77,0.06),transparent 60%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card:hover {
        box-shadow: 0 30px 60px -20px rgba(22,36,31,0.28);
    }

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--forest-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.service-card h4 {
    font-size: 1.15rem;
    transform: translateZ(20px);
}

.service-card p {
    color: #5c6a64;
    font-size: .94rem;
    line-height: 1.9;
    transform: translateZ(15px);
}

.service-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: .75rem;
    font-weight: 800;
    color: rgba(31,75,63,0.25);
}

/* ===== PROCESS ===== */
.process-line {
    position: relative;
}

    .process-line::before {
        content: "";
        position: absolute;
        top: 26px;
        right: 8%;
        left: 8%;
        height: 2px;
        background: repeating-linear-gradient(90deg,var(--copper) 0 8px, transparent 8px 16px);
    }

@media(max-width:768px) {
    .process-line::before {
        display: none;
    }
}

.process-step {
    position: relative;
    text-align: center;
}

.process-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.5);
}

.process-step h5 {
    font-weight: 800;
}

.process-step p {
    color: #5c6a64;
    font-size: .9rem;
    max-width: 220px;
    margin: 8px auto 0;
}

/* ===== PROJECTS ===== */
.filter-pills .btn {
    border-radius: 50px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
    font-size: .88rem;
    padding: 8px 20px;
    background: var(--white);
    margin: 4px;
    transition: .25s;
}

    .filter-pills .btn.active {
        background: var(--forest);
        color: var(--ivory);
        border-color: var(--forest);
    }

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}

    .project-card:hover {
        transform: translateY(-10px) rotateX(4deg);
        box-shadow: 0 40px 70px -25px rgba(22,36,31,0.4);
    }

.project-visual {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(22,36,31,0.06) 1px,transparent 1px), linear-gradient(90deg,rgba(22,36,31,0.06) 1px,transparent 1px);
    background-size: 24px 24px;
    transition: transform .6s ease;
}

.project-card:hover .project-visual {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,36,31,0.92) 5%, rgba(22,36,31,0.15) 55%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--ivory);
}

.project-tag {
    display: inline-block;
    background: rgba(247,242,233,0.15);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
    backdrop-filter: blur(6px);
}

.project-hidden {
    display: none !important;
}

/* ===== MOBILE SCROLL-SNAP SLIDER (projects & blog) ===== */
.swipe-hint {
    display: none;
    align-items: center;
    gap: 8px;
    color: #8a958f;
    font-size: .82rem;
    font-weight: 600;
    margin: -10px 0 18px;
}

    .swipe-hint i {
        font-size: 1rem;
        color: var(--copper);
    }

@media(max-width:768px) {
    .swipe-hint {
        display: flex;
    }

    .mobile-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-inline: calc(-1 * var(--bs-gutter-x, .75rem));
        padding-inline: 20px;
        padding-bottom: 10px;
    }

        .mobile-slider::-webkit-scrollbar {
            display: none;
        }

        .mobile-slider > * {
            flex: 0 0 78%;
            max-width: 78%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }

        .mobile-slider .project-card {
            height: 280px;
        }
}

@media(max-width:420px) {
    .mobile-slider > * {
        flex-basis: 86%;
        max-width: 86%;
    }
}

/* ===== TESTIMONIALS ===== */
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--line);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testi-quote {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--ink);
    font-weight: 500;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--copper),var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    margin: 0 auto 12px;
}

.carousel-indicators [data-bs-target] {
    background: var(--copper);
}

/* ===== BLOG ===== */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    height: 100%;
    transition: .35s;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.blog-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
}

    .blog-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.08) 1px,transparent 1px);
        background-size: 22px 22px;
    }

.blog-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--forest);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

.blog-body {
    padding: 22px;
}

    .blog-body h5 {
        font-weight: 800;
        font-size: 1.05rem;
    }

    .blog-body p {
        color: #5c6a64;
        font-size: .89rem;
    }

.blog-meta {
    font-size: .78rem;
    color: #8a958f;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 28px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: var(--ivory);
}

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 90% 20%, rgba(190,124,77,0.35), transparent 45%);
    }

/* ===== CONTACT ===== */
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-control-custom {
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .95rem;
}

    .form-control-custom:focus {
        border-color: var(--forest-light);
        box-shadow: 0 0 0 3px rgba(46,110,90,0.15);
    }

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(247,242,233,0.75);
    padding: 64px 0 24px;
}

    footer h6 {
        color: var(--ivory);
        font-weight: 800;
        margin-bottom: 18px;
    }

    footer a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
        transition: .2s;
    }

        footer a:hover {
            color: var(--copper);
        }

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: .25s;
}

    .footer-social:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* back to top */
#backTop {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.6);
}

    #backTop.show {
        opacity: 1;
        pointer-events: auto;
    }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    position: relative;
    background: linear-gradient(120deg,var(--ink) 0%, var(--forest) 100%);
    padding: 170px 0 100px;
    overflow: hidden;
    color: var(--ivory);
}

@media(max-width:768px) {
    .page-header {
        padding: 150px 0 80px;
    }
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 20%, rgba(190,124,77,0.25), transparent 50%);
}

.page-crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(247,242,233,0.65);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

    .page-crumb a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
    }

        .page-crumb a:hover {
            color: var(--copper-light);
        }

    .page-crumb .sep {
        color: var(--copper-light);
    }

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(2.1rem,4vw,3.1rem);
    margin-bottom: 14px;
    color: var(--ivory);
}

.page-header p {
    position: relative;
    z-index: 2;
    color: rgba(247,242,233,0.75);
    max-width: 580px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.page-header .hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

    .page-header .hs-shape svg {
        width: 100%;
        height: 70px;
        display: block;
    }

/* ===== TIMELINE (about) ===== */
.timeline {
    position: relative;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 4px;
        bottom: 4px;
        right: 23px;
        width: 2px;
        background: var(--line);
    }

@media(max-width:576px) {
    .timeline::before {
        right: 19px;
    }
}

.timeline-item {
    position: relative;
    padding-right: 64px;
    margin-bottom: 38px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-dot {
    position: absolute;
    right: 6px;
    top: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--paper);
}

.timeline-item h5 {
    font-weight: 800;
    margin-bottom: 4px;
}

.timeline-item .timeline-year {
    color: var(--copper);
    font-weight: 800;
    font-size: .85rem;
    margin-bottom: 6px;
    display: block;
}

.timeline-item p {
    color: #5c6a64;
    font-size: .92rem;
    margin-bottom: 0;
}

/* ===== TEAM ===== */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--line);
    transition: .3s;
    height: 100%;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.team-role {
    color: var(--copper);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

    .team-social a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--forest);
        transition: .2s;
    }

        .team-social a:hover {
            background: var(--forest);
            color: var(--ivory);
            border-color: var(--forest);
        }

/* ===== FAQ ACCORDION ===== */
.accordion-custom .accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.accordion-custom .accordion-button {
    font-weight: 700;
    background: var(--white);
    padding: 18px 22px;
}

    .accordion-custom .accordion-button:not(.collapsed) {
        color: var(--forest);
        background: var(--forest-pale);
        box-shadow: none;
    }

    .accordion-custom .accordion-button:focus {
        box-shadow: none;
        border-color: var(--line);
    }

.accordion-custom .accordion-body {
    padding: 2px 22px 22px;
    color: #5c6a64;
    line-height: 1.9;
    font-size: .94rem;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    height: 360px;
    border-radius: var(--radius);
    background: var(--forest-pale);
    background-image: linear-gradient(rgba(31,75,63,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(31,75,63,0.08) 1px,transparent 1px);
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--forest);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

    .map-placeholder i.pin-icon {
        font-size: 2.2rem;
        color: var(--copper);
    }

    .map-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        color: #4b5a54;
        max-width: 260px;
    }

/* ===== WORKING HOURS ===== */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: .92rem;
}

    .hours-row:last-child {
        border-bottom: none;
    }

/* ===== NEWSLETTER BAND ===== */
.newsletter-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 26px;
    padding: 50px;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

    .newsletter-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 30%, rgba(190,124,77,0.3), transparent 45%);
    }

    .newsletter-band input {
        border: none;
        border-radius: 50px;
        padding: 14px 22px;
        width: 100%;
        font-family: var(--ff-body);
    }

        .newsletter-band input:focus {
            outline: 2px solid var(--copper);
        }

/* ===== PAGINATION ===== */
.pagination-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
}

    .pagination-custom button {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: var(--white);
        font-weight: 700;
        color: var(--ink);
        transition: .2s;
    }

        .pagination-custom button.active, .pagination-custom button:hover {
            background: var(--forest);
            color: var(--ivory);
            border-color: var(--forest);
        }

/* ===== LOAD MORE / MISC BUTTON ===== */
.btn-loadmore {
    border: 1.5px dashed var(--sage);
    border-radius: 50px;
    padding: 12px 36px;
    background: transparent;
    color: var(--forest);
    font-weight: 700;
    transition: .25s;
}

    .btn-loadmore:hover {
        background: var(--forest);
        color: var(--ivory);
        border-style: solid;
        border-color: var(--forest);
    }

/* ===== VALUE / ICON ROW (about) ===== */
.value-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* nav active underline */
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
}










:root {
    --ink: #16241f;
    --forest: #1f4b3f;
    --forest-light: #2e6e5a;
    --forest-pale: #e7efe9;
    --ivory: #f7f2e9;
    --paper: #fbf8f2;
    --copper: #be7c4d;
    --copper-light: #e0a875;
    --sage: #a9bfae;
    --gold: #c9a66b;
    --white: #ffffff;
    --line: rgba(22,36,31,0.1);
    --shadow-soft: 0 20px 50px -20px rgba(22,36,31,0.25);
    --radius: 18px;
    --ff-body: 'Vazirmatn', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

::selection {
    background: var(--copper);
    color: var(--white);
}

h1, h2, h3, h4, .display-font {
    font-family: var(--ff-body);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--copper);
    text-transform: uppercase;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        background: var(--copper);
        display: inline-block;
    }

.section-pad {
    padding: 96px 0;
}

@media(max-width:768px) {
    .section-pad {
        padding: 64px 0;
    }
}

.bg-ivory {
    background: var(--ivory);
}

.bg-forest {
    background: var(--forest);
    color: var(--ivory);
}

    .bg-forest h2, .bg-forest h3, .bg-forest .display-font {
        color: var(--ivory);
    }

.text-copper {
    color: var(--copper) !important;
}

.text-forest {
    color: var(--forest) !important;
}

.divider-gold {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg,var(--copper),var(--gold));
    border-radius: 3px;
}

/* blueprint grid texture */
.blueprint-bg {
    background-image: linear-gradient(rgba(31,75,63,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(31,75,63,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
}

.blueprint-bg-dark {
    background-image: linear-gradient(rgba(247,242,233,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,233,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* ===== NAVBAR ===== */
.navbar-custom {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    padding: 22px 0;
    transition: all .35s ease;
    background: transparent;
}

    .navbar-custom.scrolled {
        padding: 12px 0;
        background: rgba(251,248,242,0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 24px rgba(22,36,31,0.08);
    }

.nav-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ivory) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-brand {
    color: var(--ink) !important;
}

.navbar-toggler {
    color: var(--ivory);
    border-color: rgba(247,242,233,0.4) !important;
}

.navbar-custom.scrolled .navbar-toggler {
    color: var(--ink);
    border-color: rgba(22,36,31,0.2) !important;
}

@media(max-width:991px) {
    .navbar-collapse.show {
        background: var(--forest);
        border-radius: 16px;
        margin-top: 14px;
        padding: 10px 20px 18px;
    }

        .navbar-collapse.show .nav-link {
            color: var(--ivory) !important;
        }
}

.nav-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-weight: 800;
    font-size: 1.05rem;
    transform: rotate(-6deg);
    box-shadow: 0 8px 18px -6px rgba(31,75,63,0.55);
}

.navbar-custom .nav-link {
    font-weight: 600;
    color: var(--ivory) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-link {
    color: var(--ink) !important;
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.navbar-custom .nav-link:hover::after {
    transform: scaleX(1);
}

.btn-copper {
    background: var(--copper);
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all .3s ease;
    box-shadow: 0 10px 24px -8px rgba(190,124,77,0.65);
}

    .btn-copper:hover {
        background: #a86a3f;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -8px rgba(190,124,77,0.75);
    }

.btn-outline-forest {
    border: 1.5px solid var(--forest);
    color: var(--forest);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-forest:hover {
        background: var(--forest);
        color: var(--ivory);
    }

.btn-outline-ivory {
    border: 1.5px solid rgba(247,242,233,0.5);
    color: var(--ivory);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-ivory:hover {
        background: var(--ivory);
        color: var(--forest);
        border-color: var(--ivory);
    }

/* ===== HERO SLIDER BANNER ===== */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 640px;
    margin-top: 0;
    overflow: hidden;
    background: var(--ink);
}

@media(max-width:768px) {
    .hero-slider {
        height: auto;
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 150px;
    }
}

.hs-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}

    .hs-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

@media(max-width:768px) {
    .hs-slide {
        position: relative;
        display: none;
        height: auto;
        padding: 20px 0 40px;
    }

        .hs-slide.active {
            display: block;
        }
}

.hs-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

@media(max-width:768px) {
    .hs-media {
        position: relative;
        height: 340px;
        border-radius: 22px;
        margin: 0 16px;
        overflow: hidden;
    }
}

.hs-media .hs-img,
.hs-media .hs-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 8s ease-out;
}

.hs-slide.active .hs-img,
.hs-slide.active .hs-placeholder {
    transform: scale(1);
}

.hs-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(247,242,233,0.55);
    border: 2px dashed rgba(247,242,233,0.22);
}

    .hs-placeholder i {
        font-size: 2.6rem;
    }

    .hs-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        max-width: 260px;
        text-align: center;
    }

.hs-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(85deg, rgba(15,26,22,0.92) 8%, rgba(15,26,22,0.55) 42%, rgba(15,26,22,0.15) 68%);
    z-index: 2;
}

@media(max-width:768px) {
    .hs-media::before {
        background: linear-gradient(0deg, rgba(15,26,22,0.85) 10%, rgba(15,26,22,0.15) 60%);
    }
}

/* organic bottom shape cut */
.hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 5;
    line-height: 0;
}

    .hs-shape svg {
        width: 100%;
        height: 90px;
        display: block;
    }

@media(max-width:768px) {
    .hs-shape {
        display: none;
    }
}

.hs-content {
    position: relative;
    z-index: 6;
    height: 100%;
    display: flex;
    align-items: center;
}

@media(max-width:768px) {
    .hs-content {
        height: auto;
        padding: 0 34px;
        margin-top: 22px;
    }
}

.hs-num {
    font-size: .8rem;
    font-weight: 800;
    color: var(--copper-light);
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .hs-num::after {
        content: "";
        width: 38px;
        height: 1px;
        background: rgba(247,242,233,0.35);
    }

.hs-tagpill {
    display: inline-block;
    background: var(--copper);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hs-content h1 {
    color: var(--ivory);
    font-size: clamp(2.1rem,4.2vw,3.35rem);
    line-height: 1.22;
    max-width: 620px;
    margin-bottom: 18px;
}

.hs-content p {
    color: rgba(247,242,233,0.72);
    max-width: 460px;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* custom side progress indicators (vertical dashes, right side) */
.hs-indicators {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media(max-width:991px) {
    .hs-indicators {
        display: none;
    }
}

.hs-dash {
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: rgba(247,242,233,0.3);
    border: none;
    cursor: pointer;
    transition: .3s;
    position: relative;
}

    .hs-dash.active {
        background: var(--copper);
        width: 50px;
    }

/* arrows */
.hs-arrows {
    position: absolute;
    bottom: 28px;
    left: 24px;
    z-index: 7;
    display: flex;
    gap: 10px;
}

@media(max-width:768px) {
    .hs-arrows {
        bottom: 16px;
    }
}

.hs-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.3);
    background: rgba(247,242,233,0.06);
    backdrop-filter: blur(6px);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

    .hs-arrow:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* slide counter */
.hs-counter {
    position: absolute;
    bottom: 34px;
    right: 24px;
    z-index: 7;
    color: rgba(247,242,233,0.6);
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media(max-width:768px) {
    .hs-counter {
        display: none;
    }
}

.hs-counter b {
    color: var(--ivory);
    font-size: 1.15rem;
}

/* floating stat card overlapping the wave */
.hero-stats-float {
    position: relative;
    z-index: 8;
    margin-top: -64px;
}

@media(max-width:768px) {
    .hero-stats-float {
        margin-top: -120px;
    }
}

.hero-stats-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 30px 60px -20px rgba(22,36,31,0.35);
    padding: 26px 20px;
}

    .hero-stats-card .stat-num {
        font-size: 1.9rem;
        font-weight: 800;
        color: var(--forest);
    }

    .hero-stats-card .stat-label {
        font-size: .8rem;
        color: #5c6a64;
        font-weight: 600;
    }

    .hero-stats-card .vr-line {
        width: 1px;
        background: var(--line);
    }

/* ===== SERVICES ===== */
.card-3d-wrap {
    perspective: 1200px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    height: 100%;
    border: 1px solid var(--line);
    transition: box-shadow .35s ease, transform .1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(190,124,77,0.06),transparent 60%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card:hover {
        box-shadow: 0 30px 60px -20px rgba(22,36,31,0.28);
    }

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--forest-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.service-card h4 {
    font-size: 1.15rem;
    transform: translateZ(20px);
}

.service-card p {
    color: #5c6a64;
    font-size: .94rem;
    line-height: 1.9;
    transform: translateZ(15px);
}

.service-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: .75rem;
    font-weight: 800;
    color: rgba(31,75,63,0.25);
}

/* ===== PROCESS ===== */
.process-line {
    position: relative;
}

    .process-line::before {
        content: "";
        position: absolute;
        top: 26px;
        right: 8%;
        left: 8%;
        height: 2px;
        background: repeating-linear-gradient(90deg,var(--copper) 0 8px, transparent 8px 16px);
    }

@media(max-width:768px) {
    .process-line::before {
        display: none;
    }
}

.process-step {
    position: relative;
    text-align: center;
}

.process-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.5);
}

.process-step h5 {
    font-weight: 800;
}

.process-step p {
    color: #5c6a64;
    font-size: .9rem;
    max-width: 220px;
    margin: 8px auto 0;
}

/* ===== PROJECTS ===== */
.filter-pills .btn {
    border-radius: 50px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
    font-size: .88rem;
    padding: 8px 20px;
    background: var(--white);
    margin: 4px;
    transition: .25s;
}

    .filter-pills .btn.active {
        background: var(--forest);
        color: var(--ivory);
        border-color: var(--forest);
    }

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}

    .project-card:hover {
        transform: translateY(-10px) rotateX(4deg);
        box-shadow: 0 40px 70px -25px rgba(22,36,31,0.4);
    }

.project-visual {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(22,36,31,0.06) 1px,transparent 1px), linear-gradient(90deg,rgba(22,36,31,0.06) 1px,transparent 1px);
    background-size: 24px 24px;
    transition: transform .6s ease;
}

.project-card:hover .project-visual {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,36,31,0.92) 5%, rgba(22,36,31,0.15) 55%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--ivory);
}

.project-tag {
    display: inline-block;
    background: rgba(247,242,233,0.15);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
    backdrop-filter: blur(6px);
}

.project-hidden {
    display: none !important;
}

/* ===== MOBILE SCROLL-SNAP SLIDER (projects & blog) ===== */
.swipe-hint {
    display: none;
    align-items: center;
    gap: 8px;
    color: #8a958f;
    font-size: .82rem;
    font-weight: 600;
    margin: -10px 0 18px;
}

    .swipe-hint i {
        font-size: 1rem;
        color: var(--copper);
    }

@media(max-width:768px) {
    .swipe-hint {
        display: flex;
    }

    .mobile-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-inline: calc(-1 * var(--bs-gutter-x, .75rem));
        padding-inline: 20px;
        padding-bottom: 10px;
    }

        .mobile-slider::-webkit-scrollbar {
            display: none;
        }

        .mobile-slider > * {
            flex: 0 0 78%;
            max-width: 78%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }

        .mobile-slider .project-card {
            height: 280px;
        }
}

@media(max-width:420px) {
    .mobile-slider > * {
        flex-basis: 86%;
        max-width: 86%;
    }
}

/* ===== TESTIMONIALS ===== */
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--line);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testi-quote {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--ink);
    font-weight: 500;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--copper),var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    margin: 0 auto 12px;
}

.carousel-indicators [data-bs-target] {
    background: var(--copper);
}

/* ===== BLOG ===== */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    height: 100%;
    transition: .35s;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.blog-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
}

    .blog-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.08) 1px,transparent 1px);
        background-size: 22px 22px;
    }

.blog-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--forest);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

.blog-body {
    padding: 22px;
}

    .blog-body h5 {
        font-weight: 800;
        font-size: 1.05rem;
    }

    .blog-body p {
        color: #5c6a64;
        font-size: .89rem;
    }

.blog-meta {
    font-size: .78rem;
    color: #8a958f;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 28px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: var(--ivory);
}

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 90% 20%, rgba(190,124,77,0.35), transparent 45%);
    }

/* ===== CONTACT ===== */
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-control-custom {
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .95rem;
}

    .form-control-custom:focus {
        border-color: var(--forest-light);
        box-shadow: 0 0 0 3px rgba(46,110,90,0.15);
    }

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(247,242,233,0.75);
    padding: 64px 0 24px;
}

    footer h6 {
        color: var(--ivory);
        font-weight: 800;
        margin-bottom: 18px;
    }

    footer a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
        transition: .2s;
    }

        footer a:hover {
            color: var(--copper);
        }

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: .25s;
}

    .footer-social:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* back to top */
#backTop {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.6);
}

    #backTop.show {
        opacity: 1;
        pointer-events: auto;
    }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    position: relative;
    background: linear-gradient(120deg,var(--ink) 0%, var(--forest) 100%);
    padding: 170px 0 100px;
    overflow: hidden;
    color: var(--ivory);
}

@media(max-width:768px) {
    .page-header {
        padding: 150px 0 80px;
    }
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 20%, rgba(190,124,77,0.25), transparent 50%);
}

.page-crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(247,242,233,0.65);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

    .page-crumb a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
    }

        .page-crumb a:hover {
            color: var(--copper-light);
        }

    .page-crumb .sep {
        color: var(--copper-light);
    }

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(2.1rem,4vw,3.1rem);
    margin-bottom: 14px;
    color: var(--ivory);
}

.page-header p {
    position: relative;
    z-index: 2;
    color: rgba(247,242,233,0.75);
    max-width: 580px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.page-header .hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

    .page-header .hs-shape svg {
        width: 100%;
        height: 70px;
        display: block;
    }

/* ===== TIMELINE (about) ===== */
.timeline {
    position: relative;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 4px;
        bottom: 4px;
        right: 23px;
        width: 2px;
        background: var(--line);
    }

@media(max-width:576px) {
    .timeline::before {
        right: 19px;
    }
}

.timeline-item {
    position: relative;
    padding-right: 64px;
    margin-bottom: 38px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-dot {
    position: absolute;
    right: 6px;
    top: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--paper);
}

.timeline-item h5 {
    font-weight: 800;
    margin-bottom: 4px;
}

.timeline-item .timeline-year {
    color: var(--copper);
    font-weight: 800;
    font-size: .85rem;
    margin-bottom: 6px;
    display: block;
}

.timeline-item p {
    color: #5c6a64;
    font-size: .92rem;
    margin-bottom: 0;
}

/* ===== TEAM ===== */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--line);
    transition: .3s;
    height: 100%;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.team-role {
    color: var(--copper);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

    .team-social a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--forest);
        transition: .2s;
    }

        .team-social a:hover {
            background: var(--forest);
            color: var(--ivory);
            border-color: var(--forest);
        }

/* ===== FAQ ACCORDION ===== */
.accordion-custom .accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.accordion-custom .accordion-button {
    font-weight: 700;
    background: var(--white);
    padding: 18px 22px;
}

    .accordion-custom .accordion-button:not(.collapsed) {
        color: var(--forest);
        background: var(--forest-pale);
        box-shadow: none;
    }

    .accordion-custom .accordion-button:focus {
        box-shadow: none;
        border-color: var(--line);
    }

.accordion-custom .accordion-body {
    padding: 2px 22px 22px;
    color: #5c6a64;
    line-height: 1.9;
    font-size: .94rem;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    height: 360px;
    border-radius: var(--radius);
    background: var(--forest-pale);
    background-image: linear-gradient(rgba(31,75,63,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(31,75,63,0.08) 1px,transparent 1px);
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--forest);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

    .map-placeholder i.pin-icon {
        font-size: 2.2rem;
        color: var(--copper);
    }

    .map-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        color: #4b5a54;
        max-width: 260px;
    }

/* ===== WORKING HOURS ===== */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: .92rem;
}

    .hours-row:last-child {
        border-bottom: none;
    }

/* ===== NEWSLETTER BAND ===== */
.newsletter-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 26px;
    padding: 50px;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

    .newsletter-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 30%, rgba(190,124,77,0.3), transparent 45%);
    }

    .newsletter-band input {
        border: none;
        border-radius: 50px;
        padding: 14px 22px;
        width: 100%;
        font-family: var(--ff-body);
    }

        .newsletter-band input:focus {
            outline: 2px solid var(--copper);
        }

/* ===== PAGINATION ===== */
.pagination-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
}

    .pagination-custom button {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: var(--white);
        font-weight: 700;
        color: var(--ink);
        transition: .2s;
    }

        .pagination-custom button.active, .pagination-custom button:hover {
            background: var(--forest);
            color: var(--ivory);
            border-color: var(--forest);
        }

/* ===== LOAD MORE / MISC BUTTON ===== */
.btn-loadmore {
    border: 1.5px dashed var(--sage);
    border-radius: 50px;
    padding: 12px 36px;
    background: transparent;
    color: var(--forest);
    font-weight: 700;
    transition: .25s;
}

    .btn-loadmore:hover {
        background: var(--forest);
        color: var(--ivory);
        border-style: solid;
        border-color: var(--forest);
    }

/* ===== VALUE / ICON ROW (about) ===== */
.value-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* nav active underline */
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
}



.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    transition: .35s;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,.10);
    }

.service-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius:10px;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45), transparent);
}

.service-icon {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
    font-size: 22px;
}

.service-body {
    padding: 24px;
    position: relative;
}

.service-num {
    position: absolute;
    left: 20px;
    top: -12px;
    font-size: 56px;
    font-weight: 800;
    color: #f5f5f5;
    line-height: 1;
    pointer-events: none;
}

.service-title {
    position: relative;
    font-size: 20px;
    margin-bottom: 18px;
    padding-right: 18px;
}

    .service-title::before {
        content: "";
        position: absolute;
        right: 0;
        top: 4px;
        width: 4px;
        height: 24px;
        background: #C49A6C;
        border-radius: 10px;
    }

.service-text {
    color: #777;
    line-height: 2;
}

.service-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f5f2;
    margin-top: 20px;
    transition: .3s;
}

.service-card:hover .service-arrow {
    background: #C49A6C;
    color: #fff;
    transform: translateX(-5px);
}



.testi-avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    display: block;
    border: 4px solid rgba(255,255,255,.15);
    margin-bottom: 20px;
}

.testi-card {
    max-width: 700px;
    margin: auto;
}

.project-visual {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 24px;
}

    .project-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

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

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
}

.project-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
}

.project-tag {
    display: inline-block;
    background: #fff;
    color: #222;
    padding: 6px 15px;
    border-radius: 30px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    transition: .35s;
}

    .project-card:hover {
        transform: translateY(-8px);
    }



.blog-thumb {
    position: relative;
    height: 230px;
    overflow: hidden;
}

    .blog-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45), transparent);
}

.blog-cat {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}





:root {
    --ink: #16241f;
    --forest: #1f4b3f;
    --forest-light: #2e6e5a;
    --forest-pale: #e7efe9;
    --ivory: #f7f2e9;
    --paper: #fbf8f2;
    --copper: #be7c4d;
    --copper-light: #e0a875;
    --sage: #a9bfae;
    --gold: #c9a66b;
    --white: #ffffff;
    --line: rgba(22,36,31,0.1);
    --shadow-soft: 0 20px 50px -20px rgba(22,36,31,0.25);
    --radius: 18px;
    --ff-body: 'Vazirmatn', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

::selection {
    background: var(--copper);
    color: var(--white);
}

h1, h2, h3, h4, .display-font {
    font-family: var(--ff-body);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--copper);
    text-transform: uppercase;
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 2px;
        background: var(--copper);
        display: inline-block;
    }

.section-pad {
    padding: 96px 0;
}

@media(max-width:768px) {
    .section-pad {
        padding: 64px 0;
    }
}

.bg-ivory {
    background: var(--ivory);
}

.bg-forest {
    background: var(--forest);
    color: var(--ivory);
}

    .bg-forest h2, .bg-forest h3, .bg-forest .display-font {
        color: var(--ivory);
    }

.text-copper {
    color: var(--copper) !important;
}

.text-forest {
    color: var(--forest) !important;
}

.divider-gold {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg,var(--copper),var(--gold));
    border-radius: 3px;
}

/* blueprint grid texture */
.blueprint-bg {
    background-image: linear-gradient(rgba(31,75,63,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(31,75,63,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
}

.blueprint-bg-dark {
    background-image: linear-gradient(rgba(247,242,233,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(247,242,233,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* ===== NAVBAR ===== */
.navbar-custom {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    padding: 22px 0;
    transition: all .35s ease;
    background: transparent;
}

    .navbar-custom.scrolled {
        padding: 12px 0;
        background: rgba(251,248,242,0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 24px rgba(22,36,31,0.08);
    }

.nav-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ivory) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-brand {
    color: var(--ink) !important;
}

.navbar-toggler {
    color: var(--ivory);
    border-color: rgba(247,242,233,0.4) !important;
}

.navbar-custom.scrolled .navbar-toggler {
    color: var(--ink);
    border-color: rgba(22,36,31,0.2) !important;
}

@media(max-width:991px) {
    .navbar-collapse.show {
        background: var(--forest);
        border-radius: 16px;
        margin-top: 14px;
        padding: 10px 20px 18px;
    }

        .navbar-collapse.show .nav-link {
            color: var(--ivory) !important;
        }
}

.nav-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    font-weight: 800;
    font-size: 1.05rem;
    transform: rotate(-6deg);
    box-shadow: 0 8px 18px -6px rgba(31,75,63,0.55);
}

.navbar-custom .nav-link {
    font-weight: 600;
    color: var(--ivory) !important;
    padding: 8px 16px !important;
    position: relative;
    transition: color .35s ease;
}

.navbar-custom.scrolled .nav-link {
    color: var(--ink) !important;
}

.navbar-custom .nav-link::after {
    content: "";
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.navbar-custom .nav-link:hover::after {
    transform: scaleX(1);
}

.btn-copper {
    background: var(--copper);
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all .3s ease;
    box-shadow: 0 10px 24px -8px rgba(190,124,77,0.65);
}

    .btn-copper:hover {
        background: #a86a3f;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -8px rgba(190,124,77,0.75);
    }

.btn-outline-forest {
    border: 1.5px solid var(--forest);
    color: var(--forest);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-forest:hover {
        background: var(--forest);
        color: var(--ivory);
    }

.btn-outline-ivory {
    border: 1.5px solid rgba(247,242,233,0.5);
    color: var(--ivory);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px;
    background: transparent;
    transition: .3s;
}

    .btn-outline-ivory:hover {
        background: var(--ivory);
        color: var(--forest);
        border-color: var(--ivory);
    }

/* ===== HERO SLIDER BANNER ===== */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 640px;
    margin-top: 0;
    overflow: hidden;
    background: var(--ink);
}

@media(max-width:768px) {
    .hero-slider {
        height: auto;
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 150px;
    }
}

.hs-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    z-index: 1;
}

    .hs-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

@media(max-width:768px) {
    .hs-slide {
        position: relative;
        display: none;
        height: auto;
        padding: 20px 0 40px;
    }

        .hs-slide.active {
            display: block;
        }
}

.hs-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

@media(max-width:768px) {
    .hs-media {
        position: relative;
        height: 340px;
        border-radius: 22px;
        margin: 0 16px;
        overflow: hidden;
    }
}

.hs-media .hs-img,
.hs-media .hs-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    transition: transform 8s ease-out;
}

.hs-slide.active .hs-img,
.hs-slide.active .hs-placeholder {
    transform: scale(1);
}

.hs-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(247,242,233,0.55);
    border: 2px dashed rgba(247,242,233,0.22);
}

    .hs-placeholder i {
        font-size: 2.6rem;
    }

    .hs-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        max-width: 260px;
        text-align: center;
    }

.hs-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(85deg, rgba(15,26,22,0.92) 8%, rgba(15,26,22,0.55) 42%, rgba(15,26,22,0.15) 68%);
    z-index: 2;
}

@media(max-width:768px) {
    .hs-media::before {
        background: linear-gradient(0deg, rgba(15,26,22,0.85) 10%, rgba(15,26,22,0.15) 60%);
    }
}

/* organic bottom shape cut */
.hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 5;
    line-height: 0;
}

    .hs-shape svg {
        width: 100%;
        height: 90px;
        display: block;
    }

@media(max-width:768px) {
    .hs-shape {
        display: none;
    }
}

.hs-content {
    position: relative;
    z-index: 6;
    height: 100%;
    display: flex;
    align-items: center;
}

@media(max-width:768px) {
    .hs-content {
        height: auto;
        padding: 0 34px;
        margin-top: 22px;
    }
}

.hs-num {
    font-size: .8rem;
    font-weight: 800;
    color: var(--copper-light);
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .hs-num::after {
        content: "";
        width: 38px;
        height: 1px;
        background: rgba(247,242,233,0.35);
    }

.hs-tagpill {
    display: inline-block;
    background: var(--copper);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hs-content h1 {
    color: var(--ivory);
    font-size: clamp(2.1rem,4.2vw,3.35rem);
    line-height: 1.22;
    max-width: 620px;
    margin-bottom: 18px;
}

.hs-content p {
    color: rgba(247,242,233,0.72);
    max-width: 460px;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* custom side progress indicators (vertical dashes, right side) */
.hs-indicators {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media(max-width:991px) {
    .hs-indicators {
        display: none;
    }
}

.hs-dash {
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: rgba(247,242,233,0.3);
    border: none;
    cursor: pointer;
    transition: .3s;
    position: relative;
}

    .hs-dash.active {
        background: var(--copper);
        width: 50px;
    }

/* arrows */
.hs-arrows {
    position: absolute;
    bottom: 28px;
    left: 24px;
    z-index: 7;
    display: flex;
    gap: 10px;
}

@media(max-width:768px) {
    .hs-arrows {
        bottom: 16px;
    }
}

.hs-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.3);
    background: rgba(247,242,233,0.06);
    backdrop-filter: blur(6px);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
}

    .hs-arrow:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* slide counter */
.hs-counter {
    position: absolute;
    bottom: 34px;
    right: 24px;
    z-index: 7;
    color: rgba(247,242,233,0.6);
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media(max-width:768px) {
    .hs-counter {
        display: none;
    }
}

.hs-counter b {
    color: var(--ivory);
    font-size: 1.15rem;
}

/* floating stat card overlapping the wave */
.hero-stats-float {
    position: relative;
    z-index: 8;
    margin-top: -64px;
}

@media(max-width:768px) {
    .hero-stats-float {
        margin-top: -120px;
    }
}

.hero-stats-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 30px 60px -20px rgba(22,36,31,0.35);
    padding: 26px 20px;
}

    .hero-stats-card .stat-num {
        font-size: 1.9rem;
        font-weight: 800;
        color: var(--forest);
    }

    .hero-stats-card .stat-label {
        font-size: .8rem;
        color: #5c6a64;
        font-weight: 600;
    }

    .hero-stats-card .vr-line {
        width: 1px;
        background: var(--line);
    }

/* ===== SERVICES ===== */
.card-3d-wrap {
    perspective: 1200px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 28px;
    height: 100%;
    border: 1px solid var(--line);
    transition: box-shadow .35s ease, transform .1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(190,124,77,0.06),transparent 60%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card:hover {
        box-shadow: 0 30px 60px -20px rgba(22,36,31,0.28);
    }

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--forest-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.service-card h4 {
    font-size: 1.15rem;
    transform: translateZ(20px);
}

.service-card p {
    color: #5c6a64;
    font-size: .94rem;
    line-height: 1.9;
    transform: translateZ(15px);
}

.service-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: .75rem;
    font-weight: 800;
    color: rgba(31,75,63,0.25);
}

/* ===== PROCESS ===== */
.process-line {
    position: relative;
}

    .process-line::before {
        content: "";
        position: absolute;
        top: 26px;
        right: 8%;
        left: 8%;
        height: 2px;
        background: repeating-linear-gradient(90deg,var(--copper) 0 8px, transparent 8px 16px);
    }

@media(max-width:768px) {
    .process-line::before {
        display: none;
    }
}

.process-step {
    position: relative;
    text-align: center;
}

.process-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.5);
}

.process-step h5 {
    font-weight: 800;
}

.process-step p {
    color: #5c6a64;
    font-size: .9rem;
    max-width: 220px;
    margin: 8px auto 0;
}

/* ===== PROJECTS ===== */
.filter-pills .btn {
    border-radius: 50px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 600;
    font-size: .88rem;
    padding: 8px 20px;
    background: var(--white);
    margin: 4px;
    transition: .25s;
}

    .filter-pills .btn.active {
        background: var(--forest);
        color: var(--ivory);
        border-color: var(--forest);
    }

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 320px;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}

    .project-card:hover {
        transform: translateY(-10px) rotateX(4deg);
        box-shadow: 0 40px 70px -25px rgba(22,36,31,0.4);
    }

.project-visual {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(22,36,31,0.06) 1px,transparent 1px), linear-gradient(90deg,rgba(22,36,31,0.06) 1px,transparent 1px);
    background-size: 24px 24px;
    transition: transform .6s ease;
}

.project-card:hover .project-visual {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,36,31,0.92) 5%, rgba(22,36,31,0.15) 55%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--ivory);
}

.project-tag {
    display: inline-block;
    background: rgba(247,242,233,0.15);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
    backdrop-filter: blur(6px);
}

.project-hidden {
    display: none !important;
}

/* ===== MOBILE SCROLL-SNAP SLIDER (projects & blog) ===== */
.swipe-hint {
    display: none;
    align-items: center;
    gap: 8px;
    color: #8a958f;
    font-size: .82rem;
    font-weight: 600;
    margin: -10px 0 18px;
}

    .swipe-hint i {
        font-size: 1rem;
        color: var(--copper);
    }

@media(max-width:768px) {
    .swipe-hint {
        display: flex;
    }

    .mobile-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-inline: calc(-1 * var(--bs-gutter-x, .75rem));
        padding-inline: 20px;
        padding-bottom: 10px;
    }

        .mobile-slider::-webkit-scrollbar {
            display: none;
        }

        .mobile-slider > * {
            flex: 0 0 78%;
            max-width: 78%;
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }

        .mobile-slider .project-card {
            height: 280px;
        }
}

@media(max-width:420px) {
    .mobile-slider > * {
        flex-basis: 86%;
        max-width: 86%;
    }
}

/* ===== TESTIMONIALS ===== */
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--line);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testi-quote {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--ink);
    font-weight: 500;
}

.testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--copper),var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    margin: 0 auto 12px;
}

.carousel-indicators [data-bs-target] {
    background: var(--copper);
}

/* ===== BLOG ===== */
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    height: 100%;
    transition: .35s;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.blog-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
}

    .blog-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.08) 1px,transparent 1px);
        background-size: 22px 22px;
    }

.blog-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--forest);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}

.blog-body {
    padding: 22px;
}

    .blog-body h5 {
        font-weight: 800;
        font-size: 1.05rem;
    }

    .blog-body p {
        color: #5c6a64;
        font-size: .89rem;
    }

.blog-meta {
    font-size: .78rem;
    color: #8a958f;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 28px;
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: var(--ivory);
}

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 90% 20%, rgba(190,124,77,0.35), transparent 45%);
    }

/* ===== CONTACT ===== */
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-control-custom {
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .95rem;
}

    .form-control-custom:focus {
        border-color: var(--forest-light);
        box-shadow: 0 0 0 3px rgba(46,110,90,0.15);
    }

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(247,242,233,0.75);
    padding: 64px 0 24px;
}

    footer h6 {
        color: var(--ivory);
        font-weight: 800;
        margin-bottom: 18px;
    }

    footer a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
        transition: .2s;
    }

        footer a:hover {
            color: var(--copper);
        }

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(247,242,233,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    transition: .25s;
}

    .footer-social:hover {
        background: var(--copper);
        border-color: var(--copper);
    }

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* back to top */
#backTop {
    position: fixed;
    bottom: 26px;
    left: 26px;
    z-index: 1000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    box-shadow: 0 12px 24px -8px rgba(31,75,63,0.6);
}

    #backTop.show {
        opacity: 1;
        pointer-events: auto;
    }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    position: relative;
    background: linear-gradient(120deg,var(--ink) 0%, var(--forest) 100%);
    padding: 170px 0 100px;
    overflow: hidden;
    color: var(--ivory);
}

@media(max-width:768px) {
    .page-header {
        padding: 150px 0 80px;
    }
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 20%, rgba(190,124,77,0.25), transparent 50%);
}

.page-crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: rgba(247,242,233,0.65);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

    .page-crumb a {
        color: rgba(247,242,233,0.65);
        text-decoration: none;
    }

        .page-crumb a:hover {
            color: var(--copper-light);
        }

    .page-crumb .sep {
        color: var(--copper-light);
    }

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(2.1rem,4vw,3.1rem);
    margin-bottom: 14px;
    color: var(--ivory);
}

.page-header p {
    position: relative;
    z-index: 2;
    color: rgba(247,242,233,0.75);
    max-width: 580px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.page-header .hs-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

    .page-header .hs-shape svg {
        width: 100%;
        height: 70px;
        display: block;
    }

/* ===== TIMELINE (about) ===== */
.timeline {
    position: relative;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 4px;
        bottom: 4px;
        right: 23px;
        width: 2px;
        background: var(--line);
    }

@media(max-width:576px) {
    .timeline::before {
        right: 19px;
    }
}

.timeline-item {
    position: relative;
    padding-right: 64px;
    margin-bottom: 38px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-dot {
    position: absolute;
    right: 6px;
    top: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--paper);
}

.timeline-item h5 {
    font-weight: 800;
    margin-bottom: 4px;
}

.timeline-item .timeline-year {
    color: var(--copper);
    font-weight: 800;
    font-size: .85rem;
    margin-bottom: 6px;
    display: block;
}

.timeline-item p {
    color: #5c6a64;
    font-size: .92rem;
    margin-bottom: 0;
}

/* ===== TEAM ===== */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--line);
    transition: .3s;
    height: 100%;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-soft);
    }

.team-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.team-role {
    color: var(--copper);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

    .team-social a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--forest);
        transition: .2s;
    }

        .team-social a:hover {
            background: var(--forest);
            color: var(--ivory);
            border-color: var(--forest);
        }

/* ===== FAQ ACCORDION ===== */
.accordion-custom .accordion-item {
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

.accordion-custom .accordion-button {
    font-weight: 700;
    background: var(--white);
    padding: 18px 22px;
}

    .accordion-custom .accordion-button:not(.collapsed) {
        color: var(--forest);
        background: var(--forest-pale);
        box-shadow: none;
    }

    .accordion-custom .accordion-button:focus {
        box-shadow: none;
        border-color: var(--line);
    }

.accordion-custom .accordion-body {
    padding: 2px 22px 22px;
    color: #5c6a64;
    line-height: 1.9;
    font-size: .94rem;
}

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    height: 360px;
    border-radius: var(--radius);
    background: var(--forest-pale);
    background-image: linear-gradient(rgba(31,75,63,0.08) 1px,transparent 1px),linear-gradient(90deg,rgba(31,75,63,0.08) 1px,transparent 1px);
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--forest);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 20px;
}

    .map-placeholder i.pin-icon {
        font-size: 2.2rem;
        color: var(--copper);
    }

    .map-placeholder span {
        font-size: .85rem;
        font-weight: 600;
        color: #4b5a54;
        max-width: 260px;
    }

/* ===== WORKING HOURS ===== */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: .92rem;
}

    .hours-row:last-child {
        border-bottom: none;
    }

/* ===== NEWSLETTER BAND ===== */
.newsletter-band {
    background: linear-gradient(120deg,var(--forest) 0%, #163b31 100%);
    border-radius: 26px;
    padding: 50px;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}

    .newsletter-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 30%, rgba(190,124,77,0.3), transparent 45%);
    }

    .newsletter-band input {
        border: none;
        border-radius: 50px;
        padding: 14px 22px;
        width: 100%;
        font-family: var(--ff-body);
    }

        .newsletter-band input:focus {
            outline: 2px solid var(--copper);
        }

/* ===== PAGINATION ===== */
.pagination-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
}

    .pagination-custom button {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: var(--white);
        font-weight: 700;
        color: var(--ink);
        transition: .2s;
    }

        .pagination-custom button.active, .pagination-custom button:hover {
            background: var(--forest);
            color: var(--ivory);
            border-color: var(--forest);
        }

/* ===== LOAD MORE / MISC BUTTON ===== */
.btn-loadmore {
    border: 1.5px dashed var(--sage);
    border-radius: 50px;
    padding: 12px 36px;
    background: transparent;
    color: var(--forest);
    font-weight: 700;
    transition: .25s;
}

    .btn-loadmore:hover {
        background: var(--forest);
        color: var(--ivory);
        border-style: solid;
        border-color: var(--forest);
    }

/* ===== VALUE / ICON ROW (about) ===== */
.value-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--forest-pale);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* nav active underline */
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
}

/* ===== DETAIL PAGES ===== */
.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(247,242,233,0.12);
    backdrop-filter: blur(6px);
    color: var(--ivory);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    margin: 4px 6px 4px 0;
}

    .meta-chip i {
        color: var(--copper-light);
    }

.featured-media {
    position: relative;
    z-index: 8;
    margin-top: -70px;
}

    .featured-media .media-inner {
        height: 420px;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 30px 60px -20px rgba(22,36,31,0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        color: rgba(255,255,255,0.75);
        border: 2px dashed rgba(255,255,255,0.3);
    }

@media(max-width:768px) {
    .featured-media .media-inner {
        height: 240px;
        border-radius: 18px;
    }
}

.featured-media .media-inner i {
    font-size: 2.6rem;
}

.featured-media .media-inner span {
    font-size: .85rem;
    font-weight: 600;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid var(--line);
    position: sticky;
    top: 110px;
}

.sidebar-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
    gap: 12px;
}

    .sidebar-row:last-child {
        border-bottom: none;
    }

    .sidebar-row span:first-child {
        color: #8a958f;
        flex-shrink: 0;
    }

    .sidebar-row span:last-child {
        font-weight: 700;
        text-align: left;
    }

.share-row {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    transition: .2s;
    flex-shrink: 0;
}

    .share-btn:hover {
        background: var(--forest);
        color: var(--ivory);
        border-color: var(--forest);
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

    .gallery-grid .g-item {
        height: 210px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.8);
        flex-direction: column;
        gap: 6px;
        font-size: .78rem;
        font-weight: 600;
        text-align: center;
        padding: 10px;
        border: 2px dashed rgba(255,255,255,0.3);
    }

@media(max-width:576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.pull-quote {
    border-right: 4px solid var(--copper);
    background: var(--forest-pale);
    border-radius: 0 16px 16px 0;
    padding: 24px 28px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1.9;
    margin: 32px 0;
}

.article-body h3 {
    margin-top: 36px;
    margin-bottom: 14px;
    font-size: 1.35rem;
    font-weight: 800;
}

.article-body p {
    color: #4b5a54;
    line-height: 2.1;
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.article-body ul {
    color: #4b5a54;
    line-height: 2;
    margin-bottom: 18px;
    padding-right: 20px;
}

    .article-body ul li {
        margin-bottom: 6px;
    }

.author-box {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}

    .author-box .team-avatar {
        width: 56px;
        height: 56px;
        font-size: 1rem;
        margin: 0;
        flex-shrink: 0;
    }

.popular-post {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
}

    .popular-post:last-child {
        margin-bottom: 0;
    }

.popular-thumb {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg,var(--forest),var(--forest-light));
}

.popular-post-title {
    font-size: .83rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.5;
}

.popular-post-date {
    font-size: .73rem;
    color: #8a958f;
}

.tag-pill-list a {
    display: inline-block;
    background: var(--forest-pale);
    color: var(--forest);
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin: 0 4px 8px 0;
    text-decoration: none;
    transition: .2s;
}

    .tag-pill-list a:hover {
        background: var(--forest);
        color: var(--ivory);
    }

.detail-title-lg {
    font-size: clamp(1.7rem,3.4vw,2.4rem);
}

