/* ========================================================= */
/* --- YANMAZ KAPI SİSTEMLERİ GENEL YAPISI --- */
/* ========================================================= */

.fire-door-section {
    position: relative;
    width: 100%;
    min-height: 580px;
    padding: 100px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.fire-container {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}

.fire-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 680px;
    text-align: left;
}

/* ========================================================= */
/* --- ARKA PLAN VİDEO & KARARTMA KATMANI --- */
/* ========================================================= */

.fire-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.fire-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Masaüstü / Mobil Video Geçişleri */
.fire-bg-video.desktop-video {
    display: block;
}

.fire-bg-video.mobile-video {
    display: none;
}

/* Karartma Perdesi (Soldan Sağa Sabit Degrade) */
.fire-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(12, 22, 33, 0.90) 0%, 
        rgba(12, 22, 33, 0.70) 55%, 
        rgba(12, 22, 33, 0.35) 100%
    );
    z-index: 2;
}

/* ========================================================= */
/* --- METİN VE İÇERİK BİLEŞENLERİ --- */
/* ========================================================= */

.fire-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fire-tagline .tag-line {
    width: 40px;
    height: 2px;
    background-color: #c5a059;
}

.fire-tagline .tag-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #c5a059;
    text-transform: uppercase;
}

.fire-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 20px;
}

.fire-title span {
    color: #c5a059;
    font-style: italic;
}

.fire-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Öne Çıkan Özellikler */
.fire-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 35px;
}

.fire-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 160, 89, 0.35);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.fire-feature-item i {
    color: #c5a059;
    font-size: 14px;
}

/* ========================================================= */
/* --- YANMAZ KAPI İNCELE BUTONU --- */
/* ========================================================= */

.fire-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #c5a059 0%, #a37c3f 100%);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.35);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fire-btn .btn-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.fire-btn .btn-icon i {
    font-size: 12px;
    color: #ffffff;
}

.fire-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #122133;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.fire-btn:hover .btn-icon {
    background-color: #122133;
    transform: translateX(4px);
}

.fire-btn:hover .btn-icon i {
    color: #ffffff;
}

/* ========================================================= */
/* --- ANIMASYONLAR --- */
/* ========================================================= */

.fire-door-section .animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease;
}

.fire-door-section .animate-on-scroll.fade-up {
    transform: translateY(35px);
}

.fire-door-section .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================= */
/* --- MOBİL VE TABLET UYUMLULUK --- */
/* ========================================================= */

@media screen and (max-width: 768px) {
    .fire-bg-video.desktop-video {
        display: none !important;
    }

    .fire-bg-video.mobile-video {
        display: block !important;
    }

    .fire-door-section {
        padding: 60px 0;
        min-height: 500px;
    }

    .fire-video-overlay {
        background: linear-gradient(
            180deg, 
            rgba(12, 22, 33, 0.75) 0%, 
            rgba(12, 22, 33, 0.85) 100%
        );
    }

    .fire-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .fire-desc {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .fire-features-list {
        gap: 10px;
        margin-bottom: 25px;
    }

    .fire-feature-item {
        font-size: 11px;
        padding: 8px 14px;
    }

    .fire-btn {
        width: 100%;
        justify-content: space-between;
        padding: 12px 22px;
        font-size: 11px;
        box-sizing: border-box;
    }
}