/* ============================================
   EPOCH WORLD - Earth-Driven Premium Theme
   Inter Font | Gradient Accents | Scroll Animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Earth-Driven Color Palette */
    --bg-base: #F5F0E8;
    /* Main Theme Color */
    --bg-light: #FAF8F4;
    /* Slightly Lighter variant */
    --bg-secondary: #F5F0E8;
    /* Same as base for standard sections */
    --bg-tertiary: #F0ECE2;
    /* Slightly Darker/Warmer variant */
    --bg-quaternary: #EBE6DA;
    /* Deepest theme variant */
    /* Dark contrast sections (keeping original structure) */
    --bg-dark-card: #3A3027;
    /* Deep bark */
    --text-main: #2C241D;
    /* Dark loam */
    --text-muted: #6B5D4E;
    /* Slightly darker for better contrast on beige */
    /* Dusty sage */
    --accent-primary: #946C4E;
    /* Terracotta clay */
    --accent-hover: #7A5638;
    /* Burnt sienna */
    --accent-warm: #C4854C;
    /* Warm amber */
    --accent-olive: #6B7B50;
    /* Olive green */
    --accent-sand: #D4B896;
    /* Warm sand */
    --accent-rust: #A35D3A;
    /* Rust */
    --gradient-earth: linear-gradient(135deg, #b77e4d 0%, #C4854C 45%, #946C4E 100%);
    --gradient-warm: linear-gradient(135deg, #f5f0e8 0%, #C4854C 45%, #946C4E 100%);
    --gradient-sunset: linear-gradient(135deg, #b77e4d 0%, #C4854C 45%, #946C4E 100%);
    --gradient-moss: linear-gradient(135deg, #4A5D23 0%, #7A6253 100%);

    --font: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {}

body {
    font-family: var(--font);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- STANDARDIZED TYPOGRAPHY (Reduced Sizes) --- */
.system-heading {
    font-family: var(--font);
    font-size: 39px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #bb804d;
    margin-bottom: 16px;
}

.system-heading-sm {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.system-subhead {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 550px;
}

.system-paragraph {
    font-family: var(--font);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Gradient Text for Headings */
.gradient-text {
    background: var(--gradient-earth);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
    width: fit-content;
}

.text-center .section-label,
.timeline-header .section-label,
.section-header-center .section-label,
.lae-header .section-label,
[style*="text-align: center"] .section-label,
[style*="text-align:center"] .section-label {
    margin-left: auto;
    margin-right: auto;
}

/* --- GRADIENT BUTTONS --- */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-earth);
    color: #fff;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(148, 108, 78, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(148, 108, 78, 0.45);
}

.btn-gradient-pill {
    background: var(--gradient-earth);
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(163, 93, 58, 0.3);
}

.btn-gradient-pill:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(163, 93, 58, 0.45);
}

.btn-gradient-pill i {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.btn-solid-black {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-earth);
    color: #fff;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(148, 108, 78, 0.3);
}

.btn-solid-black:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(148, 108, 78, 0.45);
}

/* --- ANIMATION CORE --- */
.reveal-on-scroll {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-fade-up {
    transform: translateY(40px);
}

.reveal-fade-down {
    transform: translateY(-40px);
}

.reveal-fade-left {
    transform: translateX(-40px);
}

.reveal-fade-right {
    transform: translateX(40px);
}

.reveal-scale-in {
    transform: scale(0.9);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* --- ANIMATION DELAYS --- */
.delay-1 {
    transition-delay: 0.15s !important;
}

.delay-2 {
    transition-delay: 0.35s !important;
}

.delay-3 {
    transition-delay: 0.55s !important;
}

.delay-4 {
    transition-delay: 0.75s !important;
}

.delay-5 {
    transition-delay: 0.95s !important;
}

/* --- HEADER --- */
.main-header {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
}

.header-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(44, 36, 29, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 184, 150, 0.2);
    border-radius: 12px;
    padding: 8px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    width: 95%;
    max-width: 1400px;
    position: relative;
    min-height: 70px;
    transition: all 0.4s ease;
}

.main-header.transparent .header-pill {
    background: #0000004a;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* When scrolled Ã¢â‚¬â€ pill becomes solid dark glass */
.main-header.scrolled .header-pill {
    background: rgb(44 36 29 / 50%);
    border-color: rgba(212, 184, 150, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.main-header.transparent .logo img {
    filter: brightness(0) invert(1);
}

/* .main-header.transparent .nav-links a {
    color: rgba(255, 255, 255, 0.92);
} */

.main-header.transparent .nav-links a:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* Ghost outline Book Now button on transparent header */
.main-header.transparent .btn-book {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    box-shadow: none;
}

.main-header.transparent .btn-book:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

/* Hamburger stays white Ã¢â‚¬â€ already default */
.main-header.transparent .hamburger-menu span {
    background: #fff;
}

.logo {
    font-weight: 700;
    color: #fff;
    padding: 0 12px;
}

.nav-links {
    position: absolute;
    left: 53%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 3px;
    white-space: nowrap;
}

.nav-links a {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: var(--font);
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a i {
    font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn-book {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-earth);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(148, 108, 78, 0.3);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(148, 108, 78, 0.45);
}

.btn-book i {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    transform: rotate(-45deg);
}

/* --- MOBILE HAMBURGER --- */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger-menu span {
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s ease;
}

.hamburger-menu:hover span:nth-child(2) {
    transform: translateX(5px);
    background: var(--accent-sand);
}

/* --- SIDE DRAWER --- */
.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: rgba(44, 36, 29, 0.98);
    backdrop-filter: blur(30px);
    z-index: 2000;
    padding: 0 25px 60px;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    transform: translateX(100%);
}

.side-drawer.active {
    transform: translateX(0);
}

/* New Drawer Header Layout */
.drawer-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-header-row img {
    height: 28px;
    width: auto;
}

.drawer-close {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2100;
}

.drawer-close:hover {
    background: var(--accent-sand);
    transform: rotate(90deg) scale(1.1);
    color: #fff;
    box-shadow: 0 0 20px rgba(148, 108, 78, 0.3);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    flex: 1;
    gap: 40px;
    text-align: center;
}

.drawer-nav a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.drawer-nav a i,
.drawer-nav a img {
    font-size: 16px;
    color: var(--accent-sand);
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    object-fit: contain;
    vertical-align: middle;
}

.drawer-nav a:hover {
    color: var(--accent-sand);
    transform: scale(1.05);
}

.drawer-experience-tab {
    background: rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 280px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-experience-tab:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--text-main) !important;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.drawer-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-earth);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 30px;
    border-radius: 50px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(148, 108, 78, 0.3);
}

.drawer-book-btn i {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.drawer-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    backdrop-filter: blur(4px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {

    .nav-links,
    .header-actions .btn-book {
        display: none !important;
    }

    .hamburger-menu {
        display: flex !important;
        margin-left: 15px;
    }

    .header-pill {
        width: 92%;
        min-height: 60px;
        padding: 8px 15px;
    }
}

/* --- HERO VIDEO BANNER --- */
.hero-video-section {
    position: relative;
    height: 99vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(44, 36, 29, 0.7) 0%, rgba(44, 36, 29, 0.3) 50%, rgba(44, 36, 29, 0.6) 100%);
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
}

.hero-massive-title {
    font-size: clamp(48px, 7vw, 100px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Play Reel Button - Bottom Right */
.play-reel-btn {
    position: absolute;
    bottom: 50px;
    right: 60px;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    border: 1px solid rgba(212, 184, 150, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
    cursor: pointer;
    text-decoration: none;
    z-index: 20;
    background: rgba(148, 108, 78, 0.15);
    backdrop-filter: blur(10px);
}

.play-reel-btn:hover {
    background: rgba(148, 108, 78, 0.35);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(196, 133, 76, 0.3);
}

/* Audio Toggle Button - Overlay Style */
.audio-toggle-btn {
    position: absolute;
    top: -85px;
    left: 9px;

    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    z-index: 30;
    background: rgba(44, 36, 29, 0.8);
    backdrop-filter: blur(15px);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font);
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: scale(0.9);
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dams {
    margin: auto;
    text-align: center;
}

.audio-toggle-btn:hover {
    background: rgba(44, 36, 29, 0.85);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(196, 133, 76, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
    .hero-action-group {
        bottom: 30px !important;
        right: 30px !important;
        transform: scale(0.85);
    }
}

.ring-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

.ring-text path {
    fill: none;
}

.ring-text text {
    font-size: 13.5px;
    font-weight: 700;
    fill: rgba(255, 255, 255, 0.85);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: var(--font);
}

.play-icon {
    font-size: 22px;
    position: relative;
    z-index: 11;
    padding-left: 4px;
}

@keyframes rotateText {
    100% {
        transform: rotate(360deg);
    }
}

/* --- TRUST BAND LOGOS --- */
.trust-logos-row {
    display: flex;
    align-items: center;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.5s ease;
    transition-timing-function: linear !important;
}

.trust-logos-row:hover {
    filter: grayscale(0.5);
    opacity: 0.8;
}

.trust-logos-row img {
    height: 130px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.trust-logos-row img:hover {
    filter: grayscale(0);
    opacity: 1 !important;
    transform: scale(1.15);
}

.trust-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.trust-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

@media (max-width: 991px) {
    .trust-logos-row {
        /* Swiper handles layout */
    }

    .trust-logos-row img {
        height: 120px;
        /* Reduced for mobile but still larger than before */
    }
}

/* --- CLIENTS GRID --- */
.clients-section {
    padding: 80px 0;
    background: #fff;
    display: none;
}

.clients-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.c-left {
    flex: 0 0 220px;
}

.c-left .system-heading {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.c-right {
    flex: 1;
    padding-left: 50px;
    border-left: 1px solid rgba(148, 108, 78, 0.2);
    overflow: hidden;
    width: 100%;
}

.drawer-experience-tab {
    font-size: 17px !important;



}


.purpose-section{
    padding:100px 0px ; 
}

@media (min-width: 769px) {
    #clients-wrapper {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 16px;
        transform: none !important;
    }
  
    .dem {
        padding-top: 0px !important;
    }

   

    .logistics-neo {
        padding: 0px 0 0px 0px !important;

    }

}



.c-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.c-logo:hover {
    transform: translateY(-4px) scale(1.05);
}

.dom {
    height: 120px !important;
}

.c-logo img {
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: filter 0.4s ease, transform 0.4s ease;
    height: 70px;
}

.c-logo:hover img {
    filter: grayscale(0) opacity(1);
}

/* Client Page Specific Logos */
.c-neo-box img {
    max-height: 85px;
    max-width: 75%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.4s ease;
}

.c-neo-box:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}


/* --- ABOUT US: DISCOVER OUR JOURNEY --- */
.about-section-new {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-new-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 40px;
}

.about-new-header .system-heading {
    margin-bottom: 0px;
}

.about-new-header .system-subhead {
    max-width: 380px;
}

.about-hero-img {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 70px;
    box-shadow: 0 20px 50px rgba(44, 36, 29, 0.1);
    position: relative;
}

.about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(44, 36, 29, 0.3), transparent);
    pointer-events: none;
}

.about-new-bottom {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-statement {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.5px;
    margin-bottom: 60px;
    color: var(--text-main);
}

.about-stats-flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-top: 1px solid rgba(148, 108, 78, 0.2);
    padding-top: 50px;
}

.a-stat h4 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
    background: var(--gradient-earth);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- WHY US: DENSER --- */
.why-lux-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-lux-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-lux-header .system-subhead {
    margin: 0 auto;
}

.wl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.wl-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wl-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.wl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(44, 36, 29, 0.1);
}

.wl-left .wl-text-wrap {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wl-left .wl-tall-top {
    height: 220px;
    padding: 16px;
}

.wl-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.wl-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wl-img-wrap:hover img {
    transform: scale(1.05);
}

.wl-text-wrap .system-paragraph {
    margin-bottom: 24px;
    color: var(--text-main);
}

.btn-pill-dark {
    background: var(--gradient-sunset);
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(44, 36, 29, 0.2);
}

.btn-pill-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 36, 29, 0.35);
}

.btn-pill-dark i {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.wl-trust-card {
    padding: 16px;
}

.wl-trust-secondary {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-secondary);
}

.wl-trust-secondary img {
    margin-top: 16px;
    border-radius: var(--radius-sm);
    height: 110px;
    object-fit: cover;
}

.wl-img-wrap-dense {
    height: 160px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
}

.wl-img-wrap-dense img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.wl-img-wrap-dense:hover img {
    transform: scale(1.05);
}

.wl-mid-text {
    padding: 0 8px 8px;
}

.wl-mid-text strong {
    color: var(--text-main);
}

.wl-stat {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px !important;
    height: 180px;
}

.wl-stat-text h3 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1.5px;
    background: var(--gradient-earth);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wl-icon-box {
    margin-bottom: 30px;
}

.wl-card-wide {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    margin-top: 16px;
    height: calc(100% - 200px);
    gap: 16px;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.wl-card-wide:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(44, 36, 29, 0.1);
}

.wl-portrait {
    width: 100%;
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.wl-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.wl-portrait:hover img {
    transform: scale(1.05);
}

/* --- CREATIVE INFRASTRUCTURE --- */
.infra-section-creative {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.relative-container {
    position: relative;
}

.infra-visual {
    width: 70%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    margin-left: auto;
}

.infra-visual img,
.infra-visual video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.infra-visual:hover img,
.infra-visual:hover video {
    transform: scale(1.03);
}

.glass-float-card {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(44, 36, 29, 0.15);
    border: 1px solid rgba(212, 184, 150, 0.3);
}

.stat-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-earth);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.infra-text-overlap {
    width: 45%;
    position: absolute;
    left: 0;
    bottom: 30px;
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(44, 36, 29, 0.1);
    z-index: 10;
    border: 1px solid rgba(148, 108, 78, 0.08);
}

.i-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.i-tags span {
    background: var(--bg-secondary);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 108, 78, 0.1);
}

.i-tags span:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================
   TIMELINE SECTION — Sticky Scroll Split Layout
   ========================================================== */

.tl-section {
    background: var(--bg-light);
    position: relative;
    /* NO overflow:hidden here — it kills position:sticky on children */
}

.tl-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    position: relative;
}

/* ────────────────────────────────────
   LEFT COLUMN — normal document flow (scrolls with page)
──────────────────────────────────── */
.tl-left {
    padding: 120px 70px 120px 0;
    position: relative;
}

/* Vertical rule between columns */
.tl-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(148, 108, 78, 0.3) 10%,
            rgba(148, 108, 78, 0.3) 90%,
            transparent 100%);
    pointer-events: none;
}

/* Section Header inside left col */
.tl-top-header {
    margin-bottom: 80px;
}

.tl-top-header .system-heading {
    font-size: clamp(34px, 4vw, 50px);
    margin-top: 12px;
    margin-bottom: 18px;
}

.tl-top-header .system-subhead {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.75;
}

/* ── Milestone rows ── */
.tl-milestones {
    display: flex;
    flex-direction: column;
}

.tl-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    align-items: start;
    padding: 64px 0;
    border-bottom: 1px solid rgba(148, 108, 78, 0.1);
    transition: opacity 0.5s ease;
    opacity: 0.3;
    position: relative;
}

.tl-item:first-child {
    padding-top: 0;
}

.tl-item:last-child {
    border-bottom: none;
}

.tl-item.tl-active {
    opacity: 1;
}

/* Year label */
.tl-item-year {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding-top: 5px;
    position: relative;
}

/* Active dot on the centre divider */
.tl-item-year::after {
    content: '';
    display: none;
    position: absolute;
    right: -38px;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(148, 108, 78, 0.2);
    border: 2px solid rgba(148, 108, 78, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.tl-item.tl-active .tl-item-year::after {
    background: var(--accent-warm);
    border-color: var(--accent-warm);
    box-shadow: 0 0 0 5px rgba(196, 133, 76, 0.18);
}

.tl-item-content h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.25;
}

.tl-item-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 360px;
}

/* ── Stats strip at bottom of left col ── */
.tl-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 80px;
    border: 1px solid rgba(148, 108, 78, 0.12);
    border-radius: 18px;
    overflow: hidden;
    /* safe here — no sticky children inside */
    background: rgba(148, 108, 78, 0.03);
}

.tl-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 28px 8px;
    text-align: center;
    border-right: 1px solid rgba(148, 108, 78, 0.1);
    transition: background 0.3s ease;
}

