/* ==================== 1. VARIABLES & RESET ==================== */
:root {
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --c-dark: #0a0a0c;
    --c-dark-soft: #141417;
    --c-paper: #f8f6f2;
    --c-card: #eee9e0;
    --c-gold: #c89d5c;
    --c-gold-light: #e5cb9f;
    --c-gold-dark: #9e7435;
    --c-text: #161616;
    --c-muted: #726f68;
    --border-light: rgba(255, 255, 255, 0.12);
    --border-dark: rgba(0, 0, 0, 0.08);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--c-paper);
    color: var(--c-text);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

button, input, select, textarea {
    font-family: var(--font-primary);
}

.fa, .fas, .far, .fal, .fab, .fa-solid, .fa-regular, .fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ==================== 2. GLOBAL COMPONENTS & BUTTONS ==================== */
.nx-container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.25rem, 4vw, 3.5rem);
    padding-right: clamp(1.25rem, 4vw, 3.5rem);
}

.section-spacing {
    padding: clamp(65px, 8vw, 115px) 0;
}

.nx-tag {
    font-size: 10px;
    letter-spacing: 3.5px;
    font-weight: 700;
    color: var(--c-gold-dark);
    margin-bottom: clamp(14px, 2vw, 22px);
    text-transform: uppercase;
}

.text-gold-light {
    color: var(--c-gold-light) !important;
}

.nx-heading {
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.nx-heading em {
    font-style: italic;
    font-weight: 400;
}

.nx-heading.sm {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.nx-desc {
    font-size: clamp(13px, 1.05vw, 15px);
    color: var(--c-muted);
    max-width: 500px;
    line-height: 1.8;
}

.nx-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 22px;
    border: 1px solid var(--border-light);
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.03);
}

.nx-btn-ghost:hover {
    border-color: var(--c-gold);
    color: var(--c-gold-light);
}

.nx-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 13px 26px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    background: transparent;
}

.nx-btn-light:hover {
    border-color: var(--c-gold);
    background: var(--c-gold);
    color: #000;
}

.nx-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    border: 1px solid var(--c-text);
    color: var(--c-text);
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
}

.nx-btn-dark:hover {
    background: var(--c-text);
    color: #fff;
}

.nx-btn-dark.sm {
    padding: 10px 18px;
    font-size: 9px;
    gap: 10px;
}

.nx-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--c-text);
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.nx-arrow-link:hover {
    border-color: var(--c-gold);
    color: var(--c-gold-dark);
}

/* ==================== 3. HEADER & NAVIGATION ==================== */
.nx-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: clamp(16px, 2.2vw, 24px) 0;
    transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease;
}

.nx-header.scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 12, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}

.nx-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.nx-brand-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
}

.brand-n {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.brand-x {
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 13px;
    height: 13px;
    border-right: 3.5px solid var(--c-gold);
    border-bottom: 3.5px solid var(--c-gold);
    transform: rotate(45deg);
}

.nx-brand-text strong {
    font-size: 18px;
    letter-spacing: 2.5px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.nx-brand-text span {
    font-size: 8px;
    letter-spacing: 4px;
    color: var(--c-gold-light);
    display: block;
    margin-top: 3px;
}

.nx-nav {
    gap: clamp(18px, 2.5vw, 36px);
}

.nx-nav a {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-bottom: 4px;
}

.nx-nav a:hover, .nx-nav a.active {
    color: #fff;
}

.nx-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--c-gold);
}

.nx-menu-trigger {
    background: transparent;
    border: none;
    width: 28px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.nx-menu-trigger span {
    display: block;
    height: 1.5px;
    background: #fff;
    width: 100%;
}

.nx-menu-trigger span:last-child {
    width: 60%;
}

.nx-offcanvas {
    background: #0d0d0f !important;
    color: #fff;
    width: min(380px, 85vw) !important;
}

.nx-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
}

.nx-mobile-links a {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.nx-mobile-links a.active {
    color: var(--c-gold-light);
}

.nx-mobile-links a span {
    color: var(--c-gold);
}

.nx-mobile-contact {
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
}

.nx-mobile-contact small {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--c-gold-light);
    margin-bottom: 8px;
}

.nx-mobile-contact a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}
.nx-brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

