/* =========================================================
   FIXES.CSS - SADECE KULLANICI İSTEKLERİ
   Container ve renk gibi kritik orijinal kurallara DOKUNMAZ
   ========================================================= */


/* ===== 1) MOBİLDE YATAY KAYMA ===== */
html, body {
    overflow-x: hidden;
}


/* ===== 2) HERO BAŞLIK BEYAZ ZEMİN ÜZERİNDE OKUNSUN ===== */
/* Anasayfa hero "HASARLI ARACINIZ İÇİN ... BURADA" beyaz/soluk görünmesin */
.hero-title-line,
.hero-title:not(.text-accent):not(.hero-title-accent) {
    color: #0a1628;
}
/* hero-title içindeki accent kısım kırmızı kalsın */
.hero-title .text-accent,
.hero-title-accent {
    color: #d62828 !important;
    -webkit-text-fill-color: #d62828 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Page title (Hakkımızda, Blog, İletişim, Hizmetler, Özellik) beyaz zemin üstünde okunsun */
.page-title {
    color: #0a1628;
}
.page-title .text-accent {
    color: #d62828 !important;
    -webkit-text-fill-color: #d62828 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Section başlıklarında accent koyu zemin değilse her zaman kırmızı */
.section:not(.section-dark) .section-title .text-accent {
    color: #d62828 !important;
    -webkit-text-fill-color: #d62828 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}


/* ===== 3) MOBİL MENÜ - LACİVERT PANEL EKRANI TAŞMASIN ===== */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed !important;
        top: 0;
        right: 0;
        left: auto;
        width: 86%;
        max-width: 340px;
        height: 100vh;
        background: #0a1628;
        transform: translateX(105%);
        transition: transform .35s cubic-bezier(.4,0,.2,1);
        z-index: 9999;
        padding: 90px 22px 30px;
        overflow-y: auto;
        box-shadow: -20px 0 60px rgba(0,0,0,.4);
        box-sizing: border-box;
        display: block;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav::before {
        content: '';
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(0,0,0,.55);
        opacity: 0;
        visibility: hidden;
        transition: all .35s;
        z-index: -1;
    }
    .main-nav.open::before { opacity: 1; visibility: visible; }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .main-nav ul li { width: 100%; }
    .main-nav ul li a {
        display: block;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .main-nav .has-dropdown > a::after {
        content: '\f067';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        float: right;
        font-size: 11px;
        margin-top: 4px;
        color: #d62828;
    }
    .main-nav .has-dropdown.open > a::after { transform: rotate(45deg); }
    .main-nav .dropdown {
        position: static;
        background: rgba(0,0,0,.25);
        box-shadow: none;
        margin: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        list-style: none;
    }
    .main-nav .has-dropdown.open .dropdown { max-height: 700px; }
    .main-nav .dropdown li a {
        font-size: 13.5px;
        padding: 11px 28px;
        color: rgba(255,255,255,.75);
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px; height: 44px;
        background: transparent;
        border: 1px solid rgba(10, 22, 40, .15);
        border-radius: 10px;
        cursor: pointer;
        gap: 5px;
        z-index: 10000;
        position: relative;
        padding: 0;
    }
    .menu-toggle span {
        display: block;
        width: 22px; height: 2px;
        background: #0a1628;
        border-radius: 2px;
        transition: all .3s;
    }
    .menu-toggle.open { background: #d62828; border-color: #d62828; }
    .menu-toggle.open span { background: #fff; }
    .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}
@media (min-width: 1025px) {
    .menu-toggle { display: none !important; }
}


/* ===== 4) FOOTER MEGATEXT - 3 SATIR "ŞANLI HASARLI ARAÇLAR" ===== */
.footer-megatext {
    margin-top: 30px;
    padding: 30px 0 10px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    overflow: hidden;
    line-height: .92;
}
.footer-megatext span {
    display: block;
    font-family: 'Bebas Neue', 'Archivo Black', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 9vw, 130px);
    line-height: .95;
    letter-spacing: .02em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,.16);
    margin: 0;
    user-select: none;
    white-space: nowrap;
}
.footer-megatext span:nth-child(2) {
    color: #d62828;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 30px rgba(214, 40, 40, .35);
}
.footer-megatext span:nth-child(3) {
    -webkit-text-stroke-color: rgba(232, 185, 35, .25);
}
@media (max-width: 700px) {
    .footer-megatext span {
        font-size: clamp(28px, 11vw, 56px);
        -webkit-text-stroke-width: 1px;
    }
}


/* ===== 5) HAKKIMIZDA - YENİ BLOK STİLLERİ (yeni eklediğim section'lar) ===== */

/* About-text-center yapısı (Çeyrek Asırlık Tecrübe bölümü) */
.about-text-center {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.about-text-center > p {
    max-width: 760px;
    margin: 0 auto 18px;
    text-align: center;
    line-height: 1.85;
    font-size: 16px;
    color: #2d3748;
}
.about-text-center > p strong { color: #0a1628; font-weight: 700; }

.about-year-banner {
    margin: 12px auto 30px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 22px 12px 12px;
    background: linear-gradient(135deg, #0a1628, #1a2b48);
    color: #fff;
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(10, 22, 40, .25);
}
.about-year-banner strong {
    background: #d62828;
    color: #fff;
    padding: 8px 14px;
    border-radius: 100px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    line-height: 1;
}
.about-year-banner span {
    color: rgba(255,255,255,.9);
    font-size: 14px;
    font-weight: 500;
    padding-right: 8px;
}

.about-quote-block {
    margin: 40px auto 0;
    max-width: 680px;
    padding: 32px 38px;
    background: linear-gradient(135deg, rgba(214, 40, 40, .04), rgba(232, 185, 35, .04));
    border: 1px solid rgba(214, 40, 40, .12);
    border-radius: 14px;
    text-align: center;
}
.about-quote-block i {
    color: #d62828;
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}
.about-quote-block p {
    font-size: 17px;
    line-height: 1.7;
    font-style: italic;
    color: #0a1628;
    margin: 0 0 14px;
}
.about-quote-block small {
    color: #d62828;
    font-weight: 700;
    font-size: 14px;
    display: block;
}

/* Vehicle types grid */
.vehicle-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.vt-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    transition: all .35s;
}
.vt-card:hover { transform: translateY(-6px); border-color: #d62828; box-shadow: 0 25px 50px rgba(214, 40, 40, .12); }
.vt-icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #0a1628, #1a2b48);
    color: #e8b923;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 26px;
}
.vt-card h3 { font-family: 'Archivo', sans-serif; font-size: 17px; color: #0a1628; margin-bottom: 10px; font-weight: 700; }
.vt-card p { font-size: 13.5px; color: #555; line-height: 1.65; margin: 0; }

.vehicle-types-note {
    margin-top: 36px;
    padding: 20px 26px;
    background: #fff8e7;
    border: 1px solid #ffe8a8;
    border-radius: 14px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
}
.vehicle-types-note i { color: #d62828; font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.vehicle-types-note div { font-size: 14.5px; color: #5a4500; line-height: 1.7; }
.vehicle-types-note strong { color: #0a1628; }

/* Channels grid */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.channel-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 20px;
    padding: 32px 28px 26px;
    transition: all .35s;
    position: relative;
}
.channel-card:hover { transform: translateY(-6px); border-color: #d62828; box-shadow: 0 25px 50px rgba(10, 22, 40, .1); }
.channel-num {
    position: absolute;
    top: 14px; right: 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: rgba(214, 40, 40, .08);
}
.channel-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #d62828, #ff5757);
    color: #fff;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.channel-card h3 { font-family: 'Archivo', sans-serif; font-size: 19px; color: #0a1628; margin-bottom: 12px; font-weight: 700; }
.channel-card > p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 18px; }
.channel-features { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; border-top: 1px solid #eef0f4; padding-top: 16px; }
.channel-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #444; font-weight: 500; }
.channel-features li i { color: #d62828; font-size: 12px; }

/* Corporate grid */
.corporate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.corporate-item {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .3s;
    text-align: center;
}
.corporate-item:hover { transform: translateY(-4px); border-color: #d62828; box-shadow: 0 15px 35px rgba(214, 40, 40, .1); }
.corporate-item > i { font-size: 36px; color: #d62828; margin-bottom: 16px; display: inline-block; }
.corporate-item h3 { font-family: 'Archivo', sans-serif; font-size: 17px; color: #0a1628; margin-bottom: 10px; font-weight: 700; }
.corporate-item p { font-size: 13.5px; color: #555; line-height: 1.65; margin: 0; }

/* Quality list */
.quality-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.quality-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #fff;
    padding: 24px 26px;
    border-radius: 16px;
    border: 1px solid #eef0f4;
    transition: all .3s;
    text-align: left;
}
.quality-item:hover { border-color: #d62828; }
.quality-item > i { font-size: 26px; color: #2dd36f; flex-shrink: 0; margin-top: 2px; }
.quality-item h3 { font-family: 'Archivo', sans-serif; font-size: 17px; color: #0a1628; margin: 0 0 8px; font-weight: 700; }
.quality-item p { font-size: 13.5px; color: #555; line-height: 1.7; margin: 0; }

/* Vizyon-Misyon */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.vm-card { padding: 50px 40px; border-radius: 24px; color: #fff; }
.vm-vision { background: linear-gradient(135deg, #0a1628, #1a2b48); }
.vm-mission { background: linear-gradient(135deg, #d62828, #ff5757); }
.vm-icon {
    width: 70px; height: 70px;
    background: rgba(255,255,255,.15);
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin-bottom: 24px;
    color: #fff;
}
.vm-eyebrow {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,255,255,.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    color: #fff;
}
.vm-card h3 { font-family: 'Archivo', sans-serif; font-size: 26px; line-height: 1.25; margin-bottom: 18px; color: #fff; }
.vm-card p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.9); margin-bottom: 14px; }


/* ===== 6) ÖZELLİK SAYFASI ===== */

/* Tıklanabilir feature-card */
.feature-card { text-decoration: none; color: inherit; cursor: pointer; }
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
    color: #ffd451;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap .3s;
}
.feature-card:hover .feature-link { gap: 12px; }

/* Özellik hero */
.ozellik-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #0a1628 0%, #1a2b48 100%);
    color: #fff;
    overflow: hidden;
    text-align: center;
}
.ozellik-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ozellik-hero-bg .blob-1 {
    position: absolute;
    width: 400px; height: 400px;
    background: #d62828;
    top: -100px; left: -120px;
    filter: blur(90px);
    border-radius: 50%;
    opacity: .25;
}
.ozellik-hero-bg .blob-2 {
    position: absolute;
    width: 500px; height: 500px;
    background: #e8b923;
    bottom: -150px; right: -150px;
    filter: blur(100px);
    opacity: .15;
    border-radius: 50%;
}
.ozellik-hero .container { position: relative; z-index: 2; }
.ozellik-hero .page-breadcrumb { color: rgba(255,255,255,.6); margin-bottom: 30px; justify-content: center; }
.ozellik-hero .page-breadcrumb a { color: rgba(255,255,255,.85); }
.ozellik-hero .page-breadcrumb a:hover { color: #ffd451; }
.ozellik-hero-inner { max-width: 800px; margin: 0 auto; }
.ozellik-hero-icon {
    position: relative;
    width: 110px; height: 110px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #d62828, #ff5757);
    border-radius: 28px;
    display: grid;
    place-items: center;
    box-shadow: 0 25px 60px rgba(214, 40, 40, .4);
}
.ozellik-hero-icon i { font-size: 50px; color: #fff; }
.ozellik-hero-num {
    position: absolute;
    top: -12px; right: -12px;
    background: #e8b923;
    color: #0a1628;
    width: 42px; height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
}
.ozellik-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.05;
    color: #fff;
    margin: 0 0 14px;
}
.ozellik-hero-subtitle { font-size: clamp(16px, 2vw, 20px); color: #ffd451; font-weight: 600; margin-bottom: 22px; }
.ozellik-hero-lead { font-size: 16px; color: rgba(255,255,255,.85); line-height: 1.75; margin: 0 auto 40px; max-width: 680px; }
.ozellik-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Özellik detay grid */
.ozellik-detail-section { background: linear-gradient(180deg, #fafbfc 0%, #fff 100%); }
.ozellik-detail-grid { display: grid; gap: 24px; max-width: 1100px; margin: 0 auto; }
.ozellik-detail-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 22px;
    padding: 42px 40px;
    box-shadow: 0 6px 24px rgba(10, 22, 40, .04);
    position: relative;
    overflow: hidden;
}
.ozellik-detail-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #d62828, #ff5757);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s ease;
}
.ozellik-detail-card:hover::before { transform: scaleY(1); }
.ozellik-detail-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #0a1628, #1a2b48);
    color: #d62828;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 22px;
}
.ozellik-detail-card h2 {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(22px, 2.5vw, 28px);
    color: #0a1628;
    margin: 0 0 18px;
    line-height: 1.25;
    font-weight: 800;
}
.ozellik-detail-card p { font-size: 16px; line-height: 1.85; color: #2d3748; margin: 0 0 16px; }
.ozellik-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.ozellik-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(214, 40, 40, .04);
    border: 1px solid rgba(214, 40, 40, .1);
    border-radius: 12px;
}
.ozellik-list li i {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: linear-gradient(135deg, #d62828, #ff5757);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 10px;
    margin-top: 2px;
}
.ozellik-list li span { font-size: 15px; line-height: 1.6; color: #2d3748; font-weight: 500; }

/* Özellik diğer/liste grid */
.ozellik-other-grid,
.ozellik-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ozellik-other-card,
.ozellik-list-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 30px 26px 26px;
    text-decoration: none;
    color: inherit;
    transition: all .35s;
    position: relative;
    display: block;
}
.ozellik-other-card:hover,
.ozellik-list-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(10, 22, 40, .1); border-color: rgba(214, 40, 40, .3); }
.oo-num, .olc-num {
    position: absolute;
    top: 16px; right: 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: rgba(214, 40, 40, .12);
}
.oo-icon, .olc-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #d62828, #ff5757);
    color: #fff;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.ozellik-other-card h3,
.ozellik-list-card h3 { font-family: 'Archivo', sans-serif; font-size: 17px; color: #0a1628; margin: 0 0 10px; font-weight: 700; }
.ozellik-other-card p,
.ozellik-list-card p { font-size: 13.5px; color: #555; line-height: 1.65; margin: 0 0 16px; }
.oo-link, .olc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #d62828;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ===== 7) RESPONSIVE - SADECE MOBİL ===== */
@media (max-width: 1100px) {
    .vehicle-types-grid { grid-template-columns: repeat(2, 1fr); }
    .channels-grid { grid-template-columns: repeat(2, 1fr); }
    .corporate-grid { grid-template-columns: repeat(2, 1fr); }
    .quality-list { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .ozellik-other-grid,
    .ozellik-list-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    /* Mobile hizmet detay tek kolon */
    .service-row {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .service-detail.reversed .service-row > * { order: 0; }
    .service-features { grid-template-columns: 1fr 1fr; }
    .services-nav-section { position: relative; top: auto; }
}
@media (max-width: 800px) {
    .ozellik-other-grid,
    .ozellik-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .vehicle-types-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .vt-card { padding: 22px 16px; }
    .vt-card h3 { font-size: 15px; }
    .channels-grid { grid-template-columns: 1fr; }
    .corporate-grid { grid-template-columns: 1fr; }
    .vehicle-types-note { flex-direction: column; gap: 10px; padding: 18px; }
    .vm-card { padding: 36px 26px; }
    .vm-card h3 { font-size: 22px; }
    .about-quote-block { padding: 22px 20px; }
    .about-quote-block p { font-size: 15px; }
    .about-year-banner {
        flex-direction: column;
        gap: 8px;
        padding: 14px 22px;
        border-radius: 14px;
    }
    .about-year-banner span { padding: 0; text-align: center; }
    .ozellik-hero { padding: 70px 0 50px; }
    .ozellik-hero-icon { width: 88px; height: 88px; }
    .ozellik-hero-icon i { font-size: 40px; }
    .ozellik-hero-actions { flex-direction: column; align-items: stretch; }
    .ozellik-hero-actions .btn { width: 100%; justify-content: center; }
    .ozellik-detail-card { padding: 30px 22px; }
    .ozellik-detail-card h2 { font-size: 21px; }
    .ozellik-detail-card p { font-size: 15px; }
    .service-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .vehicle-types-grid { grid-template-columns: 1fr; }
    .ozellik-other-grid,
    .ozellik-list-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   v10 - SON DÜZELTMELER
   1) BEYAZ ZEMİN ÜSTÜNDE BEYAZ YAZI YOK (siyah/kırmızı)
   2) LACİVERT/KOYU ZEMİN ÜSTÜNDE SİYAH YAZI YOK (beyaz/kırmızı)
   3) HAKKIMIZDA & HİZMET DETAY MERKEZE ORTALI
   ============================================================ */

/* === KOYU ZEMİN üzerindeki yazılar BEYAZ === */
/* section-dark, stats-strip, cta-banner, contact-info, vm-vision, top-bar, main-footer */
.section-dark,
.section-dark *:not(.btn):not(.text-accent):not(i):not(.value-icon):not(.feature-icon),
.stats-strip,
.stats-strip *:not(.btn):not(.text-accent):not(i),
.cta-banner,
.cta-banner *:not(.btn):not(.text-accent):not(i),
.contact-info,
.contact-info *:not(.btn):not(.text-accent):not(.contact-info-icon):not(i),
.vm-vision,
.vm-vision *:not(.btn):not(.text-accent):not(.vm-icon):not(i),
.vm-mission,
.vm-mission *:not(.btn):not(.text-accent):not(.vm-icon):not(i),
.top-bar,
.top-bar *:not(.btn):not(i),
.main-footer,
.main-footer *:not(.btn):not(.text-accent):not(.footer-megatext):not(.footer-megatext > *):not(i):not(.fa-brands):not(.fa-solid) {
    color: #fff;
}

/* Koyu zemindeki linkler - hover sarı */
.section-dark a:not(.btn):hover,
.cta-banner a:not(.btn):hover,
.contact-info a:not(.btn):hover,
.main-footer a:not(.btn):hover,
.top-bar a:not(.btn):hover {
    color: #ffd451 !important;
}

/* Koyu zemindeki accent (text-accent) yine kırmızı kalsın */
.section-dark .text-accent,
.cta-banner .text-accent,
.stats-strip .text-accent {
    color: #ff5757 !important;
    -webkit-text-fill-color: #ff5757 !important;
}

/* === AÇIK/BEYAZ ZEMİN üzerindeki yazılar SİYAH/LACİVERT === */
.section:not(.section-dark) h1:not(.text-accent),
.section:not(.section-dark) h2:not(.text-accent),
.section:not(.section-dark) h3:not(.text-accent),
.section:not(.section-dark) h4:not(.text-accent),
.page-header h1:not(.text-accent),
.page-header h2:not(.text-accent) {
    color: #0a1628;
}

/* Beyaz zemin paragrafları */
.section:not(.section-dark) p:not(.text-accent):not(.section-eyebrow),
.section:not(.section-dark) li:not(.text-accent),
.page-header p:not(.text-accent) {
    color: #2d3748;
}

/* Beyaz zemin eyebrow'lar (section başlık üstündeki kırmızı pill) */
.section:not(.section-dark) .section-eyebrow {
    color: #d62828 !important;
    background: rgba(214, 40, 40, .1);
}

/* Hero başlık - HASARLI ARACINIZ İÇİN ... BURADA - lacivert */
.hero-title-line,
.hero-title:not(.text-accent):not(.hero-title-accent) {
    color: #0a1628 !important;
    -webkit-text-fill-color: #0a1628 !important;
    background: none !important;
}
.hero-title .text-accent,
.hero-title-accent {
    color: #d62828 !important;
    -webkit-text-fill-color: #d62828 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Page-title (Hakkımızda, Blog, İletişim, Hizmetler) - lacivert */
.page-title,
.page-title *:not(.text-accent) {
    color: #0a1628 !important;
}
.page-title .text-accent {
    color: #d62828 !important;
    -webkit-text-fill-color: #d62828 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Section title accent - kırmızı (beyaz zeminde) */
.section:not(.section-dark) .section-title .text-accent {
    color: #d62828 !important;
    -webkit-text-fill-color: #d62828 !important;
    background: none !important;
}


/* ============================================================
   HAKKIMIZDA - HER ŞEY MERKEZE ORTALI
   ============================================================ */
body.page-hakkimizda .container {
    text-align: center;
}
body.page-hakkimizda .section-head {
    margin-left: auto;
    margin-right: auto;
}

/* About-text-center güçlü kural */
.about-text-center {
    max-width: 880px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    width: 100%;
}
.about-text-center > * {
    margin-left: auto !important;
    margin-right: auto !important;
}
.about-text-center > p {
    max-width: 760px;
    text-align: center !important;
}
.about-year-banner {
    margin-left: auto !important;
    margin-right: auto !important;
}
.about-quote-block {
    margin-left: auto !important;
    margin-right: auto !important;
}


/* ============================================================
   HİZMET DETAY - MERKEZE ORTALI (servisler)
   2 kolonlu grid bozulmasın AMA içerik sayfada ortalı kalsın
   ============================================================ */

/* Service-row container - ortalı */
.service-detail .container {
    margin-left: auto;
    margin-right: auto;
}

/* Mobilde tek kolon olunca text ortalansın (visual zaten ortalı) */
@media (max-width: 1024px) {
    .service-row {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
    .service-text {
        text-align: center;
    }
    .service-text h2,
    .service-text p,
    .service-text .service-num,
    .service-text .section-eyebrow {
        text-align: center !important;
    }
    .service-features {
        max-width: 600px;
        margin: 24px auto 30px !important;
    }
    .service-text .btn {
        margin-left: auto;
        margin-right: auto;
    }
    .service-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}


/* ============================================================
   FOOTER MEGATEXT - DEĞİŞİKLİK YOK (lacivert üstü olduğu için
   yukarıdaki "main-footer beyaz" kuralı zaten doğru çalışıyor)
   ============================================================ */
/* Sadece footer-megatext'in özel kuralları korunsun */
.footer-megatext span {
    color: transparent !important;
    -webkit-text-stroke: 1.5px rgba(255,255,255,.16);
}
.footer-megatext span:nth-child(2) {
    color: #d62828 !important;
    -webkit-text-stroke: 0 !important;
}

