/* ==========================================================================
   FORZA ÇELİK KAPI - PREMIUM LÜKS STİL DOSYASI (Midnight Blue & Bronze)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

/* Genel Ayarlar & Typography */
html, body {
    overflow-x: hidden;
}
body {
    font-family: 'Josefin Sans', sans-serif;
    background-color: #F8FAFC; /* Lüks açık zemin */
    color: #1a1a1a; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}

.navbar-brand, .btn {
    font-family: 'Cinzel', serif;
}
.nav-link {
    font-family: 'Josefin Sans', sans-serif;
}

/* Özel Scrollbar (Kaydırma Çubuğu) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1A1A24; 
}
::-webkit-scrollbar-thumb {
    background: #C5A059; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a88546; 
}

/* Renk Paleti ve Değişkenler */
:root {
    --primary-color: #334155;      /* Deep Slate (Endüstriyel Koyu) */
    --accent-color: #EA580C;       /* Safety Orange (Lüks Vurgu) */
    --accent-hover: #C2410C;       /* Vurgu Hover */
    --bg-light: #F8FAFC;           /* Açık Gri */
    --text-muted: #64748B;         /* Endüstriyel Gri Metin */
}

/* ==========================================================================
   Global Utilities & Özel Sınıflar
   ========================================================================== */
.text-primary-theme { color: var(--primary-color) !important; }
.text-accent-theme { color: var(--accent-color) !important; }
.bg-primary-theme { background-color: var(--primary-color) !important; }
.bg-accent-theme { background-color: var(--accent-color) !important; }

/* Yumuşak Lüks Gölge */
.premium-shadow {
    box-shadow: 0 15px 35px rgba(26, 26, 36, 0.08) !important;
}

/* Yukarı Kaldırma Animasyonu */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 26, 36, 0.12) !important;
}

/* Resim Taşırmadan Büyütme (Hover Zoom) */
.hover-zoom-container {
    overflow: hidden;
}
.hover-zoom {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-zoom-container:hover .hover-zoom {
    transform: scale(1.05);
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 15px auto;
}
.gold-divider.left {
    margin: 15px 0;
}

/* Lüks Gradyan Arka Plan */
.hero-gradient-overlay {
    background: radial-gradient(circle at 50% 50%, rgba(51, 65, 85, 0.5) 0%, rgba(30, 41, 59, 0.9) 100%);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

/* ==========================================================================
   Topbar & Navbar (Transparent to Dark)
   ========================================================================== */
.topbar {
    background-color: #111118; /* Çok koyu antrasit */
    font-size: 0.8rem;
    padding: 10px 0;
    color: #cccccc;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}
.topbar a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}
.topbar-socials a:hover {
    color: #fff;
}

/* ══════════════════════════════════════
   DYNAMIC TOPBAR MARQUEE
   ══════════════════════════════════════ */
.topbar-marquee-wrapper {
    background: #000;
    color: #d4af37;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    padding-left: 100%; /* Start off-screen right */
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-block;
    margin-right: 50px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.topbar a:hover {
    color: var(--accent-color);
}


/* Navbar Başlangıcı (Minimalist Beyaz) */
.navbar-main {
    background-color: #ffffff !important;
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 1000 !important;
}
.navbar-main.navbar-inner {
    position: relative !important;
}
.navbar-main .navbar-brand {
    color: var(--primary-color) !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
}
.navbar-main .nav-link {
    color: #444444 !important;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.5rem;
    transition: color 0.3s ease;
}
.navbar-main .nav-link:hover, .navbar-main .nav-link.active {
    color: var(--primary-color) !important;
}

/* Scroll Olduğunda Navbar (Glassmorphism) */
.navbar-main.scrolled {
    background-color: transparent !important;
    padding: 15px 0 !important;
    box-shadow: 0 10px 30px rgba(51, 65, 85, 0.1) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

/* Offcanvas menünün scroll durumunda bozulmaması için (backdrop-filter bug fix) */
.navbar-main.scrolled::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    z-index: -1;
}

.navbar-main.navbar-inner.scrolled {
    background-color: transparent !important;
}
.navbar-main.navbar-inner.scrolled::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

/* Navbar Hover Dropdown */
@media (min-width: 992px) {
    .navbar-main .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
.navbar-main .dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.navbar-main.navbar-inner .dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}
.navbar-main .dropdown-item {
    color: #444444 !important;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.navbar-main.navbar-inner .dropdown-item {
    color: #444444 !important;
    font-weight: 500;
}
.navbar-main .dropdown-item:hover {
    background-color: #f9f9f9;
    color: var(--accent-color) !important;
}
.navbar-main.navbar-inner .dropdown-item:hover {
    background-color: #f9f9f9;
    color: var(--accent-color) !important;
}

/* ==========================================================================
   Premium Butonlar (Minimalist Solid & Glow)
   ========================================================================== */
.btn-premium {
    background: linear-gradient(135deg, var(--primary-color), #1E293B);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 14px 40px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(51, 65, 85, 0.4);
}
.btn-premium:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.5);
    transform: translateY(-2px);
}

.btn-outline-premium {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 1px solid #dddddd;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 14px 40px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.4s ease;
}
.btn-outline-premium:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* ==========================================================================
   Hero Banner & Güven Rozetleri
   ========================================================================== */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 1;
    background-attachment: fixed; /* Parallax Kaydırma */
}

.hero-doors-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: row;
    z-index: -2;
}

