/* ========================================
   OURWAY - LUXURY EVENT ARCHITECTURE
   Ultimate Editorial Hero Experience
   ======================================== */

/* Removed Great Vibes */

/* === ROOT VARIABLES === */
:root {
    /* Color Palette - Updated from Image & User Request */
    /* Base Colors */
    --color-ivory: #F2F2F2; /* Greyish background */
    --color-stone: #E5E5E5; /* Slightly darker grey for contrast */
    /* NEW PALETTE REQUEST - RESTORED PINK & GOLD */
    --color-rose-accent: #9f5276; /* Primary Accent (Vibrant Rose) - Restored for Text/Headings */
    --color-soft-pink: #DCA2B1; /* Secondary Accent (Soft Pink) - Restored */
    --color-taupe-gray: #777777; /* Neutral/Text (Gray) */
    /* Mappings to functional variables */
    --color-champagne: #F2F2F2; /* Light Gray Background - Using Grey as requested for BG */
    --color-warm-beige: #E0E0E0; /* Light Gray Border/Bg */
    /* Updated Gold for specific requests */
    --color-muted-gold: #7A7A7A; /* Changed from Gold to Medium Gray to match logo */
    /* Text Colors */
    --color-charcoal: #333333; /* Softened from black to dark gray */
    --color-soft-gray: #555555; /* Medium dark grey */
    --color-deep-shadow: #1A1A1A;
    --color-footer: #2B2B2B; /* Dark gray footer instead of pure black */
    --color-powder-strong: var(--color-taupe-gray);
    --color-accent-vibrant: var(--color-rose-accent); /* Mapped to Dark Gray */
    /* Typography - Updated for modern readability & Turkish Support based on user request */
    --font-serif: 'Montserrat', sans-serif; /* Changed to Montserrat for strong headings */
    --font-sans: 'Montserrat', sans-serif; /* Clean, readable, Turkish supported sans */
    --font-signature: 'Montserrat', sans-serif; /* Removed cursive for a more corporate look */
    /* Spacing */
    --section-padding: 120px;
}

/* === GLOBAL RESETS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html {
    font-size: 100%; /* Changed from 80% to 100% to increase font size */
    scroll-behavior: smooth;
    height: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background-color: var(--color-stone);
    line-height: 1.8;
    font-weight: 400;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === CUSTOM CURSOR === */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-charcoal);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(26, 26, 26, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 800; /* ExtraBold */
    line-height: 1.2;
}

p {
    font-size: 1.1rem; /* Increased base font size */
    line-height: 1.8;
    font-weight: 500; /* Medium */
    color: var(--color-soft-gray);
}

/* === SIGNATURE ANIMATION === */
.signature-text {
    font-family: var(--font-sans);
    color: var(--color-rose-accent) !important; /* Matches section-title color */
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: signatureWrite 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.5s;
    font-size: 1.2em;
    font-weight: 900; /* Black */
    text-transform: none; /* B?y?k harf zorlamas? kald?r?ld? */
    letter-spacing: 2px;
    margin-top: 0.5rem;
    margin-left: 0.1em;
    padding-right: 20px; /* Sa? taraftan kesilmeyi ?nlemek i?in padding */
    text-shadow: 1px 2px 8px rgba(0,0,0,0.4); /* Hafif shadow, glow yok */
    white-space: nowrap;
}

@keyframes signatureWrite {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0); /* Masked from right */
        transform: translateY(10px) skewX(-10deg);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0); /* Fully revealed */
        transform: translateY(0) skewX(0);
    }
}

/* === LUXURY HEADER === */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    /* Initially hidden for immersive experience */
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

