/* ==========================================================================
   REGAL BİLGİSAYAR & GÜVENLİK TEKNOLOJİLERİ
   ========================================================================== */

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

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

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================
   HEADER VE MENÜ BÖLÜMÜ
   ========================================== */
.site-header {
    position: relative; /* absolute -> relative olarak değiştirildi */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* JS ile tetiklenen kaydırma animasyonu (Buzlu Cam) */
.site-header.scrolled {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 104, 136, 0.70) !important; 
    backdrop-filter: blur(15px) !important; 
    -webkit-backdrop-filter: blur(15px) !important; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Üst Bar */
.top-bar {
    background-color: #333;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}
.top-bar .container {
    display: flex;
    gap: 20px;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
}

/* Ana Header */
.main-header {
    background-color: #216888;
}
.site-header.scrolled .main-header {
    background-color: transparent !important;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap; 
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.site-logo a { 
    display: block; 
    text-decoration: none; 
}
.site-logo a img {
    width: auto;
    height: 55px; 
    max-width: 220px; 
    object-fit: contain; 
    display: block;
    transition: transform 0.2s ease;
}
.site-logo a img:hover { 
    transform: scale(1.02); 
}

/* Masaüstü Menü */
.nav-menu {
    list-style: none;
    display: flex;
}
.nav-item { 
    position: relative; 
}
.nav-item a {
    display: block;
    padding: 20px;
    color: #ffffff; 
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}
.nav-item a:hover { 
    color: #afcb1f; 
}

/* Alt Menü */
.sub-menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #216888;
    list-style: none;
    min-width: 200px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
    z-index: 999;
}
.sub-menu .nav-item a {
    padding: 12px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-item:hover .sub-menu { 
    display: block; 
}

/* Mobil Buton */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
}

.section-title {
    font-size: 32px;
    color: #216888; /* Kurumsal Mavi */
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-transform: uppercase; /* Başlıkları büyük harf yapar */
    letter-spacing: 0.5px;
}

/* Başlığın altındaki ortalanmış kurumsal yeşil çizgi */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: #afcb1f; /* Kurumsal Yeşil */
    border-radius: 2px;
}

/* Koyu Arka Planlar Üzerindeki Başlık Ayarı */
.section-title.text-white {
    color: #ffffff !important; /* Yazıyı tamamen beyaz yapar */
}

/* Koyu arka plandaki başlığın altındaki çizgi ayarı */
.section-title.text-white::after {
    background-color: #afcb1f; /* Çizgi yine kurumsal yeşil kalır veya istersen #ffffff yapabilirsin */
}

/* ==========================================
   ANA SAYFA GÖRSELİ
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* BOŞLUK YOK */
    margin-top: 0 !important; 
    padding-top: 0 !important; 
    overflow: hidden !important;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 70, 93, 0.85) 0%, rgba(33, 104, 136, 0.85) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 30px 20px; /* padding-top 105px'ten düşürüldü */
}
.hero-content h1, 
.hero-content p {
    margin: 0 !important;
}
.hero-content h1 { 
    font-size: 36px; 
    letter-spacing: 1px; 
    margin-bottom: 15px; 
}
.hero-content p { 
    font-size: 18px; 
    color: #e0e0e0; 
    margin-bottom: 30px; 
}
.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #afcb1f; 
    color: #16465d;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.hero-btn:hover {
    background-color: #ffffff;
    color: #216888;
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

/* ==========================================
   BİZ KİMİZ / GİRİŞ & HİZMETLER
   ========================================== */
.about-welcome-section { 
    padding: 60px 0; 
    background-color: #ffffff; 
}
.about-welcome-flex { 
    display: flex; 
    align-items: center; 
    gap: 50px; 
}
.about-welcome-image {
    flex: 1; 
    min-width: 300px; 
    max-width: 500px; 
    height: 550px; 
    overflow: hidden; 
    border-radius: 8px; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.about-welcome-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}
.about-welcome-text { 
    flex: 1; 
    min-width: 300px; 
}
.about-welcome-text .sub-title { 
    font-size: 14px; 
    font-weight: bold; 
    color: #afcb1f; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    display: block; 
    margin-bottom: 10px; 
}
.about-welcome-text h2 { 
    font-size: 32px; 
    color: #216888; 
    margin-bottom: 20px; 
    font-weight: bold; 
    line-height: 1.3; 
}
.about-welcome-text p { 
    font-size: 15px; 
    color: #555; 
    line-height: 1.7; 
    margin-bottom: 15px; 
}

