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

/* ==========================================================================
   🌿 FRESH & CLEAN LIGHT KURUMSAL TASARIM SİSTEMİ (DESIGN SYSTEM)
   ========================================================================== */

:root {
    --bg-light: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --border-color: #e2e8f0;
    --border-hover: rgba(11, 44, 93, 0.4);
    
    --primary: #0f172a;
    --emerald: #0b2c5d;
    --emerald-glow: rgba(11, 44, 93, 0.25);
    --emerald-dark: #1e3a8a;
    --accent: #d97706;
    
    --text-pure: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --radius-pill: 999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
    --shadow-glow: 0 0 25px rgba(11, 44, 93, 0.15);
}

/* Tipografi & Temel Gövde */
body, html {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
h1, h2, h3, h4, h5, h6, a, p, button, input, label, select, textarea {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* İkon Font Koruması (Font Awesome & Boxicons) - Moovian */
.fa, .fas, .far, .fal, .fab, .fad, .fat, [class^="fa-"], [class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Pro", sans-serif !important;
}
.fab, [class*="fa-brands"] {
    font-family: "Font Awesome 6 Brands" !important;
}
.fas, [class*="fa-solid"] {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}
.bx, [class^="bx-"], [class*=" bx-"] {
    font-family: "boxicons" !important;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
}

body, body.body-wrapper {
    background-color: var(--bg-light) !important;
    color: var(--text-pure) !important;
    overflow-x: hidden;
    overflow-y: visible;
}

/* ==========================================================================
   🖼️ HERO SLIDER GENEL AYARLARI (SLIDER BÖLÜMÜNE HAZIRLIK)
   ========================================================================== */
.banner-slider__wrapper {
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.banner-slider, 
.banner-slider .slider-item {
    min-height: 80vh;
}

.banner-slider .slider-item {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex !important;
    align-items: center;
    padding: 100px 0;
}

.banner-slider .slider-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.65) 100%);
    z-index: 1;
}

.banner-slider .slider-item > * {
    position: relative;
    z-index: 2;
}

.custom-slider-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.slider-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--emerald);
}

.slider-subtitle-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 540px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-green-cta {
    background: linear-gradient(135deg, #0b2c5d 0%, #1e3a8a 100%) !important;
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 18px rgba(11, 44, 93, 0.3);
    transition: var(--transition);
    border: none;
    text-decoration: none !important;
}

.btn-green-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 44, 93, 0.45);
    background: linear-gradient(135deg, #1e3a8a 0%, #071f43 100%) !important;
    color: #ffffff !important;
}

/* ==========================================================================
   📦 FRESH BENTO-GRID MİMARİSİ (AÇIK TONLU TEMİZ KARTLAR)
   ========================================================================== */

.bento-section {
    padding: 90px 0 !important;
    position: relative;
    background-color: #f8fafc !important;
}

.bento-section.bento-alt {
    background-color: #ffffff !important;
    border-top: 1px solid #edf2f7 !important;
    border-bottom: 1px solid #edf2f7 !important;
}

.bento-grid-bg {
    background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px) !important;
    background-size: 24px 24px !important;
}

.bento-header {
    margin-bottom: 45px;
}

.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1e3a8a !important;
    background: #eff6ff !important;
    border: 1px solid #bfdbfe !important;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

.bento-tag .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0b2c5d;
    box-shadow: 0 0 8px #0b2c5d;
    animation: live-pulse 1.8s infinite;
}

@keyframes live-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.bento-title {
    font-size: 38px !important;
    font-weight: 900 !important;
    letter-spacing: -0.6px;
    line-height: 1.25 !important;
    color: #0f172a !important;
    margin-bottom: 12px;
}

.bento-desc {
    font-size: 15.5px !important;
    color: #64748b !important;
    line-height: 1.7;
    max-width: 680px;
}

/* Bento Kartları (Fresh Beyaz & İnce Gölgeli) */
.bento-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 32px !important;
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.04) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    border-color: #0b2c5d !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.08), 0 0 20px rgba(11, 44, 93, 0.12) !important;
}

.bento-manifesto-card {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%) !important;
    border: 1px solid #bfdbfe !important;
}