/* YEN? EKLEND?: Kontakt ve di?er sayfalarda header g?r?n?r olsun */
body:not(.home-page) .luxury-header {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    background: #dbdbdb; /* Arkaplan istenen a??k gri renk yap?ld? */
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.luxury-header.scrolled {
    background: #dbdbdb; /* Scrolled durumunda da istenen a??k gri renk yap?ld? */
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    /* Reveal on scroll */
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.luxury-nav {
    padding: 2rem 0;
    transition: padding 0.4s ease;
}

.luxury-header.scrolled .luxury-nav {
    padding: 1.25rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.luxury-brand {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

    .luxury-brand:hover {
        opacity: 0.7;
    }

.brand-logo {
    max-height: 85px; /* Logo b?y?t?ld?: 70px -> 85px */
    width: auto;
    display: block;
    /* mix-blend-mode: multiply; KALDIRILDI: Logonun kendi renginde kalmas? i?in */
}

.luxury-nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .luxury-nav-menu li a {
        font-family: var(--font-sans);
        font-size: 0.875rem;
        font-weight: 400;
        color: var(--color-charcoal); /* A??k gri arkaplanda koyu renk olsun */
        text-decoration: none;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        position: relative;
        transition: color 0.3s ease;
    }

        .luxury-nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--color-muted-gold);
            transition: width 0.4s ease;
        }

        .luxury-nav-menu li a:hover {
            color: var(--color-muted-gold);
        }

            .luxury-nav-menu li a:hover::after {
                width: 100%;
            }

/* YEN?: Men?deki CTA Butonu */
.btn-cta-nav {
    background-color: #9f5276;
    color: white !important; /* ?? BURASI */
    padding: 0.5rem 1.5rem !important;
    border-radius: 2px;
    border: 1px solid #9f5276;
}

    .btn-cta-nav::after {
        display: none !important; /* Alt ?izgiyi kald?r */
    }

    .btn-cta-nav:hover {
        background-color: transparent;
        color: #9f5276 !important;
    }

/* Mobil men? butonu (hamburger) rengi */
.navbar-toggler {
    border-color: var(--color-charcoal);
    pointer-events: all;
    cursor: pointer !important;
    position: relative;
    z-index: 1001;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobil men? a??ld???nda arkaplan */
@media (max-width: 992px) {
    /* On mobile, header must always be interactive for the toggler to work */
    .luxury-header {
        pointer-events: all;
    }

    .navbar-collapse {
        background: #dbdbdb; /* Mobil men? arkaplan? da istenen a??k gri renk */
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    /* Mobil header y?ksekli?ini k???ltme */
    .luxury-nav {
        padding: 0.5rem 0; /* Daha da k???lt?ld? */
    }

    .luxury-header.scrolled .luxury-nav {
        padding: 0.5rem 0; /* Daha da k???lt?ld? */
    }

    .brand-logo {
        max-height: 58px; /* Logo mobilde b?y?t?ld?: 50px -> 58px */
    }
}

/* === HERO SECTION - RESPONSIVE & FIXED === */
.ourway-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 1080px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-layer {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
    transition: transform 0.1s ease-out;
    z-index: 1;
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    /* Ensure the banner image is correctly referenced */
    background-image: url('../banner-son.jpg'); /* Updated path to new banner */
    background-size: cover;
    background-position: center 40%;
    animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Animated Logo Background - ACTIVE ANIMATION */
.hero-logo-anim {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45vw;
    max-width: 700px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8; /* Biraz daha art?r?ld? renklerin belirginle?mesi i?in */
    mix-blend-mode: normal; /* Renklerin g?r?nmesi i?in normal moda al?nd? */
    animation: logoFloat 8s ease-in-out infinite; /* Daha h?zl? animasyon */
    filter: none; /* Grayscale kald?r?larak renklerin g?r?nmesi sa?land? */
}

@media (max-width: 768px) {
    .hero-logo-anim {
        width: 80vw;
        opacity: 0.3;
    }
}

.hero-logo-anim img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(255,255,255,0.3));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.4;
    }

    25% {
        transform: translate(-50%, -52%) scale(1.05) rotate(1deg);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -55%) scale(1.1) rotate(-1deg);
        opacity: 0.7;
    }

    75% {
        transform: translate(-50%, -52%) scale(1.05) rotate(1deg);
        opacity: 0.6;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.hero-grain {
    display: none;
}

/* Hero Composition - RESPONSIVE GRID */
.hero-composition {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 2rem;
    padding: 0 6vw; /* Padding biraz art?r?larak sa? taraf rahatlat?ld? */
    align-content: center;
}

.hero-content-wrapper {
    grid-column: 1 / span 7; /* Geni?letildi ve sola ?ekildi (2 / span 5'ten) */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

    .hero-content.hero-loaded {
        opacity: 1;
        transform: translateY(0);
    }

/* Hero Services Summary - LUXURY EDITORIAL REDESIGN */
.hero-services-wrapper {
    grid-column: 9 / span 3;
    align-self: center;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.btn-reveal-services {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: 30px;
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInService 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeInService {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-reveal-services:hover {
    background: #ffffff;
    transform: translateY(-3px);
    color: var(--color-muted-gold);
}

.hero-services-summary {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5), 0 30px 60px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
}

    .hero-services-summary.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

.summary-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-muted-gold);
    padding-bottom: 1rem;
}

.btn-close-services {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--color-charcoal);
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .btn-close-services:hover {
        transform: rotate(90deg);
        color: var(--color-rose-accent);
    }

.summary-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--color-charcoal);
    margin-bottom: 0;
    font-weight: 800;
    border-bottom: none;
    padding-bottom: 0;
}

.hero-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

    .hero-service-list li {
        font-family: var(--font-sans);
        font-size: 1.05rem;
        line-height: 1.4;
        font-weight: 600;
        color: var(--color-charcoal);
        display: flex;
        align-items: center;
        gap: 15px;
        transition: transform 0.3s ease, color 0.3s ease;
        cursor: pointer;
    }

        .hero-service-list li:hover {
            transform: translateX(10px);
            color: var(--color-muted-gold);
        }

        .hero-service-list li i {
            color: var(--color-muted-gold);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .hero-service-list li:hover i {
            transform: scale(1.2);
        }

.summary-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-soft-gray);
    margin-top: 0.5rem;
    font-weight: 500;
    line-height: 1.6;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

/* Hero Typography - BLUE & ROSE THEME -> UPDATED TO MODERN */
.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 5vw, 5.5rem); /* K???lt?ld? */
    font-weight: 900; /* Black */
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em; /* Slightly less tight */
    text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
}

