/* ==========================================================================
   ALAEWAY MODERN GLOBAL STYLESHEET
   ========================================================================== */

/* ============================
   RESET & BASE
============================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --forest: #032b22;
    --forest-mid: #053b2f;
    --forest-light: #074738;
    --cream: #e8e8e3;
    --cream-dark: #d6d6d0;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #4a5a5a;
    --green-accent: #72816e;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--forest);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ============================
   ANIMATED WAVY CANVAS BG
============================ */
#wave-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

/* ============================
   NAVIGATION
============================ */
.nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1200px;
    z-index: 1000;
    padding: 8px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(232, 232, 227, 0.35);
    /* backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); */
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s ease;
}

.nav.scrolled {
    top: 16px;
    background: rgba(3, 43, 34, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 6px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.nav-brand-icon {
    width: 36px;
    height: 36px;
}

.nav-brand-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(3, 43, 34, 0.65);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: transparent;
    color: rgba(3, 43, 34, 0.7) !important;
    border: 1px solid rgba(3, 43, 34, 0.3) !important;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: rgba(3, 43, 34, 0.1) !important;
    border-color: rgba(3, 43, 34, 0.6) !important;
    color: rgba(3, 43, 34, 0.9) !important;
}

/* Scrolled state link colors */
.nav.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.75);
}

.nav.scrolled .nav-links a:hover {
    color: var(--white);
}

.nav.scrolled .nav-cta {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.nav.scrolled .nav-cta:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    color: var(--white) !important;
}

/* ============================
   SPANISH NAVBAR OVERRIDES
   Applied only when html.lang-es is set.
   Tightens spacing & reduces font size to
   prevent overflow from longer Spanish labels.
============================ */
html.lang-es .nav-links {
    gap: 25px;
}

html.lang-es .nav-links a {
    font-size: 10px;
    letter-spacing: 1px;
}

html.lang-es .nav-cta {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 7px 16px;
}

/* ============================
   LANGUAGE SWITCHER
============================ */
.lang-switcher-wrap {
    position: relative;
    list-style: none;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(3, 43, 34, 0.3);
    border-radius: 100px;
    padding: 6px 12px 6px 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(3, 43, 34, 0.7);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(3, 43, 34, 0.08);
    border-color: rgba(3, 43, 34, 0.5);
    color: rgba(3, 43, 34, 0.9);
}

.lang-chevron {
    transition: transform 0.2s ease;
    opacity: 0.6;
}

.lang-btn[aria-expanded="true"] .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    list-style: none;
    padding: 6px;
    margin: 0;
    min-width: 140px;
    z-index: 9999;
    animation: langDropFade 0.18s ease;
}

.lang-dropdown.open {
    display: block;
}

@keyframes langDropFade {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(3, 43, 34, 0.75);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    user-select: none;
}

.lang-option:hover {
    background: rgba(3, 43, 34, 0.06);
    color: rgba(3, 43, 34, 1);
}

.lang-option.active {
    background: rgba(3, 43, 34, 0.08);
    color: rgba(3, 43, 34, 1);
    font-weight: 700;
}

.lang-flag {
    font-size: 15px;
    line-height: 1;
}

/* Scrolled state – lang button adapts to white nav */
.nav.scrolled .lang-btn {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav.scrolled .lang-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

@media (max-width: 768px) {
    .nav {
        width: calc(100% - 32px);
        padding: 10px 24px;
        top: 16px;
    }

    .nav-links {
        gap: 16px;
    }

    .lang-btn span#langLabel {
        display: none;
        /* show globe icon only on mobile */
    }

    .lang-dropdown {
        right: 0;
        min-width: 120px;
    }
}

/* ============================
   HERO
============================ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 100px;
}

.hero-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(3, 43, 34, 0.35);
}

.hero-sub {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 56px;
    max-width: 600px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-hint-bar {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.4;
    }
}

/* ============================
   SECTION SHARED
============================ */
.section {
    position: relative;
    z-index: 1;
}