.nx-header.scrolled .nx-brand-logo {
    height: 32px;
}
@media (max-width: 767px) {
    .nx-brand-logo {
        height: 30px;
    }
}
/* ==================== 4. HERO SECTION & SLIDER ==================== */
.nx-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.nx-slider-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nx-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65) contrast(1.1);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 6s ease-out,
                visibility 1.2s;
}

.nx-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.02);
    z-index: 1;
}

.nx-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(10,10,12,0.94) 0%, rgba(10,10,12,0.65) 45%, rgba(10,10,12,0.15) 100%),
                linear-gradient(0deg, rgba(10,10,12,0.85) 0%, transparent 40%);
}

.nx-massive-logo h1 {
    font-size: clamp(3.2rem, 8.5vw, 7.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin: 0;
    background: linear-gradient(180deg, #ffffff 40%, rgba(255, 255, 255, 0.45) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nx-massive-logo span {
    font-size: clamp(10px, 1.2vw, 15px);
    letter-spacing: 12px;
    color: var(--c-gold-light);
    display: block;
    margin: 8px 0 25px 4px;
}

.nx-hero-tagline {
    font-size: clamp(1.35rem, 2.8vw, 2.6rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.nx-hero-tagline strong {
    font-weight: 700;
    color: var(--c-gold-light);
}

.nx-hero-desc {
    font-size: clamp(13px, 1.1vw, 15px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: clamp(24px, 3vw, 36px);
}

.nx-hero-badge {
    position: relative;
    min-height: 90px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.badge-text {
    position: absolute;
    font-style: italic;
    font-size: clamp(20px, 2.2vw, 30px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.badge-text.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.nx-hero-footer {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.nx-hero-footer .nx-container {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
}

.nx-hero-slider-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-nav-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 4px 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-nav-btn:hover {
    color: var(--c-gold-light);
}

.slide-nav-btn.active {
    color: #fff;
    border-bottom: 1.5px solid var(--c-gold);
}

.nx-hero-slider-info .sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
}

.nx-hero-corporate {
    font-size: 10px;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.6);
}

.nx-hero-corporate strong {
    color: var(--c-gold-light);
}
/* ==================== HERO SLIDER MARKA LOGOSU ==================== */
.nx-massive-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: clamp(16px, 2.5vw, 28px);
}

.hero-brand-logo {
    width: auto;
    height: clamp(48px, 6vw, 76px); /* Masaüstünde heybetli, ekrana göre esnek */
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.7));
}

/* Mobil Ekran Dengesi */
@media (max-width: 767px) {
    .nx-massive-logo {
        margin-bottom: 16px;
    }

    .hero-brand-logo {
        height: 42px; /* Mobilde sloganı ezmeyecek lüks boyut */
    }
}
/* ==================== 5. INTRO & X SYMBOL SECTION ==================== */
.nx-brand-intro {
    background-color: var(--c-paper);
    padding: clamp(60px, 8vw, 110px) 0;
    width: 100%;
}

.intro-grid-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: clamp(30px, 5vw, 80px);
}

.intro-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 700;
    color: #8C877D;
    margin-bottom: 22px;
}

.intro-main-title {
    font-size: clamp(2.2rem, 3.8vw, 3.8rem);
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: -0.02em;
    color: #111113;
    margin: 0;
}

.intro-gold-line {
    width: 38px;
    height: 2px;
    background: linear-gradient(90deg, #C59B63, #E5C799);
    margin: 28px 0 24px;
}

.intro-sub-text {
    font-size: clamp(13px, 1.05vw, 14.5px);
    color: #726E66;
    line-height: 1.8;
    max-width: 440px;
    margin: 0;
    font-weight: 400;
}

.intro-symbol-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(25px, 4vw, 55px);
}

.next-brand-media {
    width: clamp(180px, 24vw, 320px);
    flex-shrink: 0;
}

.intro-media-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.08));
}

.intro-pillars-box {
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    padding-left: clamp(20px, 2.5vw, 35px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.intro-pillars-box span {
    font-size: 11px;
    letter-spacing: 3.5px;
    font-weight: 600;
    color: #4A4742;
    line-height: 1;
}

.intro-pillars-box .pillar-line {
    width: 28px;
    height: 2px;
    background-color: #C59B63;
    margin-top: 8px;
}

/* ==================== 6. FEATURED PROJECT SLIDER ==================== */
.nx-featured-slider-section {
    position: relative;
    height: clamp(580px, 65vh, 720px);
    min-height: 560px;
    background-color: #0c0d0f;
    overflow: hidden;
    width: 100%;
}

.nx-featured-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.nx-featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
    z-index: 1;
}

.nx-featured-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

/* Bina Görseli: Masaüstünde sağ taraftaki ışıkları ve cepheyi mükemmel odaklar */
.slide-bg-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    filter: brightness(0.85) contrast(1.08);
    transform: scale(1.04);
    transition: transform 8s cubic-bezier(0.1, 1, 0.1, 1);
}