/* Hizmetler */
.services-section { 
    padding: 60px 0; 
    background-color: #f9f9f9; 
}
.services-grid { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
}
.service-card { 
    background: #ffffff; 
    flex: 1; 
    min-width: 250px; 
    padding: 30px 20px; 
    border-radius: 6px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    text-align: center; 
    border-top: 3px solid #216888; 
    transition: transform 0.3s ease; 
}
.service-card:hover { 
    transform: translateY(-5px); 
    border-top-color: #afcb1f; 
}
.card-icon { 
    font-size: 40px; 
    margin-bottom: 15px; 
}
.service-card h3 { 
    font-size: 19px; 
    color: #333; 
    margin-bottom: 12px; 
}
.service-card p { 
    font-size: 14px; 
    color: #666; 
    line-height: 1.5; 
    margin-bottom: 20px; 
}
.service-card a { 
    color: #216888; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 14px; 
}
.service-card a:hover { 
    color: #afcb1f; 
}

/* Neden Biz */
.why-us-section { 
    padding: 60px 0; 
    background-color: #16465d; 
}
.why-grid { 
    display: flex; 
    gap: 30px; 
    flex-wrap: wrap; 
}
.why-box { 
    flex: 1; 
    min-width: 280px; 
    color: #e0e0e0; 
}
.why-box h4 { 
    font-size: 18px; 
    color: #afcb1f; 
    margin-bottom: 10px; 
}
.why-box p { 
    font-size: 14px; 
    line-height: 1.6; 
}

/* Hızlı İletişim Bandı */
.quick-contact-bar { 
    background-color: #afcb1f; 
    padding: 20px 0; 
    margin: 0; 
}
.contact-bar-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 15px; 
}
.quick-contact-bar p { 
    font-size: 18px; 
    font-weight: bold; 
    color: #16465d; 
    margin: 0; 
}
.contact-bar-btn { 
    display: inline-block; 
    padding: 10px 25px; 
    background-color: #16465d; 
    color: #ffffff; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 4px; 
}

/* ==========================================
   BİZ KİMİZ / DEĞERLER / KALİTE ORTAK YAPISI
   ========================================== */
.about-vertical-wrapper, 
.values-vertical-wrapper, 
.quality-vertical-wrapper {
    display: flex; 
    flex-direction: column; 
    gap: 50px; 
    margin-top: 20px;
    width: 100%; 
    max-width: 1200px; 
    margin-left: auto; 
    margin-right: auto; 
    padding: 0 20px;
}
.about-image-block, 
.values-image-block, 
.quality-image-block {
    width: 100%; 
    height: 450px; 
    overflow: hidden; 
    border-radius: 8px; 
    box-shadow: 0px 5px 20px rgba(0,0,0,0.07);
}
.about-image-block img, 
.values-image-block img, 
.quality-image-block img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}
.about-content-block h2, 
.values-intro-block h2, 
.quality-intro-block h2 { 
    font-size: 32px; 
    color: #216888; 
    margin-bottom: 20px; 
}
.about-content-block p, 
.values-intro-block p, 
.quality-intro-block p { 
    font-size: 16px; 
    color: #555555; 
    line-height: 1.8; 
    margin-bottom: 15px; 
}

.mission-vision-container { 
    display: flex; 
    gap: 30px; 
    flex-wrap: wrap; 
}
.mv-box { 
    flex: 1; 
    min-width: 280px; 
    background-color: #f8f9fa; 
    padding: 30px; 
    border-radius: 8px; 
    border-top: 4px solid #afcb1f; 
    box-shadow: 0px 2px 10px rgba(0,0,0,0.03); 
}
.mv-box h3 { 
    font-size: 22px; 
    color: #216888; 
    margin-bottom: 15px; 
}

.expert-team-section h2 { 
    font-size: 28px; 
    color: #216888; 
    margin-bottom: 30px; 
    text-align: center; 
}
.expert-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}
.expert-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    background-color: #ffffff; 
    padding: 15px 20px; 
    border-radius: 6px; 
    border: 1px solid #eeeeee; 
    transition: background-color 0.3s ease; 
}
.expert-item:hover { 
    background-color: rgba(33, 104, 136, 0.03); 
}
.expert-check { 
    color: #afcb1f; 
    font-weight: bold; 
    font-size: 18px; 
    line-height: 1; 
}

.values-grid, 
.quality-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); 
    gap: 25px; 
    margin-bottom: 30px; 
}
.value-card, 
.quality-card { 
    background-color: #ffffff; 
    border: 1px solid #eef2f5; 
    border-left: 4px solid #216888; 
    padding: 25px; 
    border-radius: 6px; 
    box-shadow: 0px 2px 8px rgba(0,0,0,0.02); 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}