/* ============================
   METHOD SECTION (Dark)
============================ */
.section-method {
    padding: 0;
    background: none;
}

.method-intro {
    position: relative;
    min-height: 120vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 60px;
    overflow: hidden;
}

.method-intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.45;
}

.method-intro-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
}

.section-method .headline {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.section-method .body-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.85;
}

.method-pillars-wrap {
    background: var(--cream);
    padding: 100px 60px;
    position: relative;
    z-index: 2;
}

.method-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .method-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .method-pillars {
        grid-template-columns: 1fr;
    }
}

.method-pillar {
    padding: 44px 32px 52px;
    background: #052420;
    /* Deep forest green */
    border-radius: 20px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.method-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.pillar-num {
    align-self: flex-start;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: #cc3e2a;
    /* Brick Red */
    margin-bottom: 24px;
    line-height: 1;
    padding-left: 4px;
}

.pillar-title {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.pillar-desc {
    font-family: var(--sans);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

/* ============================
   ASSET SECTION (Dark Map)
============================ */
.section-asset {
    background: var(--forest-light);
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 90vh;
    align-items: stretch;
    position: relative;
}

.asset-visual {
    position: relative;
    overflow: hidden;
    background: var(--forest);
    min-height: 90vh;
}

#world-map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#world-map-svg .land {
    fill: rgba(114, 129, 110, 0.18);
    stroke: rgba(114, 129, 110, 0.4);
    stroke-width: 0.5;
    transition: fill 0.3s;
}

#world-map-svg .graticule {
    fill: none;
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 0.5;
}

#world-map-svg .sphere {
    fill: rgba(0, 18, 18, 0.6);
}

/* destination pins */
.map-dest-pin circle.pulse-ring {
    fill: none;
    stroke: rgba(114, 129, 110, 0.5);
    stroke-width: 1.5;
    animation: destPulse 2.4s ease-out infinite;
}

.map-dest-pin:nth-child(2) circle.pulse-ring {
    animation-delay: 0.8s;
}

.map-dest-pin:nth-child(3) circle.pulse-ring {
    animation-delay: 1.6s;
}

@keyframes destPulse {
    0% {
        r: 5;
        opacity: 0.8;
    }

    100% {
        r: 22;
        opacity: 0;
    }
}

.map-dest-pin circle.dot {
    fill: #72816e;
}

.map-dest-pin circle.dot-inner {
    fill: white;
}

.map-dest-pin text {
    fill: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.map-route-line {
    fill: none;
    stroke: rgba(114, 129, 110, 0.35);
    stroke-width: 1;
    stroke-dasharray: 6 4;
    animation: routeFlow 3s linear infinite;
}

@keyframes routeFlow {
    to {
        stroke-dashoffset: -40;
    }
}

/* Floating stat chips on map */
.map-stat-chips {
    position: absolute;
    bottom: 48px;
    left: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(3, 43, 34, 0.75);
    border: 1px solid rgba(114, 129, 110, 0.3);
    backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: 6px;
}

.map-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #72816e;
    flex-shrink: 0;
}

.map-chip span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.map-chip strong {
    font-size: 13px;
    color: white;
    font-weight: 600;
}

.asset-content {
    padding: 80px 60px 80px 70px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--forest-light);
}

.asset-content .section-label {
    color: rgba(255, 255, 255, 0.4);
}

.asset-content h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 3.5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin: 24px 0 28px;
}



.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.3s, color 0.3s;
}

.arrow-link:hover {
    gap: 18px;
    color: white;
}

/* destination pill list in content */
.dest-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.dest-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(114, 129, 110, 0.12);
    border: 1px solid rgba(114, 129, 110, 0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.75);
}

.dest-pill i {
    color: #72816e;
    font-size: 10px;
}

