/* ============================================================
   PİRAMİT GROUP — CORPORATE DESIGN SYSTEM
   Concept: Professional Corporate · Light Identity
   Version: 2.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS (CORPORATE LIGHT) ────────────────────────── */
:root {
    /* Core Palette - Professional Corporate */
    --brand-navy: #102a43;
    --brand-gold: #C5A059;
    --brand-gold-light: #f3e5ab;

    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-alt: #F1F3F5;

    --surface: #FFFFFF;
    --border: #E4E7EB;
    --border-focus: #102a43;

    /* Text System */
    --text-main: #243B53;
    --text-muted: #627D98;
    --text-faint: #9FB3C8;
    --text-on-navy: #FFFFFF;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Geometry */
    --section-pad: clamp(80px, 8vw, 140px);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 20px;
    --radius-xl: 40px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 0.2s var(--ease-out);
    --t-med: 0.4s var(--ease-out);
    --t-slow: 0.7s var(--ease-out);

    /* Shadows & Depth */
    --shadow-sm: 0 2px 8px rgba(16, 42, 67, 0.05);
    --shadow-md: 0 12px 32px rgba(16, 42, 67, 0.08);
    --shadow-lg: 0 24px 48px rgba(16, 42, 67, 0.12);
    --shadow-premium: 0 40px 100px -20px rgba(16, 42, 67, 0.15);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(12px);
}

/* ── UTILITIES ─────────────────────────────────────────────── */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t-fast);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--brand-navy);
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* ── SCROLL PROGRESS BAR ──────────────────────────────────── */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--brand-gold);
    z-index: 9999;
}

/* ── PRELOADER ────────────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

/* 3D Pyramid Loader */
.pyramid-wrapper {
    width: 100px;
    height: 100px;
    perspective: 800px;
}

.pyramid {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotatePyramid 8s linear infinite;
}

.pyr-face {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid;
    transform-origin: 50% 0%;
}

.pyr-f1 {
    border-bottom-color: var(--brand-gold);
    transform: rotateY(0deg) rotateX(30deg);
}

.pyr-f2 {
    border-bottom-color: var(--brand-navy);
    transform: rotateY(90deg) rotateX(30deg);
    opacity: 0.9;
}

.pyr-f3 {
    border-bottom-color: var(--brand-gold);
    transform: rotateY(180deg) rotateX(30deg);
}

.pyr-f4 {
    border-bottom-color: var(--brand-navy);
    transform: rotateY(270deg) rotateX(30deg);
    opacity: 0.8;
}

@keyframes rotatePyramid {
    from {
        transform: rotateY(0deg) rotateX(-10deg);
    }

    to {
        transform: rotateY(360deg) rotateX(-10deg);
    }
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--brand-navy);
    text-transform: uppercase;
    animation: pulseLogo 2s ease-in-out infinite;
}

.preloader-logo span {
    color: var(--brand-gold);
}

@keyframes pulseLogo {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* ── HEADER ───────────────────────────────────────────────── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    background: var(--bg-white);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Scroll State ── */
#site-header.scrolled {
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 42, 67, 0.06);
    box-shadow: 0 4px 30px rgba(16, 42, 67, 0.06);
}

/* Scroll state keeps same colors, just adds shadow */

/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--brand-navy);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.logo-accent {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--brand-gold);
    letter-spacing: -0.5px;
}

.logo-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-gold);
    border-radius: 1px;
    margin-left: 2px;
    align-self: flex-start;
    margin-top: 6px;
}

/* ── Navigation ── */
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--brand-navy);
    background: rgba(16, 42, 67, 0.04);
}

.nav-chevron {
    font-size: 9px;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

/* ── Dropdown Menu ── */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(16, 42, 67, 0.12),
        0 0 0 1px rgba(16, 42, 67, 0.04);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 24px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(16, 42, 67, 0.04);
}

.dropdown-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(197, 160, 89, 0.05));
    color: var(--brand-gold);
    border-radius: 10px;
    font-size: 14px;
    flex-shrink: 0;
}

.dropdown-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 2px;
}

.dropdown-item span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ── Header Right ── */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    padding-right: 16px;
    border-right: 1px solid rgba(16, 42, 67, 0.1);
}

/* phone border already correct for white bg */

.header-phone i {
    font-size: 12px;
    color: var(--brand-gold);
}

.header-phone:hover {
    color: var(--brand-navy);
}

/* ── CTA Button ── */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--brand-gold);
    color: var(--brand-navy);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
}

.header-cta:hover::before {
    opacity: 1;
}

.header-cta i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.header-cta:hover i {
    transform: translateX(4px);
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-navy);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Nav ── */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--brand-navy);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.2s ease;
    letter-spacing: -0.5px;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--brand-gold);
}

.mobile-cta {
    margin-top: 24px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .site-nav {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {
    .header-cta {
        display: none;
    }

    .mobile-nav-link {
        font-size: 26px;
    }
}

/* ── THE TRIPTYCH HERO ─────────────────────────────────────── */
.hero-triptych {
    display: flex;
    height: calc(100vh - 80px);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    background: var(--brand-navy);
}

.triptych-item {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.triptych-item:last-child {
    border-right: none;
}

.triptych-bg {
    position: absolute;
    inset: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.triptych-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) saturate(1.1);
    transition: filter 0.5s ease;
}

.triptych-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(16, 42, 67, 0.85) 0%,
            rgba(16, 42, 67, 0.2) 60%,
            transparent 100%);
    opacity: 0.9;
    transition: opacity 0.5s ease;
}

.triptych-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(30px, 4vw, 60px);
    z-index: 10;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.triptych-eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-gold);
    /* Gold/Brown tone as requested */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    opacity: 1;
}

.triptych-title {
    font-size: clamp(28px, 3vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    /* Pure white remains for title */
    margin: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.triptych-line {
    width: 40px;
    height: 2px;
    background: var(--brand-gold);
    margin: 24px 0;
    transition: width 0.6s ease;
}

.triptych-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-gold);
    /* Gold/Brown tone */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    /* Visible by default */
    transform: none;
    /* No translation by default */
    transition: all 0.5s ease;
}

/* Hover States — Removed expansion as per user request */
.triptych-item:hover .triptych-bg {
    transform: scale(1.05);
}

.triptych-item:hover .triptych-bg img {
    filter: brightness(0.8) saturate(1.2);
}

.triptych-item:hover .triptych-overlay {
    opacity: 0.8;
}

.triptych-item:hover .triptych-line {
    width: 60px;
}

