/* 2026 full-platform redesign: compact header, complete home page, RTL-first. */
:root {
    --container: min(92vw, 1240px);
    --forest: #0b2719;
    --forest-2: #123c26;
    --primary: #18a846;
    --lime: #39ca62;
    --cream: #f4f7ef;
    --paper: #eef2e9;
    --gold: #f6c75d;
    --ink: #142018;
    --stone: #536258;
    --border: rgba(16, 43, 27, .14);
    --radius: 18px
}

body {
    background: var(--cream);
    font-size: 16px;
    line-height: 1.75
}

.topbar {
    font-size: .76rem
}

.topbar-inner {
    min-height: 34px
}

.site-header {
    top: 34px;
    background: rgba(8, 36, 22, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.site-header.scrolled {
    background: rgba(8, 36, 22, .96)
}

.nav-wrap {
    min-height: 76px;
    grid-template-columns: 66px 1fr auto;
    gap: 1.2rem
}

.brand {
    width: 60px;
    height: 60px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .14)
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.34);
    filter: none !important
}

.main-nav {
    gap: clamp(.55rem, 1.25vw, 1.25rem)
}

.main-nav a {
    font-size: .8rem;
    font-weight: 700;
    padding: .45rem .05rem
}

/* Hide navigation side arrows and drawer elements on laptop / desktop */
.main-nav a i,
.mobile-nav-links a i,
.mobile-nav-header,
.mobile-nav-quick-actions,
.d-lg-none {
    display: none !important;
}

.nav-cta {
    padding: .68rem 1rem;
    font-size: .78rem
}

.home-main {
    overflow: hidden
}

.page-home .closing-cta {
    display: none
}

.home-hero {
    position: relative;
    min-height: 680px;
    padding: 146px 0 76px;
    background: radial-gradient(circle at 14% 18%, rgba(57, 202, 98, .18), transparent 34%), linear-gradient(135deg, #0a2417 0%, #103b25 64%, #0b2b1b 100%);
    color: #fff;
    isolation: isolate
}

.home-hero .reveal {
    opacity: 1;
    transform: none
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to left, #000, transparent 75%)
}

.home-hero-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: center
}

.home-label {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--gold);
    font-size: .85rem;
    font-weight: 800
}

.home-label::after {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor
}

.home-hero h1 {
    margin: .8rem 0 .4rem;
    font-size: clamp(3.2rem, 5.4vw, 5.4rem);
    line-height: 1.1;
    letter-spacing: -.03em
}

.home-hero-tagline {
    margin: .35rem 0 1.1rem;
    color: #38df72;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -.02em
}

.home-hero-text {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 1.03rem;
    line-height: 1.7
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.8rem
}

.home-hero-actions .btn-gold {
    background: #f6c75d;
    color: #0b2216;
    border-radius: 99px;
    font-weight: 800;
    padding: .85rem 1.8rem;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 8px 24px rgba(246, 199, 93, .25);
    transition: all .25s ease
}

.home-hero-actions .btn-gold:hover {
    background: #ffd678;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(246, 199, 93, .35)
}

.home-hero-actions .btn-ghost {
    background: transparent;
    color: #fff;
    font-weight: 800;
    padding: .85rem 1.2rem;
    text-decoration: none;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    transition: color .2s ease
}

.home-hero-actions .btn-ghost:hover {
    color: #f6c75d
}

.home-hero-visual {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .32)
}

.home-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 27, 16, .7), transparent 46%)
}

.home-hero-visual>img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover
}

.hero-project-note {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: .8rem
}

.hero-project-note strong {
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1
}

.hero-project-note span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.55
}

.hero-stamp {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 22px;
    padding: .6rem .8rem;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 9px;
    font-size: .62rem;
    line-height: 1.45;
    letter-spacing: .13em;
    text-align: left;
    direction: ltr
}

.home-scroll {
    position: absolute;
    bottom: 18px;
    right: 50%;
    translate: 50% 0;
    display: flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, .6);
    font-size: .72rem
}

.home-scroll i {
    font-style: normal;
    color: var(--gold);
    font-size: 1rem
}

.build-story {
    padding: 72px 0;
    background: #fff
}

.home-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.2rem
}

.home-heading h2 {
    margin: .35rem 0 0;
    font-size: clamp(2.2rem, 4.4vw, 4.2rem);
    line-height: 1.18;
    letter-spacing: -.04em
}

.home-heading>p,
.home-heading>div>p {
    max-width: 520px;
    margin: .75rem 0 0;
    color: var(--stone)
}

.home-heading.centered {
    justify-content: center;
    text-align: center
}

.home-heading.centered>div {
    max-width: 720px
}

/* ==========================================================================
   Build Story: Luxury 7-Stage Construction Journey
   ========================================================================== */
.build-story {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.build-story .home-heading {
    margin-bottom: 2rem;
}

.journey-nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.journey-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(16, 43, 27, 0.12);
    color: #103b25;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.journey-nav-btn:hover {
    background: #159b3e;
    border-color: #159b3e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 155, 62, 0.28);
}

.journey-nav-pill {
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(21, 155, 62, 0.08);
    border: 1px solid rgba(21, 155, 62, 0.2);
    font-size: 0.85rem;
    color: #103b25;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.journey-nav-pill strong {
    color: #159b3e;
    font-weight: 900;
    font-size: 1rem;
}

/* Timeline connected bar */
.journey-timeline-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 1.5rem 0 2.5rem;
    padding: 0 10px;
}

.journey-timeline-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: rgba(16, 43, 27, 0.08);
    z-index: 1;
}

.journey-timeline-node {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    padding: 0;
    transition: all 0.3s ease;
}

.journey-timeline-node .node-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(16, 43, 27, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #556e60;
}

.journey-timeline-node .node-label {
    font-size: 0.82rem;
    font-weight: 750;
    color: #637a6d;
    transition: color 0.3s ease;
}

.journey-timeline-node:hover .node-dot {
    border-color: #159b3e;
    color: #159b3e;
    transform: scale(1.1);
}

.journey-timeline-node.active .node-dot {
    background: #159b3e;
    border-color: #159b3e;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(21, 155, 62, 0.2);
    transform: scale(1.15);
}

.journey-timeline-node.active .node-label {
    color: #103b25;
    font-weight: 900;
}

/* Track & Cards */
.journey-track-wrapper {
    position: relative;
    width: 100%;
}

.journey-cards-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 25px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.journey-cards-track::-webkit-scrollbar {
    display: none;
}

.journey-stage-card {
    width: 315px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.journey-stage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 39, 25, 0.1);
    border-color: rgba(21, 155, 62, 0.35);
}

.stage-card-media {
    position: relative;
    height: 220px;
    background: radial-gradient(circle at center, #f5f9f6 0%, #e8f1eb 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-stage-card:hover .stage-card-media img {
    transform: scale(1.08);
}

.stage-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 40%, rgba(9, 39, 23, 0.4) 100%);
    pointer-events: none;
}

.stage-badge-num {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(8, 38, 21, 0.9);
    border: 1px solid rgba(246, 199, 93, 0.35);
    border-radius: 12px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stage-badge-num span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.stage-badge-num strong {
    font-size: 0.88rem;
    color: #f6c75d;
    font-weight: 800;
}

.stage-badge-tag {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 43, 27, 0.12);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.76rem;
    font-weight: 750;
    color: #103b25;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stage-badge-tag i {
    color: #159b3e;
    font-size: 0.78rem;
}

.stage-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.stage-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #103b25;
    margin: 0 0 10px;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.stage-card-desc {
    font-size: 0.88rem;
    color: #556e60;
    line-height: 1.7;
    margin: 0 0 18px;
    flex-grow: 1;
}

.stage-card-footer {
    padding-top: 14px;
    border-top: 1px solid rgba(16, 43, 27, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stage-check-item {
    font-size: 0.78rem;
    font-weight: 700;
    color: #159b3e;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stage-index-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f0f5f1;
    color: #556e60;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .journey-timeline-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .journey-stage-card {
        width: 270px;
    }

    .stage-card-media {
        height: 190px;
    }

    .stage-card-body {
        padding: 18px;
    }
}

.home-stats {
    background: linear-gradient(90deg, var(--forest), #16723a);
    color: #fff
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.home-stats article {
    min-height: 140px;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    border-inline-start: 1px solid rgba(255, 255, 255, .12);
    text-align: right
}

.home-stats article:first-child {
    border: 0
}

.home-stats strong {
    color: var(--gold);
    font-size: clamp(2.4rem, 3.8vw, 3.6rem);
    line-height: 1;
    white-space: nowrap
}

.home-stats span {
    max-width: 160px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.45
}

.villa-showcase {
    padding: 72px 0 40px;
    background: var(--paper)
}

.villa-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 4vw;
    align-items: center
}

.villa-copy h2 {
    margin: .5rem 0 1rem;
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    line-height: 1.18
}

.villa-copy p {
    color: var(--stone)
}

.villa-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: .4rem
}

.villa-card {
    position: relative;
    margin-bottom: -40px
}

.villa-card:nth-child(2) {
    margin-bottom: -12px
}

.villa-card:nth-child(3) {
    margin-bottom: -28px
}

.villa-card img {
    width: 100%;
    filter: drop-shadow(0 18px 18px rgba(11, 39, 25, .16))
}

.villa-card span {
    position: absolute;
    right: .4rem;
    bottom: 1rem;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--forest);
    color: #fff;
    font-size: .68rem
}

.home-projects {
    background: linear-gradient(150deg, #0a2618, #123e27);
    color: #fff
}

.home-projects .home-heading p {
    color: rgba(255, 255, 255, .62)
}

.home-project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.home-project-card {
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s
}

.home-project-card:hover {
    transform: translateY(-6px)
}

.home-project-card:nth-child(1),
.home-project-card:nth-child(5) {
    grid-column: span 2
}

.home-project-image {
    position: relative;
    aspect-ratio: 1.35;
    overflow: hidden;
    background: #dfe8df
}

.home-project-card:nth-child(1) .home-project-image,
.home-project-card:nth-child(5) .home-project-image {
    aspect-ratio: 2.1
}

.home-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s
}

.home-project-card:hover img {
    transform: scale(1.04)
}

.home-project-image .status {
    position: absolute;
    top: .8rem;
    right: .8rem;
    padding: .3rem .65rem;
    border-radius: 99px;
    background: #fff;
    color: var(--forest);
    font-size: .68rem;
    font-weight: 800
}

.home-project-image .status.active {
    background: var(--gold)
}

.home-project-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem
}

.home-project-info small {
    color: var(--stone);
    font-size: .68rem
}

.home-project-info h3 {
    margin: .15rem 0 0;
    font-size: 1.25rem
}

.home-project-info strong {
    font-size: 1.55rem;
    color: var(--primary)
}

.home-services {
    background: linear-gradient(180deg, #fbfdfa 0%, #f1f5ee 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden
}

.home-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 350px;
    background: radial-gradient(ellipse at top, rgba(24, 168, 70, .06), transparent 70%);
    pointer-events: none
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem
}

.home-service-card {
    position: relative;
    min-height: 310px;
    padding: 2.2rem 2rem;
    background: #fff;
    border: 1px solid rgba(16, 43, 27, .08);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(16, 43, 27, .03);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), border-color .35s ease, box-shadow .35s ease;
    overflow: hidden
}

.home-service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #159b3e, #2edb69);
    opacity: 0;
    transition: opacity .35s ease
}