.asset-content p {
    font-size: 17px;
    color: rgb(255, 255, 255);
    line-height: 1.85;
    max-width: 480px;
    margin-bottom: 40px;
}



/* ============================
   OUR WORK / CLIENTS (Dark)
============================ */
.section-work {
    background: var(--forest);
    padding: 140px 60px;
    text-align: center;
}

.section-work .headline {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    color: var(--white);
    max-width: 800px;
    margin: 24px auto 32px;
    line-height: 1.25;
}

.section-work .body-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 720px;
    margin: 0 auto 60px;
    line-height: 1.85;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin: 80px auto;
    max-width: 900px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .num {
    font-family: var(--serif);
    font-size: 60px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    display: block;
}

.stat-item .label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 12px;
    display: block;
}

.client-logos {
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    width: 100%;
}

.client-logos-inner {
    display: flex;
    gap: 0;
    animation: logoScroll 30s linear infinite;
    width: max-content;
}

@keyframes logoScroll {
    to {
        transform: translateX(-50%);
    }
}

.client-logo {
    padding: 30px 60px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.client-logo:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.client-logo span {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.client-logo:hover span {
    color: rgba(255, 255, 255, 0.55);
}

/* ============================
   DESTINATIONS SECTION (Light)
============================ */
.section-destinations {
    background: var(--cream);
    padding: 140px 60px;
}

.section-destinations .inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-destinations .section-label {
    color: var(--text-muted);
}

.section-destinations .headline {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    color: var(--green-accent);
    margin: 24px 0 60px;
    line-height: 1.2;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

.dest-card {
    position: relative;
    overflow: hidden;
    height: 440px;
    border-radius: 28px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dest-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.7);
}

.dest-card:hover .dest-card-bg {
    transform: scale(1.08);
    filter: brightness(0.6);
}

.dest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 2;
}

.dest-region {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
}

.dest-name {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
}

.dest-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dest-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.dest-tag:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================
   SERVICES SECTION (Light)
============================ */
.section-services {
    background: var(--cream);
    padding: 140px 60px;
}

.section-services .inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-services .section-label {
    color: var(--text-muted);
}

.section-services .headline {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 400;
    color: var(--green-accent);
    max-width: 700px;
    margin: 24px 0 80px;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    padding: 80px 48px;
    background-color: #001111;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 440px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
            rgba(0, 10, 10, 0.95) 0%,
            rgba(0, 15, 15, 0.7) 50%,
            rgba(0, 20, 20, 0.3) 100%);
    z-index: 1;
    transition: opacity 0.4s;
}

.service-card:hover {
    box-shadow: 0 40px 80px rgba(114, 129, 110, 0.12);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card:hover::before {
    opacity: 0.8;
}

/* Unique card backgrounds */
.service-card-01 {
    background-image: url('Assests/Images/service1.jpg');
}

.service-card-02 {
    background-image: url('Assests/Images/service2.jpg');
}

.service-card-03 {
    background-image: url('Assests/Images/service3.jpg');
}

.service-card>* {
    position: relative;
    z-index: 2;
}

.service-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.service-icon {
    font-size: 32px;
    color: var(--green-accent);
    margin-bottom: 24px;
}

.service-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.service-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    max-width: 320px;
}

/* ============================
   PROCESS / HOW IT WORKS (Dark)
============================ */
.section-process {
    background: var(--cream);
    padding: 120px 60px;
}

.section-process .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 100px;
    align-items: center;
}

.process-left .headline {
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 400;
    color: var(--forest);
    line-height: 1.2;
    margin: 20px 0 32px;
}