.triptych-item:hover .triptych-link {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-triptych {
        flex-direction: column;
        height: auto;
    }

    .triptych-item {
        width: 100%;
        height: 400px;
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .triptych-item:hover {
        flex: none;
    }

    .triptych-link {
        opacity: 1;
        transform: none;
    }
}


.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 5;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.slide.active .slide-bg img {
    transform: scale(1);
}

/* Gradient Overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right,
            rgba(16, 42, 67, 0.88) 0%,
            rgba(16, 42, 67, 0.6) 50%,
            rgba(16, 42, 67, 0.2) 100%);
}

/* Content */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: clamp(40px, 6vw, 100px);
    padding-bottom: clamp(80px, 10vw, 140px);
    color: var(--white);
}

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.slide-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--brand-gold);
}

.slide.active .slide-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-title span {
    color: var(--brand-gold);
}

.slide-desc {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.5s;
}

.slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--brand-gold);
    color: var(--brand-navy);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.6s;
}

.slide.active .slide-cta {
    opacity: 1;
    transform: translateY(0);
}

.slide-cta:hover {
    background: #d4b06a;
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.35);
    transform: translateY(-3px) !important;
}

.slide-cta i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.slide-cta:hover i {
    transform: translateX(5px);
}

/* Slider Navigation (01, 02, 03) */
.slider-nav {
    position: absolute;
    right: clamp(24px, 4vw, 80px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slider-dot {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
}

.dot-num {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.dot-line {
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: width 0.4s ease;
    display: block;
}

.slider-dot.active .dot-num {
    color: var(--brand-gold);
    font-size: 18px;
}

.slider-dot.active .dot-line {
    width: 40px;
}

.slider-dot:hover .dot-num {
    color: rgba(255, 255, 255, 0.8);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
}

.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--brand-gold);
    transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        margin-top: 64px;
    }

    .slider-nav {
        right: 16px;
        gap: 16px;
    }

    .dot-line {
        display: none;
    }

    .slide-content {
        padding: 24px;
        padding-bottom: 60px;
    }

    .slide-overlay {
        background: linear-gradient(to top,
                rgba(16, 42, 67, 0.95) 0%,
                rgba(16, 42, 67, 0.5) 60%,
                rgba(16, 42, 67, 0.3) 100%);
    }
}

.hero-badge-text span {
    font-size: 11px;
    color: var(--text-muted);
}

/* Scroll indicator */
.scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.scroll-cue span {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-faint);
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-line 1.8s ease infinite;
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ── MARQUEE / LOGOS STRIP ────────────────────────────────── */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-faint);
    border-right: 1px solid var(--border);
}

.marquee-item i {
    color: var(--gold-dim);
    font-size: 14px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SERVICES SECTION ─────────────────────────────────────── */
.services-section {
    padding: var(--section-pad) 0;
    background: var(--deep);
}

.section-header {
    margin-bottom: clamp(40px, 6vw, 80px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.section-eyebrow {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-eyebrow::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--brand-gold);
}

.section-title {
    font-size: clamp(32px, 5vw, 64px);
    max-width: 800px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: var(--brand-navy);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--t-med);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--brand-gold);
    transform: translateY(-2px);
    color: var(--brand-navy);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border: 2px solid var(--brand-navy);
    color: var(--brand-navy);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--t-med);
}

.btn-outline:hover {
    background: var(--brand-navy);
    color: var(--bg-white);
}

/* Service Tabs */
.service-tabs {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-tab {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 36px 40px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--t-med);
    text-align: left;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.service-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dim));
    transform: scaleY(0);
    transition: transform var(--t-med);
    border-radius: 0 2px 2px 0;
}

.service-tab:hover,
.service-tab.active {
    background: var(--card);
    border-color: var(--border);
}

.service-tab:hover::before,
.service-tab.active::before {
    transform: scaleY(1);
}

.tab-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-faint);
    transition: color var(--t-fast);
}

.service-tab:hover .tab-num,
.service-tab.active .tab-num {
    color: var(--gold);
}

/* Service Showcase Grid */
.service-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.showcase-card {
    position: relative;
    height: 500px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--t-med);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    text-decoration: none;
    color: var(--white);
}

.showcase-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-dim);
    box-shadow: var(--shadow-gold);
}

.showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.showcase-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(0.2);
    transition: transform 1s var(--ease-out), filter 0.5s ease;
}

.showcase-card:hover .showcase-bg img {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.showcase-content {
    position: relative;
    z-index: 2;
    transition: transform 0.5s var(--ease-out);
}

/* ── SERVICES SECTION ─────────────────────────────────────── */
.services-section {
    padding: var(--section-pad) 0 0;
    background: var(--bg-white);
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* ── PREMIUM THE TRINITY GALLERY ──────────────────────────── */
.trinity-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 0;
    perspective: 2000px;
}

.trinity-card {
    position: relative;
    height: 540px;
    border-radius: var(--radius-lg);
    overflow: visible;
    /* To allow floating elements to go out of bounds */
    background: var(--bg-white);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(-10deg) rotateZ(0);
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    text-decoration: none;
}

.trinity-card:hover {
    transform: rotateX(0) rotateY(0) translateY(-20px);
    box-shadow: 0 50px 100px -20px rgba(16, 42, 67, 0.25);
}

.trinity-bg {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 1;
}

.trinity-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.trinity-card:hover .trinity-bg img {
    transform: scale(1.1);
}

/* Glass Overlay for Content */
.trinity-glass {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    z-index: 5;
    transform: translateZ(40px);
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease-out);
}

.trinity-card:hover .trinity-glass {
    bottom: 20px;
    background: var(--bg-white);
}

.trinity-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.trinity-title {
    font-size: 28px;
    color: var(--brand-navy);
    margin-bottom: 12px;
    line-height: 1.1;
}

.trinity-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.trinity-card:hover .trinity-desc {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 24px;
}

.trinity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trinity-link i {
    color: var(--brand-gold);
    transition: transform 0.3s ease;
}

.trinity-card:hover .trinity-link i {
    transform: translateX(5px);
}

@media (max-width: 1100px) {
    .trinity-gallery {
        grid-template-columns: 1fr;
        gap: 80px;
        padding: 40px 20px;
    }

    .trinity-card {
        transform: none !important;
        height: 400px;
    }

    .trinity-glass {
        bottom: -20px;
        opacity: 1;
    }
}

.tab-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.tab-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

.tab-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    flex-shrink: 0;
}