.home-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24, 168, 70, .35);
    box-shadow: 0 22px 50px rgba(11, 39, 25, .09)
}

.home-service-card:hover::after {
    opacity: 1
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.4rem
}

.service-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #092717 0%, #159b3e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(21, 155, 62, .22);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease
}

.home-service-card:hover .service-icon-box {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 12px 28px rgba(21, 155, 62, .38)
}

.service-icon-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1)
}

.service-card-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #cfded4;
    transition: color .3s ease;
    line-height: 1
}

.home-service-card:hover .service-card-num {
    color: #159b3e
}

.home-service-card h3 {
    margin: 0 0 .75rem;
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--forest);
    transition: color .3s ease;
    line-height: 1.35
}

.home-service-card:hover h3 {
    color: #159b3e
}

.home-service-card p {
    margin: 0 0 1.5rem;
    color: #556b5f;
    font-size: .92rem;
    line-height: 1.75;
    flex-grow: 1
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(16, 43, 27, .06);
    padding-top: 1rem;
    margin-top: auto
}

.service-link-text {
    font-size: .88rem;
    font-weight: 700;
    color: var(--stone);
    transition: color .3s ease
}

.home-service-card:hover .service-link-text {
    color: #159b3e
}

.service-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f5f1;
    color: #159b3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    line-height: 1;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), background-color .3s ease, color .3s ease
}

.home-service-card:hover .service-arrow-btn {
    background: #159b3e;
    color: #fff;
    transform: translateX(-6px)
}

.stretched-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-indent: -9999px
}

.home-certificates {
    background: linear-gradient(180deg, #fbfdfa 0%, #f0f5ee 100%);
    padding: 95px 0;
    position: relative
}

.home-certificate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
    margin-top: 1rem
}

.home-certificate-card {
    position: relative;
    min-height: 355px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(16, 43, 27, .08);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(16, 43, 27, .03);
    cursor: pointer;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease, border-color .35s ease
}

.home-certificate-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #159b3e, #2edb69);
    opacity: 0;
    transition: opacity .35s ease
}

.home-certificate-card:hover {
    transform: translateY(-7px);
    border-color: rgba(24, 168, 70, .4);
    box-shadow: 0 20px 45px rgba(11, 39, 25, .09)
}

.home-certificate-card:hover::after {
    opacity: 1
}

.certificate-logo-v2 {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(16, 43, 27, .07);
    border-radius: 14px;
    padding: .8rem 1.2rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, .02);
    transition: border-color .3s ease
}

.home-certificate-card:hover .certificate-logo-v2 {
    border-color: rgba(24, 168, 70, .25)
}

.certificate-logo-v2 img {
    max-width: 92%;
    max-height: 68px;
    object-fit: contain;
    transition: transform .35s ease
}

.home-certificate-card:hover .certificate-logo-v2 img {
    transform: scale(1.06)
}

.home-why {
    background: radial-gradient(circle at 50% 15%, #103823 0%, #061a10 100%);
    color: #fff;
    padding: 95px 0;
    position: relative;
    overflow: hidden
}

.home-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(46, 219, 105, .08), transparent 70%);
    pointer-events: none
}

.eyebrow-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 6px 18px;
    border-radius: 99px;
    background: rgba(212, 160, 23, .12);
    border: 1px solid rgba(212, 160, 23, .28);
    color: #f3c448;
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: 1rem
}

.home-why .home-heading h2 {
    color: #fff;
    font-size: clamp(2.3rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .35)
}

.home-why .home-heading p {
    color: rgba(255, 255, 255, .72);
    font-size: 1.02rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8
}

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-top: 2.5rem;
    border: 0
}

.home-why-card {
    position: relative;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1), border-color .4s ease, box-shadow .4s ease, background .4s ease
}

.home-why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e5b338, #2edb69);
    opacity: 0;
    transition: opacity .4s ease
}

.home-why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(229, 179, 56, .35);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .45), 0 0 30px rgba(24, 168, 70, .12)
}

.home-why-card:hover::after {
    opacity: 1
}

.why-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.6rem
}

.why-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(24, 168, 70, .14);
    border: 1px solid rgba(24, 168, 70, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2edb69;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), background .35s ease, color .35s ease, box-shadow .35s ease
}

.home-why-card:hover .why-icon-box {
    transform: scale(1.1) rotate(-4deg);
    background: linear-gradient(135deg, #159b3e, #e5b338);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(24, 168, 70, .35)
}

.why-card-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .14);
    line-height: 1;
    transition: color .35s ease
}

.home-why-card:hover .why-card-num {
    color: #e5b338
}

.home-why-card h3 {
    margin: 0 0 .8rem;
    font-size: 1.24rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
    transition: color .35s ease
}

.home-why-card:hover h3 {
    color: #f7d377
}

.home-why-card p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
    line-height: 1.75;
    flex-grow: 1
}

.home-journey {
    padding: 46px 0;
    background: linear-gradient(105deg, #24bb4f, #159b3e);
    color: #fff
}

.home-journey-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

.home-journey span {
    color: #dbffe4;
    font-size: .78rem;
    font-weight: 800
}

.home-journey h2 {
    margin: .3rem 0 .25rem;
    font-size: clamp(1.8rem, 3vw, 3rem)
}

.home-journey p {
    margin: 0;
    color: rgba(255, 255, 255, .75)
}

/* ── 10. Home Events Luxury Redesign ── */
.home-events {
    background: #fbfdfb;
    padding: 85px 0;
    position: relative;
}

.home-events .home-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.home-events .home-heading h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--forest);
    margin: 0.6rem 0 0.5rem;
    font-family: var(--font-heading);
    line-height: 1.25;
}

.home-events .section-desc {
    color: #637a6d;
    font-size: 0.96rem;
    max-width: 600px;
    margin: 0;
    line-height: 1.75;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.event-card-luxury {
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.035);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.event-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 39, 25, 0.1);
    border-color: rgba(21, 155, 62, 0.3);
}

.event-media-luxury {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #092717;
}

.event-media-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card-luxury:hover .event-media-luxury img {
    transform: scale(1.08);
}

.event-media-luxury::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.event-badge-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(8, 38, 21, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #f6c75d;
    border: 1px solid rgba(246, 199, 93, 0.35);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 30px;
}

.event-badge-scope {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.event-body-luxury {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-title-luxury {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 10px;
    font-family: var(--font-heading);
    line-height: 1.4;
    transition: color 0.25s ease;
}

.event-card-luxury:hover .event-title-luxury {
    color: #159b3e;
}

.event-desc-luxury {
    font-size: 0.88rem;
    color: #556e60;
    line-height: 1.75;
    margin: 0 0 20px;
    flex-grow: 1;
}

.event-footer-luxury {
    padding-top: 14px;
    border-top: 1px solid rgba(16, 43, 27, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-link-text {
    font-size: 0.88rem;
    font-weight: 800;
    color: #159b3e;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.event-arrow-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f5f1;
    color: #159b3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card-luxury:hover .event-arrow-circle {
    background: #159b3e;
    color: #fff;
    transform: translateX(-4px);
}

@media (max-width: 992px) {
    .event-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   Luxury Engineering Team Section (Home V2)
   ========================================================================== */
.home-team {
    background: #f8faf7;
    position: relative;
    padding: 90px 0;
    border-top: 1px solid rgba(13, 61, 37, 0.05);
    border-bottom: 1px solid rgba(13, 61, 37, 0.05);
}

.home-team .home-heading {
    margin-bottom: 3rem;
}

.home-team .home-heading h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.25;
    text-wrap: balance;
    margin: 0.5rem 0 0.75rem;
    color: var(--forest);
}

.team-subtitle {
    max-width: 620px;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.btn-luxury-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1.6rem;
    background: #ffffff;
    color: var(--forest);
    border: 1.5px solid rgba(13, 61, 37, 0.18);
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.btn-luxury-pill:hover {
    background: var(--forest);
    color: #ffffff;
    border-color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 61, 37, 0.15);
}

.btn-luxury-pill i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.btn-luxury-pill:hover i {
    transform: translateX(-4px);
}

/* Team Grid V2 */
.home-team-grid-v2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.home-team-card-v2 {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(13, 61, 37, 0.09);
    box-shadow: 0 8px 24px rgba(13, 61, 37, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    user-select: none;
}

.home-team-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(13, 61, 37, 0.13);
    border-color: rgba(46, 125, 50, 0.35);
}

.team-image-box {
    position: relative;
    aspect-ratio: 0.78;
    overflow: hidden;
    background: linear-gradient(180deg, #f2f5f1 0%, #dfe7df 100%);
}

.team-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
}

.home-team-card-v2:hover .team-image-box img {
    transform: scale(1.06);
}

.team-badges-strip {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    left: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}

.team-badge-exp {
    background: rgba(13, 61, 37, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.team-badge-exp i {
    color: #f6c75d;
    font-size: 0.7rem;
}

.team-badge-verified {
    background: rgba(22, 163, 74, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.55rem;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.25);
}

.team-image-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 31, 19, 0.85) 0%, rgba(7, 31, 19, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.home-team-card-v2:hover .team-image-hover-overlay {
    opacity: 1;
}

.team-hover-action-btn {
    background: #ffffff;
    color: var(--forest);
    padding: 0.45rem 0.95rem;
    border-radius: 99px;
    font-size: 0.76rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transform: translateY(12px);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-team-card-v2:hover .team-hover-action-btn {
    transform: translateY(0);
}

.team-content-box {
    padding: 1rem 0.95rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: right;
    background: #ffffff;
}

.team-member-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 0.3rem;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.home-team-card-v2:hover .team-member-name {
    color: #16a34a;
}

.team-member-role {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #4b5563;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
    line-height: 1.4;
}

.team-member-role i {
    color: #16a34a;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.team-member-meta {
    margin-bottom: 0.65rem;
}

.team-meta-credential {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(13, 61, 37, 0.05);
    color: var(--forest);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    border: 1px solid rgba(13, 61, 37, 0.08);
}

.team-meta-credential i {
    color: #c5a059;
    font-size: 0.7rem;
}

.team-card-bottom-link {
    margin-top: auto;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 800;
}

.team-card-bottom-link i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.home-team-card-v2:hover .team-card-bottom-link i {
    transform: translateX(-4px);
}

.team-mobile-swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 600;
}

.team-mobile-swipe-hint i {
    color: #16a34a;
    animation: swipeAnim 1.8s infinite ease-in-out;
}

@keyframes swipeAnim {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-8px); }
}

/* Modal styling refinements for home */
.team-modal-box-v2 {
    max-width: 580px;
    border-radius: 24px;
    overflow: hidden;
}

.team-modal-avatar {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid #16a34a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-modal-role-badge {
    display: inline-block;
    color: #16a34a;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.team-modal-section-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--forest);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.team-modal-bio {
    line-height: 1.8;
    font-size: 0.95rem;
    color: #374151;
}

.team-modal-skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.team-modal-skills-grid .badge {
    background: rgba(13, 61, 37, 0.07);
    color: var(--forest);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(13, 61, 37, 0.12);
}

.team-modal-details-card {
    background: #f9faf8;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    border: 1px solid #eef2ec;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.team-modal-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}

.team-modal-detail-row .detail-label {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.team-modal-detail-row .detail-value {
    color: #111827;
    font-weight: 700;
}

.btn-team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: #0a66c2;
    color: #ffffff;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-team-linkedin:hover {
    background: #004182;
    color: #ffffff;
}

.home-partners {
    padding: 80px 0;
    background: #fff;
    overflow: hidden
}

.partner-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    width: 100%;
    overflow: hidden;
    direction: ltr;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    padding: 10px 0
}

.marquee-row {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused
}

.marquee-track {
    display: flex;
    gap: 1.2rem;
    flex-shrink: 0;
    align-items: center;
    width: max-content;
    will-change: transform
}

.marquee-track-left {
    animation: marqueeScrollLeft 32s linear infinite
}

.marquee-track-right {
    animation: marqueeScrollRight 32s linear infinite
}

@keyframes marqueeScrollLeft {
    0% {
        transform: translateX(0)
    }

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

@keyframes marqueeScrollRight {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.partner-marquee-item {
    width: 210px;
    height: 105px;
    background: #fff;
    border: 1px solid rgba(16, 43, 27, .1);
    border-radius: 16px;
    padding: 1.1rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(16, 43, 27, .04);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease
}

.partner-marquee-item:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 168, 70, .4);
    box-shadow: 0 12px 28px rgba(16, 43, 27, .1)
}

.partner-marquee-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none
}

.partner-marquee-item img {
    max-width: 85%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .8;
    transition: all .3s ease
}

.partner-marquee-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.06)
}

@media(prefers-reduced-motion:reduce) {

    .marquee-track-left,
    .marquee-track-right {
        animation: none !important
    }
}

.home-guide {
    background: #e8ede4
}

.guide-layout-v2 {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 4vw;
    align-items: start
}

.guide-intro {
    position: sticky;
    top: 120px;
    padding: 2rem;
    background: var(--forest);
    color: #fff;
    border-radius: 18px
}

.guide-intro h2 {
    margin: .5rem 0 1rem;
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    line-height: 1.25
}

.guide-intro p {
    color: rgba(255, 255, 255, .64)
}

.guide-accordion {
    background: #fff;
    border: 0;
    border-radius: 18px;
    padding: 0 1.4rem
}

.guide-accordion .accordion-item button {
    min-height: 84px
}

.guide-accordion .accordion-panel p {
    font-size: .84rem;
    line-height: 2;
    padding-inline-start: 0;
    padding-inline-end: 64px
}

.home-location {
    padding: 84px 0;
    background: #fff
}

.location-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 4vw;
    align-items: center
}