.process-left p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.process-left .arrow-link {
    color: var(--forest);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.process-left .arrow-link:hover {
    gap: 14px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: flex;
    gap: 36px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(3, 43, 34, 0.12);
    align-items: flex-start;
}

.process-step:last-child {
    border-bottom: none;
}

.step-num {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: #cc3e2a;
    /* Terracotta Red */
    min-width: 44px;
    line-height: 1.1;
}

.step-content h4 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 12px;
    line-height: 1.2;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ============================
   CONTACT CTA (Light)
============================ */
.section-contact {
    background: var(--cream);
    padding: 160px 60px;
    text-align: center;
}

.section-contact .section-label {
    color: var(--text-muted);
}

.section-contact h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 400;
    color: var(--green-accent);
    max-width: 800px;
    margin: 24px auto 40px;
    line-height: 1.15;
}

.section-contact p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto 60px;
    line-height: 1.85;
}

.cta-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 44px;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.3s;
}

.cta-btn-dark:hover {
    background: var(--green-accent);
    transform: translateY(-3px);
}

/* ============================
   FOOTER
============================ */
.footer {
    background: var(--forest);
    padding: 100px 60px 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0) 35%,
            rgba(255, 255, 255, 0.04) 45%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.04) 55%,
            rgba(255, 255, 255, 0) 65%,
            transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
}

.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-nav-group h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 24px;
}

.footer-nav-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav-group a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav-group a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 16px;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-socials a:hover {
    color: var(--white);
}

/* ============================
   UTILITIES
============================ */
.arrow-icon {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.arrow-icon-dark {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================
   ANIMATIONS
============================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1100px) {
    .section-asset {
        grid-template-columns: 1fr;
    }

    .asset-visual {
        min-height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-process .inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 20px 24px;
    }

    .nav.scrolled {
        padding: 12px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 60px;
        letter-spacing: -1px;
    }

    .section-method,
    .section-work,
    .section-destinations,
    .section-services,
    .section-process,
    .section-contact {
        padding: 100px 24px;
    }

    .method-pillars {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 60px;
    }

    .footer-nav {
        gap: 40px;
        flex-wrap: wrap;
    }

    .asset-content {
        padding: 60px 30px;
    }
}

/* ============================
   BEFORE / AFTER SECTION
============================ */
.section-ba {
    background: var(--cream);
    padding: 140px 60px;
    position: relative;
    z-index: 1;
}

.section-ba .ba-title {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    text-align: center;
    color: var(--green-accent);
    letter-spacing: -0.5px;
    margin-bottom: 80px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.section-ba .ba-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.section-ba .ba-left,
.section-ba .ba-right {
    padding: 60px 56px;
}

.section-ba .ba-left {
    width: 48%;
    background: var(--cream-dark);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px 0 0 24px;
    position: relative;
    z-index: 1;
}

.section-ba .ba-right {
    width: 52%;
    background: var(--forest);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    margin-left: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.section-ba .ba-left h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.section-ba .ba-right h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--green-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.section-ba .ba-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-ba .ba-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    line-height: 1.7;
}

.section-ba .ba-list-before li {
    color: var(--text-muted);
}

.section-ba .ba-list-before li i {
    color: rgba(0, 0, 0, 0.25);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.section-ba .ba-list-after li {
    color: rgba(255, 255, 255, 0.65);
}

.section-ba .ba-list-after li i {
    color: var(--green-accent);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .section-ba {
        padding: 100px 24px;
    }

    .section-ba .ba-container {
        flex-direction: column;
        align-items: stretch;
    }

    .section-ba .ba-left,
    .section-ba .ba-right {
        width: 100%;
        margin-left: 0;
        border-radius: 24px;
        padding: 48px 32px;
    }

    .section-ba .ba-right {
        margin-top: -20px;
    }
}

/* ============================
   NOMAD SECTION
============================ */
.section-nomad {
    background: var(--forest-mid);
    padding: 140px 0 140px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-nomad .nomad-inner {
    text-align: center;
    padding: 0 60px;
    margin-bottom: 70px;
}

.section-nomad .nomad-inner .section-label {
    margin-bottom: 20px;
}

.section-nomad .nomad-inner .headline {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin: 0 auto 20px;
    max-width: 700px;
}

.section-nomad .nomad-inner .body-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.85;
}

/* Scroller */
.nomad2-scroller {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.nomad2-scroller-inner {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: nomad2Scroll 35s linear infinite;
    padding: 8px 0;
}

@keyframes nomad2Scroll {
    to {
        transform: translateX(-50%);
    }
}

.nomad2-card {
    width: 300px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s;
}

.nomad2-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.nomad2-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: brightness(0.8);
}

.nomad2-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(3, 43, 34, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
}

.nomad2-card-content {
    padding: 24px 28px 28px;
}

.nomad2-card-content h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
}

.nomad2-card-content h3 span {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

.nomad2-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nomad2-card-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nomad2-card-features li i {
    color: var(--green-accent);
    font-size: 12px;
    width: 14px;
}

@media (max-width: 768px) {
    .section-nomad {
        padding: 100px 0;
    }

    .section-nomad .nomad-inner {
        padding: 0 24px;
    }
}

/* ============================
   USP JOURNEY — WHO WE SERVE
============================ */
.section-usp-journey {
    background: var(--forest-mid);
    padding: 140px 60px;
    position: relative;
    overflow: hidden;
}

.section-usp-journey::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 129, 110, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.section-usp-journey::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114, 129, 110, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.usp-journey-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.usp-journey-header {
    text-align: center;
    margin-bottom: 90px;
}

.usp-journey-header .section-label {
    color: var(--green-accent);
    opacity: 0.85;
    letter-spacing: 4px;
}

.usp-journey-header h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin: 20px 0 24px;
}

.usp-journey-header h2 em {
    font-style: italic;
    color: rgba(114, 129, 110, 0.85);
}

.usp-journey-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.85;
}

/* WHO WE SERVE — audience chips */
.usp-audience {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0 80px;
}

.usp-audience-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.usp-audience-chip:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Step flow */
.usp-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    align-items: start;
}

