/* =========================================
   ANA SAYFA (home.css) - SEAMLESS LUXURY
   ========================================= */

body,
html {
    background-color: #FAFAFA;
    /* Cleaner, highly professional light grey/white */
    color: var(--color-primary-dark);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.marginal-home {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* =========================================
   PREMIUM UTILITIES
   ========================================= */
.premium-scale-wrap {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    /* Soft, premium rounding */
}

.premium-scale-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    will-change: transform;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-scale-wrap:hover .premium-scale-img {
    transform: scale(1.03) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary-lux,
.btn-outline-lux,
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    /* Pill shape for premium feel */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary-lux {
    background-color: #ffffff;
    color: var(--color-primary-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary-lux:hover {
    background-color: var(--color-secondary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(70, 196, 221, 0.3);
}

.btn-outline-lux {
    background: transparent;
    color: var(--color-primary-dark);
    border: 1px solid rgba(10, 46, 92, 0.3);
}

.btn-outline-lux:hover {
    background: rgba(10, 46, 92, 0.05);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* =========================================
   1. HERO (Seamless & Cinematic)
   ========================================= */
.dense-hero {
    height: 100vh;
    padding: 0 6vw;
    /* Exact 100vh fit */
    padding-top: 80px;
    /* Offset for navbar */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Constrain the marquee */
    background-image: linear-gradient(rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.8)), url('../img/landing 01.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-ambient-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(199, 161, 122, 0.1) 0%, rgba(250, 250, 250, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.dh-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5vw;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dh-left {
    flex: 1;
    max-width: 650px;
}

.dh-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.dh-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.dh-desc {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.dh-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Right: Vertical Marquee */
.dh-right {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    height: 100vh;
}

.hero-floating-area {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.float-item {
    position: absolute;
    top: 100%;
    object-fit: contain;
    will-change: transform;
    animation: floatUp linear infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    pointer-events: auto;
    /* allow hover */
    transition: filter 0.3s ease;
}

.float-item:hover {
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.3)) brightness(1.1);
    z-index: 10 !important;
}

@keyframes floatUp {
    0% {
        transform: translateY(10vh);
    }

    100% {
        transform: translateY(-130vh);
    }
}

/* Scattered Positions, Sizes, Speeds and Delays */
.f-1 {
    left: 5%;
    width: 220px;
    animation-duration: 9s;
    animation-delay: -2s;
    z-index: 2;
}

.f-2 {
    left: 35%;
    width: 280px;
    animation-duration: 14s;
    animation-delay: -9s;
    z-index: 4;
}

.f-3 {
    right: 5%;
    width: 200px;
    animation-duration: 8s;
    animation-delay: -5s;
    z-index: 1;
}

.f-4 {
    left: 15%;
    width: 250px;
    animation-duration: 11s;
    animation-delay: -12s;
    z-index: 3;
}

.f-5 {
    right: 25%;
    width: 180px;
    animation-duration: 7s;
    animation-delay: -1s;
    z-index: 5;
}

.f-6 {
    left: 50%;
    width: 240px;
    animation-duration: 10s;
    animation-delay: -7s;
    z-index: 2;
}

.f-7 {
    right: 15%;
    width: 300px;
    animation-duration: 13s;
    animation-delay: -14s;
    z-index: 4;
}

.f-8 {
    left: 30%;
    width: 190px;
    animation-duration: 8.5s;
    animation-delay: -4s;
    z-index: 1;
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee-lux {
    background-color: #F0F2F5;
    color: var(--color-primary-dark);
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 40s linear infinite;
    align-items: center;
}

.marquee-content span {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 0 2.5rem;
    opacity: 0.7;
}

.marquee-content .dot {
    color: var(--color-secondary);
    opacity: 1;
    font-size: 1.2rem;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

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

/* =========================================
   2. EDITORIAL
   ========================================= */
.mh-editorial {
    padding: 8vh 0;
    position: relative;
    z-index: 1;
    background: #FAFAFA;
}

.ed-row {
    display: flex;
    align-items: center;
    padding: 10vh 8vw;
    gap: 8vw;
    max-width: 1600px;
    margin: 0 auto;
}

.ed-row.reverse {
    flex-direction: row-reverse;
}

.ed-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ed-num {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    display: block;
}

.ed-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.ed-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    max-width: 550px;
    margin-bottom: 2.5rem;
}

.link-explore {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(10, 46, 92, 0.2);
    padding-bottom: 8px;
    width: max-content;
    transition: all 0.3s;
}

.link-explore:hover {
    border-color: var(--color-secondary);
    padding-right: 10px;
}

.lux-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lux-list li {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 0;
    color: #222;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lux-list li i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.ed-img-wrap {
    flex: 1.2;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.ed-img-wrap.portrait {
    height: 75vh;
    flex: 0.9;
}

.ed-img-overlay {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 15px 30px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--color-primary-dark);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.right-offset {
    margin-right: 2vw;
}

.left-offset {
    margin-left: 2vw;
}

/* =========================================
   3. CATEGORIES GRID (Seamless Dark Transition)
   ========================================= */
/* A smooth gradient from FAFAFA to deep navy, connecting sections fluidly */
.mh-categories {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #FAFAFA 0%, #061933 15%, #061933 100%);
    color: #fff;
    padding: 10vh 8vw 15vh 8vw;
}

.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 6vh;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ch-text h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 15px 0;
    color: #fff;
}

.ch-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 550px;
    line-height: 1.6;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cc-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cc-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.cc-head h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.cc-img-wrap {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cc-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.cat-card:hover .cc-img {
    transform: scale(1.08) translateY(-5px);
}


/* =========================================
   4. STATEMENT
   ========================================= */
.mh-statement {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, #061933 0%, #FAFAFA 30%, #FAFAFA 100%);
    padding: 15vh 0;
}

.statement-wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 4vw;
}

.text-reveal {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: rgba(10, 46, 92, 0.12);
}

.text-reveal span {
    color: var(--color-primary-dark);
    display: inline-block;
}

/* =========================================
   5. CTA
   ========================================= */
.mh-cta {
    padding: 0 4vw 4vw 4vw;
    background: #FAFAFA;
    position: relative;
    z-index: 1;
}

.cta-box {
    position: relative;
    width: 100%;
    min-height: 70vh;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-primary-dark);
}

.cta-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 0;
}

.cta-bg-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: brightness(0.3);
    will-change: transform;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 3rem 2rem;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1200px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .dh-container {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 5vh;
    }

    .dh-left {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-showcase {
        height: 50vh;
    }

    .showcase-bg-circle {
        width: 70vw;
        height: 70vw;
    }

    .ed-row,
    .ed-row.reverse {
        flex-direction: column;
        gap: 6vh;
        padding: 6vh 6vw;
    }

    .right-offset,
    .left-offset {
        margin: 0;
    }

    .ed-img-wrap,
    .ed-img-wrap.portrait {
        height: 50vh;
        width: 100%;
    }

    .mh-categories {
        padding: 10vh 6vw;
    }
}

@media (max-width: 576px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }

    .dh-title {
        font-size: 3rem;
    }

    .dh-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .d-stat-divider {
        width: 100%;
        height: 1px;
    }

    .showcase-badge {
        width: 90px;
        height: 90px;
        font-size: 0.7rem;
        right: 5%;
    }

    .ed-img-overlay {
        left: 10px;
        bottom: 10px;
        padding: 10px 20px;
        font-size: 0.7rem;
    }
}