.tl-stat:last-child {
    border-right: none;
}

.tl-stat:hover {
    background: rgba(148, 108, 78, 0.06);
}

.tl-stat strong {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.6px;
    line-height: 1;
    background: var(--gradient-earth);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tl-stat span {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* ────────────────────────────────────
   RIGHT COLUMN
   The column itself is position:sticky.
   It sticks while the left column scrolls.
──────────────────────────────────── */
.tl-right {
    padding: 120px 0 120px 60px;
    /* Sticky applied to the COLUMN, not an inner div */
    position: sticky;
    top: 0;
    /* Height must equal viewport so the column "holds" while left scrolls */
    height: 100vh;
    /* Center the card vertically inside the sticky column */
    display: flex;
    align-items: center;
}

/* Image card that sits inside the sticky column */
.tl-sticky-box {
    width: 100%;
    height: calc(100vh - 160px);
    max-height: 680px;
    min-height: 480px;
    border-radius: 28px;
    /* overflow hidden is fine here — no sticky descendants */
    overflow: hidden;
    background: var(--bg-secondary);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 50px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    /* image layers position:absolute relative to this */
}

/* ── Image layers that crossfade ── */
.tl-img-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.05);
    will-change: opacity, transform;
}

.tl-img-layer.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.tl-img-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 10s ease;
}