.service-tab:hover .tab-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-section {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

/* Floating mini-card */
.about-float-card {
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: var(--brand-navy);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.about-float-card .num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--brand-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.about-float-card .lbl {
    font-size: 14px;
    opacity: 0.8;
}

.about-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 52px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gold-glow);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.feature-text span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── STATS SECTION ────────────────────────────────────────── */
.stats-section {
    padding: var(--section-pad) 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-suffix {
    color: var(--brand-gold);
}

.stat-lbl {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
    padding: var(--section-pad) 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 48px;
    transition: all var(--t-med);
    border: 1px solid var(--border);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-gold);
}

.quote-icon {
    font-size: 40px;
    color: var(--brand-gold);
    margin-bottom: 24px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--brand-navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-navy);
}

.author-role {
    font-size: 14px;
    color: var(--text-muted);
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
    padding: 120px 0;
    background: var(--brand-navy);
    color: var(--white);
    text-align: center;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(40px, 5vw, 72px);
    margin-bottom: 24px;
    color: #fff;
}

.cta-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btns .btn-primary {
    background: var(--brand-gold);
    color: #fff;
}

.cta-btns .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cta-btns .btn-outline:hover {
    background: #fff;
    color: var(--brand-navy);
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
    background: #0a1628;
    color: #fff;
    padding: 100px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 24px;
    display: block;
}

.footer-logo span {
    color: var(--brand-gold);
}

.footer-brand-desc {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 32px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all var(--t-fast);
}

.social-btn:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    transform: translateY(-3px);
}

.footer-col h5 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--t-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--brand-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--brand-gold);
    margin-top: 4px;
}

.footer-contact-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-faint);
}

.footer-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 2s infinite;
}

/* ── ABOUT PREMIUM ───────────────────────────────────────────── */
.about-premium {
    position: relative;
    padding: 160px 0 140px;
    overflow: hidden;
    color: #fff;
}

.about-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-premium-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 30, 56, 0.92) 0%, rgba(11, 30, 56, 0.75) 100%);
}

.ap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.ap-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 24px;
}

.ap-title {
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 28px;
    letter-spacing: -1.5px;
    color: #fff;
}

.ap-title span {
    color: var(--brand-gold);
}

.ap-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 540px;
}

.ap-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ap-stat {
    text-align: left;
}

.ap-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.ap-stat-num small {
    color: var(--brand-gold);
    font-size: 0.6em;
}

.ap-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ap-trust {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ap-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

.ap-trust-item i {
    color: var(--brand-gold);
    font-size: 14px;
}

.ap-visual {
    min-height: 400px;
}

@media (max-width: 991px) {
    .ap-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ap-visual {
        display: none;
    }

    .ap-stats {
        gap: 24px;
    }

    .ap-stat-num {
        font-size: 32px;
    }

    .about-premium {
        padding: 100px 0 80px;
    }
}

/* ── PYRAMID STATS (3D Solid) ────────────────────────────── */
.pyramid-section {
    position: relative;
    background: #050b18;
    padding: 140px 0 100px;
    overflow: hidden;
}

.pyramid-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(184, 157, 102, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(11, 30, 56, 0.6) 0%, transparent 40%);
}

/* Floating particles */
.pyr-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.pyr-particles span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--brand-gold);
    opacity: 0;
    animation: pyr-float var(--d) ease-in-out infinite var(--del);
}

@keyframes pyr-float {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    20% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
        transform: translateY(-30px) scale(1);
    }

    80% {
        opacity: 0.5;
    }
}

/* Header */
.pyramid-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.pyramid-eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 12px;
}

.pyramid-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin: 0;
}

/* Canvas */
.pyramid-canvas {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 800 / 520;
}