.value-card:hover, 
.quality-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0px 5px 15px rgba(0,0,0,0.05); 
    border-left-color: #afcb1f; 
}
.value-header, 
.quality-header { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 15px; 
}
.value-icon, 
.quality-icon { 
    font-size: 24px; 
    line-height: 1; 
}
.value-card h3, 
.quality-card h3 { 
    font-size: 20px; 
    color: #333333; 
    font-weight: 600; 
}
/* ==========================================
    FOOTER
   ========================================== */
.site-footer { 
    background-color: #1a1a1a; 
    color: #e0e0e0; 
    padding: 40px 0 0 0; 
    margin-top: 0; 
    font-size: 15px; 
}
.footer-flex { 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 30px; 
    padding-bottom: 40px; 
}
.footer-box { 
    flex: 1; 
    min-width: 250px; 
}
.footer-box h3 { 
    color: #ffffff; 
    margin-bottom: 20px; 
    font-size: 18px; 
}
.footer-menu, 
.footer-contact { 
    list-style: none; 
}
.footer-menu li, 
.footer-contact li { 
    margin-bottom: 12px; 
}
.footer-menu a, 
.footer-contact a { 
    color: #e0e0e0; 
    text-decoration: none; 
    transition: color 0.3s ease; 
}
.footer-menu a:hover, 
.footer-contact a:hover { 
    color: #afcb1f; 
}
.footer-bottom { 
    background-color: #111111; 
    padding: 15px 0; 
    text-align: center; 
    border-top: 1px solid #222; 
    font-size: 14px; 
    color: #888; 
}

/* ==========================================
   8. MOBİL CİHAZ UYUMLULUKLARI
   ========================================== */
@media (max-width: 768px) {
    .top-bar .container { 
        flex-direction: column; 
        gap: 5px; 
        text-align: center; 
    }
    .site-logo a img { 
        height: 45px; 
        max-width: 180px; 
    }
    .mobile-menu-toggle { 
        display: flex; 
        margin: 15px 0; 
    }
    .nav-menu {
        display: none; 
        flex-direction: column; 
        width: 100%; 
        background-color: #216888;
        position: absolute; 
        top: 100%; 
        left: 0; 
        z-index: 1000; 
        box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    }
    .nav-menu.mobil-acik { 
        display: flex !important; 
    }
    .nav-item a { 
        padding: 15px 20px; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    }
    .sub-menu { 
        position: relative !important; 
        top: 0 !important; 
        width: 100% !important; 
        box-shadow: none !important; 
        background-color: #1a526c !important; 
    }
    
    .hero-section { 
        height: 350px; 
    }
    .hero-content h1 { 
        font-size: 24px; 
    }
    .hero-content p { 
        font-size: 15px; 
    }
    
    body:not(.home-page) main, 
    .contact-page-section, 
    .about-vertical-wrapper, 
    .values-vertical-wrapper, 
    .quality-vertical-wrapper, 
    .about-welcome-section {
        padding-top: 20px !important;
    }

    .about-welcome-flex { 
        flex-direction: column; 
        gap: 30px; 
    }
    .about-welcome-image { 
        height: 280px; 
        max-width: 100%; 
    }
    .about-welcome-text { 
        text-align: center; 
    }
    .about-welcome-text h2 { 
        font-size: 24px; 
    }
    
    .services-grid, 
    .why-grid { 
        flex-direction: column; 
    }
    .contact-bar-flex { 
        justify-content: center; 
        text-align: center; 
    }
    .contact-info-box, 
    .contact-form-box { 
        padding: 25px; 
    }
    .contact-header-text h2 { 
        font-size: 26px; 
    }
}

@media (max-width: 600px) {
    .values-grid, 
    .quality-grid { 
        grid-template-columns: 1fr; 
    }
}

/* ==========================================================================
   PREMIUM BİZ KİMİZ SAYFASI - OPTİMİZE SÜRÜM
   ========================================================================== */

.about-premium {
    padding: 160px 0 80px 0 !important; /* Üst boşluk header çakışmasını önler */
    background-color: #fafbfc;
}

/* Ana Satır Yapısı */
.about-premium-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

/* Görsel Alanı */
.about-premium-media {
    flex: 1;
    position: relative;
    min-width: 380px;
}

.about-premium-media img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

/* Sabit Tecrübe Bloğu */
.about-premium-years {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #216888;
    color: #ffffff;
    padding: 25px 35px;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(33, 104, 136, 0.2);
}

.about-premium-years .count {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    color: #afcb1f;
    margin-bottom: 5px;
}