.location-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--paper)
}

.location-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.location-visual a {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: .75rem 1rem;
    border-radius: 99px;
    background: var(--forest);
    color: #fff;
    font-size: .78rem;
    font-weight: 800
}

.location-copy h2 {
    margin: .4rem 0 1.2rem;
    font-size: clamp(2.3rem, 4vw, 4rem)
}

.location-copy ul {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
    border-top: 1px solid var(--border)
}

.location-copy li {
    padding: .72rem 0;
    display: grid;
    border-bottom: 1px solid var(--border)
}

.location-copy small {
    color: #829087;
    font-size: .68rem
}

.location-copy strong,
.location-copy li a {
    font-size: .86rem
}

.location-copy>div {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem
}

.site-footer {
    background: radial-gradient(circle at 10% 20%, #0d3320 0%, #06180f 60%, #04100a 100%);
    color: rgba(255, 255, 255, .7);
    padding: 48px 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2edb69, #e5b338, transparent);
    opacity: .7
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .75fr 1.15fr 1fr;
    gap: 2.5vw;
    align-items: start
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .8rem
}

.footer-brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.footer-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    filter: none !important
}

.footer-brand-title {
    display: flex;
    flex-direction: column
}

.footer-brand-title strong {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2
}

.footer-brand-title span {
    color: #2edb69;
    font-size: .76rem;
    font-weight: 700;
    margin-top: .15rem
}

.footer-brand p {
    color: rgba(255, 255, 255, .65);
    font-size: .82rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    max-width: 320px
}

.footer-social-label {
    font-size: .76rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    margin-bottom: .5rem;
    display: block
}

.footer-social-list {
    display: flex;
    align-items: center;
    gap: .4rem;
    flex-wrap: nowrap
}

.social-circle-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    transition: all .3s cubic-bezier(.16, 1, .3, 1)
}

.social-circle-btn svg,
.social-circle-btn i {
    width: 14px;
    height: 14px;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.social-circle-btn:hover {
    background: #159b3e;
    border-color: #2edb69;
    color: #fff;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 6px 16px rgba(21, 155, 62, .35)
}

.site-footer h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 .9rem;
    position: relative;
    padding-bottom: .45rem
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 2px;
    background: #2edb69;
    border-radius: 2px
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, .68);
    font-size: .82rem;
    text-decoration: none;
    display: inline-block;
    transition: all .25s ease
}

.footer-nav-list li a:hover {
    color: #2edb69;
    transform: translateX(-3px)
}

.footer-contact-wrap {
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: .65rem
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(24, 168, 70, .12);
    border: 1px solid rgba(24, 168, 70, .25);
    color: #2edb69;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    flex-shrink: 0
}

.footer-contact-info {
    display: flex;
    flex-direction: column
}

.footer-contact-info small {
    font-size: .68rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.2
}

.footer-contact-info a,
.footer-contact-info strong {
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: .1rem;
    transition: color .25s ease
}

.footer-contact-info a:hover {
    color: #2edb69
}

.footer-location-box {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: .85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .65rem
}

.footer-location-text {
    font-size: .82rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .7);
    margin: 0
}

.footer-map-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: 7px 15px;
    border-radius: 99px;
    background: rgba(24, 168, 70, .12);
    border: 1px solid rgba(24, 168, 70, .3);
    color: #2edb69;
    font-weight: 700;
    font-size: .78rem;
    text-decoration: none;
    transition: all .3s ease;
    align-self: flex-start
}

.footer-map-pill:hover {
    background: #159b3e;
    color: #fff;
    border-color: #159b3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(21, 155, 62, .3)
}

.footer-bottom {
    margin-top: 2.2rem;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-bottom p {
    margin: 0;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5)
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.2rem
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .5);
    font-size: .78rem;
    text-decoration: none;
    transition: color .25s ease
}

.footer-bottom-links a:hover {
    color: #2edb69
}

.admin-header img,
.login-card>img {
    filter: none !important;
    border-radius: 50%;
    object-fit: cover
}

@media(max-width:1160px) {
    .nav-wrap {
        grid-template-columns: 60px 1fr auto;
        gap: .8rem
    }

    .main-nav {
        gap: .65rem
    }

    .main-nav a {
        font-size: .73rem
    }

    .nav-cta {
        font-size: .72rem;
        padding: .62rem .78rem
    }

    .home-project-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .home-project-card:nth-child(1),
    .home-project-card:nth-child(5) {
        grid-column: span 1
    }

    .home-project-card:nth-child(1) .home-project-image,
    .home-project-card:nth-child(5) .home-project-image {
        aspect-ratio: 1.35
    }

    .home-team-grid,
    .home-team-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .home-certificate-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:900px) {
    .topbar-links a:last-child {
        display: none
    }

    .nav-wrap {
        display: flex;
        justify-content: space-between
    }

    .brand {
        width: 54px;
        height: 54px
    }

    .menu-toggle {
        display: block
    }

    .nav-cta {
        display: none
    }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: -1;
        padding: 120px 8vw 50px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: .25rem;
        background: #082417;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: .25s
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: none
    }

    .main-nav a {
        width: 100%;
        padding: .7rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .home-hero {
        min-height: auto;
        padding: 135px 0 62px
    }

    .home-hero-grid {
        grid-template-columns: 1fr
    }

    .home-hero h1 {
        font-size: clamp(3.5rem, 11vw, 5.8rem)
    }

    .home-hero-visual {
        min-height: 390px
    }

    .home-scroll {
        display: none
    }

    .progress-strip {
        grid-template-columns: repeat(4, 1fr)
    }

    .home-stats article {
        min-height: 135px;
        padding: 1.4rem
    }

    .villa-grid {
        grid-template-columns: 1fr
    }

    .villa-cards {
        margin-top: 1rem
    }

    .home-project-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .home-service-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .home-certificate-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .home-why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .guide-layout-v2 {
        grid-template-columns: 1fr
    }

    .guide-intro {
        position: static
    }

    .location-grid {
        grid-template-columns: 1fr
    }

    .location-visual {
        min-height: 420px
    }
}

@media(max-width:620px) {
    .topbar p {
        font-size: .68rem
    }

    .topbar-links {
        display: none
    }

    .topbar-inner {
        justify-content: center
    }

    .site-header {
        top: 34px
    }

    .nav-wrap {
        min-height: 68px
    }

    .brand {
        width: 50px;
        height: 50px
    }

    .home-hero {
        padding-top: 126px
    }

    .home-hero-grid {
        gap: 1.7rem
    }

    .home-hero h1 {
        font-size: 3.55rem
    }

    .home-hero-tagline {
        font-size: 1.08rem
    }

    .home-hero-text {
        font-size: .92rem
    }

    .home-hero-visual {
        min-height: 300px;
        border-radius: 20px
    }

    .hero-project-note {
        right: 16px;
        bottom: 16px
    }

    .hero-project-note strong {
        font-size: 2rem
    }

    .home-heading {
        display: block
    }

    .home-heading>a {
        margin-top: 1rem
    }

    .home-heading h2 {
        font-size: 2.25rem
    }

    .home-heading>p {
        font-size: .88rem
    }

    .progress-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .5rem
    }

    .progress-strip figure {
        min-width: 42%;
        scroll-snap-align: start
    }

    .home-stats-grid {
        grid-template-columns: 1fr
    }

    .home-stats article {
        justify-content: flex-start;
        min-height: 100px;
        border-inline-start: 0;
        border-top: 1px solid rgba(255, 255, 255, .12)
    }

    .home-stats article:first-child {
        border-top: 0
    }

    .villa-showcase {
        padding-top: 54px
    }

    .villa-cards {
        gap: .15rem
    }

    .villa-card span {
        display: none
    }

    .home-project-grid,
    .home-service-grid,
    .home-certificate-grid,
    .event-grid,
    .home-team-grid {
        grid-template-columns: 1fr
    }

    .home-project-image {
        aspect-ratio: 1.55
    }

    .home-service-card {
        min-height: 250px
    }

    .home-certificate-card {
        min-height: 310px
    }

    .home-why-grid {
        grid-template-columns: 1fr
    }

    .home-journey-inner {
        display: block
    }

    .home-journey .btn {
        margin-top: 1.2rem
    }

    .home-team-card>div {
        aspect-ratio: .9
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .partner-grid figure {
        height: 96px
    }

    .guide-accordion {
        padding: 0 .9rem
    }

    .guide-accordion .accordion-item button {
        grid-template-columns: 34px 1fr 22px;
        gap: .5rem
    }

    .guide-accordion .accordion-item button strong {
        font-size: .93rem
    }

    .guide-accordion .accordion-panel p {
        padding-inline-end: 39px
    }

    .location-visual {
        min-height: 300px
    }

    .footer-grid {
        gap: 2rem
    }
}

@media(prefers-reduced-motion:reduce) {

    .home-project-card,
    .home-service-card,
    .progress-strip img,
    .event-card img {
        transition: none
    }
}

.guide-points {
    min-height: 0;
    overflow: hidden;
    padding: 0 64px 0 0
}

.guide-points ul {
    margin: 0;
    padding: 0 1.2rem 1.8rem 0;
    color: var(--stone)
}