.hero-door {
    flex: 1;
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Hafif karartma, boylece kapi gorunur ama yazilar da okunur */
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Mobil Uyum (Responsive) - Çift Kapı */
@media (max-width: 768px) {
    /* Mobilde ekran dikey oldugu icin tek kapi tam sigar, cift kapi daralir. 
       Bu yuzden mobilde ikinci kapiyi gizleyip ilkini ortalayacagiz. */
    .hero-door:nth-child(2) {
        display: none;
    }
    .hero-door {
        background-size: cover; /* Mobilde tam ekrani kaplasin */
        opacity: 1; /* Görseller net olsun diye opacity 1 yapildi */
    }
    .hero-banner {
        min-height: 100vh;
    }
    .display-3 {
        font-size: 2.5rem !important;
    }
    h1, h2 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .hero-content {
        padding: 60px 15px !important;
    }
}

/* Güven Rozetleri (Banner Altına Taşmalı) */
.trust-badges-wrapper {
    position: relative;
    margin-top: -25px; /* Banner içine daha az binmesi için (kullanıcı talebiyle aşağı çekildi) */
    z-index: 10;
}
.trust-badge-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(26, 26, 36, 0.1);
    height: 100%;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}
.trust-badge-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--accent-color);
}
.trust-badge-card i {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.trust-badge-card h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================================================
   Ürün Kartları (Çerçevesiz Lüks)
   ========================================================================== */
.product-card-luxury {
    background: transparent;
    border: none;
    text-align: center;
    padding: 10px;
    transition: all 0.4s ease;
    cursor: pointer;
}
.product-card-luxury .img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}
.product-card-luxury img {
    width: 100%;
    height: 450px;
    object-fit: contain; /* Kapının tam görünmesi için */
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card-luxury:hover {
    box-shadow: 0 20px 40px rgba(51, 65, 85, 0.15), 0 0 20px rgba(234, 88, 12, 0.2);
    background: #fff;
    border-radius: 8px;
    transform: translateY(-5px);
}
.product-card-luxury:hover img {
    transform: scale(1.06);
}
.product-card-luxury .card-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.product-card-luxury .card-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
}
.product-card-luxury:hover .card-link {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

/* ==========================================================================
   Modern Footer (4 Kolon, Gece Mavisi)
   ========================================================================== */
.footer-corporate {
    background-color: var(--primary-color);
    color: #b0b0b0;
    padding-top: 5rem;
    padding-bottom: 2rem;
    font-size: 0.9rem;
}
.footer-corporate h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-size: 1.05rem;
    text-transform: uppercase;
}
.footer-corporate .footer-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    padding: 3px 0;
}
.footer-corporate .footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}
.footer-corporate .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-corporate .social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}
.footer-corporate .cert-icon {
    font-size: 2.5rem;
    color: #555;
    margin-right: 15px;
    transition: color 0.3s;
}
.footer-corporate .cert-icon:hover {
    color: var(--accent-color);
}
.newsletter-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}
.newsletter-input:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-color);
    color: #fff;
    box-shadow: none;
}

/* Scroll To Top */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 35px;
    z-index: 999;
    font-size: 1.2rem;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--accent-color);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}
#scrollToTopBtn:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

/* WhatsApp FAB */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.fab-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}
.fab-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
    animation: none;
}

/* ==========================================================================
   Premium Modules: Kapı Anatomisi (Hotspots)
   ========================================================================== */