.about-premium-years .label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Metin Alanı */
.about-premium-text {
    flex: 1.2;
    min-width: 380px;
}

.about-premium-text .tagline {
    font-size: 12px;
    font-weight: 700;
    color: #afcb1f;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.about-premium-text h1 {
    font-size: 40px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
}

.about-premium-text .highlight {
    font-size: 18px;
    color: #216888;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-premium-text p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Alt Misyon/Vizyon Kartları */
.about-premium-grid {
    display: flex;
    gap: 40px;
}

.premium-card {
    flex: 1;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border-top: 4px solid #e2e8f0;
    transition: all 0.3s ease;
}

.premium-card:hover {
    border-top-color: #216888;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateY(-4px);
}

.premium-card .card-meta {
    font-size: 14px;
    font-weight: 700;
    color: #afcb1f;
    margin-bottom: 20px;
}

.premium-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 15px;
}

.premium-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 992px) {
    .about-premium {
        padding-top: 120px !important;
    }
    .about-premium-row {
        flex-direction: column;
        gap: 40px;
    }
    .about-premium-media, .about-premium-text {
        width: 100%;
        flex: none;
        min-width: 100%;
    }
    .about-premium-media img {
        height: 360px;
    }
    .about-premium-text h1 {
        font-size: 30px;
    }
    .about-premium-grid {
        flex-direction: column;
        gap: 20px;
    }
}

/* ==========================================================================
   PREMIUM TEKNİK SERVİS SAYFASI STİLLERİ
   ========================================================================== */

.service-premium-section {
    padding: 160px 0 80px 0 !important; /* Header'ın altında temiz başlasın diye */
    background-color: #fafbfc;
}

/* Üst Tanıtım Satırı */
.service-premium-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* Sol Metin Alanı */
.service-premium-text {
    flex: 1.2;
    min-width: 380px;
}

.service-tagline {
    font-size: 12px;
    font-weight: 700;
    color: #afcb1f; /* Kurumsal Yeşil */
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.service-premium-text h1 {
    font-size: 38px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.service-lead {
    font-size: 18px;
    color: #216888; /* Kurumsal Mavi */
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-premium-text p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Bullet Noktaları */
.service-bullet-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.service-bullet-list li {
    font-size: 15px;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.service-bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #afcb1f; /* Kurumsal Yeşil Onay */
    font-weight: bold;
    font-size: 16px;
}

/* GÖRSELİN ANA KAPSAIYICISI */
.service-premium-media {
    flex: 1;
    position: relative;
    min-width: 380px;
    display: block;
}

/* RESMİN KENDİSİ (Bütün kenarlıkları sildik, sıfıra sıfır oturdu) */
.service-premium-media img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    display: block;
    margin: 0;
    padding: 0;
}

/* SAĞ TARAFTAKİ KURUMSAL ŞERİT (Artık resme yapışık değil, bağımsız ve hatasız) */
.service-premium-media::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px; /* Şerit kalınlığı */
    height: 100%;
    background-color: #216888; /* Kurumsal Mavi */
    border-top-right-radius: 6px; /* Resmin köşesiyle milimetrik uyum sağlasın diye */
    border-bottom-right-radius: 6px;
    pointer-events: none; /* Tıklamayı engellemez */
}

/* Görsel Üstündeki Bilgi Kartı */
.service-badge-premium {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background-color: #216888;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(33, 104, 136, 0.2);
}

.service-badge-premium .badge-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #afcb1f;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.service-badge-premium .badge-desc {
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================
   ALT ALAN: HİZMET KARTLARI GRİD YAPISI
   ========================================== */
.service-premium-grid {
    display: flex;
    gap: 30px;
}

.service-card-premium {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border-top: 4px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card-premium:hover {
    border-top-color: #afcb1f; /* Hover'da yeşile döner */
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.service-card-premium .card-num {
    font-size: 13px;
    font-weight: 700;
    color: #216888;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card-premium h3 {
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card-premium p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 992px) {
    .service-premium-section {
        padding-top: 120px !important;
    }
    .service-premium-row {
        flex-direction: column;
        gap: 45px;
    }
    .service-premium-media, .service-premium-text {
        width: 100%;
        flex: none;
        min-width: 100%;
    }
    .service-premium-text h1 {
        font-size: 28px;
    }
    .service-premium-grid {
        flex-direction: column;
        gap: 20px;
    }
    .service-badge-premium {
        left: 15px;
        right: 15px;
        bottom: -15px;
        padding: 15px;
    }
}

/* ==========================================================================
   KURUMSAL BAKIM ANLAŞMALARI SAYFASI - PREMIUM (ÜST GÖRSEL SÜRÜMÜ)
   ========================================================================== */

.corporate-maintenance-page {
    padding-top: 100px !important; /* Header yüksekliğine göre sıfırlama */
    background-color: #ffffff;
}

/* 1. ÜST HERO MEDYA ALANI */
.maintenance-hero-media {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.maintenance-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Görselin üzerindeki kurumsal koyu katman ve yazı hizalama */
.maintenance-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 38, 57, 0.85) 0%, rgba(33, 104, 136, 0.7) 100%);
    display: flex;
    align-items: center;
}

.maintenance-hero-overlay h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.hero-tag {
    color: #afcb1f; /* Kurumsal Yeşil */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 10px;
}

/* 2. İÇERİK ALANI */
.maintenance-content-wrapper {
    padding: 60px 0;
}

/* Öne Çıkan Giriş Metni (Lead) */
.maintenance-lead-text {
    font-size: 19px;
    color: #216888; /* Kurumsal Mavi */
    line-height: 1.7;
    font-weight: 600;
    max-width: 950px;
    margin-bottom: 40px;
}

.premium-divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 40px;
}