.tl-img-layer.active img {
    transform: scale(1.04);
}

/* Caption bar at bottom */
.tl-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 60px 28px 26px;
    background: linear-gradient(to top, rgba(20, 14, 10, 0.88) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.tl-img-year {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-warm);
    white-space: nowrap;
}

.tl-img-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
}

/* Progress dots (right edge of image card) */
.tl-dots {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tl-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    cursor: default;
}

.tl-dot.active {
    background: var(--accent-warm);
    border-color: var(--accent-warm);
    transform: scale(1.6);
    box-shadow: 0 0 8px rgba(196, 133, 76, 0.7);
}

/* ────────────────────────────────────
   RESPONSIVE BREAKPOINTS
──────────────────────────────────── */
@media (max-width: 1100px) {
    .tl-left {
        padding-right: 50px;
    }

    .tl-right {
        padding-left: 40px;
    }
}

@media (max-width: 900px) {

    /* Stack vertically on tablet/mobile — disable sticky */
    .tl-container {
        grid-template-columns: 1fr;
    }

    .system-subhead {
        padding: 10px 20px 20px !important;
    }


    .tl-right {
        position: relative;
        top: 0;
        height: auto;
        padding: 60px 0 0;
        order: -1;
        /* image above text on mobile */
        display: block;
    }

    .tl-sticky-box {
        height: 420px;
        border-radius: 20px;
    }

    .tl-left {
        padding: 60px 0 80px;
    }

    .tl-left::after {
        display: none;
    }

    .tl-item {
        opacity: 1 !important;
        /* all items fully visible on mobile */
    }

    .tl-item-year::after {
        display: none;
    }

    .tl-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .tl-stat:nth-child(3n) {
        border-right: none;
    }

    .tl-stat:nth-child(n+4) {
        border-top: 1px solid rgba(148, 108, 78, 0.1);
    }
}

@media (max-width: 550px) {
    .tl-item {
        grid-template-columns: 56px 1fr;
        gap: 14px;
        padding: 36px 0;
    }

    .tl-item-content h3 {
        font-size: 19px;
    }

    .tl-stats {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 14px;
    }

    .tl-stat:nth-child(2n) {
        border-right: none;
    }

    .tl-stat:nth-child(n+3) {
        border-top: 1px solid rgba(148, 108, 78, 0.1);
    }

    .tl-stat:nth-child(5) {
        grid-column: span 2;
    }
}

/* ==========================================================
   NEW: EPOCH EDGE SECTION
   ========================================================== */
.edge-section {
    padding: 100px 0;
    background: var(--bg-dark-card);
    position: relative;
    overflow: hidden;
}

.edge-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(148, 108, 78, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.edge-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 123, 80, 0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.edge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.edge-text {
    position: relative;
    z-index: 2;
}

.edge-text .system-heading {
    color: #fff;
}

.edge-text .system-paragraph {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.edge-text .gradient-text {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edge-features {
    margin-bottom: 36px;
}

.edge-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 184, 150, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.edge-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 184, 150, 0.2);
    transform: translateX(6px);
}

.ef-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-earth);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ef-icon i {
    color: #fff;
    font-size: 18px;
}

.edge-feature h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.edge-feature p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.edge-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 550px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.edge-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.edge-visual:hover img {
    transform: scale(1.04);
}

.edge-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(245, 240, 232, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.edge-badge-label {
    background: var(--gradient-earth);
    color: #fff;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* --- WORK CLOUD & TESTIMONIALS --- */
.work-test-section {
    padding: 120px 0 80px;
    background: var(--bg-tertiary);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center .system-subhead {
    margin: 0 auto;
}

.work-cloud {
    position: relative;
    margin-bottom: 120px;
}

.wc-columns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.wc-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 200px;
}

.wc-center {
    width: 320px;
}

.wc-col img {
    width: 100%;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 20px rgba(44, 36, 29, 0.08);
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.wc-col img:hover {
    transform: scale(1.05);
    z-index: 5;
    position: relative;
    box-shadow: 0 15px 35px rgba(44, 36, 29, 0.15);
}

.wc-offset-1 {
    transform: translateY(-30px);
}

.wc-offset-2 {
    transform: translateY(50px);
}

.large-hero-img {
    height: 400px;
    border-radius: var(--radius-md) !important;
}

.rounded-heavy {
    border-radius: var(--radius-lg) !important;
}

.trusted-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-light);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(44, 36, 29, 0.1);
    text-align: center;
    z-index: 10;
    white-space: nowrap;
    border: 1px solid rgba(148, 108, 78, 0.1);
}

.trusted-badge h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.trusted-badge p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Testimonial slider */
.test-slider-wrapper {
    border-top: 1px solid rgba(148, 108, 78, 0.15);
    padding-top: 60px;
    overflow: hidden;
}

.test-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 16px;
}

.test-slider::-webkit-scrollbar {
    display: none;
}

.test-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    padding: 20px;
    border-right: 1px solid rgba(148, 108, 78, 0.12);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.test-card:hover {
    transform: translateY(-4px);
}



.test-card p {
    margin-bottom: 30px;
    color: var(--text-main);
    font-size: 13px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.test-author strong {
    font-size: 13px;
    font-weight: 700;
    display: block;
    color: var(--text-main);
}

.test-author span {
    font-size: 11px;
    color: var(--text-muted);
}

/* --- ELITE CTA SECTION --- */
.cta-massive-section {
    padding: 100px 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(148, 108, 78, 0.1);
}

.cta-massive-box {
    background: var(--gradient-sunset);
    border-radius: var(--radius-xl);
    padding: 70px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    box-shadow: 0 30px 70px rgba(44, 36, 29, 0.25);
    overflow: hidden;
    position: relative;
}

.cta-massive-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 133, 76, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-mb-left {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-mb-left .system-heading {
    color: #fff !important;
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
}

.cta-mb-left .system-paragraph {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    max-width: 460px;
    font-weight: 500;
}

.cta-mb-right {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

.btn-block-action {
    background: linear-gradient(135deg, #f5f0e8 0%, #EDE6D8 100%);
    color: var(--text-main);
    padding: 20px 40px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    box-shadow: 0 4px 20px rgba(148, 108, 78, 0.15);
}

.btn-block-action:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
}

.btn-block-action span {
    background: var(--gradient-earth);
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transform: rotate(-45deg);
    transition: transform 0.3s;
}

.btn-block-action:hover span {
    transform: rotate(0deg);
}

/* --- PHOTO GALLERY MASONRY --- */
.photo-gallery-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pg-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.pg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
}

.pg-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.pg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pg-item:hover img {
    transform: scale(1.06);
}

.pg-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(44, 36, 29, 0.12);
    z-index: 10;
}

.span-w2 {
    grid-column: span 2;
}

.span-w1 {
    grid-column: span 1;
}

.span-h2 {
    grid-row: span 2;
}

.span-h1 {
    grid-row: span 1;
}

/* --- GIANT FOOTER --- */
.main-footer-creative {
    background: var(--bg-dark-card);
    padding: 100px 0 40px;
    color: #fff;
}

/* Footer Hero Row: Brand + Newsletter */
.footer-hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(10);
}