.pyramid-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* SOLID PYRAMID FACES — start invisible, fade in */
.pyr-face {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.pyr-face-l {
    fill: url(#faceLeft);
}

.pyr-face-r {
    fill: url(#faceRight);
}

.pyr-face-s {
    fill: url(#faceSide);
}

/* WIREFRAME EDGES on top of faces */
.pyr-wire {
    stroke: var(--brand-gold);
    stroke-width: 1.5;
    opacity: 0;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.pyr-wire-dim {
    stroke-width: 1;
    opacity: 0;
}

/* Division lines */
.pyr-div {
    stroke: var(--brand-gold);
    stroke-width: 0.8;
    opacity: 0;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

/* Connectors */
.pyr-conn {
    stroke: var(--brand-gold);
    stroke-width: 1;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    opacity: 0.4;
}

/* Energy dots */
.pyr-energy {
    fill: var(--brand-gold);
    opacity: 0;
}

.pyr-dot {
    fill: var(--brand-gold);
    opacity: 0;
}

.pyr-apex {
    fill: var(--brand-gold);
    opacity: 0;
}

.pyr-apex-ring {
    stroke: var(--brand-gold);
    fill: none;
    opacity: 0;
}

.pyr-pulse {
    fill: rgba(184, 157, 102, 0.8);
    opacity: 0;
}

/* Stat boxes */
.pyr-stat-box {
    position: absolute;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pyr-sb-1 {
    top: 6%;
    left: 0;
    text-align: left;
}

.pyr-sb-2 {
    top: 6%;
    right: 0;
    text-align: right;
}

.pyr-sb-3 {
    bottom: 2%;
    left: 0;
    text-align: left;
}

.pyr-sb-4 {
    bottom: 2%;
    right: 0;
    text-align: right;
}

.pyr-sb-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -2px;
}

.pyr-sb-num small {
    color: var(--brand-gold);
    font-size: 0.5em;
    font-weight: 700;
}

.pyr-sb-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ════════ ANIMATE STATE ════════ */

/* Phase 1: Faces appear (0-1.5s) */
.pyramid-section.animate .pyr-face-l {
    opacity: 1;
    transition-delay: 0.3s;
}

.pyramid-section.animate .pyr-face-r {
    opacity: 1;
    transition-delay: 0.6s;
}

.pyramid-section.animate .pyr-face-s {
    opacity: 1;
    transition-delay: 0.9s;
}

/* Phase 2: Wireframe draws on top (0.5-2.5s) */
.pyramid-section.animate .pyr-wire {
    animation: draw-wire 1.2s ease forwards 0.5s;
}

.pyramid-section.animate .pyr-wire-dim {
    animation: draw-wire-dim 1s ease forwards 1.5s;
}

/* Phase 3: Division lines (2s) */
.pyramid-section.animate .pyr-div {
    animation: draw-wire 0.6s ease forwards 2s;
}

.pyramid-section.animate .pyr-div-2 {
    animation: draw-wire 0.6s ease forwards 2.3s;
}

/* Phase 4: Apex glow (2s) */
.pyramid-section.animate .pyr-apex {
    animation: glow-in 0.5s ease forwards 1.8s;
}

.pyramid-section.animate .pyr-apex-ring {
    animation: ring-in 0.5s ease forwards 1.8s, ring-breathe 3s ease-in-out infinite 2.5s;
}

/* Phase 5: Connectors + energy (2.5s staggered) */
.pyramid-section.animate .pyr-conn-1 {
    animation: draw-stroke 0.7s ease forwards 2.5s;
}

.pyramid-section.animate .pyr-conn-2 {
    animation: draw-stroke 0.7s ease forwards 2.9s;
}

.pyramid-section.animate .pyr-conn-3 {
    animation: draw-stroke 0.7s ease forwards 3.3s;
}

.pyramid-section.animate .pyr-conn-4 {
    animation: draw-stroke 0.7s ease forwards 3.7s;
}

.pyramid-section.animate .pyr-energy-1 {
    animation: energy-1 0.5s ease forwards 2.8s;
}

.pyramid-section.animate .pyr-energy-2 {
    animation: energy-2 0.5s ease forwards 3.2s;
}

.pyramid-section.animate .pyr-energy-3 {
    animation: energy-3 0.5s ease forwards 3.6s;
}

.pyramid-section.animate .pyr-energy-4 {
    animation: energy-4 0.5s ease forwards 4.0s;
}

/* Phase 6: Dots + stats appear */
.pyramid-section.animate .pyr-dot-1 {
    animation: glow-in 0.3s ease forwards 3.2s;
}

.pyramid-section.animate .pyr-dot-2 {
    animation: glow-in 0.3s ease forwards 3.6s;
}

.pyramid-section.animate .pyr-dot-3 {
    animation: glow-in 0.3s ease forwards 4.0s;
}

.pyramid-section.animate .pyr-dot-4 {
    animation: glow-in 0.3s ease forwards 4.4s;
}

.pyramid-section.animate .pyr-sb-1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 3.2s;
}

.pyramid-section.animate .pyr-sb-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 3.6s;
}

.pyramid-section.animate .pyr-sb-3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 4.0s;
}

.pyramid-section.animate .pyr-sb-4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 4.4s;
}

/* Edge pulses visible after build */
.pyramid-section.animate .pyr-pulse {
    opacity: 0.7;
}

/* ════ KEYFRAMES ════ */
@keyframes draw-stroke {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-wire {
    to {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
}

@keyframes draw-wire-dim {
    to {
        stroke-dashoffset: 0;
        opacity: 0.2;
    }
}

@keyframes glow-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes ring-in {
    from {
        opacity: 0;
        r: 10;
    }

    to {
        opacity: 0.6;
        r: 20;
    }
}

@keyframes ring-breathe {

    0%,
    100% {
        r: 20;
        opacity: 0.6;
    }

    50% {
        r: 28;
        opacity: 0.15;
    }
}

@keyframes energy-1 {
    0% {
        cx: 350;
        cy: 155;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        cx: 90;
        cy: 70;
        opacity: 0;
    }
}

@keyframes energy-2 {
    0% {
        cx: 470;
        cy: 235;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        cx: 710;
        cy: 70;
        opacity: 0;
    }
}

@keyframes energy-3 {
    0% {
        cx: 295;
        cy: 318;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        cx: 90;
        cy: 450;
        opacity: 0;
    }
}

@keyframes energy-4 {
    0% {
        cx: 505;
        cy: 318;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    100% {
        cx: 710;
        cy: 450;
        opacity: 0;
    }
}

.pyramid-title span {
    color: var(--brand-gold);
}

/* Mobile — same layout, scaled */
@media (max-width: 991px) {
    .pyramid-section {
        padding: 80px 0 60px;
    }

    .pyramid-header {
        margin-bottom: 20px;
    }

    .pyramid-title {
        font-size: 28px;
    }

    .pyr-sb-num {
        font-size: 24px !important;
    }

    .pyr-sb-label {
        font-size: 8px !important;
        letter-spacing: 1px !important;
    }
}

@media (max-width: 480px) {
    .pyramid-section {
        padding: 60px 0 40px;
    }

    .pyramid-title {
        font-size: 22px;
    }

    .pyramid-eyebrow {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .pyr-sb-num {
        font-size: 18px !important;
        letter-spacing: -1px !important;
    }

    .pyr-sb-label {
        font-size: 7px !important;
        letter-spacing: 0.5px !important;
    }
}


/* ── ANIMATIONS ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hero-visual {
        display: none;
    }

    .hero-title {
        max-width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-float-card {
        right: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {

    .site-nav,
    #header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
    }

    .hero-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .hero-stat:last-child {
        border-bottom: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-tab {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tab-num {
        display: none;
    }

    .tab-icon {
        margin-left: auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-img-wrap::before {
        display: none;
    }

    .about-float-card {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ── SELECTION & SCROLLBAR ────────────────────────────────── */
::selection {
    background: var(--gold-glow);
    color: var(--gold);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   CORPORATE PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ──────────────────────────────────────────── */
.corp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    overflow: hidden;
}

.corp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.corp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 11, 24, 0.95) 0%, rgba(5, 11, 24, 0.5) 40%, rgba(5, 11, 24, 0.2) 100%);
}

.corp-hero-inner {
    position: relative;
    z-index: 2;
}

.corp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 24px;
}

.corp-hero-eyebrow i {
    font-size: 14px;
}

.corp-hero-title {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0 0 24px;
}

.corp-hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.corp-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.corp-hs {
    display: flex;
    flex-direction: column;
}

.corp-hs-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

.corp-hs-num small {
    color: var(--brand-gold);
    font-size: 0.6em;
}

.corp-hs-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.corp-hs-divider {
    width: 1px;
    height: 40px;
    background: rgba(184, 157, 102, 0.25);
}

.corp-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── STORY ─────────────────────────────────────────── */
.corp-story {
    padding: 120px 0;
    background: #fff;
}

.corp-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.corp-story-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.corp-story-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 12px;
}

.corp-story-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--brand-gold);
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.corp-badge-year {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.corp-badge-text {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.corp-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 12px;
}

.corp-heading {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--brand-navy);
    letter-spacing: -1px;
    margin: 0 0 24px;
    line-height: 1.2;
}

.corp-heading span {
    color: var(--brand-gold);
}