.nx-featured-slide.active .slide-bg-media {
    transform: scale(1);
}

/* Karartma Sadece Metnin Olduğu Sol Taraftadır, Binayı Kapatmaz */
.slide-shadow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(8, 8, 10, 0.95) 0%, 
        rgba(8, 8, 10, 0.82) 36%, 
        rgba(8, 8, 10, 0.25) 65%, 
        rgba(8, 8, 10, 0.1) 100%);
    z-index: 1;
}

.slide-content-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 580px;
    position: relative;
    z-index: 3;
}

.slide-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--c-gold-light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-title {
    font-size: clamp(2.4rem, 4.2vw, 4rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 22px 0;
}

.slide-title em {
    font-style: italic;
    font-weight: 400;
}

.slide-unit-type {
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}

.slide-sub-desc {
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 32px 0;
}

/* İnce Çift Çizgili Lüks Buton */
.slide-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 13px 28px;
    border: 1px solid rgba(229, 203, 159, 0.6);
    background: rgba(12, 13, 16, 0.45);
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
}

.slide-action-btn:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: #000000;
}

/* Sağ Üst Köşe Konum Rozeti */
.nx-location-badge {
    position: absolute;
    top: clamp(35px, 5vh, 55px);
    right: clamp(1.5rem, 5vw, 4rem);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-align: right;
    pointer-events: none;
}

.nx-location-badge i {
    font-size: 22px;
    color: var(--c-gold-light);
}