.f-brand-block .system-paragraph {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 400px;
}

.f-email {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s;
}

.f-email:hover {
    opacity: 0.8;
}

.f-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.f-phone:hover {
    color: #fff;
}

.f-phone i {
    font-size: 12px;
    color: var(--accent-warm);
}

/* Newsletter */
.f-newsletter-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.f-newsletter-block h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.f-newsletter-block p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 420px;
}

.f-newsletter-form {
    display: flex;
    gap: 0;
    max-width: 450px;
}

.f-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    border-radius: 50px 0 0 50px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 13px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.3s;
}

.f-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.f-input:focus {
    border-color: var(--accent-primary);
}

.f-subscribe-btn {
    padding: 14px 28px;
    background: var(--gradient-earth);
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.f-subscribe-btn:hover {
    filter: brightness(1.15);
    box-shadow: 0 4px 20px rgba(148, 108, 78, 0.4);
}

.f-subscribe-btn i {
    font-size: 11px;
}

/* Footer Links Grid - 5 Columns */
.footer-links-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.f-col h4 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-sand);
}

.f-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.f-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.f-col a i {
    font-size: 11px;
    color: var(--accent-warm);
    width: 14px;
    flex-shrink: 0;
}

/* Social Icons Row */
.footer-social-row {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.f-social-icons {
    display: flex;
    gap: 16px;
}

.f-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.f-social-icon:hover {
    background: var(--gradient-earth);
    border-color: transparent;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(148, 108, 78, 0.3);
}

.giant-footer-title {
    font-size: 130px;
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -4px;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(148, 108, 78, 0.15) 0%, rgba(196, 133, 76, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .clients-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .c-right {
        padding-left: 0;
        border-left: none;
    }

    .about-new-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .wl-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wl-card-wide {
        grid-column: span 2;
    }

    .infra-visual {
        width: 100%;
        height: 350px;
        margin: 0;
    }

    .infra-text-overlap {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        margin-top: -16px;
    }

    .footer-hero-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .pg-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wc-columns {
        flex-wrap: wrap;
    }

    .wc-col {
        width: 140px;
    }

    .wc-center {
        width: 230px;
    }

    .large-hero-img {
        height: 300px;
    }

    .timeline-visual-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-image-block {
        height: 350px;
    }

    .timeline-stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .edge-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .edge-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .purpose-section {
        padding: 0px 0px 0px !important;
    }
    .nav-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 3px;
        white-space: nowrap;
    }

    .header-pill {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(44, 36, 29, 0.45);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(212, 184, 150, 0.25);
        border-radius: 16px;
        padding: 10px 24px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        width: 92%;
        max-width: 1400px;
        position: relative;
        min-height: 80px;
    }

    .logo {
        padding: 0;
        /* Remove extra padding on mobile */
    }

    .hamburger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
    }


    .hero-massive-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .play-reel-btn {
        width: 100px;
        height: 100px;
        bottom: 30px;
        right: 30px;
    }

    /* Removed .c-right grid override since it uses Swiper on mobile */

    .c-logo {
        height: 35px;
    }

    .about-stats-flex {
        flex-direction: column;
        gap: 30px;
    }

    .wl-grid {
        grid-template-columns: 1fr;
    }

    .wl-card-wide {
        grid-column: span 1;
        flex-direction: column;
    }

    .trusted-badge {
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        margin: 30px 0;
        box-shadow: none;
        padding: 0;
    }

    .pg-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pg-header p {
        text-align: left;
    }

    .pg-grid {
        grid-template-columns: 1fr;
    }

    .span-w2,
    .span-h2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .pg-grid .pg-item {
        height: 220px;
    }

    .giant-footer-title {
        font-size: 16vw;
        letter-spacing: -2px;
    }

    .footer-links-row {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .f-newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .f-input {
        border-radius: 50px;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .f-subscribe-btn {
        border-radius: 50px;
        justify-content: center;
    }

    .f-social-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .cta-massive-box {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .btn-block-action {
        width: 100%;
        justify-content: center;
    }

    .milestone {
        grid-template-columns: 45px 20px 1fr;
        gap: 0 10px;
    }

    .milestone-year {
        font-size: 12px;
    }

    .milestone-dot {
        width: 12px;
        height: 12px;
    }

    .timeline-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .edge-visual {
        height: 300px;
    }

    .edge-feature {
        padding: 12px;
    }

    .footer-bottom-line {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ==========================================================
   NEW: INNER PAGE OVERRIDES
   ========================================================== */
.inner-hero {
    position: relative;
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.inner-hero .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6);
}

.team-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(148, 108, 78, 0.1);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 36, 29, 0.12);
    border-color: rgba(148, 108, 78, 0.25);
}

.team-card .f-social-icon {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(148, 108, 78, 0.15);
    color: var(--accent-hover);
}

.team-card .f-social-icon:hover {
    background: var(--gradient-earth);
    border-color: transparent;
    color: #fff;
}

@media (max-width: 1024px) {

    .phi-left,
    .phi-right {
        width: 100% !important;
    }

    .philosophy-section .wl-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .about-hero-img {
        min-height: 300px !important;
    }
}


.sticky-flow {
    padding: 90px 0px 0px !important;
}


.intel-section {
    padding: 0px 0px 50px !important;

}

@media (max-width: 768px) {
    .pg-grid {
        grid-template-columns: 1fr !important;
    }

    .intel-section {
        padding: 0px 0px 60px !important;
    }

    .drawer-experience-tab {
        font-size: 16px !important;
    }



    .inner-hero {
        padding: 100px 0 0px;
        min-height: auto;
        height: auto;
    }

    .hero-bg-text {
        display: none !important;
    }

    .system-subhead.reveal-on-scroll.reveal-fade-up.delay-1 {
        display: none !important;
    }
}


/* ==========================================================
   NEW: OVERVIEW PAGE & SERVICES MATRIX
   ========================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.sc-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(148, 108, 78, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.sc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(44, 36, 29, 0.12);
    border-color: rgba(148, 108, 78, 0.25);
}

.sc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-earth);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.highlight-stat {
    background: var(--gradient-earth);
    color: #fff;
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 20px 40px rgba(44, 36, 29, 0.15);
}

.highlight-stat h3 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.highlight-stat p {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.9;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .highlight-stat {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .highlight-stat h3 {
        font-size: 32px;
    }
}

/* --- SHARD SHOWCASE REDESIGN --- */
.shard-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.shard-item {
    background: #fff;
    border: 1px solid rgba(148, 108, 78, 0.1);
    border-radius: 60px;
    padding: 18px 36px 18px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 15px 35px rgba(44, 36, 29, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

.shard-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(148, 108, 78, 0.12);
    border-color: rgba(148, 108, 78, 0.3);
}

.shard-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-earth);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(148, 108, 78, 0.2);
}

.shard-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .shard-grid {
        gap: 20px;
        padding: 0 20px;
    }

    .shard-item {
        padding: 14px 28px 14px 18px;
        gap: 14px;
    }

    .shard-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .shard-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .shard-grid {
        gap: 15px;
    }

    .shard-item {
        padding: 10px 20px 10px 12px;
        gap: 10px;
    }

    .shard-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .shard-text {
        font-size: 13px;
    }
}