/* YEN?: Flexbox ile yan yana getirme */
.title-group {
    display: flex;
    align-items: center; /* Dikey hizalama */
    gap: 15px; /* Aradaki bo?luk */
    flex-wrap: wrap; /* Mobil uyumluluk i?in */
    justify-content: flex-start; /* Sola hizal? */
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    white-space: nowrap;
}

    .title-line:nth-child(1) {
        animation-delay: 0.4s;
    }

    .title-line:nth-child(2) {
        animation-delay: 0.7s;
    }

.title-emphasis {
    font-style: normal;
    font-weight: 900;
    color: var(--color-rose-accent) !important; /* Ensuring matching color here too */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem); /* K???lt?ld? */
    font-weight: 500;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 3.5rem;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
}

.hero-cta-wrapper {
    animation: fadeInUp 1s ease-out 1.3s forwards;
    opacity: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 3rem;
    background: #ffffff; /* ??i beyaz yap?ld? */
    border: 1px solid #ffffff;
    color: var(--color-charcoal);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    border-radius: 2px;
}

    .hero-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--color-stone);
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
        opacity: 0.2;
    }

    .hero-cta:hover {
        border-color: var(--color-stone);
        color: var(--color-charcoal);
        background: var(--color-stone);
        transform: translateY(-3px);
    }

        .hero-cta:hover::before {
            left: 0;
        }