/* Horizontal connector line */
.usp-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: calc(10% + 2px);
    right: calc(10% + 2px);
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.25) 15%,
            rgba(255, 255, 255, 0.25) 85%,
            transparent);
    z-index: 0;
}

.usp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.usp-step-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #001c1c;
    border: 1px solid rgba(114, 129, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(114, 129, 110, 0.15);
}

.usp-step-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.usp-step:hover .usp-step-icon-wrap {
    border-color: var(--green-accent);
    box-shadow: 0 0 35px rgba(114, 129, 110, 0.5);
    transform: translateY(-4px);
}

.usp-step:hover .usp-step-icon-wrap::after {
    opacity: 1;
}

.usp-step-icon-wrap i {
    font-size: 26px;
    color: #ffffff;
    transition: transform 0.4s;
}

.usp-step:hover .usp-step-icon-wrap i {
    transform: scale(1.12);
}

.usp-step h4 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.usp-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.usp-project-btn {
    display: inline-block;
    padding: 16px 44px;
    background: #cc3e2a;
    /* Terracotta Red */
    color: #ffffff;
    text-decoration: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(204, 62, 42, 0.2);
    border: none;
}

.usp-project-btn:hover {
    background: #b33220;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(204, 62, 42, 0.35);
}

/* Pulse animation on icons */
@keyframes uspPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(114, 129, 110, 0.25);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(114, 129, 110, 0);
    }
}

.usp-step-icon-wrap.pulse {
    animation: uspPulse 2.8s ease-in-out infinite;
}

/* Animate step in on scroll */
.usp-step.fade-in {
    transition-delay: calc(var(--i, 0) * 120ms);
}

@media (max-width: 1024px) {
    .usp-steps {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 60px;
    }

    .usp-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-usp-journey {
        padding: 100px 24px;
    }

    .usp-steps {
        grid-template-columns: 1fr 1fr;
        row-gap: 48px;
    }
}

@media (max-width: 480px) {
    .usp-steps {
        grid-template-columns: 1fr;
    }
}