/* --- NEW DYNAMIC SPLIT MODULES (EDGE PAGE) --- */
.split-layout {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.split-media {
    flex: 1;
    position: sticky;
    top: 140px;
    height: calc(100vh - 180px);
    max-height: 800px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.media-sticky-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.split-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.split-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.split-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 3;
    pointer-events: none;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 20vh;
    /* Allow last item to scroll up */
}

.split-text-block {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 0;
    opacity: 0.4;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.split-text-block.active {
    opacity: 1;
    transform: translateY(0);
}

.split-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.split-text-block h3 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.split-text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.split-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.split-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(148, 108, 78, 0.08);
    color: var(--text-main);
}

.split-features span i {
    color: var(--accent-primary);
}

.hide-desktop {
    display: none;
}

/* Edge Split Modules Responsive Overrides */
@media (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
        gap: 0;
    }

    .hide-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: block;
    }

    .split-content {
        padding-bottom: 0;
    }

    .split-text-block {
        min-height: auto;
        opacity: 1;
        transform: none;
        margin-bottom: 60px;
    }

    .mobile-media-wrapper {
        width: 100%;
        height: 350px;
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 30px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .mobile-media-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .split-label {
        font-size: 12px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .mobile-media-wrapper {
        height: 250px;
    }

    .split-text-block h3 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .split-text-block p {
        font-size: 16px;
    }
}

/* --- THE EXECUTION BLUEPRINT (Modern Zig-Zag) --- */
.blueprint-section {
    padding: 140px 0;
    background: var(--bg-secondary);
}

.bp-container {
    margin: 0 auto;
}

.bp-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
    position: relative;
}

.bp-row:last-child {
    margin-bottom: 0;
}

.bp-row.reverse {
    flex-direction: row-reverse;
}

.bp-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.bp-num-large {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent-primary);
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
    font-family: var(--font);
}

.bp-row.reverse .bp-num-large {
    left: auto;
    right: -20px;
}

.bp-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.bp-content h3 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.bp-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
}

.bp-visual {
    flex: 1.1;
    position: relative;
}

.bp-img-wrapper {
    width: 100%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: 1px solid rgba(148, 108, 78, 0.05);
}

.bp-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bp-row:hover .bp-img-wrapper img {
    transform: scale(1.06);
}

/* Float Card Decoration */
.bp-float-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    border: 1px solid rgba(148, 108, 78, 0.1);
}

.bp-row.reverse .bp-float-card {
    right: auto;
    left: -30px;
}

.bp-fc-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-earth);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bp-fc-text span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
}

.bp-fc-text strong {
    font-size: 15px;
    color: var(--text-main);
}

@media (max-width: 1024px) {
    .bp-row {
        flex-direction: column !important;
        gap: 50px;
        text-align: center;
        margin-bottom: 80px;
    }

    .bp-num-large {
        left: 50%;
        transform: translateX(-50%);
        top: -60px;
    }

    .bp-row.reverse .bp-num-large {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .bp-img-wrapper {
        height: 350px;
    }

    .bp-float-card {
        bottom: -20px;
        right: 20px;
        transform: scale(0.9);
    }

    .bp-row.reverse .bp-float-card {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .bp-row {
        gap: 40px;
    }

    .bp-content h3 {
        font-size: 28px;
    }

    .bp-img-wrapper {
        height: 280px;
    }

    .bp-float-card {
        display: none;
        /* Hide decorative floating cards on mobile for cleaner look */
    }
}

/* --- BOARDROOM CAROUSEL --- */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 30px;
}

.carousel-slide {
    flex: 0 0 calc(50% - 15px);
    /* Show 2 slides by default */
    min-width: 300px;
}

@media (max-width: 991px) {
    .carousel-slide {
        flex: 0 0 100%;
    }
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-nav button {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.carousel-nav button:hover {
    background: var(--accent-sand);
    color: #fff;
    transform: translateY(-3px);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-sand);
    width: 24px;
    border-radius: 10px;
}

/* ============================================
   REDESIGNED WORK & TESTIMONIALS
   ============================================ */

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.work-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #eee;
    cursor: pointer;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 36, 29, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover img {
    transform: scale(1.1);
}

.work-card:hover .work-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.work-card-content h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.work-card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.4;
}

/* Testimonials Redesign */
.testimonials-slider-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 100px;
    padding: 60px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(44, 36, 29, 0.05);
}

.test-slider-desc {
    flex: 0 0 320px;
}