.guide-points li {
    margin: .5rem 0;
    line-height: 1.9
}

.guide-full .accordion-item.open .accordion-panel {
    grid-template-rows: 1fr
}

.cert-filter-wrap {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.8rem 0 2.8rem
}

.cert-filter-pill {
    padding: 9px 26px;
    border-radius: 99px;
    font-size: .92rem;
    font-weight: 700;
    border: 1.5px solid rgba(16, 43, 27, .1);
    background: #fff;
    color: var(--stone);
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .02)
}

.cert-filter-pill:hover {
    border-color: #159b3e;
    color: #159b3e;
    transform: translateY(-2px)
}

.cert-filter-pill.active {
    background: #159b3e;
    color: #fff;
    border-color: #159b3e;
    box-shadow: 0 6px 18px rgba(21, 155, 62, .28);
    transform: translateY(-2px)
}

.cert-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.1rem 0 .5rem
}

.cert-badge-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 800
}

.cert-badge-legal {
    background: rgba(14, 80, 150, .08);
    color: #0d5c9c;
    border: 1px solid rgba(14, 80, 150, .18)
}

.cert-badge-industry {
    background: rgba(21, 155, 62, .08);
    color: #159b3e;
    border: 1px solid rgba(21, 155, 62, .18)
}

.cert-badge-compliance {
    background: rgba(212, 160, 23, .1);
    color: #b88612;
    border: 1px solid rgba(212, 160, 23, .22)
}

.cert-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    font-weight: 750;
    color: #159b3e
}

.cert-verified-badge svg {
    stroke: #159b3e
}

.home-certificate-card h3 {
    color: #0b2719;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 .3rem;
    line-height: 1.35;
    transition: color .3s ease
}

.home-certificate-card:hover h3 {
    color: #159b3e
}

.home-certificate-card p {
    color: #64766b;
    font-size: .82rem;
    margin: 0 0 1rem;
    line-height: 1.4
}

.cert-meta-box {
    background: #f8faf7;
    border: 1px solid rgba(16, 43, 27, .06);
    border-radius: 10px;
    padding: .6rem .9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    margin-bottom: .85rem
}

.cert-meta-label {
    font-size: .75rem;
    color: #798a80;
    font-weight: 600
}

.cert-meta-val {
    font-size: .88rem;
    font-weight: 800;
    color: #0b2719;
    letter-spacing: .5px;
    font-family: monospace, sans-serif
}

.cert-view-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(16, 43, 27, .08);
    padding-top: .85rem;
    color: #159b3e;
    font-size: .82rem;
    font-weight: 800
}

.cert-view-text {
    display: inline-flex;
    align-items: center;
    gap: .45rem
}

.cert-view-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(24, 168, 70, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: all .3s ease
}

.home-certificate-card:hover .cert-view-arrow {
    background: #159b3e;
    color: #fff;
    transform: translateX(-4px)
}

/* ── Smart WhatsApp Floating Widget (Option 1) ── */
.whatsapp-smart-float {
    position: fixed;
    z-index: 999;
    bottom: 24px;
    inset-inline-end: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    padding: 6px;
    border-radius: 99px;
    box-shadow: 0 8px 24px rgba(18, 140, 126, .35), 0 2px 6px rgba(0, 0, 0, .1);
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    max-width: 54px;
    overflow: hidden;
    white-space: nowrap;
    direction: rtl
}

.whatsapp-pulse-ring {
    position: absolute;
    inset: -3px;
    border-radius: 99px;
    border: 2px solid #25D366;
    animation: waPulse 2.4s infinite cubic-bezier(.24, 0, .38, 1);
    pointer-events: none
}

@keyframes waPulse {
    0% {
        transform: scale(.96);
        opacity: .85
    }

    50% {
        transform: scale(1.18);
        opacity: 0
    }

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

.whatsapp-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0
}

.whatsapp-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

.whatsapp-online-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #00ff66;
    border: 2px solid #128C7E;
    border-radius: 50%;
    box-shadow: 0 0 6px #00ff66;
    animation: waDotBlink 1.8s infinite ease-in-out
}

@keyframes waDotBlink {

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

    50% {
        opacity: .4;
        transform: scale(.85)
    }
}

.whatsapp-expand-text {
    display: flex;
    flex-direction: column;
    padding-inline-end: 14px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .3s ease, transform .3s ease
}

.whatsapp-expand-text strong {
    font-size: .86rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25
}

.whatsapp-expand-text small {
    font-size: .72rem;
    color: #dbffe4;
    font-weight: 600
}

.whatsapp-smart-float:hover {
    max-width: 250px;
    padding-inline-end: 8px;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(18, 140, 126, .48), 0 4px 12px rgba(0, 0, 0, .15)
}

.whatsapp-smart-float:hover .whatsapp-expand-text {
    opacity: 1;
    transform: translateX(0)
}

@media(max-width:768px) {
    .whatsapp-smart-float {
        bottom: 18px;
        inset-inline-end: 18px
    }
}

/* ── Services Page Luxury Redesign ── */
.services-hero-modern {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background: #092014;
    overflow: hidden;
    padding: 150px 0 80px;
    color: #fff;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.38;
    filter: saturate(1.1) brightness(0.9);
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 30%, rgba(21, 155, 62, 0.18), transparent 50%),
        linear-gradient(180deg, rgba(9, 32, 20, 0.82) 0%, rgba(9, 32, 20, 0.96) 100%),
        linear-gradient(90deg, rgba(9, 32, 20, 0.95) 0%, rgba(9, 32, 20, 0.7) 100%);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0.8rem 0 1.2rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.services-hero-content p {
    font-size: 1.12rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    max-width: 680px;
    margin-bottom: 2rem;
}

.services-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.services-trust-strip {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.trust-item i {
    color: #f6c75d;
    font-size: 1rem;
}

/* ── Filter Tabs ── */
.services-filter-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
}

.services-filter-btn {
    padding: 10px 22px;
    border-radius: 99px;
    border: 1.5px solid rgba(16, 43, 27, 0.12);
    background: #fff;
    color: var(--forest);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.services-filter-btn:hover {
    border-color: #159b3e;
    color: #159b3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21, 155, 62, 0.12);
}

.services-filter-btn.active {
    background: linear-gradient(135deg, #092717 0%, #159b3e 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(21, 155, 62, 0.3);
}

/* ── Luxury Service Card ── */
.service-card-luxury {
    position: relative;
    background: #fff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 22px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 22px rgba(16, 43, 27, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}

.service-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #159b3e 0%, #f6c75d 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card-luxury:hover {
    transform: translateY(-8px);
    border-color: rgba(21, 155, 62, 0.35);
    box-shadow: 0 24px 55px rgba(11, 39, 25, 0.1);
}

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

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.6rem;
}

.service-card-icon-badge {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #092717 0%, #159b3e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(21, 155, 62, 0.28);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    flex-shrink: 0;
}

.service-card-luxury:hover .service-card-icon-badge {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 12px 28px rgba(21, 155, 62, 0.4);
}

.service-card-icon-badge img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.service-card-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: #cfded4;
    transition: color 0.3s ease;
}

.service-card-luxury:hover .service-card-number {
    color: #159b3e;
}

.service-category-tag {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    background: #f0f5f1;
    color: #159b3e;
}

.service-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 0.8rem;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.service-card-luxury:hover .service-card-title {
    color: #159b3e;
}

.service-card-desc {
    color: #556b5f;
    font-size: 0.94rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

/* Scope Box */
.service-scope-container {
    background: #f8faf6;
    border: 1px solid rgba(21, 155, 62, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 1.6rem;
    margin-top: auto;
}

.scope-header {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--forest);
    margin-bottom: 6px;
}

.scope-header i {
    color: #159b3e;
    font-size: 0.9rem;
}

.scope-body {
    font-size: 0.82rem;
    line-height: 1.75;
    color: #556b5f;
    margin: 0;
}

/* Card Action Footer */
.service-card-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(16, 43, 27, 0.08);
}

.service-consult-btn {
    flex-grow: 1;
    padding: 10px 18px;
    border-radius: 12px;
    background: #f0f5f1;
    border: 1px solid rgba(21, 155, 62, 0.2);
    color: #0b2719;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.service-consult-btn:hover {
    background: #159b3e;
    border-color: #159b3e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21, 155, 62, 0.25);
}

.service-wa-quick-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.service-wa-quick-btn:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.4);
}

/* ── Work Process Luxury Section ── */
.process-section-v2 {
    background: linear-gradient(180deg, #f4f7f2 0%, #edf3eb 100%);
    padding: 90px 0;
    position: relative;
}

.process-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-top: 2rem;
}

.process-card-luxury {
    background: #fff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(16, 43, 27, 0.03);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    z-index: 1;
}

.process-card-luxury:hover {
    transform: translateY(-8px);
    border-color: rgba(21, 155, 62, 0.35);
    box-shadow: 0 20px 45px rgba(11, 39, 25, 0.09);
}

.process-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.4rem;
}

.process-step-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #092717 0%, #159b3e 100%);
    color: #f6c75d;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(21, 155, 62, 0.28);
}

.process-step-icon {
    font-size: 1.4rem;
    color: #159b3e;
    opacity: 0.8;
}

.process-card-luxury h4 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.process-card-luxury p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #556b5f;
    margin: 0;
}

/* ── Value Guarantees Section ── */
.services-guarantees {
    background: #fff;
    padding: 85px 0;
    border-top: 1px solid rgba(16, 43, 27, 0.06);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.guarantee-card {
    padding: 2rem 1.8rem;
    border-radius: 20px;
    background: #fbfdfa;
    border: 1px solid rgba(16, 43, 27, 0.07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-6px);
    border-color: rgba(21, 155, 62, 0.3);
    box-shadow: 0 16px 36px rgba(11, 39, 25, 0.07);
}

.guarantee-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(21, 155, 62, 0.1);
    color: #159b3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.guarantee-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 0.6rem;
}

.guarantee-card p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #556b5f;
    margin: 0;
}

/* ── CTA Banner ── */
.services-cta-luxury {
    background: linear-gradient(135deg, #092014 0%, #0f3521 100%);
    padding: 90px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.services-cta-luxury::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(21, 155, 62, 0.22), transparent 70%);
    pointer-events: none;
}

.cta-luxury-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.cta-luxury-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #fff;
}

.cta-luxury-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.2rem;
}

.cta-luxury-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.cta-features-strip {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-features-strip span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.cta-features-strip i {
    color: #f6c75d;
}

@media (max-width: 992px) {

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

@media (max-width: 620px) {
    .services-hero-modern {
        padding: 120px 0 60px;
        min-height: auto;
    }

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

    .service-card-luxury {
        padding: 1.6rem 1.4rem;
    }
}

/* ── Projects Archive Luxury Redesign ── */
.projects-hero-luxury {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: #092014;
    overflow: hidden;
    padding: 150px 0 80px;
    color: #fff;
}

.projects-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.32;
    filter: saturate(1.15) brightness(0.85);
}

.projects-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 25%, rgba(21, 155, 62, 0.22), transparent 55%),
        linear-gradient(180deg, rgba(9, 32, 20, 0.85) 0%, rgba(9, 32, 20, 0.98) 100%),
        linear-gradient(90deg, rgba(9, 32, 20, 0.95) 0%, rgba(9, 32, 20, 0.72) 100%);
    z-index: 1;
}

.projects-hero-content {
    position: relative;
    z-index: 2;
}