.door-anatomy-section {
    background-color: #f5f6f8;
    padding: 6rem 0;
}
.anatomy-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}
.anatomy-image {
    max-height: 800px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    animation: hotspot-pulse 2s infinite;
    z-index: 10;
}
@keyframes hotspot-pulse {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}
.hotspot-tooltip {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    width: max-content;
    max-width: 250px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 11;
    border-bottom: 2px solid var(--accent-color);
    pointer-events: none;
}
.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
}
.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 991.98px) {
    .navbar-main .nav-item .dropdown-menu {
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding-left: 20px;
        margin-top: 0;
    }
    .navbar-main .offcanvas .nav-link {
        color: #111 !important;
        padding: 12px 20px;
        font-size: 1.1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .navbar-main .offcanvas .nav-link:hover,
    .navbar-main .offcanvas .nav-link:active {
        color: var(--accent-color) !important;
        background: rgba(0,0,0,0.02);
    }
    
    .navbar-main .offcanvas .dropdown-item {
        color: #444 !important;
        font-size: 1rem;
        padding: 10px 20px;
    }
    .navbar-main .offcanvas .dropdown-item:hover {
        color: var(--accent-color) !important;
        background: transparent;
    }
}

.cert-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    transition: transform 0.3s ease;
}
.cert-icon:hover {
    transform: scale(1.2);
    color: #fff;
}

/* ==========================================================================
   Premium Modules: Before/After Slider
   ========================================================================== */
.before-after-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6rem 0;
    overflow: hidden;
}
.ba-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    line-height: 0;
}
.ba-slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.img-background {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio Enforced */
}
.img-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-foreground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
}
.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.ba-slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    appearance: none;
    outline: none;
    margin: 0;
    z-index: 20;
    opacity: 0;
    cursor: col-resize;
}
.ba-label {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    background: rgba(26,26,36,0.8);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 5;
    letter-spacing: 1px;
}
.ba-label-before { right: 20px; }
.ba-label-after { left: 20px; }

/* ==========================================================================
   Premium Modules: Corporate Video Showcase
   ========================================================================== */
.video-showcase-section {
    position: relative;
    padding: 10rem 0;
    background-color: var(--primary-color);
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 17, 24, 0.7);
    z-index: 1;
}
.video-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.play-btn-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.play-btn-wrapper:hover {
    transform: scale(1.1);
}
.play-btn {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    padding-left: 5px; /* center the play icon visually */
    position: relative;
    z-index: 2;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.play-ripple {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    animation: ripple 2s infinite linear;
    z-index: 1;
}
@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* ==========================================================================
   Luxury CSS-Only Headers
   ========================================================================== */

.luxury-page-header {
    background: linear-gradient(135deg, #0a0a0f 0%, var(--primary-color) 100%);
    position: relative;
    padding: 6rem 0 4rem;
    margin-bottom: 4rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.5);
}

/* Arka plan deseni için ekstra bir katman */
.luxury-page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 15px);
    z-index: 0;
}

.luxury-page-header::after {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.luxury-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.luxury-header-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.luxury-header-title {
    font-size: 3.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 10px 20px rgba(0,0,0,0.8);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.luxury-header-divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 2rem auto;
    opacity: 0.8;
}

.luxury-breadcrumb {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    display: inline-flex;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

.luxury-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.luxury-breadcrumb .breadcrumb-item a:hover,
.luxury-breadcrumb .breadcrumb-item.active {
    color: var(--accent-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.luxury-breadcrumb .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .luxury-page-header { padding: 4rem 0 2rem; }
    .luxury-header-title { font-size: 2.2rem; }
    .luxury-header-icon { font-size: 2rem; }
}

/* ==========================================================================
   Lüks Kurumsal Intro (Premium Çelik Kapı - Apple/Tesla Stili)
   ========================================================================== */
#cinematic-preloader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: #0B0B0B; /* Tamamen siyah (Arka plan #0B0B0B) */
    z-index: 999999 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    pointer-events: none;
}

/* Kamera kapsayıcısı (3.5sn'de başlayan zoom) */
.cinematic-camera {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    transition: transform 1.3s cubic-bezier(0.4, 0, 0.2, 1); /* Akıcı, sinematik ilerleyiş */
}

.scene-4-zoom .cinematic-camera {
    transform: scale(8); /* Beyaz ışığa derinlemesine dalış */
}

/* Kapı Wrapper - Fade-in */
.cinematic-door-wrapper {
    position: relative;
    width: 35vw;
    height: 75vh;
    opacity: 0; /* 0.4s'de fade-in başlayacak */
    transition: opacity 0.4s ease-in-out; 
    /* Yansıma, çok hafif nefes alma */
    animation: premiumBreathe 6s ease-in-out infinite alternate;
}

.scene-1-fadein .cinematic-door-wrapper {
    opacity: 1; /* 0.8s'de tam görünür */
}

/* Mat Antrasit Kapı Kanatları */
.c-door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #151515; /* İkincil Arka Plan */
    background-image: linear-gradient(135deg, #1d1d20 0%, #0B0B0B 100%);
    box-shadow: inset 0 0 25px rgba(0,0,0,0.9), 0 0 15px rgba(0,0,0,0.6);
    transition: transform 2.0s cubic-bezier(0.25, 0.1, 0.25, 1); /* Hidrolik, ağır açılış */
    z-index: 2;
    overflow: hidden;
}

/* Çelik Fırçalanmış Metal Dokusu ve Yansıma */
.c-door::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0) 45%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0) 55%);
    transform: rotate(20deg);
    animation: premiumReflection 8s infinite linear;
}