.slider-controls {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.swiper-button-prev-test,
.swiper-button-next-test {
    width: 50px;
    height: 50px;
    border: 1px solid var(--accent-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-button-prev-test:hover,
.swiper-button-next-test:hover {
    background: var(--accent-sand);
    color: #fff;
    transform: scale(1.1);
}

.testimonials-swiper {
    flex: 1;
    padding: 20px 0 60px;
    overflow: hidden;
}

.test-card-modern {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 108, 78, 0.05);
    transition: all 0.4s ease;
}

.test-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(148, 108, 78, 0.1);
}



.swiper-pagination-test {
    margin-top: 30px;
    text-align: center;
}

.swiper-pagination-test .swiper-pagination-bullet {
    background: var(--accent-sand);
    opacity: 0.3;
}

.swiper-pagination-test .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider-row {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }

    .test-slider-desc {
        flex: 0 0 auto;
        text-align: center;
    }

    .slider-controls {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card {
        height: 320px;
    }
}


/* --- HERO BREADCRUMB --- */
.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-breadcrumb a {
    color: var(--text-main);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hero-breadcrumb a:hover {
    opacity: 1;
}

.hero-breadcrumb span i {
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.5;
}

.hero-breadcrumb .bc-active {
    color: var(--accent-primary);
}

.bp-section-header {
    margin-bottom: 80px;
}

.bp-eyebrow {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-sand);
    display: inline-block;
    padding: 6px 16px;
    background: rgba(148, 108, 78, 0.1);
    border-radius: 50px;
}

.bp-phase-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    background: var(--text-main);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.bp-checkpoints {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.bp-checkpoints li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.bp-checkpoints li i {
    color: var(--accent-sand);
    font-size: 14px;
}

/* --- BLUEPRINT GRID LAYOUT --- */
.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.bp-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.bp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(148, 108, 78, 0.1);
}

.bp-card-img {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.bp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bp-card:hover .bp-card-img img {
    transform: scale(1.05);
}

.bp-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bp-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bp-card-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.bp-card-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.bp-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.bp-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.bp-card-list li:last-child {
    margin-bottom: 0;
}

.bp-card-list li i {
    color: var(--accent-sand);
    font-size: 12px;
    margin-top: 4px;
}

.bp-card-dark:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}


/* --- PREMIUM ASYMMETRICAL TIMELINE BLUEPRINT --- */
.premium-blueprint {
    position: relative;
}

.bp-master-timeline {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.bp-node-row {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.bp-node-row.right-aligned {
    flex-direction: row-reverse;
}

.bp-node-center {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin: 0 40px;
    position: relative;
}

.bp-pulse-dot {
    width: 20px;
    height: 20px;
    background: var(--text-main);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 10px rgba(148, 108, 78, 0.1);
    transition: all 0.5s ease;
}

.bp-node-row:hover .bp-pulse-dot {
    background: var(--accent-sand);
    box-shadow: 0 0 0 15px rgba(148, 108, 78, 0.2);
    transform: scale(1.2);
}

.bp-node-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.bp-node-row.right-aligned .bp-node-content {
    justify-content: flex-start;
}

.bp-node-visual {
    flex: 1;
}

.bp-node-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    max-width: 550px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.bp-node-row:hover .bp-node-glass {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(148, 108, 78, 0.1);
}

.bp-ghost-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent-sand);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.bp-node-row.right-aligned .bp-ghost-num {
    right: auto;
    left: -10px;
}

.bp-node-row:hover .bp-ghost-num {
    opacity: 0.25;
}

.bp-node-glass .bp-title {
    position: relative;
    z-index: 1;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.bp-node-glass .bp-desc {
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.bp-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bp-tags span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #f4f4f6;
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.bp-tags span:hover {
    background: var(--accent-sand);
    color: #fff;
}

.bp-img-reveal {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bp-img-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bp-node-row:hover .bp-img-reveal img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {

    .bp-node-row,
    .bp-node-row.right-aligned {
        flex-direction: column;
        gap: 30px;
    }

    .bp-track {
        display: none;
    }

    .bp-node-center {
        display: none;
    }

    .bp-node-content,
    .bp-node-visual {
        width: 100%;
        max-width: none;
        justify-content: center;
    }

    .bp-node-glass {
        max-width: none;
        padding: 40px;
    }
}


/* --- WORK GRID --- */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-card:hover img {
    transform: scale(1.05);
}

.work-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-card:hover .work-card-overlay {
    opacity: 1;
}

.work-card-content h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
}

.work-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials-slider-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 100px;
}

.test-slider-desc {
    flex: 0 0 300px;
}

.slider-controls {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.swiper-button-prev-test,
.swiper-button-next-test {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.swiper-button-prev-test:hover,
.swiper-button-next-test:hover {
    background: var(--accent-sand);
    color: #fff;
}

.testimonials-swiper {
    flex: 1;
    overflow: hidden;
    padding: 20px 0 50px 0;
}

.test-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}



.test-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.test-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- PHOTO GALLERY (MASONRY) --- */
.photo-gallery-section {
    padding: 100px 0;
    background: #fff;
}

.pg-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.pg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.pg-item {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.pg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pg-item:hover img {
    transform: scale(1.05);
}

.span-w1 {
    grid-column: span 1;
}

.span-w2 {
    grid-column: span 2;
}

.span-h1 {
    grid-row: span 1;
}

.span-h2 {
    grid-row: span 2;
}

/* --- MOBILE RESPONSIVENESS FIXES --- */
@media (max-width: 1024px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .span-w2 {
        grid-column: span 2;
    }

    .testimonials-slider-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card {
        height: 280px;
    }

    .work-card-overlay {
        opacity: 1;
        /* Always show overlay text on mobile */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }

    .testimonials-slider-row {
        gap: 30px;
        margin-top: 60px;
    }

    .test-slider-desc {
        flex: none;
        width: 100%;
    }

    .pg-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .pg-header .system-subhead {
        text-align: left !important;
    }

    .pg-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        /* Uniform height on mobile */
    }

    /* Reset spans on mobile to stack perfectly */
    .span-w1,
    .span-w2 {
        grid-column: span 1;
    }

    .span-h1,
    .span-h2 {
        grid-row: span 1;
    }
}

/* --- SPECIAL INITIATIVE SECTION: CINEMATIC DARK REDESIGN --- */
.special-initiative-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #1A1512 0%, #2C241D 100%);
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Ambient glow in background */
.special-initiative-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(148, 108, 78, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.si-video-container {
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.si-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.si-video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.si-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 3;
    backdrop-filter: blur(0px);
}

.si-video-wrapper:hover .si-overlay {
    opacity: 1;
    backdrop-filter: blur(8px);
}

.si-play-btn {
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.si-play-btn::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 1px solid rgba(148, 108, 78, 0.4);
    animation: siPulseDark 2.5s infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.si-video-wrapper:hover .si-play-btn::before {
    opacity: 1;
}

@keyframes siPulseDark {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.si-mute-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: auto;
    padding: 0 20px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.si-mute-btn:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 133, 76, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.si-video-wrapper:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.6), 0 0 40px rgba(148, 108, 78, 0.1);
}

.si-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.si-video-wrapper:hover .si-video {
    transform: scale(1.1);
    filter: brightness(0.7);
}

@media (max-width: 768px) {
    .special-initiative-section {
        padding: 80px 0;
    }

    .si-video-wrapper {
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .si-video-wrapper:hover {
        transform: none;
    }

    .si-play-btn {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }
}

/* --- MOBILE TWEAKS: Hamburger & Hero Fixes --- */
.hamburger-menu {
    z-index: 10000 !important;
    position: relative;
}

.side-drawer {
    z-index: 9999 !important;
}

.drawer-overlay {
    z-index: 9998 !important;
}

@media (max-width: 768px) {

    .ops-premium-section {
        padding: 56px 0 !important;
    }

    .services-showcase {
        padding: 0px 0px 0px !important;
    }

    /* Optimize Breadcrumb/Hero section height on mobile */
    .inner-hero {
        min-height: 40vh !important;
        padding-top: 100px;
        /* Account for header */
    }

    .inner-hero .system-heading {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }

    .hero-breadcrumb, .breadcrumb {
        margin-bottom: 12px !important;
        font-size: 9px !important;
        letter-spacing: 1px !important;
        padding: 4px 12px !important;
    }

    .section-label {
        font-size: 9px !important;
        letter-spacing: 1px !important;
        margin-bottom: 10px !important;
        padding: 4px 12px !important;
        border-radius: 15px !important;
    }
}

/* --- TESTIMONIALS MOBILE SLIDER FIX --- */
@media (max-width: 1024px) {
    .testimonials-swiper {
        width: 100%;
        min-width: 0;
        /* CRITICAL for swiper to downsize inside a flex column */
        flex: none;
    }
}

/* --- CORPORATE CONTENT BLOCKS (PPT INTEGRATION) --- */
.v-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    text-align: center;
    height: 100%;
}

.v-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(148, 108, 78, 0.1);
    border-color: rgba(148, 108, 78, 0.2);
}

.v-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 20px;
}

.v-icon-box img {
    height: 45px;
    width: auto;
}

.adv-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.adv-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.adv-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 15px;
}

.adv-icon img {
    height: 30px;
}

.net-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    transition: transform 0.4s ease;
    text-align: center;
}

.net-card:hover {
    transform: translateY(-5px);
}

.net-card img {
    height: 80px;
    margin-bottom: 25px;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .v-card {
        padding: 40px 30px;
    }
}

/* --- PREMIUM OPS BACKBONE LAYOUT --- */
.ops-premium-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.ops-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.ops-premium-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.ops-premium-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-sand);
    box-shadow: 0 40px 80px rgba(148, 108, 78, 0.12);
}

.ops-icon-wrap {
    width: 90px;
    height: 90px;
    background: var(--bg-secondary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    transition: transform 0.4s ease;
}

.ops-premium-card:hover .ops-icon-wrap {
    transform: rotate(5deg) scale(1.1);
    background: var(--accent-sand);
}

.ops-premium-card img {
    height: 48px;
    width: auto;
}

.ops-premium-card:hover img {
    filter: brightness(0) invert(1);
}

.ops-premium-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ops-premium-card .tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

@media (max-width: 1100px) {
    .ops-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ops-premium-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ops-premium-card {
        padding: 45px 30px;
    }
}



/* --- GLOBAL INFLUENCE SECTION REDESIGN --- */
.global-influence-row {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 140px 0;
}

.gi-text {
    flex: 1;
}

.gi-stats {
    flex: 1.2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gi-stat-card {
    background: linear-gradient(145deg, #F5F0E8 0%, #EEE7D9 100%);
    padding: 50px 35px;
    border-radius: 40px;
    border: 1px solid rgba(148, 108, 78, 0.1);
    box-shadow: 0 15px 35px rgba(44, 36, 29, 0.06);
    transition: all 0.5s ease;
    text-align: left;
}

.gi-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-sand);
    box-shadow: 0 40px 80px rgba(148, 108, 78, 0.1);
}

.gi-stat-card.stagger {
    margin-top: 50px;
}

.gi-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background: var(--gradient-earth);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.gi-label {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    display: block;
    margin-bottom: 10px;
}

.gi-icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.gi-icon-box img {
    height: 30px;
}

@media (max-width: 1024px) {
    .global-influence-row {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .gi-stat-card.stagger {
        margin-top: 0;
    }

    .gi-stats {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .gi-stats {
        grid-template-columns: 1fr;
    }
}

/* --- CORE VERTICALS MODERN REDESIGN --- */
.verticals-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.v-modern-card {
    background: #fff;
    padding: 70px 45px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-align: center;
}

.v-modern-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 50px 100px rgba(148, 108, 78, 0.1);
    border-color: rgba(148, 108, 78, 0.2);
}

.v-modern-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 40px;
    background: var(--bg-secondary);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.v-modern-card:hover .v-modern-icon {
    background: var(--accent-sand);
    transform: scale(1.1) rotate(8deg);
}

.v-modern-icon img {
    height: 55px;
    width: auto;
    transition: filter 0.4s ease;
}

.v-modern-card:hover .v-modern-icon img {
    filter: brightness(0) invert(1);
}

.v-modern-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.v-modern-card .v-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.v-modern-card .v-list li {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.v-modern-card .v-list li i {
    color: var(--accent-sand);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .verticals-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .verticals-modern-grid {
        grid-template-columns: 1fr;
    }

    .v-modern-card {
        padding: 50px 30px;
    }
}

/* --- CORE VERTICALS PREMIUM REDESIGN --- */
.verticals-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.v-premium-pillar {
    background: #fff;
    padding: 80px 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    text-align: left;
}

.v-premium-pillar:hover {
    transform: translateY(-10px);
    border-color: var(--accent-sand);
    box-shadow: 0 30px 60px rgba(148, 108, 78, 0.08);
}

.v-premium-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-earth);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.v-premium-pillar:hover::before {
    transform: scaleX(1);
}

.v-num-bg {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 140px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.v-premium-pillar:hover .v-num-bg {
    color: rgba(212, 184, 150, 0.08);
    transform: translateY(10px);
}

.v-premium-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transition: all 0.4s ease;
}

.v-premium-pillar:hover .v-premium-icon {
    background: var(--accent-sand);
    transform: scale(1.1);
}

.v-premium-icon img {
    height: 40px;
    transition: filter 0.4s ease;
}

.v-premium-pillar:hover .v-premium-icon img {
    filter: brightness(0) invert(1);
}

.v-premium-pillar h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
}

.v-premium-pillar p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .verticals-premium-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ADVANTAGE DYNAMIC REDESIGN --- */
.advantage-dynamic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 60px;
}