.corp-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.corp-story-highlights {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.corp-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(184, 157, 102, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(184, 157, 102, 0.15);
    transition: var(--t-fast);
}

.corp-highlight:hover {
    background: rgba(184, 157, 102, 0.15);
    border-color: var(--brand-gold);
}

.corp-highlight i {
    color: var(--brand-gold);
    font-size: 16px;
}

.corp-highlight span {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-navy);
}

/* ── VISION & MISSION ──────────────────────────────── */
.corp-vm {
    padding: 100px 0;
    background: var(--bg-light);
}

.corp-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.corp-vm-card {
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: var(--t-fast);
}

.corp-vm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(11, 30, 56, 0.08);
    border-color: var(--brand-gold);
}

.corp-vm-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 157, 102, 0.1);
    border-radius: 12px;
    color: var(--brand-gold);
    font-size: 22px;
    margin-bottom: 24px;
}

.corp-vm-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 16px;
}

.corp-vm-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ── VALUES ────────────────────────────────────────── */
.corp-values {
    position: relative;
    padding: 120px 0;
    background: #050b18;
    overflow: hidden;
}

.corp-values-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 157, 102, 0.05) 0%, transparent 60%);
}

.corp-values-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.corp-values-header .corp-heading {
    color: #fff;
}

.corp-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.corp-val {
    padding: 40px 28px;
    border: 1px solid rgba(184, 157, 102, 0.1);
    border-radius: 12px;
    transition: var(--t-fast);
    background: rgba(255, 255, 255, 0.02);
}

.corp-val:hover {
    border-color: var(--brand-gold);
    background: rgba(184, 157, 102, 0.05);
    transform: translateY(-4px);
}

.corp-val-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: rgba(184, 157, 102, 0.15);
    margin-bottom: 16px;
    line-height: 1;
}

.corp-val h4 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.corp-val p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ── CERTIFICATES ──────────────────────────────────── */
.corp-certs {
    padding: 100px 0;
    background: #fff;
}

.corp-certs-header {
    text-align: center;
    margin-bottom: 56px;
}

.corp-certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.corp-cert {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--t-fast);
}

.corp-cert:hover {
    border-color: var(--brand-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11, 30, 56, 0.08);
}

.corp-cert-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 157, 102, 0.1);
    border-radius: 50%;
    color: var(--brand-gold);
    font-size: 24px;
    margin: 0 auto 20px;
}

.corp-cert h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 6px;
}

.corp-cert p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── CORPORATE RESPONSIVE ──────────────────────────── */
@media (max-width: 991px) {
    .corp-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .corp-vm-grid {
        grid-template-columns: 1fr;
    }

    .corp-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .corp-certs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .corp-hero {
        min-height: 80vh;
        padding-bottom: 60px;
    }

    .corp-hero-title {
        font-size: 48px;
    }

    .corp-story-highlights {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .corp-values-grid {
        grid-template-columns: 1fr;
    }

    .corp-certs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .corp-hero-stats {
        gap: 20px;
    }

    .corp-hs-num {
        font-size: 28px;
    }

    .corp-hero-title {
        font-size: 36px;
    }

    .corp-story-img img {
        height: 300px;
    }
}

/* ══════════════════════════════════════════════════════════════
   CAREER PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── WHY PIRAMIT ──────────────────────────────────── */
.career-why {
    padding: 120px 0;
    background: #fff;
}

.career-why-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.career-why-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 16px;
}

.career-perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.career-perk {
    text-align: center;
    padding: 48px 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--t-fast);
}

.career-perk:hover {
    border-color: var(--brand-gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(11, 30, 56, 0.08);
}

.career-perk-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 157, 102, 0.1);
    border-radius: 16px;
    color: var(--brand-gold);
    font-size: 24px;
    margin: 0 auto 24px;
}

.career-perk h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 12px;
}

.career-perk p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── APPLY SECTION ─────────────────────────────────── */
.career-apply {
    position: relative;
    padding: 120px 0;
    background: #050b18;
    overflow: hidden;
}

.career-apply-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(184, 157, 102, 0.04) 0%, transparent 50%);
}

.career-apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Positions List */
.career-positions {
    padding-top: 16px;
}

.career-pos-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.career-pos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border: 1px solid rgba(184, 157, 102, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--t-fast);
}

.career-pos:hover {
    border-color: var(--brand-gold);
    background: rgba(184, 157, 102, 0.06);
}

.career-pos-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.career-pos-info i {
    color: var(--brand-gold);
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 157, 102, 0.1);
    border-radius: 10px;
}

.career-pos-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.career-pos-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.career-pos-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-gold);
    background: rgba(184, 157, 102, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Form Card */
.career-form-card {
    background: #fff;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.career-form-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.career-form-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.career-field {
    margin-bottom: 20px;
}

.career-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.career-field input,
.career-field select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--brand-navy);
    transition: var(--t-fast);
}

.career-field input:focus,
.career-field select:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(184, 157, 102, 0.1);
}

.career-field input[type="file"] {
    cursor: pointer;
    color: var(--text-muted);
}

.career-submit {
    width: 100%;
    padding: 16px;
    background: var(--brand-gold);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--t-fast);
    margin-top: 8px;
}

.career-submit:hover {
    background: var(--brand-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 30, 56, 0.2);
}

/* ── CAREER RESPONSIVE ─────────────────────────────── */
@media (max-width: 991px) {
    .career-perks-grid {
        grid-template-columns: 1fr 1fr;
    }

    .career-apply-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .career-perks-grid {
        grid-template-columns: 1fr;
    }

    .career-form-card {
        padding: 32px 24px;
    }
}

/* ══════════════════════════════════════════════════════════════
   SECURITY SERVICE PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ──────────────────────────────────────────── */
.sec-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    padding-bottom: 100px;
}

.sec-hero-bg {
    position: absolute;
    inset: 0;
}

.sec-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.sec-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.sec-hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 157, 102, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 157, 102, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.sec-hero-inner {
    position: relative;
    z-index: 2;
}

.sec-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 157, 102, 0.15);
    border: 1px solid rgba(184, 157, 102, 0.3);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 32px;
}

.sec-hero-title {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -3px;
    line-height: 1.05;
    margin: 0 0 24px;
}

.sec-hero-title span {
    color: var(--brand-gold);
}

.sec-hero-desc {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255, 255, 255, 0.5);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.sec-hero-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.sec-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--brand-gold);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--t-fast);
}

.sec-btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.sec-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--t-fast);
}

.sec-btn-outline:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
}