/* İnce Rim Light (Kapı kenarlarındaki ışık sızıntısı) */
.c-door::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 5px rgba(255,255,255,0.05);
    z-index: 2;
}

.c-door-left {
    left: 0;
    border-right: 1px solid #000;
}

.c-door-right {
    right: 0;
    border-left: 1px solid #000;
}

.scene-3-open .c-door-left {
    transform: translateX(-95%);
}

.scene-3-open .c-door-right {
    transform: translateX(95%);
}

/* Saf Beyaz Logo */
.c-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 1;
    transition: opacity 1.5s ease;
}

.c-logo-img {
    width: 160px;
    /* Eğer yüklenen logo transparan değilse (JPEG), invert(1) logoyu tamamen beyaz bir kare yapar. Bu yüzden kaldırıldı. */
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.scene-3-open .c-logo-container {
    opacity: 0; /* Kapılar ayrılırken yavaşça kaybolur */
}

/* İçeriden Gelen Sıcak Beyaz Işık (Volümetrik / Bloom) */
.c-bloom-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px; /* Başlangıçta ince sızıntı */
    height: 80vh;
    background-color: #F8F8F8;
    box-shadow: 0 0 50px 10px #F8F8F8, 0 0 120px 60px rgba(248, 248, 248, 0.85);
    opacity: 0;
    z-index: 1;
    transition: opacity 2s ease, width 2.5s ease, height 2s ease;
}

.scene-3-open .c-bloom-light {
    opacity: 1;
    width: 55vw; /* İçeriden gelen güçlü ışık yayılması */
    height: 100vh;
}

/* Sahne 5 - Beyaz Işığın (Ekranın) Kaybolması (Opacity + Blur) */
.scene-5-fadeout {
    opacity: 0 !important;
    transition: opacity 0.8s ease-in-out !important;
}

/* Animasyonlar */
@keyframes premiumBreathe {
    0% { transform: scale(0.99); }
    100% { transform: scale(1.005); }
}

@keyframes premiumReflection {
    0% { transform: translate(-20%, -20%) rotate(20deg); }
    100% { transform: translate(20%, 20%) rotate(20deg); }
}

@media (max-width: 768px) {
    .cinematic-door-wrapper { width: 70vw; height: 50vh; }
    .c-logo-img { width: 100px; }
    .scene-4-zoom .cinematic-camera { transform: scale(15); }
}

/* Prevent scrolling while preloader is active */
body.preloader-active {
    overflow: hidden;
}

/* ==========================================================================
   Pagination (Sayfalama) Özel Tasarım
   ========================================================================== */
.pagination {
    gap: 8px;
}

.pagination .page-item .page-link {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.pagination .page-item:not(.disabled):not(.active) .page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pagination .page-item.active .page-link {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    color: var(--text-muted);
    border-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Sayfa oklarının ikon görünümünü hafifletme */
.pagination .page-item .page-link span {
    font-weight: 500;
}

/* ==========================================================================
   Editorial Page Headers (Minimalist & Light)
   ========================================================================== */
.editorial-page-header {
    padding: 150px 0 80px;
    background-color: #fafafa;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.editorial-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-transform: none; 
}

.editorial-header-divider {
    width: 60px;
    height: 1px;
    background: var(--primary-color);
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .editorial-page-header {
        padding: 120px 0 50px;
    }
    .editorial-header-title {
        font-size: 3rem;
    }
}

.editorial-page-header .luxury-breadcrumb {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    display: inline-flex;
    justify-content: center;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.editorial-page-header .luxury-breadcrumb .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.editorial-page-header .luxury-breadcrumb .breadcrumb-item a:hover {
    color: var(--accent-color);
}

.editorial-page-header .luxury-breadcrumb .breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.editorial-page-header .luxury-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
    font-family: "Font Awesome 6 Free";
    content: "\f105";
    font-weight: 900;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Etkileyici Anahtar (Key) İmleci İptal Edildi - Normal İmleç Kullanılıyor */