.bento-manifesto-card h3 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1.35;
    margin-bottom: 14px;
}

.bento-manifesto-card p {
    font-size: 15px !important;
    color: #475569 !important;
    line-height: 1.7;
    margin-bottom: 20px;
}

.bento-stat-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 22px 18px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
}

.bento-stat-item:hover {
    border-color: #0b2c5d !important;
    background: #eff6ff !important;
    transform: translateY(-3px) !important;
}

.bento-stat-val {
    font-size: 38px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    line-height: 1;
    margin-bottom: 6px;
}

.bento-stat-lbl {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bento-service-card {
    padding: 0 !important;
    overflow: hidden !important;
}

.bento-service-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.bento-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-service-card:hover .bento-service-media img {
    transform: scale(1.08);
}

.bento-service-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.bento-service-title {
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 8px;
    transition: var(--transition);
}

.bento-service-card:hover .bento-service-title {
    color: #0b2c5d !important;
}

.bento-service-desc {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.6;
    margin-bottom: 18px;
}

.bento-service-btn {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #1e3a8a !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    transition: var(--transition);
}

.bento-service-card:hover .bento-service-btn {
    gap: 10px;
    color: #071f43 !important;
}

.bento-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-size: 20px;
    margin-bottom: 18px;
    transition: var(--transition);
}

.bento-card:hover .bento-pillar-icon {
    background: #0b2c5d;
    color: #ffffff;
    box-shadow: 0 0 16px rgba(11, 44, 93, 0.3);
    transform: scale(1.06);
}

.bento-pillar-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 8px;
}

.bento-pillar-desc {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.65;
}

.bento-brand-box {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: var(--transition);
}

.bento-brand-box:hover {
    border-color: #0b2c5d !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

.bento-brand-box img {
    max-height: 38px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.65);
    transition: var(--transition);
}

.bento-brand-box:hover img {
    filter: grayscale(0%) opacity(1);
}

.bento-team-card {
    padding: 0 !important;
    overflow: hidden !important;
    text-align: center;
}

.bento-team-thumb {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.bento-team-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-team-card:hover .bento-team-thumb img {
    transform: scale(1.05);
}

.bento-team-info {
    padding: 20px;
}

.bento-team-name {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 4px;
}

.bento-team-unvan {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #1e3a8a !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Accordion */
.bento-accordion .accordion-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.bento-accordion .accordion-button {
    background: #ffffff !important;
    color: #0f172a !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    padding: 18px 22px;
    box-shadow: none !important;
}

.bento-accordion .accordion-button:not(.collapsed) {
    color: #1e3a8a !important;
    background: #eff6ff !important;
}

.bento-accordion .accordion-body {
    padding: 18px 22px;
    font-size: 14px !important;
    color: #475569 !important;
    line-height: 1.7;
    border-top: 1px solid #edf2f7;
}

/* Bento CTA İstasyonu */
.bento-cta-station {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border-radius: 28px !important;
    padding: 60px 45px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.2) !important;
}

.bento-cta-station h2 {
    color: #ffffff !important;
    font-weight: 900 !important;
}

.bento-cta-station p {
    color: #94a3b8 !important;
}

/* ==========================================================================
   🏛️ MODERN FRESH FOOTER
   ========================================================================== */
footer.footer-1 {
    background-color: #0f172a !important;
    border-top: 1px solid #1e293b !important;
    padding-top: 75px !important;
    color: #94a3b8 !important;
}

footer.footer-1 .wid-title {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 17.5px !important;
    margin-bottom: 22px !important;
}

footer.footer-1 ul li a {
    color: #94a3b8 !important;
    transition: var(--transition);
}

footer.footer-1 ul li a:hover {
    color: #34d399 !important;
    padding-left: 5px;
}

footer.footer-1 .footer-bottom {
    background-color: #090e17 !important;
    border-top: 1px solid #1e293b !important;
    padding: 22px 0 !important;
}

/* WhatsApp Yüzer Buton */
.whatsapp-float-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none !important;
}

.whatsapp-float-btn:hover {
    transform: scale(1.08) rotate(6deg);
    background-color: #128c7e;
    color: #ffffff !important;
}