.sec-metrics-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 40px 40px;
}

.sec-metrics-glass {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 28px 48px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 157, 102, 0.15);
    border-radius: 16px;
}

.sec-metric-divider {
    width: 1px;
    height: 36px;
    background: rgba(184, 157, 102, 0.2);
}

.sec-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-metric-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--brand-gold);
}

.sec-metric-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* ── SHARED ────────────────────────────────────────── */
.sec-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 12px;
}

.sec-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--brand-navy);
    letter-spacing: -1px;
    line-height: 1.2;
    margin: 0 0 24px;
}

.sec-section-title span {
    color: var(--brand-gold);
}

/* ── SECTORS GRID ──────────────────────────────────── */
.sec-sectors {
    padding: 120px 0;
    background: #fff;
}

.sec-sectors-header {
    text-align: center;
    margin-bottom: 64px;
}

.sec-sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sec-sector {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.sec-sector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.8;
}

.sec-sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 11, 24, 0.9) 0%, rgba(5, 11, 24, 0.2) 60%, transparent 100%);
    transition: opacity 0.4s ease;
}

.sec-sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: #fff;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.sec-sector-content i {
    font-size: 20px;
    color: var(--brand-gold);
    margin-bottom: 15px;
    display: block;
}

.sec-sector h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.sec-sector p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sec-sector:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.sec-sector:hover .sec-sector-content {
    transform: translateY(0);
}

.sec-sector:hover p {
    opacity: 1;
}

/* ── SECTORS RESPONSIVE ───────────────────────────── */
@media (max-width: 1200px) {
    .sec-sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .sec-sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sec-sector {
        height: 260px;
    }

    .sec-hero-title {
        font-size: 44px;
    }

    .sec-services-grid {
        grid-template-columns: 1fr;
    }

    .sec-tech-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sec-steps {
        grid-template-columns: 1fr 1fr;
    }

    .sec-hero-metrics {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .sec-sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sec-sector {
        height: 240px;
    }

    .sec-hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .sec-sectors-grid {
        grid-template-columns: 1fr;
    }

    .sec-sector {
        height: 240px;
    }

    .sec-sector-content {
        padding: 25px;
    }

    .sec-sector h4 {
        font-size: 18px;
    }

    .sec-hero-title {
        font-size: 36px;
    }

    .sec-hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 10px;
    }

    .sec-hero-metrics {
        flex-direction: column;
    }
}

/* ── PIRAMIT TECH ──────────────────────────────────── */
.sec-tech {
    position: relative;
    padding: 120px 0;
    background: #050b18;
    overflow: hidden;
}

.sec-tech-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(184, 157, 102, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(11, 30, 56, 0.4) 0%, transparent 50%);
}

.sec-tech-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.sec-tech-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--brand-gold);
    background: rgba(184, 157, 102, 0.1);
    border: 1px solid rgba(184, 157, 102, 0.2);
    padding: 10px 24px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.sec-tech-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.sec-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.sec-tech-card {
    padding: 36px;
    border: 1px solid rgba(184, 157, 102, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: var(--t-fast);
}

.sec-tech-card:hover {
    border-color: rgba(184, 157, 102, 0.4);
    background: rgba(184, 157, 102, 0.05);
    transform: translateY(-4px);
}

.sec-tech-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 157, 102, 0.1);
    border-radius: 12px;
    color: var(--brand-gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.sec-tech-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.sec-tech-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.sec-tech-cta {
    text-align: center;
    margin-top: 56px;
    position: relative;
    z-index: 2;
}

.sec-tech-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

/* ── METHODOLOGY ───────────────────────────────────── */
.sec-method {
    padding: 120px 0;
    background: var(--bg-light);
}

.sec-method-header {
    text-align: center;
    margin-bottom: 64px;
}

.sec-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sec-step {
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    transition: var(--t-fast);
}

.sec-step:hover {
    border-color: var(--brand-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(11, 30, 56, 0.06);
}

.sec-step-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    color: rgba(184, 157, 102, 0.15);
    margin-bottom: 16px;
    line-height: 1;
}

.sec-step-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 10px;
}

.sec-step-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── SECURITY RESPONSIVE ──────────────────────────── */
@media (max-width: 991px) {
    .sec-hero {
        min-height: 85vh;
    }

    .sec-hero-title {
        font-size: 44px;
    }

    .sec-services-grid {
        grid-template-columns: 1fr;
    }

    .sec-tech-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sec-steps {
        grid-template-columns: 1fr 1fr;
    }

    .sec-hero-metrics {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .sec-hero-title {
        font-size: 36px;
    }

    .sec-hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 10px;
    }
    
    .sec-metrics-bar {
        position: relative;
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .sec-hero {
        height: auto;
        min-height: auto;
        padding-bottom: 0;
    }

    .sec-hero-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .sec-tech-grid {
        grid-template-columns: 1fr;
    }

    .sec-steps {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════
   CLEANING SERVICE PAGE STYLES
   ══════════════════════════════════════════════════════════ */

.cln-hero-split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
    padding: 140px 0 100px;
    overflow: hidden;
}

.cln-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.cln-hero-content {
    max-width: 640px;
}

.cln-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 40px;
    background: rgba(184, 157, 102, 0.1);
    border: 1px solid rgba(184, 157, 102, 0.2);
    color: var(--brand-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.cln-hero-title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 0 0 24px;
}

.cln-hero-title span {
    color: var(--brand-gold);
}

.cln-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* LEAN STATS */
.cln-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
}

.cln-stat-item {
    display: flex;
    flex-direction: column;
}

.cln-stat-val {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--brand-gold);
    line-height: 1;
}

.cln-stat-lab {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.cln-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.cln-hero-actions {
    display: flex;
    gap: 20px;
}

/* VISUAL SIDE */
.cln-hero-visual {
    position: relative;
}

.cln-visual-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cln-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cln-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(5, 11, 24, 0.8));
}

.cln-floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    animation: float 4s ease-in-out infinite;
}

.cln-f-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-gold);
    color: var(--brand-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cln-f-text {
    display: flex;
    flex-direction: column;
}

.cln-f-text strong {
    font-size: 15px;
    font-weight: 800;
}

.cln-f-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ── SHARED CLEANING ───────────────────────────────── */
.cln-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 12px;
}

.cln-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--brand-navy);
    letter-spacing: -1px;
    line-height: 1.2;
    margin: 0 0 24px;
}

.cln-section-title span {
    color: var(--brand-gold);
}

.cln-section-title.text-white {
    color: #fff;
}