/* Zengin Metin Alanı */
.maintenance-rich-text {
    max-width: 950px; /* Okunabilirliği artırmak için metin genişliği sınırlandırıldı */
}

.maintenance-rich-text h2 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
}

.maintenance-rich-text h3 {
    font-size: 22px;
    color: #216888;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

.maintenance-rich-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* 3. HİZMET DETAY LİSTESİ (KUTULU VE ŞIK YAPILAR) */
.maintenance-service-details {
    margin-top: 30px;
    margin-bottom: 40px;
}

.detail-item {
    background-color: #fafbfc;
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid #216888; /* Sol şerit kurumsal mavi */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-left-color: #afcb1f; /* Hover olunca kurumsal yeşil */
    background-color: #f4f8fa;
    transform: translateX(4px);
}

.detail-item h4 {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 14.5px;
    color: #5a6578;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 768px) {
    .maintenance-hero-media {
        height: 250px; /* Mobilde görsel yüksekliğini daralttık */
    }
    .maintenance-hero-overlay h1 {
        font-size: 28px;
    }
    .maintenance-lead-text {
        font-size: 16px;
    }
    .maintenance-rich-text h2 {
        font-size: 22px;
    }
    .maintenance-rich-text h3 {
        font-size: 18px;
    }
    .detail-item {
        padding: 20px;
    }
}

/* ==========================================================================
   CCTV VE GÜVENLİK SİSTEMLERİ SAYFASI - PREMIUM SÜRÜM
   ========================================================================== */

.cctv-premium-page {
    padding-top: 100px !important; /* Header alanıyla sıfıra sıfır hizalama */
    background-color: #ffffff;
}

/* 1. ÜST HERO MEDYA ALANI */
.cctv-hero-media {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.cctv-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Görselin üzerindeki teknolojik koyu mavi gradyan katman */
.cctv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 27, 41, 0.9) 0%, rgba(33, 104, 136, 0.75) 100%);
    display: flex;
    align-items: center;
}

.cctv-hero-overlay h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.cctv-hero-overlay .hero-tag {
    color: #afcb1f; /* Kurumsal Yeşil */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 12px;
}

/* 2. İÇERİK ALANI WAPPER */
.cctv-content-wrapper {
    padding: 60px 0;
}

/* Öne Çıkan Spot Metin */
.cctv-lead-text {
    font-size: 19px;
    color: #216888; /* Kurumsal Mavi */
    line-height: 1.7;
    font-weight: 600;
    max-width: 950px;
    margin-bottom: 40px;
}

/* Kurumsal İnce Bölücü Çizgi */
.cctv-content-wrapper .premium-divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 40px;
}

/* Zengin Metin Blokları */
.cctv-rich-text {
    max-width: 950px; /* Okuma kolaylığı için ideal satır genişliği */
}

.cctv-rich-text h2 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
}