.nx-location-badge strong {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.nx-location-badge span {
    font-size: 9px;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-top: 2px;
}

/* Slider Okları */
.nx-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    width: 46px;
    height: 65px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nx-slider-arrow:hover {
    color: var(--c-gold-light);
    transform: translateY(-50%) scale(1.15);
}

.nx-slider-arrow.prev { left: clamp(10px, 1.5vw, 25px); }
.nx-slider-arrow.next { right: clamp(10px, 1.5vw, 25px); }

/* ==================== MOBİL UYUMLULUK ==================== */
@media (max-width: 767px) {
    .nx-featured-slider-section {
        height: 600px !important;
        min-height: 600px !important;
        max-height: none !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .nx-featured-slides {
        height: 100% !important;
        position: relative !important;
    }

    .nx-featured-slide {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* 1. Bina görseli aydınlık ve cepheyi ortalayacak şekilde netleşir */
    .slide-bg-media {
        background-position: 78% center !important;
        filter: brightness(0.78) contrast(1.05) !important;
        transform: none !important;
    }

    /* 2. Siyah perde yerine sadece yazının altına denk gelen hafif gölge */
    .slide-shadow-overlay {
        background: linear-gradient(180deg, 
            rgba(8, 8, 10, 0.2) 0%, 
            rgba(8, 8, 10, 0.4) 40%, 
            rgba(8, 8, 10, 0.88) 75%, 
            rgba(8, 8, 10, 0.98) 100%) !important;
    }

    /* 3. Konteyner ve içerik kutusu: Dikeyde alt kısma hizalanır */
    .nx-featured-slide .nx-container {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        padding-bottom: 40px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .slide-content-wrap {
        height: auto !important;
        padding: 0 !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-end !important;
    }

    /* 4. Konum rozeti sağ üst köşeye temiz bir cam mühür olarak oturur */
    .nx-location-badge {
        position: absolute !important;
        top: 24px !important;
        right: 20px !important;
        left: auto !important;
        bottom: auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        background: rgba(12, 13, 16, 0.65) !important;
        backdrop-filter: blur(10px) !important;
        padding: 7px 12px !important;
        border-radius: 4px !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        z-index: 10 !important;
    }

    .nx-location-badge i {
        font-size: 13px !important;
    }

    .nx-location-badge strong {
        font-size: 9px !important;
        letter-spacing: 1.5px !important;
        line-height: 1.2 !important;
    }

    .nx-location-badge span {
        font-size: 8px !important;
        letter-spacing: 1px !important;
    }

    /* 5. Yazılar ve buton bir tık küçültülüp orantılanır */
    .slide-eyebrow {
        font-size: 9px !important;
        letter-spacing: 2.5px !important;
        margin-bottom: 8px !important;
    }

    .slide-title {
        font-size: 22px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }

    .slide-unit-type {
        font-size: 18px !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 4px !important;
    }

    .slide-sub-desc {
        font-size: 11px !important;
        margin-bottom: 20px !important;
    }

    .slide-action-btn {
        width: 100% !important;
        max-width: 240px !important;
        padding: 12px 20px !important;
        font-size: 9px !important;
        letter-spacing: 1.5px !important;
        justify-content: center !important;
    }

    .nx-slider-arrow {
        display: none !important;
    }
}


/* ==================== 7. FOUR CORE VALUES ==================== */
.nx-values-section {
    background-color: #F8F6F2;
    padding: clamp(65px, 7.5vw, 105px) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.values-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: clamp(30px, 4vw, 60px);
}

.values-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 3.5px;
    font-weight: 700;
    color: #8C877D;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.values-main-title {
    font-size: clamp(2.2rem, 3.2vw, 3.4rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #111113;
    margin: 0;
}

.values-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.val-col {
    padding: 0 clamp(16px, 2vw, 36px);
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.val-col:hover {
    transform: translateY(-3px);
}

.val-numeral {
    font-size: clamp(32px, 3.2vw, 44px);
    font-weight: 300;
    line-height: 1;
    color: #C59B63;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.val-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.45;
    color: #161616;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.val-text {
    font-size: 12px;
    line-height: 1.65;
    color: #726E66;
    margin: 0;
    font-weight: 400;
}

/* ==================== 8. PROJECT SHOWCASE & GALLERY ==================== */
.nx-showcase {
    background: #f5f2ec;
}

.nx-spotlight-card {
    position: relative;
    height: clamp(380px, 35vw, 470px);
    overflow: hidden;
    color: #fff;
}

.spotlight-img {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1600&q=90") center/cover no-repeat;
    transition: transform 0.8s ease;
}

.nx-spotlight-card:hover .spotlight-img {
    transform: scale(1.04);
}

.nx-spotlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,8,10,0.92) 0%, rgba(8,8,10,0.2) 65%, transparent 100%);
}

.spotlight-content {
    position: absolute;
    left: clamp(24px, 4vw, 45px);
    bottom: clamp(24px, 4vw, 45px);
    z-index: 2;
}

.spotlight-content h3 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.spotlight-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.nx-status-chip {
    font-size: 9px;
    letter-spacing: 2px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--c-gold-light);
}

.nx-teaser-card {
    position: relative;
    height: clamp(380px, 35vw, 470px);
    overflow: hidden;
    background: #111;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.teaser-img {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
    filter: grayscale(1) brightness(0.35);
    transition: transform 0.8s ease;
}

.nx-teaser-card:hover .teaser-img {
    transform: scale(1.05);
}

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

.teaser-content small {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--c-gold);
    display: block;
    margin-bottom: 4px;
}

.teaser-content h4 {
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 400;
    line-height: 1.2;
}

.teaser-icon {
    margin-top: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nx-note-card {
    background: #eae5dc;
    height: 100%;
    min-height: 290px;
    padding: clamp(24px, 2.5vw, 34px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nx-note-card h4 {
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 700;
    line-height: 1.35;
    color: #111113;
    margin: 0 0 10px 0;
}

.nx-note-card p {
    font-size: 11.5px;
    color: var(--c-muted);
    line-height: 1.65;
    margin: 0 0 20px 0;
}

.nx-gallery-card {
    height: 100%;
    min-height: 290px;
    overflow: hidden;
    position: relative;
}

.nx-gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.nx-gallery-card:hover img {
    transform: scale(1.06);
}

/* ==================== 9. INVESTMENT STRIP ==================== */
.nx-investment-strip {
    position: relative;
    padding: clamp(65px, 6.5vw, 90px) 0;
    background-color: #0c0d0f;
    overflow: hidden;
    width: 100%;
}

.strip-skyline-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=2000&q=88');
    background-size: cover;
    background-position: center right;
    filter: brightness(0.65) contrast(1.15);
    z-index: 0;
}

.strip-dark-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0c0d0f 0%, #0c0d0f 40%, rgba(12, 13, 15, 0.85) 60%, rgba(12, 13, 15, 0.4) 100%);
    z-index: 1;
}

.strip-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    gap: clamp(25px, 4vw, 55px);
}