.a-power-card {
    flex: 1 1 calc(25% - 20px);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(148, 108, 78, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

.a-power-card:hover {
    flex: 1 1 calc(35% - 20px);
    /* Dynamic expansion */
    background: #fff;
    border-color: var(--accent-sand);
    box-shadow: 0 50px 100px rgba(148, 108, 78, 0.12);
}

.a-power-card .a-tag {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-sand);
    opacity: 0.4;
    transition: all 0.4s ease;
}

.a-power-card:hover .a-tag {
    opacity: 1;
    transform: translateX(-10px);
}

.a-power-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 40px;
    transition: all 0.5s ease;
}

.a-power-card:hover .a-power-icon {
    transform: scale(1.2) rotate(-5deg);
}

.a-power-icon img {
    height: 100%;
    width: auto;
}

.a-power-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.a-power-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    opacity: 0.9;
    transition: all 0.5s ease;
}

.a-power-card:hover .a-power-content p {
    color: var(--text-main);
}

/* Watermark Number */
.a-watermark {
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 200px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: 0;
    transition: all 0.8s ease;
}

.a-power-card:hover .a-watermark {
    color: rgba(148, 108, 78, 0.05);
    transform: scale(1.1) rotate(-10deg);
}

.a-power-card>* {
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .a-power-card {
        flex: 1 1 calc(50% - 20px);
    }

    .a-power-card:hover {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .a-power-card {
        flex: 1 1 100%;
        min-height: auto;
        padding: 50px 30px;
    }

    .a-power-card:hover {
        flex: 1 1 100%;
    }

    .a-watermark {
        font-size: 150px;
    }
}

/* --- ADVANTAGE MOSAIC SPLIT REDESIGN --- */
.advantage-mosaic-container {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.a-split-row {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.a-split-row:nth-child(even) {
    flex-direction: row-reverse;
}

.a-split-visual {
    flex: 1.2;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.a-split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.a-split-row:hover .a-split-visual img {
    transform: scale(1.05);
}

.a-split-content {
    flex: 1;
    z-index: 2;
    padding-right: 40px;
}

.a-split-row:nth-child(even) .a-split-content {
    padding-right: 0;
    padding-left: 40px;
}

.a-split-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(148, 108, 78, 0.1);
    box-shadow: 0 40px 100px rgba(148, 108, 78, 0.08);
    position: relative;
}

.a-split-card .a-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-sand);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: block;
}

.a-split-card h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.a-split-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 1100px) {

    .a-split-row,
    .a-split-row:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }

    .a-split-visual {
        height: 400px;
        width: 100%;
    }

    .a-split-content {
        padding: 0 !important;
        width: 100%;
    }

    .a-split-card {
        padding: 40px 30px;
    }
}

/* Epoch Experience Header Icon - Theme Color */
.theme-epoch-icon {
    /* Tinted to match var(--accent-primary) approx #946C4E - Terracotta clay */
    filter: invert(47%) sepia(43%) saturate(301%) hue-rotate(343deg) brightness(87%) contrast(84%);
}

/* ============================================
   REELS ORBIT LAYOUT (Ported from Homepage)
   ============================================ */

.reels-orbit-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: 40px 0;
    width: 100%;
}