/* ==========================================================================
   📱 7. KAPSAMLI MOBİL UYUMLULUK & RESPONSIVE MİMARİSİ (ALL-DEVICE MOBILE OPTIMIZATION)
   ========================================================================== */

/* Genel Taşma ve Medya Koruması */
*, *::before, *::after {
    box-sizing: border-box;
}

img, video, iframe, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* Tablolar ve Kod / IBAN Taşmalarına Karşı Koruma */
.table-responsive {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
}

code, pre, .iban-text, .text-monospace {
    word-break: break-all;
    white-space: normal;
}

/* Tablet Ekranlar (991px ve Altı) */
@media (max-width: 991px) {
    /* Genel Bölüm Boşlukları */
    section, .bento-section, .moov-corporate-intro-section, .moov-standard-page-section {
        padding: 50px 0 !important;
    }

    /* Tipografi Ölçekleme */
    h1, .bento-title, .slider-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }
    h2, .moov-corp-title, .moov-standard-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    h3 {
        font-size: 20px !important;
    }
    h4 {
        font-size: 18px !important;
    }
    
    /* Konteyner Boşlukları */
    .container, .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Tüm Header Logoları */
    .h5-logo img, .header-v1-logo img, .header-v2-logo img, .header-v3-logo img, .header-v4-logo img, .header-v6-logo img, header img {
        max-height: 42px !important;
        max-width: 180px !important;
        object-fit: contain;
    }

    /* Şablon Kartları */
    .moov-corp-intro-card, .moov-standard-card {
        padding: 26px 20px !important;
        border-radius: 16px !important;
    }

    /* 2x2 ve Çoklu Izgaralar */
    .moov-kg-features-grid, .moov-abg-features-wrap {
        grid-template-columns: 1fr !important;
    }
}

/* Akıllı Telefonlar (767px ve Altı) */
@media (max-width: 767px) {
    /* Bölüm Boşlukları */
    section, .bento-section, .moov-corporate-intro-section, .moov-standard-page-section {
        padding: 40px 0 !important;
    }

    /* Tipografi */
    h1, .bento-title, .slider-title {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    h2, .moov-corp-title, .moov-standard-title {
        font-size: 21px !important;
        margin-bottom: 12px !important;
    }
    h3 {
        font-size: 18px !important;
    }
    .bento-desc, .moov-standard-body, .moov-corp-body {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    /* Page Banner Hero */
    .moov-page-banner {
        padding: 45px 0 35px 0 !important;
    }
    .moov-banner-title {
        font-size: 22px !important;
        margin-bottom: 6px !important;
    }
    .moov-banner-sub {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
    .moov-breadcrumb-nav {
        margin-top: 12px !important;
        padding: 6px 12px !important;
        font-size: 11.5px !important;
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 4px 6px !important;
        justify-content: flex-start !important;
    }

    /* Şablon Kartları */
    .moov-corp-intro-card, .moov-standard-card {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }

    /* Kurumsal Navigasyon Hap Butonları */
    .moov-corp-nav-pills {
        gap: 6px !important;
        margin-top: 16px !important;
        padding-top: 14px !important;
    }
    .moov-corp-nav-pill {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }

    /* Banka & Bilgi Kartları */
    .table-bordered th, .table-bordered td {
        padding: 10px 8px !important;
        font-size: 13px !important;
    }
    
    /* Hizmet Bölgeleri Modülü */
    .moov-hb-sube-footer {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .moov-hb-sube-call, .moov-hb-sube-wp {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Floating WhatsApp Butonu Mobil Boyutu */
    .whatsapp-float-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 24px !important;
        right: 18px !important;
        bottom: 18px !important;
    }
}

/* Küçük Telefonlar (575px ve Altı) */
@media (max-width: 575px) {
    /* Header Logosu & Eylemler */
    .h5-logo img, .header-v1-logo img, .header-v2-logo img, .header-v3-logo img, .header-v4-logo img, .header-v6-logo img, header img {
        max-height: 36px !important;
        max-width: 150px !important;
    }
    
    /* Butonlar & Aksiyonlar */
    .btn-green-cta, .moov-abg-btn-primary, .moov-save-btn {
        padding: 10px 18px !important;
        font-size: 13px !important;
    }
}