.cctv-rich-text h3 {
    font-size: 22px;
    color: #216888;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

.cctv-rich-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* 3. TEKNOLOJİK DETAY LİSTESİ (KUTULAR) */
.cctv-service-details {
    margin-top: 30px;
    margin-bottom: 40px;
}

.cctv-service-details .detail-item {
    background-color: #fafbfc;
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid #216888; /* Kurumsal Mavi sol şerit */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cctv-service-details .detail-item:hover {
    border-left-color: #afcb1f; /* Hover olunca kurumsal yeşile yumuşak geçiş */
    background-color: #f4f8fa;
    transform: translateX(4px);
}

.cctv-service-details .detail-item h4 {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 10px;
}

.cctv-service-details .detail-item p {
    font-size: 14.5px;
    color: #5a6578;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 768px) {
    .cctv-hero-media {
        height: 250px; /* Mobilde dikey alanı daraltıyoruz */
    }
    .cctv-hero-overlay h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    .cctv-lead-text {
        font-size: 16px;
    }
    .cctv-rich-text h2 {
        font-size: 22px;
    }
    .cctv-rich-text h3 {
        font-size: 18px;
    }
    .cctv-service-details .detail-item {
        padding: 20px;
    }
}

/* ==========================================================================
   ALARM SİSTEMLERİ SAYFASI - CCTV REFERANSLI PREMIUM SÜRÜM
   ========================================================================== */

.alarm-premium-page {
    padding-top: 100px !important; /* Header alanıyla sıfıra sıfır uyum için */
    background-color: #ffffff;
}

/* 1. ÜST HERO MEDYA ALANI (CCTV Sayfasıyla Birebir Aynı) */
.alarm-hero-media {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.alarm-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Görselin üzerindeki kurumsal koyu mavi-yeşil gradyan katman */
.alarm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 27, 41, 0.9) 0%, rgba(33, 104, 136, 0.75) 100%);
    display: flex;
    align-items: center;
}

.alarm-hero-overlay h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.alarm-hero-overlay .hero-tag {
    color: #afcb1f; /* Kurumsal Yeşil */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 12px;
}

/* 2. İÇERİK ALANI WAPPER */
.alarm-content-wrapper {
    padding: 60px 0;
}

/* Öne Çıkan Spot Metin */
.alarm-lead-text {
    font-size: 19px;
    color: #216888; /* Kurumsal Mavi */
    line-height: 1.7;
    font-weight: 600;
    max-width: 950px;
    margin-bottom: 40px;
}

/* Kurumsal İnce Bölücü Çizgi */
.alarm-content-wrapper .premium-divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 40px;
}

/* Zengin Metin Blokları */
.alarm-rich-text {
    max-width: 950px; /* Okuma kolaylığı sağlayan altın oran genişliği */
}

.alarm-rich-text h2 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 20px;
}

.alarm-rich-text h3 {
    font-size: 22px;
    color: #216888;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

.alarm-rich-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* 3. KUTULU DETAY LİSTESİ MİMARİSİ */
.alarm-service-details {
    margin-top: 30px;
    margin-bottom: 40px;
}

.alarm-service-details .detail-item {
    background-color: #fafbfc;
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid #216888; /* Kurumsal Mavi sol şerit */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.alarm-service-details .detail-item:hover {
    border-left-color: #afcb1f; /* Hover olunca kurumsal yeşile yumuşak geçiş */
    background-color: #f4f8fa;
    transform: translateX(4px);
}

.alarm-service-details .detail-item h4 {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 10px;
}

.alarm-service-details .detail-item p {
    font-size: 14.5px;
    color: #5a6578;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 768px) {
    .alarm-hero-media {
        height: 250px; /* Mobilde dikey alan daraltma */
    }
    .alarm-hero-overlay h1 {
        font-size: 26px;
        line-height: 1.3;
    }
    .alarm-lead-text {
        font-size: 16px;
    }
    .alarm-rich-text h2 {
        font-size: 22px;
    }
    .alarm-rich-text h3 {
        font-size: 18px;
    }
    .alarm-service-details .detail-item {
        padding: 20px;
    }
}

/* ==========================================================================
   ANTIVIRUS COZUMLERI - ULTRA PREMIUM ELITE DESIGN
   ========================================================================== */

.antivirus-elite-page {
    padding-top: 100px !important;
    background-color: #f8fafc; /* Süper temiz, ferah ve lüks açık gri/mavi arka plan */
    color: #1e293b;
}

/* 1. HERO ALANI - RESİMSİZ DEEP GRADYAN */
.antivirus-elite-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #e0f2fe 0%, #f8fafc 100%); /* Çok soft kurumsal mavi geçiş */
}

.elite-badge {
    background-color: #ffffff;
    color: #216888; /* Kurumsal Mavi */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(33, 104, 136, 0.06);
    border: 1px solid rgba(33, 104, 136, 0.1);
}

.antivirus-elite-hero h1 {
    font-size: 44px;
    color: #0f172a;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 20px auto;
    letter-spacing: -0.5px;
}