.reels-orbit-wrap .orbit-container {
    position: relative;
    width: 550px;
    height: 550px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reels-orbit-wrap .orbit-path {
    position: absolute;
    inset: 40px;
    border: 1px dashed rgba(148, 108, 78, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.reels-orbit-wrap .service-nodes-wrap {
    position: absolute;
    inset: 0;
    z-index: 25;
}

.reels-orbit-wrap .node {
    position: absolute;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    cursor: pointer;
    z-index: 30;
}

.reels-orbit-wrap .node:nth-child(1) {
    top: 6%;
    left: 6%;
}

.reels-orbit-wrap .node:nth-child(2) {
    top: 6%;
    right: 6%;
}

.reels-orbit-wrap .node:nth-child(3) {
    top: 44%;
    right: -12%;
}

.reels-orbit-wrap .node:nth-child(4) {
    bottom: 6%;
    right: 6%;
}

.reels-orbit-wrap .node:nth-child(5) {
    bottom: 6%;
    left: 6%;
}

.reels-orbit-wrap .node:nth-child(6) {
    top: 44%;
    left: -12%;
}

.reels-orbit-wrap .node-icon-box {
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 108, 78, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-warm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reels-orbit-wrap .node:hover .node-icon-box,
.reels-orbit-wrap .mobile-node:hover .node-icon-box {
    transform: translateY(-8px) scale(1.15);
    background: var(--accent-primary);
    border-color: var(--accent-warm);
    color: #fff;
    box-shadow: 0 0 30px rgba(196, 133, 76, 0.4);
}

.reels-orbit-wrap .node-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    max-width: 120px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.reels-orbit-wrap .node:hover .node-label {
    color: var(--accent-warm);
    letter-spacing: 2px;
}

.reels-orbit-wrap .hub-center {
    position: relative;
    z-index: 20;
}

.reels-orbit-wrap .logo-img {
    max-width: 250px;
    filter: drop-shadow(0 5px 25px rgba(196, 133, 76, 0.2));
}

/* REELS TAB ICON STYLE */
.gallery-tab[data-filter="reels"] i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 8px;
    font-size: 1.1em;
}

/* Mobile Styling for Orbit */
@media (max-width: 850px) {
    .reels-orbit-wrap .orbit-container {
        width: 400px;
        height: 400px;
        transform: scale(0.85);
    }

    .reels-orbit-wrap .node:nth-child(3),
    .reels-orbit-wrap .node:nth-child(6) {
        right: -8%;
        left: -8%;
    }
}

@media (max-width: 580px) {
    .reels-orbit-wrap {
        min-height: auto;
    }

    .reels-orbit-wrap .orbit-container {
        display: none;
    }

    .reels-orbit-wrap .service-nodes-mobile {
        display: grid !important;
        grid-template-columns: 1fr 1.2fr 1fr;
        align-items: center;
        width: 100%;
        max-width: 480px;
        gap: 0;
    }

    .reels-orbit-wrap .mobile-side-col {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .reels-orbit-wrap .mobile-node {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        cursor: pointer;
    }

    .reels-orbit-wrap .mobile-node .node-icon-box {
        width: 58px;
        height: 58px;
        font-size: 20px;
        background: var(--bg-secondary);
        border: 1px solid rgba(148, 108, 78, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-warm);
    }

    .reels-orbit-wrap .mobile-node .node-label {
        font-size: 10px;
        color: var(--text-main);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .reels-orbit-wrap .hub-center-mobile .logo-img {
        max-width: 150px;
    }
}


/* REELS VIDEO GRID */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
    margin-top: 50px;
    padding-bottom: 50px;
}

.reels-v-item {
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    position: relative;
    aspect-ratio: 9/16;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.reels-v-item:hover {
    transform: translateY(-10px);
}

.reels-v-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Node Active State */
.reels-orbit-wrap .node.active-node .node-icon-box,
.reels-orbit-wrap .mobile-node.active-node .node-icon-box {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-warm);
    box-shadow: 0 0 30px rgba(196, 133, 76, 0.4);
    transform: translateY(-8px) scale(1.1);
}

.reels-orbit-wrap .node.active-node .node-label,
.reels-orbit-wrap .mobile-node.active-node .node-label {
    color: var(--accent-warm);
    letter-spacing: 2px;
}

/* ============================================
   GROUPED REELS STYLES
   ============================================ */

.reels-group {
    padding-bottom: 40px;
}

.reels-group-title {
    font-family: var(--font);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.reels-group-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background: var(--gradient-earth);
    border-radius: 10px;
}

.g-item-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-main);
    padding: 12px 18px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(148, 108, 78, 0.1);
}

.g-item:hover .g-item-label {
    opacity: 1;
    transform: translateY(0);
}

/* Vertical Reels Grid (Instagram Style) */
.reels-grid-vertical {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.reels-grid-vertical .g-item {
    aspect-ratio: 9/16;
    height: auto !important;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.reels-grid-vertical .g-item video {
    height: 100% !important;
    object-fit: cover;
}

    .reels-group-title {
        font-size: 26px;
    }
}

/* ============================================
   HOME.ASPX MOBILE OPTIMIZATION (PREMIUM REFIT)
   ============================================ */
@media (max-width: 600px) {
    /* --- Global Spacing & Layout --- */
    section {
        padding: 50px 20px !important; /* Slightly more balanced than 60px */
    }

    .container {
        padding: 0 20px !important;
    }

    .system-heading {
        font-size: 30px !important;
        letter-spacing: -1px !important;
        text-align: center !important;
        line-height: 1.1 !important;
    }

    .system-subhead {
        font-size: 14px !important;
        text-align: center !important;
        margin: 10px auto 0 !important;
        line-height: 1.5 !important;
    }

    .section-header-center {
        margin-bottom: 35px !important;
    }

    /* --- Hero Video Section Compass --- */
    .hero-video-section::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 140vw;
        height: 140vw;
        background-image: url('images/Compass.png');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.25; /* Subtle blend with video */
        z-index: 2;
        filter: brightness(1.2) contrast(1.1);
        pointer-events: none;
        animation: rotateCompassMobile 60s linear infinite;
    }

    @keyframes rotateCompassMobile {
        from { transform: translate(-50%, -50%) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .hero-action-group {
        bottom: 20px !important;
        right: 20px !important;
        transform: scale(0.75) !important;
    }

    /* --- Clients Section --- */
    .clients-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .clients-section .c-left {
        width: 100% !important;
    }

    .clients-section .c-right {
        width: 100% !important;
    }

    /* --- Strategic Masterclass (Verticals) --- */
    .verticals-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .v-card {
        padding: 30px 20px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(148, 108, 78, 0.1) !important;
        text-align: center !important;
    }

    .v-icon-box {
        width: 58px !important;
        height: 58px !important;
        margin: 0 auto 20px !important;
        background: rgba(148, 108, 78, 0.1) !important;
        border-radius: 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 0 20px rgba(148, 108, 78, 0.2) !important;
        animation: floatNode 4s ease-in-out infinite !important;
    }

    @keyframes floatNode {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    .v-icon-box img {
        height: 30px !important;
        width: auto !important;
        filter: brightness(1.1) !important;
    }

    /* --- Epoch Edge Section --- */
    .edge-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .edge-features {
        gap: 15px !important;
    }

    .edge-feature {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px !important;
        background: rgba(148, 108, 78, 0.03) !important;
        border-radius: 20px !important;
        gap: 10px !important;
    }

    .ef-icon {
        width: 45px !important;
        height: 45px !important;
        margin: 0 auto !important;
        font-size: 18px !important;
        color: var(--accent-primary) !important;
        background: #fff !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 8px 15px rgba(0,0,0,0.05) !important;
    }

    .edge-feature h4 {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }

    /* --- Timeline (tl-section) --- */
    .tl-section {
        padding-top: 40px !important;
    }

    .tl-container {
        flex-direction: column !important;
    }

    .tl-left {
        width: 100% !important;
        padding-right: 0 !important;
    }

    .tl-right {
        display: none !important; /* Hide sticky box on mobile for better flow */
    }

    .tl-milestones {
        padding-left: 20px !important;
        border-left: 2px solid rgba(148, 108, 78, 0.2) !important;
    }

    .tl-item {
        margin-bottom: 40px !important;
    }

    .tl-item-year {
        font-size: 20px !important;
        margin-bottom: 5px !important;
        color: var(--accent-primary) !important;
    }

    /* --- Why Choose Us (wl-grid) --- */
    .wl-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .wl-col {
        width: 100% !important;
    }

    .wl-card {
        min-height: auto !important;
        padding: 30px 20px !important;
    }

    /* --- Infrastructure --- */
    .infra-section-creative .container {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .infra-text-overlap {
        width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .infra-visual {
        width: 100% !important;
        height: 300px !important;
    }

    .gi-stat-card {
        padding: 30px 20px !important;
        border-radius: 24px !important;
        text-align: center !important;
    }

    .gi-number {
        font-size: 48px !important;
        margin-bottom: 5px !important;
    }

    .gi-label {
        font-size: 12px !important;
    }

    /* --- Moments into Biz Outcomes --- */
    .moments-biz {
        padding: 80px 0 !important;
    }

    .mo-biz-card {
        padding: 25px 20px !important;
        text-align: center !important;
    }

    .mo-biz-card i {
        margin: 0 auto 15px !important;
        font-size: 24px !important;
    }

    /* --- Journey Stats --- */
    .a-stat h4 {
        font-size: 32px !important;
    }

    /* --- About Section Compact --- */
    .about-section-new {
        padding: 45px 0 !important;
    }

    .about-new-header {
        margin-bottom: 30px !important;
    }

    .about-hero-img {
        height: 280px !important;
        margin-bottom: 40px !important;
    }

    .about-badge {
        margin-bottom: 15px !important;
    }

    .about-statement {
        font-size: 20px !important;
        margin-bottom: 40px !important;
        line-height: 1.4 !important;
    }

    /* --- Giant Footer --- */
    .footer-hero-row {
        flex-direction: column !important;
        text-align: center !important;
        gap: 35px !important;
    }

    .footer-links-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    .f-col {
        text-align: center !important;
    }

    .giant-footer-title {
        font-size: 15vw !important;
        margin: 40px 0 !important;
    }
}

/* Global Fancybox Video Play Overlay */
.play-icon-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.1);
}

.play-icon-overlay i {
    width: 60px;
    height: 60px;
    background: rgba(187, 128, 77, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding-left: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.gallery-item:hover .play-icon-overlay i,
.g-item:hover .play-icon-overlay i {
    transform: scale(1.1);
    background: #bb804d;
    box-shadow: 0 15px 35px rgba(187, 128, 77, 0.4);
    border-color: #fff;
}

/* Review Ratings / Stars */
.stars {
    color: #C4854C; /* Accent Sand/Gold color */
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 6px;
    line-height: 1;
    align-items: center;
}

.stars i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stars:hover i {
    transform: scale(1.2);
    color: #bb804d;
}

@media (max-width: 768px) {
    .stars {
        font-size: 14px;
        margin-bottom: 15px;
        gap: 4px;
    }
}