.strip-headline-side {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: clamp(20px, 3vw, 40px);
}

.strip-headline-side h3 {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
}

.strip-features-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.strip-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 clamp(15px, 2.5vw, 35px);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    gap: 16px;
}

.feat-ico {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c59b63;
}

.feat-ico i {
    font-size: 32px !important;
    color: #c59b63 !important;
    text-shadow: 0 4px 12px rgba(197, 155, 99, 0.25);
    transition: transform 0.3s ease, color 0.3s ease;
}

.strip-feature-item:hover .feat-ico i {
    transform: translateY(-3px) scale(1.06);
    color: #e5c799 !important;
}

.strip-feature-item span {
    font-size: 10px;
    letter-spacing: 2.5px;
    line-height: 1.55;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.strip-future-tag {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
    padding-left: clamp(15px, 2vw, 30px);
}

.future-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, #c59b63 50%, transparent 100%);
}

.strip-future-tag strong {
    font-size: clamp(12px, 1.1vw, 14px);
    letter-spacing: 3.5px;
    line-height: 1.5;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

/* ==================== 10. FOOTER ==================== */
.nx-footer {
    background-color: #08080a;
    color: #ffffff;
    padding-top: clamp(60px, 6.5vw, 85px);
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.footer-cta-band {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr auto;
    align-items: center;
    gap: clamp(25px, 4vw, 55px);
    padding-bottom: clamp(40px, 5vw, 60px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-group-identity {
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 20px;
}

.group-symbol-wrap {
    width: 46px;
    height: 46px;
    border-radius: 4px;
    background: rgba(197, 155, 99, 0.12);
    border: 1px solid rgba(197, 155, 99, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold-light);
    font-size: 20px;
    flex-shrink: 0;
}

.group-text-wrap h3 {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #ffffff;
}

.group-text-wrap p {
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-call-box h4 {
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 500;
    margin: 0 0 6px 0;
    color: #ffffff;
}

.footer-call-box p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-direct-channel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.channel-unit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.channel-unit:hover {
    color: var(--c-gold-light);
}

.channel-unit.static {
    cursor: default;
}

.channel-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--c-gold-light);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.channel-unit:hover .channel-icon {
    transform: translateY(-2px);
    border-color: var(--c-gold);
}

.footer-legal-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

.legal-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-brand strong {
    color: #ffffff;
    font-weight: 700;
}

.legal-nav-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.legal-nav-group a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease;
}

.legal-nav-group a:hover {
    color: var(--c-gold-light);
}

.footer-scroll-top {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-scroll-top:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
    transform: translateY(-3px);
}
.footer-group-identity {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.footer-group-identity .group-symbol-wrap {
    /* Çerçeve, arka plan ve gölgeleri tamamen sıfırlar */
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    
    /* Doğal logo alanı ölçüleri */
    width: auto !important;
    height: 52px !important;
    min-width: unset !important;
    max-width: unset !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.footer-group-identity .group-symbol-wrap img,
.footer-group-identity .group-brand-img {
    width: auto !important;
    height: 100% !important;
    max-height: 52px !important;
    object-fit: contain !important;
    transform: none !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) !important;
}

/* Mobil Uyum */
@media (max-width: 767px) {
    .footer-group-identity {
        gap: 16px !important;
    }

    .footer-group-identity .group-symbol-wrap {
        height: 42px !important;
    }

    .footer-group-identity .group-symbol-wrap img,
    .footer-group-identity .group-brand-img {
        max-height: 42px !important;
    }
}

/* ==================== MOBİL FOOTER DÜZENLEMESİ ==================== */
@media (max-width: 767px) {
    .nx-footer {
        padding: 45px 0 25px 0 !important;
    }

    /* 1. Üst Çağrı Bandı */
    .footer-cta-band {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
        padding-bottom: 28px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .footer-group-identity {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
    }

    .group-symbol-wrap {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid rgba(229, 203, 159, 0.3) !important;
        background: rgba(229, 203, 159, 0.05) !important;
        color: var(--c-gold-light, #e5cb9f) !important;
        font-size: 18px !important;
        border-radius: 6px !important;
    }

    .group-text-wrap h3 {
        font-size: 15px !important;
        letter-spacing: 2px !important;
        margin: 0 0 3px 0 !important;
        color: #ffffff !important;
    }

    .group-text-wrap p {
        font-size: 11px !important;
        line-height: 1.4 !important;
        color: rgba(255, 255, 255, 0.55) !important;
        margin: 0 !important;
    }

    .footer-call-box h4 {
        font-size: 19px !important;
        line-height: 1.3 !important;
        color: #ffffff !important;
        margin: 0 0 6px 0 !important;
    }

    .footer-call-box p {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
        color: rgba(255, 255, 255, 0.6) !important;
        margin: 0 !important;
    }

    /* Bize Ulaşın Butonu: Tam Genişlik */
    .footer-cta-action {
        width: 100% !important;
    }

    .footer-cta-action .nx-btn-light {
        width: 100% !important;
        justify-content: center !important;
        padding: 13px 20px !important;
        font-size: 10px !important;
        letter-spacing: 2px !important;
    }

    /* 2. İletişim Kanalları Listesi */
    .footer-direct-channel {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        padding: 24px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .channel-unit {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        text-decoration: none !important;
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .channel-icon {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        border-radius: 50% !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        background: rgba(255, 255, 255, 0.03) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 13px !important;
        color: var(--c-gold-light, #e5cb9f) !important;
    }

    .channel-unit span {
        font-size: 13px !important;
        letter-spacing: 0.4px !important;
    }

    /* 3. En Alt Hukuki & Telif Şeridi */
    .footer-legal-bar {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 18px !important;
        padding-top: 24px !important;
    }

    .legal-brand strong {
        display: block !important;
        font-size: 12px !important;
        letter-spacing: 2.5px !important;
        color: #ffffff !important;
        margin-bottom: 3px !important;
    }

    .legal-brand span {
        display: block !important;
        font-size: 9px !important;
        letter-spacing: 1.5px !important;
        color: rgba(255, 255, 255, 0.45) !important;
    }

    /* Linkler ve Yukarı Çık Butonunu Yan Yana Dengeleme */
    .legal-nav-group {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .legal-nav-group a {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        text-decoration: none !important;
        margin-right: 14px !important;
    }

    .footer-scroll-top {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        background: transparent !important;
        border: 1px solid rgba(229, 203, 159, 0.4) !important;
        color: var(--c-gold-light, #e5cb9f) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 12px !important;
        cursor: pointer !important;
        margin-left: auto !important;
    }
}
/* ==================== MOBİL YATIRIM ŞERİDİ (TAM MERKEZ HİZALAMA) ==================== */
@media (max-width: 767px) {
    .nx-investment-strip {
        padding: 58px 0 !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .strip-skyline-bg {
        background-position: center center !important;
        filter: brightness(0.42) contrast(1.15) !important;
        opacity: 0.9 !important;
    }

    .strip-dark-gradient {
        background: radial-gradient(circle at center, rgba(6, 6, 8, 0.4) 0%, rgba(6, 6, 8, 0.92) 100%) !important;
    }

    /* Tüm ana kapsayıcıyı ortalar */
    .strip-content-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 26px !important;
        align-items: center !important; /* Sol yerine merkez */
        text-align: center !important;
        width: 100% !important;
    }

    /* 1. Üst Başlık: Ekrana yayılır ve tam ortalanır */
    .strip-headline-side {
        width: 100% !important;
        text-align: center !important;
    }

    .strip-headline-side h3 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        font-weight: 300 !important;
        letter-spacing: -0.01em !important;
        color: #ffffff !important;
        margin: 0 !important;
        text-align: center !important;
        text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9) !important;
    }

    /* 2. Ortadaki Buzlu Cam 3'lü Kart */
    .strip-features-group {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 22px 14px !important;
        background: rgba(10, 11, 14, 0.72) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        border: 1px solid rgba(229, 203, 159, 0.22) !important;
        border-radius: 8px !important;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6) !important;
    }

    .strip-feature-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
    }

    .strip-feature-item .feat-ico {
        font-size: 18px !important;
        color: var(--c-gold-light, #e5cb9f) !important;
        filter: drop-shadow(0 2px 6px rgba(229, 203, 159, 0.3)) !important;
    }

    .strip-feature-item span {
        font-size: 8px !important;
        line-height: 1.35 !important;
        letter-spacing: 1.2px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
    }

    /* 3. Alttaki Altın Yazı: Ortalanır, çizgi üstünde şık bir mimari ayraç olarak yerleşir */
    .strip-future-tag {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 4px !important;
    }

    .strip-future-tag .future-line {
        display: block !important;
        width: 45px !important;
        height: 1.5px !important;
        background: var(--c-gold, #c89d5c) !important;
        box-shadow: 0 0 10px rgba(200, 157, 92, 0.6) !important;
        margin: 0 auto !important;
    }

    .strip-future-tag strong {
        font-size: 10px !important;
        letter-spacing: 2.5px !important;
        line-height: 1.5 !important;
        color: var(--c-gold-light, #e5cb9f) !important;
        font-weight: 700 !important;
        text-align: center !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
    }
}
/* ==================== 11. RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 1199px) {
    .values-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .strip-content-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .strip-headline-side {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-right: 0;
        padding-bottom: 25px;
    }

    .strip-future-tag {
        padding-left: 0;
    }

    .strip-dark-gradient {
        background: linear-gradient(90deg, #0c0d0f 0%, rgba(12, 13, 15, 0.9) 70%, rgba(12, 13, 15, 0.6) 100%);
    }

    .footer-cta-band {
        grid-template-columns: 1fr 1fr;
    }

    .footer-cta-action {
        grid-column: span 2;
    }

    .footer-group-identity {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    .intro-grid-wrap {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .intro-symbol-side {
        justify-content: flex-start;
    }

    .values-columns {
        grid-template-columns: repeat(2, 1fr);
        border-left: none;
        gap: 35px 0;
    }

    .val-col {
        border-right: none;
        padding: 0 20px;
    }

    .val-col:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.12);
    }

    .nx-featured-slider-section {
        height: auto;
        min-height: 560px;
    }

    .slide-shadow-overlay {
        background: linear-gradient(90deg, rgba(7,7,9,0.92) 0%, rgba(7,7,9,0.7) 100%),
                    linear-gradient(0deg, rgba(7,7,9,0.8) 0%, transparent 50%);
    }

    .nx-location-pin {
        top: 25px;
        right: 25px;
    }

    .strip-features-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .nx-hero-tagline {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .nx-hero-footer .nx-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .values-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .val-col {
        padding: 0 0 20px 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .val-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .val-numeral {
        margin-bottom: 12px;
    }

    .nx-spotlight-card,
    .nx-teaser-card {
        height: 380px;
    }

    .nx-note-card,
    .nx-gallery-card {
        min-height: auto;
        height: 260px;
    }

    .strip-skyline-bg {
        width: 100%;
        opacity: 0.22;
    }

    .strip-features-group {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .strip-feature-item {
        flex-direction: row;
        border-right: none;
        justify-content: flex-start;
        text-align: left;
        padding: 0;
        gap: 18px;
    }

    .feat-ico {
        width: 40px;
        justify-content: flex-start;
    }

    .future-line {
        display: none;
    }

    .footer-cta-band {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-cta-action {
        grid-column: span 1;
    }

    .footer-direct-channel {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-legal-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .legal-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

@media (max-width: 576px) {
    .slide-content-wrap {
        padding-top: 75px;
        padding-bottom: 40px;
    }

    .nx-slider-arrow {
        width: 32px;
        height: 50px;
        font-size: 18px;
    }

    .intro-symbol-side {
        gap: 18px;
    }

    .next-brand-media {
        width: 160px;
    }

    .intro-pillars-box span {
        font-size: 9.5px;
        letter-spacing: 2px;
    }
}


/* ==================== 12. STATS & PODIUM SHOWCASE ==================== */
.nx-stats-podium-section {
    position: relative;
    background-color: #060608;
    padding: clamp(90px, 9vw, 135px) 0;
    overflow: hidden;
    color: #ffffff;
    width: 100%;
}

.stats-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(580px, 68vw, 950px);
    height: clamp(580px, 68vw, 950px);
    background: radial-gradient(circle, rgba(212, 160, 84, 0.25) 0%, rgba(160, 105, 38, 0.08) 45%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.stats-ambient-glow::after {
    content: '';
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px solid rgba(229, 203, 159, 0.12);
}

.stats-podium-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1.05fr;
    align-items: center;
    gap: clamp(24px, 3.5vw, 55px);
    position: relative;
    z-index: 2;
}

/* ---------------- SOL SÜTUN ---------------- */
.stats-left-col {
    display: flex;
    flex-direction: column;
}

.stat-highlight-item {
    margin-bottom: 22px;
}

.stat-sublabel {
    display: block;
    font-size: 10.5px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.stat-huge-number {
    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.stat-divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(229, 203, 159, 0.35) 0%, rgba(255, 255, 255, 0.05) 100%);
    margin: 16px 0;
}

.stat-spec-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 11.5px;
    letter-spacing: 1.5px;
    color: rgba(229, 203, 159, 0.9);
    font-weight: 500;
}

.spec-value {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* ---------------- ORTA SÜTUN: 3D MODEL TEPKİSİ ---------------- */
.stats-center-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    perspective: 1000px; /* 3D derinlik sahası */
    cursor: grab;
}

.podium-image-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

/* Kule: Boyutu bir tık büyütüldü */
.podium-tower-img {
    width: 100%;
    max-width: 410px;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 3;
    margin-bottom: -18px;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.95)) 
            drop-shadow(0 -5px 40px rgba(229, 203, 159, 0.22));
    pointer-events: none;
    user-select: none;
}

/* 3D Kaide */
.podium-disk-base {
    position: relative;
    width: 100%;
    max-width: 410px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 50% 30%, #302821 0%, #141316 65%, #08080a 95%);
    border: 1.5px solid rgba(229, 203, 159, 0.6);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.95),
                inset 0 2px 8px rgba(229, 203, 159, 0.45);
    z-index: 2;
}

.podium-base-glow {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 44px;
    background: radial-gradient(ellipse, rgba(229, 185, 120, 0.5) 0%, rgba(175, 115, 45, 0.15) 50%, transparent 75%);
    filter: blur(14px);
    pointer-events: none;
    z-index: 1;
}

/* ---------------- SAĞ SÜTUN: GELİŞMİŞ EDİTORYAL YERLEŞİM ---------------- */
.stats-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.narrative-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(229, 203, 159, 0.05);
    border: 1px solid rgba(229, 203, 159, 0.3);
    border-radius: 4px;
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
}

.meta-badge-icon {
    font-size: 13px;
    color: var(--c-gold-light, #e5cb9f);
}

.meta-badge-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.1;
}

.meta-badge-text span {
    display: block;
    font-size: 8.5px;
    letter-spacing: 1.5px;
    color: var(--c-gold-light, #e5cb9f);
}

.narrative-heading-wrap {
    margin-bottom: 20px;
}

.narrative-eyebrow {
    display: block;
    font-size: 10.5px;
    letter-spacing: 3px;
    color: var(--c-gold-light, #e5cb9f);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.narrative-title {
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0;
}

.narrative-title em {
    font-style: italic;
    font-weight: 600;
    color: #ffffff;
}

.narrative-description {
    font-size: 13px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    max-width: 440px;
}

.nx-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border: 1px solid rgba(229, 203, 159, 0.4);
    border-radius: 40px;
    background: rgba(12, 13, 16, 0.4);
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.nx-btn-pill:hover {
    border-color: var(--c-gold, #c89d5c);
    color: #000000;
    background: var(--c-gold, #c89d5c);
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE KORUMA ==================== */
@media (max-width: 1024px) {
    .stats-podium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 30px;
    }

    .stats-center-col {
        grid-column: span 2;
        order: 1;
    }

    .stats-left-col { order: 2; }
    .stats-right-col { order: 3; }

    .podium-tower-img {
        max-height: 420px;
    }

    .podium-disk-base {
        max-width: 340px;
        height: 34px;
    }
}

@media (max-width: 767px) {
    .nx-stats-podium-section {
        padding: 60px 0;
    }

    .stats-podium-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .stats-right-col { order: 1; }
    .stats-center-col {
        order: 2;
        grid-column: span 1;
    }
    .stats-left-col { order: 3; }

    .podium-image-frame {
        max-width: 300px;
        margin: 0 auto;
    }

    .podium-tower-img {
        max-height: 330px;
        margin-bottom: -15px;
    }

    .podium-disk-base {
        max-width: 270px;
        height: 28px;
    }

    .stat-huge-number { font-size: 32px; }

    .nx-btn-pill {
        width: 100%;
        justify-content: center;
    }
}