.cta-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-cta:hover .cta-arrow {
    transform: translateX(5px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-line {
    width: 2px;
    height: 70px;
    background: linear-gradient( to bottom, transparent, #FFFFFF, transparent );
    animation: scrollPulse 2.5s infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500; /* Medium */
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.4); /* Hafif shadow */
}

/* === RESPONSIVE HERO === */
@media (max-width: 1200px) {
    .hero-composition {
        grid-template-columns: repeat(12, 1fr);
        column-gap: 1.5rem;
    }

    .hero-content-wrapper {
        grid-column: 1 / span 7;
    }

    .hero-services-summary {
        grid-column: 9 / span 3;
        padding: 2.5rem;
    }

    .hero-service-list li {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .ourway-hero {
        height: auto;
        min-height: 100vh;
        padding: 140px 0 100px;
    }

    .hero-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 5%;
        gap: 3rem;
    }

    .hero-content-wrapper {
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-services-summary {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        padding: 2rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }

    .hero-logo-anim {
        width: 80vw;
        opacity: 0.15;
    }
}

@media (max-width: 768px) {
    .ourway-hero {
        min-height: 100vh;
        padding: 120px 0 80px;
    }

    .hero-composition {
        padding: 20px 5%;
        gap: 2rem;
    }

    .hero-services-summary {
        padding: 1.5rem;
    }

    .hero-service-list li {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-composition {
        padding: 20px 1rem;
    }

    .hero-services-summary {
        padding: 1.5rem;
    }

    .hero-service-list li {
        font-size: 0.9rem;
        gap: 8px;
    }

    .hero-title {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }

    .hero-subtitle {
        font-size: clamp(0.75rem, 3.5vw, 1rem);
        white-space: nowrap;
    }

    .btn-reveal-services {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
}

/* === SECTION STYLES === */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem; /* Increased */
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-taupe-gray); /* Replaced Blue */
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-rose-accent); /* Updated to Pink for headings */
}

/* === PROCESS SECTION === */
.process-section {
    padding: var(--section-padding) 0;
    background-color: var(--color-ivory);
    position: relative;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(50, 50, 50, 0.03) 100%); /* Updated to Gray Gradient */
}

.process-list {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 4rem auto 0;
    gap: 0;
    position: relative;
}

    .process-list::before {
        display: none; /* ?izgi kald?r?ld? */
    }

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    transition: all 0.5s ease;
}

.process-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.4rem;
}

.process-number {
    display: none;
}

.process-dot {
    width: 16px;
    height: 16px;
    background: transparent;
    border: 2px solid var(--color-rose-accent);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(231, 152, 173, 0.3);
    transition: all 0.4s ease;
}

.process-content {
    flex: 1;
}

.process-step-title {
    font-family: var(--font-sans);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.process-step-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-soft-gray);
    line-height: 1.6;
    max-width: 600px;
}

.process-item:hover .process-step-title {
    color: var(--color-rose-accent); /* Replaced Blue */
    transform: translateX(10px);
}

.process-item:hover .process-dot {
    background: var(--color-rose-accent);
    transform: rotate(225deg) scale(1.3);
    box-shadow: 0 0 20px var(--color-rose-accent);
}

@media (max-width: 768px) {
    .process-item {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .process-list::before {
        display: none;
    }

    .process-number {
        display: none;
    }

    .process-step-title {
        font-size: 1.4rem;
    }
}

/* === MANIFESTO SECTION === */
.manifesto-section {
    padding: var(--section-padding) 0;
    background: var(--color-stone);
}

.manifesto-quote {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.6;
    color: var(--color-charcoal);
    font-style: normal;
    margin-bottom: 2rem;
}

.manifesto-author {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--color-soft-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.how-we-work-minimal .section-label {
    letter-spacing: 5px;
    color: var(--color-charcoal);
    font-size: 1.1rem; /* Increased size for visibility */
    font-weight: 700;
    text-transform: uppercase;
}

.work-principles-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .work-principles-grid {
        flex-direction: row;
        align-items: stretch;
        gap: 3rem;
    }
}

.work-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.work-icon {
    font-family: var(--font-sans);
    font-size: 4rem; /* Daha b?y?k ve dikkat ?ekici */
    font-weight: 900;
    color: var(--color-rose-accent); /* #9f5276 rengine ba?land? */
    line-height: 1;
    opacity: 0.8;
}

.work-text {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin: 0;
    text-align: center;
}

.work-divider {
    width: 1px;
    height: auto;
    min-height: 80px;
    background: var(--color-charcoal);
    opacity: 0.15;
    align-self: center;
}

/* === STORIES SECTION === */
.stories-section {
    padding: var(--section-padding) 0;
    background: var(--color-champagne); /* New BG */
    position: relative;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 4vw;
    margin: 0 auto;
    max-width: 1600px;
}

@media (min-width: 1200px) {
    .story-large {
        grid-column: span 2;
    }
}

.story-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    background: var(--color-stone);
    transition: transform 0.5s ease;
}

    .story-item:hover {
        transform: translateY(-5px);
    }