/* ── SECTORS GRID ──────────────────────────────────── */
.cln-sectors {
    padding: 120px 0;
    background: #fff;
}

.cln-sectors-header {
    text-align: center;
    margin-bottom: 64px;
}

.cln-sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cln-sector {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.cln-sector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.8;
}

.cln-sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 11, 24, 0.95) 0%, rgba(5, 11, 24, 0.4) 60%, transparent 100%);
}

.cln-sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: #fff;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.cln-sector-content i {
    font-size: 20px;
    color: var(--brand-gold);
    margin-bottom: 15px;
    display: block;
}

.cln-sector h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cln-sector p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cln-sector:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.cln-sector:hover .cln-sector-content {
    transform: translateY(0);
}

.cln-sector:hover p {
    opacity: 1;
}

/* ── PIRAMIT PURE ──────────────────────────────────── */
.cln-pure {
    position: relative;
    padding: 120px 0;
    background: #050b18;
    overflow: hidden;
}

.cln-pure-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.cln-pure-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.cln-pure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.cln-pure-card {
    padding: 36px;
    border: 1px solid rgba(184, 157, 102, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: var(--t-fast);
}

.cln-pure-card:hover {
    border-color: rgba(184, 157, 102, 0.4);
    background: rgba(184, 157, 102, 0.05);
    transform: translateY(-4px);
}

.cln-pure-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 157, 102, 0.1);
    border-radius: 12px;
    color: var(--brand-gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.cln-pure-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cln-pure-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ── METHODS ────────────────────────────────────────── */
.cln-methods {
    padding: 120px 0;
    background: var(--bg-light);
}

.cln-methods-header {
    text-align: center;
    margin-bottom: 64px;
}

.cln-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cln-method-step {
    padding: 36px 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    transition: var(--t-fast);
}

.cln-method-step:hover {
    border-color: var(--brand-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(11, 30, 56, 0.06);
}

.cln-step-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    color: rgba(184, 157, 102, 0.15);
    margin-bottom: 16px;
    line-height: 1;
    display: block;
}

.cln-method-step h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 10px;
}

.cln-method-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── CLEANING CTA ──────────────────────────────────── */
.cln-cta {
    padding: 80px 0 120px;
    background: #fff;
}

.cln-cta-glass {
    padding: 80px 60px;
    border-radius: 24px;
    background: var(--brand-navy);
    background-image: radial-gradient(circle at top right, rgba(184, 157, 102, 0.2), transparent);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cln-cta-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    margin-bottom: 24px;
    color: #fff !important;
    /* Force visibility */
    line-height: 1.1;
}

.cln-cta-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.cln-cta-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.cln-cta .cln-btn-primary {
    background: var(--brand-gold);
    color: var(--brand-navy);
    padding: 20px 48px;
    font-size: 16px;
}

.cln-cta .cln-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 20px 48px;
    font-size: 16px;
}

.cln-cta .cln-btn-outline:hover {
    background: #fff;
    color: var(--brand-navy);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1200px) {
    .cln-sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cln-hero-container {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .cln-hero-split {
        padding: 120px 0 60px;
        text-align: center;
    }

    .cln-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cln-hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .cln-hero-stats {
        margin: 0 auto 40px;
    }

    .cln-hero-actions {
        justify-content: center;
    }

    .cln-visual-frame {
        aspect-ratio: 16/9;
        max-width: 600px;
        margin: 0 auto;
    }

    .cln-sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cln-pure-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cln-methods-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .cln-hero-title {
        font-size: 32px;
    }

    .cln-hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .cln-stat-divider {
        width: 100%;
        height: 1px;
    }

    .cln-hero-actions {
        flex-direction: column;
    }

    .cln-floating-card {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 12px;
    }

    .cln-sectors-grid {
        grid-template-columns: 1fr;
    }

    .cln-pure-grid {
        grid-template-columns: 1fr;
    }

    .cln-methods-grid {
        grid-template-columns: 1fr;
    }

    .cln-cta-actions {
        flex-direction: column;
    }

    .cln-cta-glass {
        padding: 40px 20px;
    }
}

/* ══════════════════════════════════════════════════════════
   CATERING SERVICE PAGE STYLES
   ══════════════════════════════════════════════════════════ */

.cat-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.cat-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    opacity: 0.5;
}

.cat-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom,
            rgba(5, 11, 24, 0.8) 0%,
            rgba(5, 11, 24, 0.5) 50%,
            rgba(5, 11, 24, 0.95) 100%);
}

.cat-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 850px;
    padding: 0 60px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    margin-top: 80px;
}

.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 40px;
    background: rgba(184, 157, 102, 0.15);
    border: 1px solid rgba(184, 157, 102, 0.3);
    color: var(--brand-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cat-title {
    font-size: clamp(32px, 4.5vw, 68px);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.cat-title span {
    display: block;
    color: var(--brand-gold);
}

.cat-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-weight: 400;
}

.cat-hero-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.cat-btn-white {
    padding: 18px 42px;
    background: #fff;
    color: var(--brand-navy);
    font-size: 15px;
    font-weight: 800;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--t-fast);
}

.cat-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.cat-btn-gold {
    padding: 18px 42px;
    background: transparent;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    font-size: 15px;
    font-weight: 800;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--t-fast);
}

.cat-btn-gold:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(184, 157, 102, 0.2);
}

/* CATERING EDITORIAL STORYTELLING */
.cat-story {
    padding: 140px 0;
    background: #fff;
    overflow: hidden;
}

.cat-story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 140px;
}

.cat-story-row:last-child {
    margin-bottom: 0;
}

.cat-story-row.reverse {
    direction: rtl;
    /* Flip the grid */
}

.cat-story-row.reverse .cat-story-content {
    direction: ltr;
    /* Reset text direction */
    padding-right: 0;
    padding-left: 40px;
}

.cat-story-visual {
    position: relative;
    border-radius: 60px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 40px 100px rgba(5, 11, 24, 0.12);
}

.cat-story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.cat-story-row:hover .cat-story-visual img {
    transform: scale(1.08);
}

.cat-story-content {
    padding-right: 40px;
}