.projects-hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0.8rem 0 1.2rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.projects-hero-content p {
    font-size: 1.12rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    max-width: 680px;
    margin-bottom: 2rem;
}

.projects-stats-strip {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6c75d;
    font-size: 1.15rem;
}

.project-stat-text strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.project-stat-text span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Filter Controls ── */
.projects-filter-wrapper {
    background: #fff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 20px;
    padding: 1.2rem 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-inline-end: 4px;
}

.project-filter-pill {
    padding: 8px 18px;
    border-radius: 99px;
    border: 1.5px solid rgba(16, 43, 27, 0.1);
    background: #f8faf6;
    color: var(--forest);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.project-filter-pill:hover {
    border-color: #159b3e;
    color: #159b3e;
    background: #fff;
    transform: translateY(-2px);
}

.project-filter-pill.active {
    background: linear-gradient(135deg, #092717 0%, #159b3e 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(21, 155, 62, 0.28);
}

/* ── Luxury Project Card ── */
.project-card-luxury {
    background: #fff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(16, 43, 27, 0.03);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

.project-card-luxury:hover {
    transform: translateY(-8px);
    border-color: rgba(21, 155, 62, 0.35);
    box-shadow: 0 22px 50px rgba(11, 39, 25, 0.1);
}

.project-card-media {
    position: relative;
    aspect-ratio: 1.45;
    overflow: hidden;
    background: #092014;
}

.project-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card-luxury:hover .project-card-media img {
    transform: scale(1.07);
}

.project-badge-status {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-badge-status.status-completed {
    background: rgba(21, 155, 62, 0.92);
    color: #fff;
}

.project-badge-status.status-progress {
    background: rgba(246, 199, 93, 0.95);
    color: #092014;
}

.project-gallery-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 99px;
    background: rgba(9, 32, 20, 0.75);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.project-card-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(9, 32, 20, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.project-card-luxury:hover .project-card-media-overlay {
    opacity: 1;
}

.media-overlay-btn {
    background: #fff;
    color: #092014;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.project-card-luxury:hover .media-overlay-btn {
    transform: translateY(0);
}

.project-card-content {
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.project-card-luxury .project-title,
.project-card-luxury .project-card-title,
.project-card-header h3,
.project-card-header h4 {
    font-size: 1.38rem !important;
    font-weight: 800 !important;
    color: var(--forest) !important;
    margin: 0 !important;
    line-height: 1.35 !important;
    font-family: var(--font-heading) !important;
    letter-spacing: normal !important;
}

.project-card-luxury:hover .project-title,
.project-card-luxury:hover .project-card-title,
.project-card-luxury:hover .project-card-header h3,
.project-card-luxury:hover .project-card-header h4 {
    color: #159b3e !important;
}

.project-district-pill {
    font-size: 0.8rem;
    font-weight: 700;
    color: #159b3e;
    background: #f0f5f1;
    padding: 4px 10px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.project-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: #fbfdfa;
    border: 1px solid rgba(16, 43, 27, 0.06);
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 1.2rem;
}

.project-meta-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #556b5f;
}

.project-meta-cell i {
    color: #159b3e;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.project-meta-cell strong {
    color: var(--forest);
    font-weight: 700;
    font-size: 0.84rem;
}

.project-description {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #556b5f;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.project-features-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.4rem;
}

.feature-chip {
    font-size: 0.74rem;
    font-weight: 600;
    color: #3b5245;
    background: #f4f7f2;
    padding: 3px 9px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.feature-chip i {
    color: #159b3e;
    font-size: 0.7rem;
}

/* Card Action Footer */
.project-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(16, 43, 27, 0.08);
}

.project-details-link {
    flex-grow: 1;
    padding: 10px 16px;
    border-radius: 12px;
    background: #f0f5f1;
    border: 1px solid rgba(21, 155, 62, 0.2);
    color: #0b2719;
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.project-details-link:hover {
    background: #159b3e;
    border-color: #159b3e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21, 155, 62, 0.25);
}

.project-wa-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.project-wa-btn:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.08) translateY(-2px);
}

.project-map-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(16, 43, 27, 0.12);
    color: var(--stone);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.project-map-btn:hover {
    border-color: #159b3e;
    color: #159b3e;
    background: #f0f5f1;
    transform: translateY(-2px);
}

/* ── Districts Cloud Section ── */
.projects-districts-section {
    background: linear-gradient(180deg, #f4f7f2 0%, #edf3eb 100%);
    padding: 80px 0;
}

.districts-cloud-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.district-tag-pill {
    padding: 10px 20px;
    border-radius: 99px;
    background: #fff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    color: var(--forest);
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.district-tag-pill i {
    color: #159b3e;
}

.district-tag-pill:hover {
    border-color: #159b3e;
    color: #159b3e;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(21, 155, 62, 0.12);
}

/* ── Projects CTA ── */
.projects-cta-section {
    background: linear-gradient(135deg, #092014 0%, #0f3521 100%);
    padding: 90px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.projects-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(21, 155, 62, 0.22), transparent 70%);
    pointer-events: none;
}

.projects-cta-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.projects-cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #fff;
}

.projects-cta-content p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.2rem;
}

.projects-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.projects-cta-features {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.projects-cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.projects-cta-features i {
    color: #f6c75d;
}

@media (max-width: 768px) {
    .projects-hero-luxury {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .projects-filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .project-card-content {
        padding: 1.4rem 1.2rem;
    }
}

/* ── Certificates Page Luxury Redesign ── */
.certs-hero-luxury {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: #092014;
    overflow: hidden;
    padding: 150px 0 80px;
    color: #fff;
}

.certs-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.32;
    filter: saturate(1.15) brightness(0.85);
}

.certs-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 25%, rgba(21, 155, 62, 0.22), transparent 55%),
        linear-gradient(180deg, rgba(9, 32, 20, 0.85) 0%, rgba(9, 32, 20, 0.98) 100%),
        linear-gradient(90deg, rgba(9, 32, 20, 0.95) 0%, rgba(9, 32, 20, 0.72) 100%);
    z-index: 1;
}

.certs-hero-content {
    position: relative;
    z-index: 2;
}

.certs-hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0.8rem 0 1.2rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.certs-hero-content p {
    font-size: 1.12rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    max-width: 680px;
    margin-bottom: 2rem;
}

.certs-trust-strip {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cert-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6c75d;
    font-size: 1.15rem;
}

.cert-trust-text strong {
    display: block;
    font-size: 1.12rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.cert-trust-text span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Certificates Page Grid ── */
.certs-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* ── Verification Guarantee Box ── */
.cert-verification-notice {
    background: #f8faf6;
    border: 1.5px dashed rgba(21, 155, 62, 0.25);
    border-radius: 18px;
    padding: 1.8rem 2.2rem;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.verification-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, #092717 0%, #159b3e 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(21, 155, 62, 0.25);
}

.verification-text h4 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 0.4rem;
}

.verification-text p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #556b5f;
    margin: 0;
}

@media (max-width: 1160px) {
    .certs-archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .certs-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .certs-archive-grid {
        grid-template-columns: 1fr;
    }

    .cert-verification-notice {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Client Guide Page Luxury Redesign ── */
.guide-hero-luxury {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: #092014;
    overflow: hidden;
    padding: 150px 0 80px;
    color: #fff;
}

.guide-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
    filter: saturate(1.15) brightness(0.85);
}

.guide-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 25%, rgba(21, 155, 62, 0.22), transparent 55%),
        linear-gradient(180deg, rgba(9, 32, 20, 0.85) 0%, rgba(9, 32, 20, 0.98) 100%),
        linear-gradient(90deg, rgba(9, 32, 20, 0.95) 0%, rgba(9, 32, 20, 0.72) 100%);
    z-index: 1;
}

.guide-hero-content {
    position: relative;
    z-index: 2;
}

.guide-hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0.8rem 0 1.2rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.guide-hero-content p {
    font-size: 1.12rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.82);
    max-width: 680px;
    margin-bottom: 2rem;
}

.guide-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

/* ── 2-Column Guide Layout ── */
.guide-master-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.guide-sidebar-nav {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 20px;
    padding: 1.6rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.guide-sidebar-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(16, 43, 27, 0.08);
}

.guide-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guide-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    color: #4a5d52;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.guide-nav-item:hover {
    background: #f0f5f1;
    color: #159b3e;
    transform: translateX(-3px);
}

.guide-nav-item.active {
    background: linear-gradient(135deg, #092717 0%, #159b3e 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(21, 155, 62, 0.25);
}

.guide-nav-num {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    opacity: 0.7;
    flex-shrink: 0;
}

.guide-nav-item.active .guide-nav-num {
    opacity: 1;
    color: #f6c75d;
}

.guide-sidebar-help {
    margin-top: 1.6rem;
    padding: 1.2rem;
    border-radius: 14px;
    background: #f8faf6;
    border: 1px solid rgba(21, 155, 62, 0.15);
    text-align: center;
}

.guide-sidebar-help h5 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 0.4rem;
}

.guide-sidebar-help p {
    font-size: 0.78rem;
    line-height: 1.6;
    color: #556b5f;
    margin: 0 0 0.8rem;
}

/* ── Luxury Guide Cards ── */
.guide-card-luxury {
    background: #fff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-card-luxury:hover {
    border-color: rgba(21, 155, 62, 0.3);
    box-shadow: 0 12px 30px rgba(11, 39, 25, 0.06);
}

.guide-card-luxury.open {
    border-color: rgba(21, 155, 62, 0.4);
    box-shadow: 0 16px 40px rgba(11, 39, 25, 0.08);
}

.guide-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.8rem;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.25s ease;
    user-select: none;
}

.guide-card-luxury.open .guide-card-header {
    background: #fbfdfa;
    border-bottom: 1px solid rgba(16, 43, 27, 0.06);
}

.guide-card-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.guide-card-num-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #092717 0%, #159b3e 100%);
    color: #f6c75d;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(21, 155, 62, 0.22);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.guide-card-luxury:hover .guide-card-num-box {
    transform: scale(1.06);
}

.guide-card-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0;
    line-height: 1.35;
    transition: color 0.25s ease;
}

.guide-card-luxury.open .guide-card-title {
    color: #159b3e;
}

.guide-card-toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f5f1;
    color: #159b3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.guide-card-luxury.open .guide-card-toggle-icon {
    background: #159b3e;
    color: #fff;
    transform: rotate(180deg);
}

.guide-card-body {
    padding: 1.8rem;
    display: none;
    animation: fadeInGuide 0.3s ease;
}

.guide-card-luxury.open .guide-card-body {
    display: block;
}

@keyframes fadeInGuide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guide-points-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
    line-height: 1.8;
    color: #3b5245;
    background: #fcfdfc;
    border: 1px solid rgba(16, 43, 27, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
}

.point-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(21, 155, 62, 0.12);
    color: #159b3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Note Boxes */