.story-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--color-stone);
}

.story-large .story-card {
    /* min-height: 650px; kald?r?ld?, i?erik belirleyecek */
}

.story-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px; /* Sabit y?kseklik verildi */
    overflow: hidden;
}

.story-large .story-image-wrapper {
    height: 500px; /* B?y?k kartlar i?in daha y?ksek */
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-card:hover .story-image {
    transform: scale(1.08);
}

/* YEN?: Foto?raf alt? i?erik band? */
.story-content-band {
    padding: 2.5rem;
    background: #ffffff; /* Beyaz arkaplan */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-top: 3px solid var(--color-rose-accent); /* ?stte ince pembe ?izgi */
    transition: background-color 0.4s ease;
}

.story-card:hover .story-content-band {
    background: #fafafa;
}

.story-category {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-rose-accent);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.story-title {
    font-family: var(--font-sans);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-charcoal); /* Beyazdan koyu griye ?evrildi */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.story-description {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-soft-gray); /* Beyazdan griye ?evrildi */
    margin-bottom: 2rem;
    font-weight: 500;
    flex-grow: 1; /* Butonu alta itmek i?in */
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-charcoal); /* Beyazdan koyu griye ?evrildi */
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
    transition: all 0.3s ease;
    align-self: flex-start; /* Sola hizala */
    font-weight: 700;
}

    .story-link:hover {
        color: var(--color-rose-accent); /* Replaced Blue */
        border-color: var(--color-rose-accent);
    }

    .story-link i {
        transition: transform 0.3s ease;
    }

    .story-link:hover i {
        transform: translateX(8px);
    }

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .story-title {
        font-size: 1.75rem;
    }
}

/* === EDITORIAL SERVICES SECTION === */
.editorial-services {
    padding: var(--section-padding) 0;
    background-color: var(--color-stone);
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 4vw;
}

.editorial-content {
    grid-column: 2 / 12;
}

.editorial-header {
    text-align: center;
    margin-bottom: 8rem;
}

.editorial-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-taupe-gray); /* Replaced Blue */
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.editorial-title {
    font-family: var(--font-sans);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-charcoal);
}

.editorial-subtitle {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-rose-accent);
    letter-spacing: 1px;
    margin-top: 1rem;
    font-style: italic;
}

.service-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-editorial-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    cursor: none;
}

    .service-editorial-item:last-child {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .service-editorial-item:hover {
        padding-left: 3rem;
        background: rgba(245, 245, 245, 0.4);
    }

.service-text-group {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.service-name {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
    transition: color 0.4s ease, transform 0.4s ease;
    display: block;
}

.service-editorial-item:hover .service-name {
    font-style: normal;
    transform: translateX(10px);
}

.service-poetic {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-soft-gray);
    transition: all 0.4s ease;
    max-width: 80%;
}

.service-editorial-item:hover .service-poetic {
    color: var(--color-charcoal);
    transform: translateX(10px);
}

.service-reveal-img {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    width: 300px;
    height: 200px;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    filter: brightness(0.9) contrast(1.1);
}

.service-editorial-item:hover .service-reveal-img {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(2deg);
}

@media (max-width: 992px) {
    .editorial-content {
        grid-column: 2 / 12;
    }

    .service-editorial-item {
        padding: 3rem 0;
    }

        .service-editorial-item:hover {
            padding-left: 0;
            background: transparent;
        }

            .service-editorial-item:hover .service-name {
                font-style: normal;
                transform: none;
            }

            .service-editorial-item:hover .service-poetic {
                color: var(--color-soft-gray);
                transform: none;
            }

    .service-reveal-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .editorial-grid {
        display: flex;
        flex-direction: column;
        padding: 0 1rem;
    }

    .editorial-services {
        padding: 80px 0;
    }

    .editorial-title {
        font-size: 2.5rem;
    }

    .service-name {
        font-size: 1.75rem;
    }

    .service-editorial-item {
        padding: 2.5rem 0;
    }
}

/* === JOURNEY SECTION === */
.journey-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to right, #F5F5F5, #EAEAEA); /* Updated to Grey Gradient as requested */
}