.cat-story-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(184, 157, 102, 0.1);
    color: var(--brand-gold);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.cat-story-title {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.cat-story-desc {
    font-size: 18px;
    color: var(--brand-navy);
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cat-story-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-story-features li {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cat-story-features li i {
    color: var(--brand-gold);
    font-size: 18px;
}

@media (max-width: 1200px) {
    .cat-story-row {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .cat-story-row {
        grid-template-columns: 1fr;
        gap: 50px;
        direction: ltr !important;
        margin-bottom: 100px;
    }

    .cat-story-content {
        padding: 0 !important;
        text-align: center;
    }

    .cat-story-visual {
        aspect-ratio: 16/10;
        border-radius: 40px;
    }

    .cat-story-features li {
        justify-content: center;
    }
}

/* CATERING SECTORAL & OPERATIONAL */
.cat-sectors {
    padding: 100px 0 140px;
    /* Reduced top padding for feature proximity */
    background: #fff;
}

.cat-sectors-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.cat-sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cat-sector {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: 0 30px 60px rgba(5, 11, 24, 0.1);
}

.cat-sector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.cat-sector:hover img {
    transform: scale(1.1);
}

.cat-sector-overlay {
    position: absolute;
    inset: 0;
    /* Stronger, more opaque gradient for readability */
    background: linear-gradient(to top,
            rgba(5, 11, 24, 0.95) 0%,
            rgba(5, 11, 24, 0.6) 40%,
            rgba(5, 11, 24, 0.1) 80%,
            transparent 100%);
}

.cat-sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    color: #fff;
    z-index: 2;
}

.cat-sector-content h4 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    /* Explicitly white */
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Add depth for readability */
}

.cat-sector-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* ONSITE FEATURE MODULE (PRIMARY FOCUS) */
.cat-onsite-feature {
    padding: 160px 0 100px;
    background: #fff;
}

.cat-onsite-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.cat-onsite-visual {
    position: relative;
    border-radius: 60px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 40px 100px rgba(5, 11, 24, 0.15);
}

.cat-onsite-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-onsite-content {
    padding-right: 40px;
}

.cat-onsite-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(184, 157, 102, 0.1);
    color: var(--brand-gold);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.cat-onsite-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.cat-onsite-desc {
    font-size: 19px;
    color: var(--brand-navy);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* OPERATIONAL PILLARS (The "How") */
.cat-pure {
    padding: 140px 0;
    background: var(--brand-navy);
    position: relative;
    overflow: hidden;
}

.cat-pure-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.cat-pure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.cat-pure-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 48px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--t-fast);
}

.cat-pure-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: var(--brand-gold);
}

.cat-pure-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-gold);
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 24px;
    margin-bottom: 32px;
}

.cat-pure-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cat-pure-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin: 0;
}

/* METHODOLOGY */
.cat-methods {
    padding: 140px 0;
    background: #f8f9fa;
}

.cat-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.cat-method-step {
    position: relative;
}

.cat-step-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(184, 157, 102, 0.15);
    display: block;
    line-height: 1;
    margin-bottom: 24px;
}

.cat-method-step h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 16px;
}

.cat-method-step p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .cat-sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-pure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cat-sectors-grid {
        grid-template-columns: 1fr;
    }

    .cat-pure-grid {
        grid-template-columns: 1fr;
    }

    .cat-methods-grid {
        grid-template-columns: 1fr;
    }
}

/* QUALITY SECTION */
.cat-quality {
    padding: 120px 0;
    background: var(--brand-navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cat-q-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    position: relative;
    z-index: 2;
}

.cat-q-item {
    text-align: center;
}

.cat-q-icon {
    width: 80px;
    height: 80px;
    background: rgba(184, 157, 102, 0.1);
    border: 1px solid rgba(184, 157, 102, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--brand-gold);
    margin: 0 auto 32px;
}

.cat-q-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cat-q-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
}

@media (max-width: 1200px) {
    .cat-q-grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .cat-hero-content {
        padding: 0 24px;
    }

    .cat-title {
        font-size: 64px;
    }

    .cat-grid {
        grid-template-columns: 1fr;
    }

    .cat-q-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cat-card-info {
        padding: 32px;
    }
}

@media (max-width: 576px) {
    .cat-title {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .cat-card-title {
        font-size: 24px;
    }
}

/* ── CONTACT PAGE (PREMIUM REDESIGN) ───────────────────────── */
.con-hero {
    padding: 180px 0 100px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.con-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.con-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.con-info {
    position: sticky;
    top: 120px;
}

.con-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
    display: block;
}

.con-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -3px;
}

.con-cards {
    display: grid;
    gap: 24px;
}

.con-card {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.con-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-gold);
}

.con-card-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 24px;
    transition: all 0.4s var(--ease-out);
}

.con-card:hover .con-card-icon {
    background: var(--brand-navy);
    color: #fff;
    transform: rotate(-10deg);
}

.con-card-body strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--brand-navy);
    margin-bottom: 4px;
}

.con-card-body span {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Glass Form */
.con-form-container {
    padding: 60px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(16, 42, 67, 0.08);
}

.con-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.con-form-group {
    margin-bottom: 24px;
}

.con-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.con-form-control {
    width: 100%;
    padding: 16px 24px;
    background: #fff;
    border: 2px solid #f1f3f5;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    color: var(--brand-navy);
    transition: all 0.3s ease;
}

.con-form-control:focus {
    outline: none;
    border-color: var(--brand-gold);
    background: #fff;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.1);
}

.con-form-btn {
    width: 100%;
    padding: 20px;
    background: var(--brand-gold);
    color: var(--brand-navy);
    border: none;
    border-radius: 14px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.con-form-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
    background: #d4ae6a;
}

.con-form-btn i {
    font-size: 14px;
    transition: transform 0.4s ease;
}

.con-form-btn:hover i {
    transform: translateX(6px);
}

@media (max-width: 1100px) {
    .con-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: 0;
    }

    .con-info {
        position: static;
    }

    .con-form-container {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .con-form-grid {
        grid-template-columns: 1fr;
    }

    .con-hero {
        padding: 140px 0 60px;
    }

    .con-form-container {
        padding: 30px 24px;
    }
}

/* %% FLOATING CONTACT REDESIGN (PREMIUM) %% */
.floating-contact {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2000;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.float-btn i {
    z-index: 2;
}

.float-btn span {
    position: absolute;
    right: 85px;
    background: #102a43;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 32px rgba(16, 42, 67, 0.08);
    pointer-events: none;
}

.float-btn span::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #102a43;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.float-btn:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.phone-btn {
    background: linear-gradient(135deg, #C5A059 0%, #a38144 100%);
    animation: pulse-phone 2s infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.float-btn:hover {
    transform: scale(1.15) translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-phone {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 25px;
        right: 25px;
        gap: 15px;
    }
    
    .float-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .float-btn span {
        display: none;
    }
}