.elite-lead {
    font-size: 19px;
    color: #475569;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. İKİZ PREMIUM KARTLAR GRİD YAPISI */
.antivirus-cards-section {
    padding-bottom: 60px;
}

.antivirus-cards-grid {
    display: flex;
    gap: 40px;
    margin-top: -20px; /* Hero alanıyla kaynaşsın diye */
}

/* Ortak Kart Yapısı */
.antivirus-card {
    flex: 1;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Kurumsal Kartı Canlı Gösteren Neon Üst Çizgi */
.corporate-premium-card {
    border-top: 5px solid #216888; /* Kurumsal Mavi */
}

.individual-premium-card {
    border-top: 5px solid #afcb1f; /* Kurumsal Yeşil */
}

.antivirus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.antivirus-card .card-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.corporate-premium-card .card-category { color: #216888; }
.individual-premium-card .card-category { color: #afcb1f; }

.antivirus-card h2 {
    font-size: 26px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Kart İçindeki Listeler */
.elite-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.elite-features-list li {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    padding-left: 25px;
}

/* Şık Onay İkonları */
.corporate-premium-card .elite-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #216888;
    font-weight: 700;
}

.individual-premium-card .elite-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #afcb1f;
    font-weight: 700;
}

.elite-features-list li strong {
    color: #0f172a;
    display: block;
    margin-bottom: 2px;
}

/* Kart Altı Partner Damgası */
.partner-stamp {
    font-size: 12px;
    font-weight: 700;
    color: #216888;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    display: inline-block;
    width: 100%;
}

.partner-stamp.grayscale {
    color: #94a3b8;
}

/* 3. EN ALT GENİŞ METİN ALANI (SEO) */
.antivirus-deep-content {
    padding: 60px 0 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.deep-text-wrapper {
    max-width: 900px;
}

.deep-text-wrapper h3 {
    font-size: 24px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 20px;
}

.deep-text-wrapper p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ==========================================================================
   RESPONSIVE (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 992px) {
    .antivirus-elite-hero h1 {
        font-size: 30px;
    }
    .antivirus-cards-grid {
        flex-direction: column;
        gap: 30px;
        margin-top: 10px;
        padding: 0 15px;
    }
    .antivirus-card {
        padding: 35px 25px;
    }
}

/* ==========================================================================
   İLETİŞİM SAYFASI - FORM REPLACEMENT PREMIUM ULTRA ELITE
   ========================================================================== */

.contact-premium-page {
    padding-top: 100px !important;
    background-color: #f8fafc; /* Diğer elit sayfalarla uyumlu soft arka plan */
}

/* 1. BAŞLIK ALANI */
.contact-hero-section {
    padding: 60px 0 40px 0;
    text-align: center;
}

.contact-badge {
    background-color: #ffffff;
    color: #216888; /* Kurumsal Mavi */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(33, 104, 136, 0.05);
    border: 1px solid rgba(33, 104, 136, 0.08);
}

.contact-hero-section h1 {
    font-size: 40px;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-lead {
    font-size: 18px;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. İKİLİ ASİMETRİK GRİD (KART & HARİTA) */
.contact-grid-section {
    padding-bottom: 80px;
}

.contact-main-grid {
    display: flex;
    gap: 40px;
    align-items: stretch; /* İki sütunun yüksekliğini otomatik eşitler */
}

/* Sol Kart Tasarımı */
.contact-info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-info-card .card-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #216888 0%, #afcb1f 100%); /* Mavi-Yeşil Kurumsal Geçiş */
}

.brand-meta h2 {
    font-size: 24px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 5px;
}

.brand-subtitle {
    font-size: 14px;
    color: #216888;
    font-weight: 600;
    margin: 0;
}

.card-divider {
    border: 0;
    height: 1px;
    background-color: #f1f5f9;
    margin: 30px 0;
}

/* İletişim Kanalları Listesi */
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.channel-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.channel-icon {
    font-size: 20px;
    background-color: #f0f7f9;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    line-height: 1;
}

.channel-text h3 {
    font-size: 15px;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 6px;
}

.channel-text p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.channel-text p a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.channel-text p a:hover {
    color: #216888;
}

/* İş Ortaklığına Özel Vurgu */
.partner-channel .channel-icon {
    background-color: #f7fad1; /* Yumuşak yeşil arka plan */
}

.partner-channel .channel-text p a {
    color: #216888;
    font-weight: 600;
}

.card-footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.card-footer-note p {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sağ Harita Tasarımı */
.contact-map-container {
    flex: 1.2; /* Harita alanını bir tık daha geniş ve heybetli gösterir */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    min-height: 450px; /* Mobilde veya az içerikte çökmesin diye */
}

/* ==========================================================================
   RESPONSIVE (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 992px) {
    .contact-hero-section h1 {
        font-size: 32px;
    }
    .contact-main-grid {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    .contact-info-card {
        padding: 30px 20px;
    }
    .contact-map-container {
        min-height: 350px;
        height: 350px;
    }
}
/* ==========================================================================
   TL BANKA HESAP BİLGİLERİ SAYFASI - ÜÇ BÖLÜMLÜ JİLET MİMARİ
   ========================================================================== */

.bank-accounts-page {
    padding-top: 100px !important; /* Havada asılı duran header tampon boşluğu */
    background-color: #f8fafc; /* Elit sayfa arka planımız */
}

/* 1. HERO BAŞLIK ALANI */
.bank-hero-section {
    padding: 60px 0 40px 0;
    text-align: center;
}

.bank-badge {
    background-color: #ffffff;
    color: #216888; /* Kurumsal Mavi */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(33, 104, 136, 0.05);
    border: 1px solid rgba(33, 104, 136, 0.08);
}

.bank-hero-section h1 {
    font-size: 40px;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.bank-lead {
    font-size: 18px;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. SATIR LİSTE MİMARİSİ (YENİ NESİL GRİD-FLEX) */
.bank-list-section {
    padding-bottom: 40px;
}

.bank-rows-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Satırlar arası lüks mesafe */
}

/* Her Bir Banka Satırı */
.bank-row-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center; /* Elemanları dikeyde ortalar */
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.02);
    transition: all 0.3s ease;
}

.bank-row-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1;
}

/* Üç Bölümlü Yapının Alan Dağılımları */
.bank-part.logo-part {
    flex: 1;
    min-width: 180px;
}

.bank-part.iban-part {
    flex: 2.5; /* IBAN alanına daha geniş yer ayırdık */
    padding: 0 30px;
    border-left: 1px dashed #e2e8f0;
    border-right: 1px dashed #e2e8f0;
}

.bank-part.qr-part {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* QR kodu en sağa yaslar */
    min-width: 150px;
}

/* Banka Logoları İçin Şık Renkli Kutular */
/* Logo Kapsayıcı ve Esneklik Ayarı */
.bank-part.logo-part {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Logoyu sola yaslar, mobilde ortalayacağız */
}

/* Logonun Tam Premium Durması İçin Ölçülendirme */
.bank-logo-wrap {
    max-width: 160px;
    width: 100%;
    display: flex;
    align-items: center;
}

.bank-img {
    max-width: 100%;
    max-height: 45px; /* Logolar ne çok devasa ne de cüce kalacak. Tam kurumsal standart. */
    object-fit: contain;
    filter: grayscale(10%) contrast(105%); /* Logoları hafif canlandırma ve premium uyum */
    transition: filter 0.3s ease;
}

.bank-row-item:hover .bank-img {
    filter: grayscale(0%) contrast(110%); /* Mouse üzerine geldiğinde orijinal canlı renk parlaması */
}

/* Mobil için küçük bir dokunuş (Mevcut @media içine eklenecek) */
@media (max-width: 992px) {
    .bank-part.logo-part {
        justify-content: center; /* Mobilde logoyu tam ortalar */
        margin-bottom: 5px;
    }
}

/* IBAN Bilgileri Detayları */
.bank-part.iban-part h3 {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.iban-number {
    font-size: 22px; /* IBAN'ın rahat okunabilmesi için büyük punto */
    color: #0f172a;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Courier New', Courier, monospace; /* Rakamların jilet gibi hizalanması için mono-font */
}

.account-meta {
    font-size: 13.5px;
    color: #94a3b8;
    font-weight: 500;
}

/* QR Kod Tasarımı */
.qr-box {
    text-align: center;
    background-color: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    display: inline-block;
}

.qr-box img {
    width: 90px;
    height: 90px;
    display: block;
    margin-bottom: 6px;
}

.qr-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 3. NOT ALANI */
.bank-footer-notice {
    padding: 20px 0 60px 0;
    text-align: center;
}

.bank-footer-notice p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   RESPONSIVE (MOBİL UYUMLULUK - COK KRİTİK)
   ========================================================================== */
@media (max-width: 992px) {
    .bank-row-item {
        flex-direction: column; /* Mobilde alt alta akıllıca listelenir */
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    .bank-part.iban-part {
        border-left: 0;
        border-right: 0;
        border-top: 1px dashed #e2e8f0;
        border-bottom: 1px dashed #e2e8f0;
        padding: 20px 0;
        width: 100%;
    }
    .iban-number {
        font-size: 17px; /* Mobilde taşmasın diye biraz küçülttük */
    }
    .bank-part.qr-part {
        justify-content: center; /* Mobilde QR kodu ortalar */
    }
}