.journey-content {
    padding-right: 4rem;
}

@media (max-width: 992px) {
    .journey-content {
        padding-right: 0;
        text-align: center;
    }
}

.journey-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-soft-gray);
    margin-bottom: 2.5rem;
}

.journey-image {
    position: relative;
    overflow: hidden;
    height: 500px;
}

    .journey-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.luxury-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--color-charcoal);
    color: var(--color-charcoal); /* Syntax corrected from var,--color-charcoal) */
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.95rem; /* Larger font */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

/* Ana sayfadaki journey section i?indeki butonu beyaz yapal?m */
.journey-section .luxury-cta {
    background-color: var(--color-stone); /* Beyaz Arkaplan */
    border-color: var(--color-stone);
    color: var(--color-charcoal) !important; /* Syntax hatas? d?zeltildi, koyu yaz? */
}

    .journey-section .luxury-cta:hover {
        background-color: var(--color-rose-accent);
        border-color: var(--color-rose-accent);
        color: var(--color-stone);
    }

/* === FOOTER - DARK GRAY BACKGROUND === */
.luxury-footer {
    background: var(--color-footer);
    color: #FFFFFF;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    font-style: normal;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

    .footer-social a {
        color: #FFFFFF !important;
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

        .footer-social a:hover {
            color: var(--color-muted-gold) !important;
        }

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-legal-link:hover {
        color: var(--color-muted-gold);
    }

/* === ANIMATIONS === */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .reveal-fade-up.revealed {
        opacity: 1;
        transform: translateY(0);
    }

/* === CONTACT FORMS & MODALS === */
.contact-info-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.4s ease;
}

    .contact-info-card:hover {
        transform: translateY(-10px);
    }

    .contact-info-card i {
        display: block;
        font-size: 3rem;
        color: var(--color-rose-accent);
        margin-bottom: 1.5rem;
    }

    .contact-info-card h5 {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

/* Smart Form */
.smart-form-container {
    background: white;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 5rem auto 5rem; /* Negatif margin kald?r?ld?: -100px -> 5rem */
    position: relative;
    z-index: 10;
    border-top: 3px solid var(--color-rose-accent); /* Replaced Blue */
}

@media (max-width: 768px) {
    .smart-form-container {
        padding: 2rem;
        margin: 3rem 1rem 3rem; /* Mobile margin d?zeltildi */
    }
}

@media (max-width: 576px) {
    .smart-form-container {
        padding: 1.5rem;
        margin: 2rem 1rem 2rem;
    }
}

/* Form Step Indicators - Layout d?zeltmesi */
.form-step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-warm-beige);
    padding-bottom: 1rem;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s ease;
}

    .step-indicator.active {
        opacity: 1;
        transform: scale(1.1);
    }

/* Form Steps Visibility */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

    .form-step.active {
        display: block;
    }

/* Project Modal */
.luxury-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

    .luxury-modal.active {
        display: flex;
        opacity: 1;
    }

.luxury-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 43, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.modal-content-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 85vh;
    background: #e5e5e5;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-modal.active .modal-content-wrapper {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease;
}

    .modal-close-btn:hover {
        transform: rotate(90deg);
    }

.close-line {
    width: 25px;
    height: 2px;
    background-color: var(--color-charcoal);
    display: block;
    position: absolute;
    transition: background-color 0.3s ease;
}

    .close-line:first-child {
        transform: rotate(45deg);
    }

    .close-line:last-child {
        transform: rotate(-45deg);
    }

.modal-body {
    display: flex;
    height: 100%;
    width: 100%;
}