.guide-note-luxury {
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.guide-note-green {
    background: #f0f8f2;
    border: 1px solid rgba(21, 155, 62, 0.2);
    color: #0b3d1f;
}

.guide-note-amber {
    background: #fffbf0;
    border: 1px solid rgba(246, 199, 93, 0.35);
    color: #634b07;
}

.guide-note-red {
    background: #fdf2f2;
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #721c24;
}

.guide-note-icon {
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.guide-note-green .guide-note-icon {
    color: #159b3e;
}

.guide-note-amber .guide-note-icon {
    color: #d49f17;
}

.guide-note-red .guide-note-icon {
    color: #dc3545;
}

.guide-card-footer-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(16, 43, 27, 0.06);
    padding-top: 1rem;
}

.guide-ask-btn {
    font-size: 0.82rem;
    font-weight: 700;
    color: #159b3e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.guide-ask-btn:hover {
    color: #0b2719;
    transform: translateX(-3px);
}

@media (max-width: 992px) {
    .guide-master-layout {
        grid-template-columns: 1fr;
    }

    .guide-sidebar-nav {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 620px) {
    .guide-hero-luxury {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .guide-card-header {
        padding: 1.2rem 1.4rem;
    }

    .guide-card-body {
        padding: 1.2rem;
    }

    .guide-point-item {
        font-size: 0.88rem;
    }
}

/* ══════════════════════════════════════════════════════════════════
   BLOG ARCHIVE LUXURY REDESIGN
   ══════════════════════════════════════════════════════════════════ */
.blog-hero-luxury {
    position: relative;
    padding: 150px 0 80px;
    background: #081d12;
    overflow: hidden;
    color: #fff;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    filter: saturate(1.1) brightness(0.9);
    transform: scale(1.03);
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 24, 15, 0.82) 0%, rgba(9, 32, 20, 0.94) 70%, #0c2919 100%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}

.blog-hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.25;
    color: #fff;
    margin: 1rem 0 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.blog-hero-content p {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: #d8e5dd;
    line-height: 1.85;
    margin-bottom: 2.2rem;
}

.blog-stats-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 1.5rem;
}

.blog-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.blog-stat-item:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(246, 199, 93, 0.4);
    transform: translateY(-2px);
}

.blog-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(246, 199, 93, 0.2);
    color: #f6c75d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.blog-stat-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.2;
}

.blog-stat-text strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
}

.blog-stat-text span {
    color: #a4c2b2;
    font-size: 0.76rem;
}

/* ── Filter Pills ── */
.blog-listing-section {
    background: #fbfdfb;
    padding: 70px 0 90px;
    position: relative;
}

.blog-filter-wrapper {
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 16px 24px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.blog-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #3b5245;
    background: #f4f7f5;
    border: 1px solid rgba(16, 43, 27, 0.06);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.blog-filter-pill:hover {
    color: #159b3e;
    background: #eaf3ed;
    border-color: rgba(21, 155, 62, 0.25);
    transform: translateY(-2px);
}

.blog-filter-pill.active {
    background: linear-gradient(135deg, #0d702c 0%, #159b3e 100%);
    color: #fff;
    border-color: #159b3e;
    box-shadow: 0 6px 18px rgba(21, 155, 62, 0.3);
}

.blog-filter-pill .pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.08);
    color: #2e4337;
    transition: all 0.3s ease;
}

.blog-filter-pill.active .pill-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* ── Blog Card Luxury ── */
.blog-card-luxury {
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.035);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.blog-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 39, 25, 0.1);
    border-color: rgba(21, 155, 62, 0.3);
}