.modal-image-col {
    width: 55%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modal-img-container {
    width: 100%;
    height: 100%;
}

    .modal-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.modal-text-col {
    width: 45%;
    padding: 6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #e5e5e5;
    overflow-y: auto;
}

.modal-scroll-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .modal-content-wrapper {
        height: 90vh;
        width: 95%;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image-col {
        width: 100%;
        height: 35%;
        min-height: 250px;
    }

    .modal-text-col {
        width: 100%;
        height: 65%;
        padding: 2rem;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .modal-scroll-content {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }

    #modal-title {
        font-size: 2rem !important;
    }

    .modal-close-btn {
        top: 1rem;
        right: 1rem;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
}

@media (max-width: 576px) {
    .modal-content-wrapper {
        height: 100vh;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }

    .modal-image-col {
        height: 30%;
        min-height: 200px;
    }

    .modal-text-col {
        height: 70%;
        padding: 1.5rem;
        padding-bottom: 3rem;
    }

    #modal-title {
        font-size: 1.5rem !important;
    }

    .modal-close-btn {
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* Cookie Consent */
.cookie-consent-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background-color: var(--color-stone);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--color-muted-gold); /* Replaced Blue with Gold for classic feel */
    padding: 1.25rem 2rem;
    z-index: 999;
    animation: cookieFade 0.6s ease-out forwards;
}

@keyframes cookieFade {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* === MOBILE & TOUCH OPTIMIZATIONS === */
@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    body {
        background-attachment: scroll !important;
    }

    .service-editorial-item {
        cursor: auto !important;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .luxury-nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 60px;
    }

    .luxury-nav-menu {
        gap: 1rem;
    }

    .footer-social {
        gap: 1.5rem;
    }
}

/* === CONTACT PAGE SPECIFIC STYLES === */
/* Ensure contact page uses same vibrant palette */
.luxury-hero .hero-text-wrapper h1 {
    color: var(--color-stone) !important; /* Make hero text white on contact page if banner is dark, or gold if light. Assuming dark banner overlay: white is safer, or vibrant gold */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.contact-info-card i {
    color: var(--color-accent-vibrant);
}

.smart-form-container {
    border-top: 3px solid var(--color-muted-gold);
}

.step-indicator.active span {
    color: var(--color-muted-gold);
    font-weight: 600;
}

.step-indicator.active small {
    color: var(--color-charcoal);
}

/* === HERO MANIFESTO LINE === */
.hero-manifesto-line {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    opacity: 0;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.4);
}

/* === PROCESS MANIFESTO LINE === */
.process-manifesto-line {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-rose-accent);
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto;
}

/* === PROCESS MANIFESTO LINE (ENGLISH) === */
.process-manifesto-line-en {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* === STORY SIGNATURE BADGE === */
.story-signature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-rose-accent);
    background: rgba(159, 82, 118, 0.08);
    border: 1px solid rgba(159, 82, 118, 0.2);
    padding: 0.4rem 0.85rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

    .story-signature-badge i {
        font-size: 0.7rem;
    }

/* === STORY PROOF TOGGLE BUTTON === */
.btn-toggle-proof {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid rgba(159, 82, 118, 0.2);
    padding: 0.4rem 0.85rem;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-rose-accent);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

    .btn-toggle-proof:hover {
        background: rgba(159, 82, 118, 0.06);
    }

    .btn-toggle-proof i {
        font-size: 0.65rem;
        transition: transform 0.3s ease;
    }

    .btn-toggle-proof.active i {
        transform: rotate(180deg);
    }

/* === STORY PROOF DETAILS (Inline Category Proof) === */
.story-proof-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.25rem;
    background: rgba(159, 82, 118, 0.03);
    border-left: 2px solid rgba(159, 82, 118, 0.2);
    border-radius: 0 4px 4px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-bottom: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, margin-bottom 0.4s ease;
}

    .story-proof-details.expanded {
        max-height: 600px;
        opacity: 1;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

.story-proof-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.story-proof-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-rose-accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .story-proof-label i {
        font-size: 0.75rem;
    }

.story-proof-text {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-soft-gray);
    margin: 0;
}

/* === FOOTER SIGNATURE QUOTE === */
.footer-signature-quote {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

/* === WIZARD PREMIUM TEXT === */
.wizard-premium-intro {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-rose-accent);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(159, 82, 118, 0.15);
}

.wizard-premium-closing {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-soft-gray);
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}


.luxury-nav-menu li a.btn-cta-nav {
    background-color: #9f5276 !important;
    color: #ffffff !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 2px;
    border: 1px solid #9f5276;
}
    .luxury-nav-menu li a.btn-cta-nav:hover {
        background-color: transparent !important;
        color: #9f5276 !important;
    }

/* === BTN ELEGANT === */
.btn-elegant {
    background-color: var(--color-rose-accent);
    color: #fff;
    border: 1px solid var(--color-rose-accent);
    padding: 0.5rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer !important;
    transition: all 0.3s ease;
}

    .btn-elegant:hover {
        background-color: transparent;
        color: var(--color-rose-accent);
    }

/* === COOKIE CONSENT CURSOR FIX === */
.cookie-consent-bar,
.cookie-consent-bar * {
    cursor: auto !important;
}

.cookie-consent-bar a {
    cursor: pointer !important;
}

.cookie-consent-bar .btn-elegant {
    cursor: pointer !important;
}

/* === LEGAL PAGES - KVKK & COOKIE POLICY === */
.legal-page-container {
    padding-top: 200px;
    padding-bottom: 80px;
    background: var(--color-ivory);
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-rose-accent);
}

.legal-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-rose-accent);
    background: rgba(159, 82, 118, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.legal-title {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--color-charcoal);
    line-height: 1.3;
    margin-bottom: 0;
}

.legal-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-soft-gray);
    margin-top: 0.75rem;
}

/* Language Tab Switcher */
.legal-lang-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--color-warm-beige);
}

.legal-lang-tab {
    padding: 0.75rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-soft-gray);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer !important;
    transition: all 0.3s ease;
}

    .legal-lang-tab:hover {
        color: var(--color-charcoal);
    }

    .legal-lang-tab.active {
        color: var(--color-rose-accent);
        border-bottom-color: var(--color-rose-accent);
    }

.legal-lang-content {
    display: none;
}

    .legal-lang-content.active {
        display: block;
        animation: fadeIn 0.4s ease-out;
    }

/* Legal Content Styles */
.legal-content {
    background: #fff;
    border-radius: 4px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-top: 3px solid var(--color-rose-accent);
}

.legal-section {
    margin-bottom: 2rem;
}

    .legal-section:last-child {
        margin-bottom: 0;
    }

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-soft-gray);
    margin-bottom: 1rem;
}

.legal-section .section-heading {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.legal-section .section-heading::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-rose-accent);
}

.legal-highlight {
    background: rgba(159, 82, 118, 0.04);
    border-left: 3px solid var(--color-rose-accent);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

    .legal-highlight p {
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
    }

    .legal-highlight p:last-child {
        margin-bottom: 0;
    }

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

    .legal-list li {
        position: relative;
        padding: 0.5rem 0 0.5rem 1.5rem;
        font-size: 0.9rem;
        line-height: 1.6;
        color: var(--color-soft-gray);
        border-bottom: 1px solid rgba(0,0,0,0.03);
    }

    .legal-list li:last-child {
        border-bottom: none;
    }

    .legal-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 1rem;
        width: 6px;
        height: 6px;
        background: var(--color-rose-accent);
        border-radius: 50%;
    }

.legal-link {
    color: var(--color-rose-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(159, 82, 118, 0.3);
    transition: all 0.3s ease;
}

    .legal-link:hover {
        color: var(--color-charcoal);
        border-bottom-color: var(--color-charcoal);
    }

.legal-intro {
    font-size: 1.05rem !important;
    font-weight: 500;
    color: var(--color-charcoal) !important;
}

.editorial-divider-line {
    width: 60px;
    height: 2px;
    background: var(--color-rose-accent);
    margin: 2rem 0;
}

/* Legal page responsive */
@media (max-width: 768px) {
    .legal-page-container {
        padding-top: 160px;
        padding-bottom: 60px;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-wrapper {
        padding: 0 1rem;
    }

    .legal-lang-tab {
        padding: 0.6rem 1.25rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }

    .legal-highlight {
        padding: 1rem 1.25rem;
    }
}