.blog-card-media-box {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #112d1d;
    display: block;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-luxury:hover .blog-card-img {
    transform: scale(1.08);
}

.blog-card-media-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

/* Badges on Media */
.blog-badge-category {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(8, 38, 21, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #f6c75d;
    border: 1px solid rgba(246, 199, 93, 0.35);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-badge-time {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #e5f0ea;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Card Content Body */
.blog-card-body-luxury {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(16, 43, 27, 0.06);
    font-size: 0.82rem;
    color: #637a6d;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.blog-meta-item i {
    color: #159b3e;
    font-size: 0.88rem;
}

.blog-card-title-luxury {
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.5;
    margin: 0 0 12px;
    font-family: var(--font-heading);
}

.blog-card-title-luxury a {
    color: var(--forest);
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-card-luxury:hover .blog-card-title-luxury a {
    color: #159b3e;
}

.blog-card-excerpt-luxury {
    color: #556e60;
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 22px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer-luxury {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(16, 43, 27, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-read-btn {
    font-size: 0.88rem;
    font-weight: 800;
    color: #159b3e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.blog-card-luxury:hover .blog-read-btn {
    color: #0b2719;
}

.blog-card-luxury:hover .blog-read-btn i {
    transform: translateX(-5px);
}

/* ── Blog Knowledge CTA ── */
.blog-cta-luxury {
    margin-top: 70px;
    background: linear-gradient(135deg, #071f13 0%, #0d3620 50%, #114227 100%);
    border-radius: 28px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 16px 45px rgba(7, 31, 19, 0.15);
    border: 1px solid rgba(246, 199, 93, 0.25);
    text-align: center;
}

.blog-cta-luxury::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 199, 93, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta-luxury h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    font-family: var(--font-heading);
}

.blog-cta-luxury p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #d2e4d9;
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

.blog-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .blog-hero-luxury {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .blog-card-media-box {
        height: 200px;
    }

    .blog-cta-luxury {
        padding: 35px 22px;
    }

    .blog-filter-wrapper {
        padding: 12px 16px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT PAGE LUXURY REDESIGN
   ══════════════════════════════════════════════════════════════════ */
.contact-hero-luxury {
    position: relative;
    padding: 150px 0 80px;
    background: #081d12;
    overflow: hidden;
    color: #fff;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    filter: saturate(1.1) brightness(0.9);
    transform: scale(1.03);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 24, 15, 0.82) 0%, rgba(9, 32, 20, 0.94) 70%, #0c2919 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    text-align: center;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.25;
    color: #fff;
    margin: 1rem 0 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.contact-hero-content p {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: #d8e5dd;
    line-height: 1.85;
    margin-bottom: 2.2rem;
}

.contact-stats-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 1.5rem;
}

.contact-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-stat-item:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(246, 199, 93, 0.4);
    transform: translateY(-2px);
}

.contact-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(246, 199, 93, 0.2);
    color: #f6c75d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.contact-stat-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.2;
}

.contact-stat-text strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
}

.contact-stat-text span {
    color: #a4c2b2;
    font-size: 0.76rem;
}

/* ── Contact Section Grid ── */
.contact-section-luxury {
    background: #fbfdfb;
    padding: 70px 0 90px;
    position: relative;
}

.contact-grid-luxury {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 45px;
    align-items: start;
}

/* ── Contact Info Cards (Right Column in RTL) ── */
.contact-info-luxury {
    display: flex;
    flex-direction: column;
}

.contact-info-header {
    margin-bottom: 25px;
}

.contact-info-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--forest);
    line-height: 1.3;
    margin: 0.8rem 0 0.8rem;
    font-family: var(--font-heading);
}

.contact-info-header p {
    font-size: 0.98rem;
    color: #556e60;
    line-height: 1.8;
    margin: 0;
}

.contact-channels-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-channel-card {
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contact-channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(11, 39, 25, 0.08);
    border-color: rgba(21, 155, 62, 0.3);
}

.contact-channel-card.whatsapp-card {
    border-color: rgba(37, 211, 102, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f7fdf9 100%);
}

.contact-channel-card.whatsapp-card:hover {
    border-color: #25d366;
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.15);
}

.channel-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-channel-card:hover .channel-icon-box {
    transform: scale(1.08);
}

.whatsapp-card .channel-icon-box {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.phone-card .channel-icon-box {
    background: linear-gradient(135deg, #092717 0%, #159b3e 100%);
    color: #f6c75d;
    box-shadow: 0 6px 18px rgba(21, 155, 62, 0.2);
}

.email-card .channel-icon-box {
    background: #eef6f0;
    color: #159b3e;
}

.location-card .channel-icon-box {
    background: #fcf6e8;
    color: #d49f17;
}

.channel-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.channel-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #637a6d;
    margin-bottom: 3px;
}

.channel-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--forest);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.contact-channel-card:hover .channel-value {
    color: #159b3e;
}

.channel-subtitle {
    font-size: 0.78rem;
    color: #879b8f;
    margin-top: 2px;
}

.channel-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f7f5;
    color: #159b3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-channel-card:hover .channel-arrow {
    background: #159b3e;
    color: #fff;
    transform: translateX(-4px);
}

/* Trust Badges Strip */
.contact-trust-box {
    margin-top: 28px;
    padding: 22px;
    border-radius: 20px;
    background: #f3f8f4;
    border: 1px dashed rgba(21, 155, 62, 0.28);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-row-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #16402a;
}

.trust-row-item i {
    color: #159b3e;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* ── Contact Form Card (Left Column in RTL) ── */
.contact-form-card-luxury {
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 12px 45px rgba(11, 39, 25, 0.06);
    position: relative;
}

.form-card-header-luxury {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(16, 43, 27, 0.06);
}

.form-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 30px;
    background: rgba(21, 155, 62, 0.1);
    color: #159b3e;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.form-card-header-luxury h3 {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--forest);
    margin: 0 0 6px;
    font-family: var(--font-heading);
}

.form-card-header-luxury p {
    font-size: 0.88rem;
    color: #637a6d;
    margin: 0;
}

/* Form Fields */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group-luxury {
    margin-bottom: 20px;
}

.form-label-luxury {
    display: block;
    font-size: 0.88rem;
    font-weight: 750;
    color: #173b28;
    margin-bottom: 8px;
}

.form-label-luxury .req {
    color: #d93829;
    margin-right: 4px;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i.field-icon {
    position: absolute;
    right: 18px;
    color: #159b3e;
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.2s ease;
}

.form-control-luxury {
    width: 100%;
    height: 52px;
    padding: 0 48px 0 16px;
    background: #fbfdfb;
    border: 1.5px solid rgba(16, 43, 27, 0.12);
    border-radius: 14px;
    font-size: 0.92rem;
    color: #0b2719;
    font-family: inherit;
    transition: all 0.25s ease;
}

.form-control-luxury:focus {
    border-color: #159b3e;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(21, 155, 62, 0.12);
    outline: none;
}

.input-icon-wrapper:focus-within i.field-icon {
    color: #0b2719;
}

select.form-control-luxury {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23159b3e' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 18px center;
    background-size: 14px;
    cursor: pointer;
}

textarea.form-control-luxury {
    height: auto;
    min-height: 120px;
    padding: 14px 48px 14px 16px;
    resize: vertical;
    line-height: 1.7;
}

/* File Upload Dropzone */
.file-dropzone-luxury {
    border: 2px dashed rgba(21, 155, 62, 0.35);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    background: #f8faf8;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
}

.file-dropzone-luxury:hover {
    background: #f0f7f2;
    border-color: #159b3e;
}

.file-dropzone-luxury input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.dropzone-icon {
    font-size: 2rem;
    color: #159b3e;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.file-dropzone-luxury:hover .dropzone-icon {
    transform: translateY(-3px);
}

.dropzone-title {
    font-weight: 800;
    font-size: 0.92rem;
    color: #0b2719;
    margin-bottom: 4px;
}

.dropzone-subtitle {
    font-size: 0.78rem;
    color: #637a6d;
}

.dropzone-selected-file {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #159b3e;
    background: rgba(21, 155, 62, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Submit Button */
.btn-submit-luxury {
    width: 100%;
    height: 56px;
    background: linear-gradient(135deg, #0d702c 0%, #159b3e 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(21, 155, 62, 0.28);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 10px;
}

.btn-submit-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(21, 155, 62, 0.38);
    filter: brightness(1.05);
}

.btn-submit-luxury i {
    transition: transform 0.3s ease;
}

.btn-submit-luxury:hover i {
    transform: translateX(-5px);
}

.form-privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #637a6d;
    margin-top: 16px;
}

.form-privacy-note a {
    color: #159b3e;
    text-decoration: underline;
}

/* ── Google Maps Luxury Card ── */
.contact-map-card-luxury {
    margin-top: 70px;
    border-radius: 26px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.map-card-header {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fbfdfb;
    border-bottom: 1px solid rgba(16, 43, 27, 0.06);
    flex-wrap: wrap;
    gap: 16px;
}

.map-header-text h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 4px;
}

.map-header-text p {
    font-size: 0.85rem;
    color: #637a6d;
    margin: 0;
}

.map-embed-container {
    width: 100%;
    height: 380px;
    background: #e5ede8;
}

.map-embed-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-grid-luxury {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row-2col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-hero-luxury {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .contact-form-card-luxury {
        padding: 26px 18px;
    }

    .map-card-header {
        padding: 18px;
    }

    .map-embed-container {
        height: 280px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   BLOG POST (EDITORIAL) LUXURY REDESIGN
   ══════════════════════════════════════════════════════════════════ */
.post-hero-editorial {
    position: relative;
    padding: 150px 0 70px;
    background: #081d12;
    color: #fff;
    overflow: hidden;
}

.post-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(1.1) brightness(0.85);
    transform: scale(1.03);
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 24, 15, 0.85) 0%, rgba(9, 32, 20, 0.95) 75%, #0c2919 100%);
}

.post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}

/* Breadcrumbs */
.post-breadcrumb-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #a4c2b2;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.post-breadcrumb-row a {
    color: #d8e5dd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-breadcrumb-row a:hover {
    color: #f6c75d;
}

.post-breadcrumb-row .sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.post-breadcrumb-row .current {
    color: #f6c75d;
    font-weight: 700;
}

.post-cat-badge-editorial {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(246, 199, 93, 0.15);
    color: #f6c75d;
    border: 1px solid rgba(246, 199, 93, 0.35);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

h1.post-title-editorial {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.32;
    color: #fff;
    margin-bottom: 22px;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.post-meta-strip-editorial {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    font-size: 0.9rem;
    color: #d8e5dd;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.post-meta-strip-editorial .meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.post-meta-strip-editorial .meta-pill i {
    color: #f6c75d;
}

/* ── Post Body Section ── */
.post-body-section-luxury {
    background: #fbfdfb;
    padding: 60px 0 90px;
}

.post-featured-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 43, 27, 0.08);
    margin-bottom: 40px;
    position: relative;
    background: #092717;
}

.post-featured-frame img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.post-featured-frame:hover img {
    transform: scale(1.03);
}

.featured-caption {
    padding: 12px 20px;
    background: #ffffff;
    border-top: 1px solid rgba(16, 43, 27, 0.06);
    font-size: 0.82rem;
    color: #637a6d;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Article Content Typography */
.post-editorial-content {
    font-size: 1.1rem;
    line-height: 2.1;
    color: #2e4337;
}

.post-editorial-content p {
    margin-bottom: 1.8rem;
}

.post-editorial-content p.lead {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.9;
    color: #0b2719;
    border-right: 4px solid #159b3e;
    padding-right: 18px;
    margin-bottom: 2.2rem;
    background: rgba(21, 155, 62, 0.04);
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 0 14px 14px 0;
}

.post-editorial-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--forest);
    margin: 2.5rem 0 1.2rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-editorial-content h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 22px;
    background: linear-gradient(180deg, #159b3e 0%, #0d702c 100%);
    border-radius: 4px;
    flex-shrink: 0;
}

.post-editorial-content ol,
.post-editorial-content ul {
    padding-right: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.post-editorial-content li {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #3b5245;
}

.post-editorial-content li strong {
    color: #0b2719;
    font-weight: 800;
}

/* Share Bar */
.post-share-bar-luxury {
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 20px;
    padding: 18px 24px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.share-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.share-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.share-btn.twitter {
    background: #111;
    color: #fff;
}

.share-btn.linkedin {
    background: #0077b5;
    color: #fff;
}

.share-btn.copy-link {
    background: #f0f5f1;
    color: #159b3e;
    border-color: rgba(21, 155, 62, 0.2);
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Author Box */
.post-author-luxury-card {
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 20px;
    padding: 24px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #092717 0%, #159b3e 100%);
    color: #f6c75d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--forest);
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #637a6d;
    line-height: 1.6;
}

/* Article CTA */
.article-cta-luxury {
    margin-top: 40px;
    background: linear-gradient(135deg, #071f13 0%, #0d3620 50%, #114227 100%);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(246, 199, 93, 0.25);
    text-align: center;
    box-shadow: 0 12px 35px rgba(7, 31, 19, 0.12);
}

.article-cta-luxury h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    color: #fff;
}

.article-cta-luxury p {
    font-size: 0.95rem;
    color: #d2e4d9;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.8;
}

/* ── Sidebar Sticky ── */
.post-sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-consult-card {
    background: linear-gradient(135deg, #092717 0%, #113c23 100%);
    border-radius: 20px;
    padding: 26px;
    color: #fff;
    border: 1px solid rgba(246, 199, 93, 0.25);
    box-shadow: 0 10px 30px rgba(9, 39, 23, 0.15);
}

.sidebar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(246, 199, 93, 0.2);
    color: #f6c75d;
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.sidebar-consult-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #fff;
}

.sidebar-consult-card p {
    font-size: 0.85rem;
    color: #c8ded1;
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-sidebar-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-sidebar-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.sidebar-card-luxury {
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.sidebar-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(16, 43, 27, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-related-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(16, 43, 27, 0.05);
    transition: all 0.2s ease;
}

.sidebar-related-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-related-item img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-related-info h5 {
    font-size: 0.88rem;
    font-weight: 750;
    color: var(--forest);
    line-height: 1.4;
    margin: 0 0 6px;
    transition: color 0.2s ease;
}

.sidebar-related-item:hover .sidebar-related-info h5 {
    color: #159b3e;
}

.sidebar-related-info span.date {
    font-size: 0.75rem;
    color: #879b8f;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 992px) {
    .post-sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .post-hero-editorial {
        padding: 120px 0 50px;
    }

    .post-meta-strip-editorial {
        gap: 12px;
        font-size: 0.82rem;
    }

    .article-cta-luxury {
        padding: 30px 18px;
    }
}

/* Knowledge Facts List Styling */
.knowledge-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.knowledge-fact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    background: #fbfdfb;
    border: 1px solid rgba(16, 43, 27, 0.06);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.knowledge-fact-item:hover {
    background: #f4f9f5;
    border-color: rgba(21, 155, 62, 0.2);
}

.fact-label {
    font-size: 0.84rem;
    color: #637a6d;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fact-label i {
    color: #159b3e;
    font-size: 0.85rem;
}

.fact-val {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--forest);
}

.fact-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(21, 155, 62, 0.1);
    color: #159b3e;
    font-size: 0.76rem;
    font-weight: 800;
}

/* ══════════════════════════════════════════════════════════════════
   SINGLE PROJECT DETAIL LUXURY REDESIGN
   ══════════════════════════════════════════════════════════════════ */
.project-hero-luxury {
    position: relative;
    padding: 150px 0 75px;
    background: #081d12;
    color: #fff;
    overflow: hidden;
}

.project-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    filter: saturate(1.1) brightness(0.85);
    transform: scale(1.03);
}

.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 22, 13, 0.85) 0%, rgba(8, 28, 17, 0.94) 70%, #0c2919 100%);
}

.project-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.project-breadcrumb-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #a4c2b2;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.project-breadcrumb-row a {
    color: #d8e5dd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-breadcrumb-row a:hover {
    color: #f6c75d;
}

.project-breadcrumb-row .sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.project-breadcrumb-row .current {
    color: #f6c75d;
    font-weight: 700;
}

.project-badges-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.project-status-badge {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-status-badge.completed {
    background: rgba(21, 155, 62, 0.2);
    color: #4ecb68;
    border: 1px solid rgba(78, 203, 104, 0.4);
}

.project-status-badge.in-progress {
    background: rgba(246, 199, 93, 0.2);
    color: #f6c75d;
    border: 1px solid rgba(246, 199, 93, 0.4);
}

.project-type-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 700;
}

.project-location-badge {
    background: rgba(246, 199, 93, 0.15);
    color: #f6c75d;
    border: 1px solid rgba(246, 199, 93, 0.3);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

h1.project-detail-title {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.25;
    color: #ffffff !important;
    margin: 0.5rem 0 1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

p.project-detail-lead {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: #d8e5dd;
    line-height: 1.85;
    margin: 0 auto 1.8rem;
    max-width: 780px;
}

.project-hero-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.project-metric-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.86rem;
    color: #fff;
    transition: all 0.3s ease;
}

.project-metric-pill i {
    color: #f6c75d;
}

.project-metric-pill:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(246, 199, 93, 0.4);
    transform: translateY(-2px);
}

/* ── Showcase Section ── */
.project-showcase-luxury {
    background: #fbfdfb;
    padding: 60px 0 90px;
}

.project-layout-luxury {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* Main Image Showcase */
.project-featured-frame-luxury {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 43, 27, 0.08);
    background: #092717;
    position: relative;
}

.project-featured-frame-luxury img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.featured-overlay-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(7, 24, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.84rem;
    font-weight: 750;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-overlay-badge i {
    color: #f6c75d;
}

/* Gallery Thumbnails */
.project-gallery-luxury {
    margin-top: 35px;
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.gallery-header-luxury {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(16, 43, 27, 0.06);
}

.gallery-header-luxury h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-counter-badge {
    background: rgba(21, 155, 62, 0.1);
    color: #159b3e;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.project-thumbnails-luxury {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}

.thumb-item-luxury {
    border-radius: 14px;
    overflow: hidden;
    height: 85px;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    background: #eef2ed;
    position: relative;
}

.thumb-item-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb-item-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.thumb-item-luxury:hover img {
    transform: scale(1.08);
}

.thumb-item-luxury.active {
    border-color: #159b3e;
    box-shadow: 0 4px 16px rgba(21, 155, 62, 0.35);
}

/* Features Card */
.project-features-luxury-card {
    margin-top: 35px;
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.project-features-luxury-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(16, 43, 27, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-grid-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item-luxury {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fbfdfb;
    border: 1px solid rgba(16, 43, 27, 0.05);
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 750;
    color: #1c3d2a;
    transition: all 0.25s ease;
}

.feature-item-luxury:hover {
    background: #f4f9f5;
    border-color: rgba(21, 155, 62, 0.2);
    transform: translateY(-2px);
}

.feature-item-luxury i {
    color: #159b3e;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── Sticky Sidebar ── */
.project-sidebar-luxury {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-spec-card-luxury {
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.spec-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--forest);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(16, 43, 27, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-list-luxury {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-item-luxury {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #fbfdfb;
    border: 1px solid rgba(16, 43, 27, 0.05);
    border-radius: 12px;
    font-size: 0.88rem;
}

.spec-label-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #637a6d;
}

.spec-label-box i {
    color: #159b3e;
    font-size: 0.9rem;
}

.spec-value-box {
    font-weight: 800;
    color: var(--forest);
}

.project-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-project-whatsapp {
    width: 100%;
    height: 52px;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.btn-project-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-project-contact {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #0d702c 0%, #159b3e 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(21, 155, 62, 0.25);
}

.btn-project-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 155, 62, 0.35);
    color: #fff;
}

.btn-project-map {
    width: 100%;
    height: 48px;
    background: #f4f7f5;
    color: #159b3e;
    font-weight: 750;
    font-size: 0.88rem;
    border: 1px solid rgba(21, 155, 62, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-project-map:hover {
    background: #eaf3ed;
    color: #0b2719;
    border-color: #159b3e;
}

/* Assurance Box */
.project-assurance-box {
    padding: 20px;
    background: #f4f8f5;
    border: 1px dashed rgba(21, 155, 62, 0.25);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.assurance-row-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 750;
    color: #17422b;
}

.assurance-row-item i {
    color: #159b3e;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .project-layout-luxury {
        grid-template-columns: 1fr;
    }

    .project-sidebar-luxury {
        position: static;
        margin-top: 40px;
    }

    .features-grid-luxury {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .project-hero-luxury {
        padding: 120px 0 50px;
    }

    .project-featured-frame-luxury img {
        height: 280px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   GALLERY & EVENTS PAGE LUXURY REDESIGN
   ══════════════════════════════════════════════════════════════════ */
.gallery-hero-luxury {
    position: relative;
    padding: 150px 0 75px;
    background: #081d12;
    color: #fff;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.gallery-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(1.1) brightness(0.85);
    transform: scale(1.03);
}

.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 22, 13, 0.85) 0%, rgba(8, 28, 17, 0.94) 70%, #0c2919 100%);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.gallery-hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.25;
    color: #fff;
    margin: 1rem 0 1.2rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.gallery-hero-content p {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: #d8e5dd;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.gallery-stats-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.gallery-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gallery-stat-item:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(246, 199, 93, 0.4);
    transform: translateY(-2px);
}

.gallery-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(246, 199, 93, 0.2);
    color: #f6c75d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.gallery-stat-text {
    display: flex;
    flex-direction: column;
    text-align: right;
    line-height: 1.2;
}

.gallery-stat-text strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
}

.gallery-stat-text span {
    color: #a4c2b2;
    font-size: 0.76rem;
}

/* ── Filter Pills Navigation ── */
.gallery-tabs-section {
    background: #fbfdfb;
    padding: 50px 0 20px;
}

.gallery-filter-wrapper {
    background: #ffffff;
    border: 1px solid rgba(16, 43, 27, 0.08);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 14px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 750;
    color: #3b5245;
    background: #f4f7f5;
    border: 1px solid rgba(16, 43, 27, 0.06);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.gallery-filter-pill:hover {
    color: #159b3e;
    background: #eaf3ed;
    border-color: rgba(21, 155, 62, 0.25);
    transform: translateY(-2px);
}

.gallery-filter-pill.active {
    background: linear-gradient(135deg, #0d702c 0%, #159b3e 100%);
    color: #fff;
    border-color: #159b3e;
    box-shadow: 0 6px 18px rgba(21, 155, 62, 0.3);
}

.gallery-filter-pill .pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.08);
    color: #2e4337;
}

.gallery-filter-pill.active .pill-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* ── Event Block Luxury ── */
.gallery-event-block {
    padding: 40px 0 60px;
    border-bottom: 1px solid rgba(16, 43, 27, 0.06);
}

.gallery-event-block:last-child {
    border-bottom: none;
}

.event-block-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.event-block-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--forest);
    margin: 0.5rem 0 0.3rem;
    font-family: var(--font-heading);
}

.event-block-header p {
    font-size: 0.95rem;
    color: #556e60;
    max-width: 620px;
    margin: 0;
    line-height: 1.75;
}

.event-counter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(21, 155, 62, 0.1);
    color: #159b3e;
    font-size: 0.82rem;
    font-weight: 800;
}

/* Grid & Cards */
.gallery-grid-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-card-luxury {
    border-radius: 18px;
    overflow: hidden;
    background: #092717;
    position: relative;
    height: 220px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(16, 43, 27, 0.08);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-luxury img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-luxury:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(11, 39, 25, 0.12);
    border-color: rgba(21, 155, 62, 0.35);
}

.gallery-card-luxury:hover img {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(9, 39, 23, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card-luxury:hover .gallery-card-overlay {
    opacity: 1;
}

.overlay-zoom-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #159b3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.gallery-card-luxury:hover .overlay-zoom-btn {
    transform: scale(1);
}

/* ── Video Feature Luxury Card ── */
.gallery-video-card-luxury {
    background: linear-gradient(135deg, #071f13 0%, #0d3620 50%, #114227 100%);
    border-radius: 28px;
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 16px 45px rgba(7, 31, 19, 0.15);
    border: 1px solid rgba(246, 199, 93, 0.25);
    margin: 20px 0;
}

.video-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border-radius: 30px;
    background: rgba(246, 199, 93, 0.15);
    color: #f6c75d;
    border: 1px solid rgba(246, 199, 93, 0.35);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.gallery-video-card-luxury h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    font-family: var(--font-heading);
}

.gallery-video-card-luxury p {
    font-size: 1rem;
    color: #d2e4d9;
    line-height: 1.85;
    margin-bottom: 24px;
}

.video-frame-luxury {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(246, 199, 93, 0.25);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-frame-luxury iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Lightbox Modal Luxury ── */
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(4, 16, 9, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox-modal.open {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-container img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    object-fit: contain;
}

.lightbox-caption-bar {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0 10px;
}

.lightbox-close-btn {
    position: absolute;
    top: -45px;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
    background: #dc3545;
    border-color: #dc3545;
    transform: scale(1.08);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
    background: #159b3e;
    border-color: #159b3e;
    transform: translateY(-50%) scale(1.08);
}

.lightbox-nav-btn.prev-btn {
    right: -60px;
}

.lightbox-nav-btn.next-btn {
    left: -60px;
}

@media (max-width: 1200px) {
    .gallery-grid-luxury {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-card-luxury {
        height: 170px;
    }

    .gallery-video-card-luxury {
        padding: 30px 20px;
    }

    .lightbox-nav-btn {
        display: none;
    }

    .gallery-hero-luxury {
        padding: 120px 0 50px;
        min-height: auto;
    }
}

/* ==========================================================================
   HERO VIDEO TRIGGER & ACTIONS
   ========================================================================== */
.hero-video-badge {
    position: absolute;
    z-index: 3;
    bottom: 22px;
    left: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 18px 9px 12px;
    background: rgba(6, 27, 16, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 50px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    cursor: pointer;
    text-align: right;
    direction: rtl;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-video-badge:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(8, 36, 21, 0.92);
    border-color: #f6c75d;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55), 0 0 28px rgba(246, 199, 93, 0.38);
}

.hero-play-pulse {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7d270, #c89528);
    color: #071c11;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    padding-left: 2px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.45);
}

.hero-play-pulse::before,
.hero-play-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(246, 199, 93, 0.65);
    animation: heroPulseRing 2.2s infinite cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.hero-play-pulse::after {
    animation-delay: 1.1s;
}

@keyframes heroPulseRing {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.65);
        opacity: 0;
    }
}

.hero-video-badge-text {
    display: flex;
    flex-direction: column;
}

.hero-video-badge-text strong {
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.25;
    font-weight: 700;
}

.hero-video-badge-text small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.2;
}

.btn-hero-video {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.4rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-hero-video:hover {
    background: rgba(212, 175, 55, 0.16);
    border-color: #f6c75d;
    color: #f6c75d;
    transform: translateY(-2px);
}

.btn-hero-video i {
    font-size: 1.15rem;
    color: var(--gold, #d4af37);
    transition: transform 0.2s ease;
}

.btn-hero-video:hover i {
    transform: scale(1.15);
}

/* ==========================================================================
   DEDICATED FIELD VIDEO SHOWCASE SECTION
   ========================================================================== */
.field-video-showcase-section {
    padding: 85px 0;
    background: linear-gradient(180deg, #06190f 0%, #0a2517 50%, #06190f 100%);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    overflow: hidden;
}

.field-video-showcase-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 40%, rgba(212, 175, 55, 0.09) 0%, transparent 60%);
    pointer-events: none;
}

.field-video-card {
    background: rgba(10, 35, 21, 0.72);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 28px;
    padding: 46px 44px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    z-index: 1;
}

.field-video-card-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.field-video-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #f6c75d;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.field-video-pill .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 10px #25d366;
    animation: livePillGlow 1.8s infinite;
}

@keyframes livePillGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.field-video-copy h2 {
    color: #fff;
    font-size: 2.15rem;
    line-height: 1.32;
    margin-bottom: 1.1rem;
    font-weight: 800;
}

.field-video-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.field-video-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

.spec-item i {
    color: #25d366;
    font-size: 1.05rem;
}

.field-video-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.field-video-btns .btn-watch-video {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.95rem 1.8rem;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50px;
    border: none;
    cursor: pointer;
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.95rem 1.6rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.field-video-preview {
    position: relative;
    cursor: pointer;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.field-video-preview:hover {
    transform: translateY(-5px) scale(1.015);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.25);
    border-color: #f6c75d;
}

.preview-media-holder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10.5;
    background: #000;
    overflow: hidden;
}

.preview-media-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.field-video-preview:hover .preview-media-holder img {
    transform: scale(1.06);
}

.preview-backdrop-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 20, 12, 0.35) 0%, rgba(5, 20, 12, 0.75) 100%);
}

.play-trigger-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.play-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7d270 0%, #c89528 100%);
    color: #071c11;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    padding-left: 4px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.field-video-preview:hover .play-icon-box {
    transform: scale(1.12);
}

.circle-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(246, 199, 93, 0.7);
    animation: previewPulseRing 2.4s infinite cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.circle-ripple.ring-2 {
    animation-delay: 1.2s;
}

@keyframes previewPulseRing {
    0% {
        transform: scale(0.85);
        opacity: 1;
    }
    100% {
        transform: scale(1.85);
        opacity: 0;
    }
}

.preview-badges-top {
    position: absolute;
    top: 16px;
    right: 16px;
    left: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.badge-live {
    background: rgba(185, 28, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-live i {
    font-size: 0.55rem;
    animation: livePillGlow 1.2s infinite;
}

.badge-dur {
    background: rgba(0, 0, 0, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.preview-caption-bottom {
    position: absolute;
    bottom: 14px;
    right: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.preview-caption-bottom strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

.preview-caption-bottom span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
}

/* ==========================================================================
   LIGHTBOX VIDEO MODAL (ZERO INITIAL OVERHEAD)
   ========================================================================== */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100050;
    background: rgba(3, 14, 8, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.video-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-box {
    background: #081d11;
    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: 20px;
    width: 100%;
    max-width: 980px;
    overflow: hidden;
    box-shadow: 0 35px 95px rgba(0, 0, 0, 0.75), 0 0 35px rgba(212, 175, 55, 0.15);
    transform: scale(0.94);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.video-modal-overlay.open .video-modal-box {
    transform: scale(1);
}

.video-modal-header {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #f6c75d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding-left: 2px;
    flex-shrink: 0;
}

.video-modal-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.video-modal-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    line-height: 1.3;
}

.video-modal-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.video-modal-close:hover {
    background: rgba(220, 53, 69, 0.85);
    border-color: rgba(220, 53, 69, 1);
    transform: rotate(90deg);
}

.video-modal-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal-viewport video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    outline: none;
    display: block;
}

.video-modal-footer {
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 12px;
}

.video-modal-prompt {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
}

.video-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 991px) {
    .field-video-card-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .field-video-card {
        padding: 32px 24px;
    }

    .field-video-copy h2 {
        font-size: 1.75rem;
    }
}