/* ===============================
   C DEFENCE ALT SAYFALAR
================================ */

/* HERO */
.sub-hero,
.detail-hero{
    position:relative;
    min-height:470px;
    display:flex;
    align-items:center;
    background:#090d14;
    color:#fff;
    overflow:hidden;
}

.sub-hero-bg,
.detail-hero-bg{
    position:absolute;
    inset:0;
}

.sub-hero-bg img,
.detail-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.sub-hero-overlay,
.detail-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(6,11,18,.92),
        rgba(6,11,18,.55),
        rgba(6,11,18,.18)
    );
}

.sub-hero-content,
.detail-hero-content{
    position:relative;
    max-width:760px;
    padding:120px 0 70px;
}

.page-kicker,
.section-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    letter-spacing:4px;
    font-size:12px;
    font-weight:800;
    color:#fff;
    text-transform:uppercase;
}

.page-kicker:before,
.section-kicker:before{
    content:"";
    width:7px;
    height:7px;
    background:#e31b35;
    display:block;
}

.sub-hero h1,
.detail-hero h1{
    font-size:56px;
    line-height:1.02;
    font-weight:900;
    text-transform:uppercase;
    margin:20px 0;
}

.sub-hero p,
.detail-hero p{
    font-size:17px;
    line-height:1.8;
    color:#d8dde5;
}


/* GENEL BÖLÜMLER */
.corporate-content-section,
.contact-section,
.news-list-section,
.product-list-section,
.detail-content-section,
.product-detail-content{
    padding:90px 0;
    background:#f4f5f6;
}

.corporate-grid,
.contact-grid,
.product-layout,
.product-detail-grid{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:44px;
}


/* SOL PANEL */
.corporate-side,
.product-filter,
.contact-info-panel{
    background:#0b111b;
    color:#fff;
    padding:36px;
    position:sticky;
    top:110px;
    align-self:start;
}

.corporate-side a,
.product-filter a{
    display:block;
    color:#cfd6df;
    text-decoration:none;
    border-top:1px solid rgba(255,255,255,.12);
    padding:16px 0;
    font-weight:700;
}

.corporate-side a:hover,
.product-filter a:hover{
    color:#fff;
}


/* İÇERİK KARTLARI */
.corporate-content,
.detail-content,
.product-detail-content article{
    background:#fff;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    line-height:1.9;
    color:#303743;
}


/* TIMELINE */
.about-timeline-section{
    padding:90px 0;
    background:#08101a;
    color:#fff;
}

.timeline-grid,
.news-grid,
.product-card-grid,
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.timeline-card{
    border:1px solid rgba(255,255,255,.13);
    padding:30px;
    background:rgba(255,255,255,.04);
}

.timeline-card strong{
    font-size:34px;
    color:#fff;
}


/* HABER / ÜRÜN KARTLARI */
.news-grid,
.product-card-grid{
    grid-template-columns:repeat(3,1fr);
}

.news-card,
.product-card-item{
    background:#fff;
    text-decoration:none;
    color:#111;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    overflow:hidden;
    transition:.3s;
}

.news-card:hover,
.product-card-item:hover{
    transform:translateY(-6px);
    box-shadow:0 26px 65px rgba(0,0,0,.12);
}

.news-card img,
.product-card-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    background:#111;
}

.news-card div,
.product-card-item div{
    padding:28px;
}

.news-card span,
.product-card-item span,
.product-detail-text span{
    font-size:12px;
    letter-spacing:3px;
    font-weight:800;
    color:#e31b35;
}

.news-card h2,
.product-card-item h2{
    font-size:24px;
    font-weight:900;
    margin:12px 0;
}


/* FORM */
.contact-form{
    background:#fff;
    padding:44px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #dfe3e8;
    padding:17px;
    margin-bottom:16px;
    outline:none;
    font-size:14px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#e31b35;
}

.contact-form textarea{
    height:170px;
    resize:vertical;
}

.contact-form button,
.product-detail-text a,
.inner-cta a{
    background:#e31b35;
    color:#fff;
    border:0;
    padding:17px 30px;
    font-weight:900;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
}

.contact-form button:hover,
.product-detail-text a:hover,
.inner-cta a:hover{
    background:#b9152a;
    color:#fff;
}

.form-success{
    background:#e8f7ed;
    color:#167a3a;
    padding:14px;
    margin-bottom:15px;
}

.form-error{
    background:#ffe8e8;
    color:#b00020;
    padding:14px;
    margin-bottom:15px;
}


/* ÜRÜN DETAY */
.product-detail-hero{
    background:#09101a;
    color:#fff;
    padding:160px 0 90px;
}

.product-detail-grid{
    grid-template-columns:1fr 1fr;
    align-items:center;
}

.product-detail-text h1{
    font-size:58px;
    font-weight:900;
    text-transform:uppercase;
}

.product-detail-text p{
    color:#d9e0e8;
    line-height:1.8;
}

.product-detail-image img{
    width:100%;
    max-height:520px;
    object-fit:contain;
}


/* CTA */
.inner-cta{
    padding:70px 0;
    background:#0b111b;
}

.inner-cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#121b28;
    color:#fff;
    padding:44px;
    border:1px solid rgba(255,255,255,.1);
}

.inner-cta-box h2{
    margin:6px 0 0;
    font-weight:900;
}


/* ===============================
   İLETİŞİM PANELİ GÜNCELLEME
================================ */

.contact-info-panel{
    min-height:420px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-info-panel .section-kicker{
    margin-bottom:20px;
}

.contact-info-panel h2{
    font-size:38px;
    line-height:1.15;
    margin-bottom:34px;
    color:#fff;
    font-weight:800;
}

.contact-info-panel p{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
    font-weight:500;
    letter-spacing:.3px;
    color:rgba(255,255,255,.85);
    margin-bottom:18px;
}

.contact-info-panel a{
    color:inherit;
    text-decoration:none;
}

.contact-info-panel a:hover{
    color:#fff;
}

.contact-info-panel i{
    width:20px;
    color:#e31b35;
    flex-shrink:0;
}


/* RESPONSIVE */
@media(max-width:991px){
    .corporate-grid,
    .contact-grid,
    .product-layout,
    .product-detail-grid{
        grid-template-columns:1fr;
    }

    .news-grid,
    .product-card-grid,
    .timeline-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .sub-hero h1,
    .detail-hero h1,
    .product-detail-text h1{
        font-size:38px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .corporate-side,
    .product-filter,
    .contact-info-panel{
        position:relative;
        top:auto;
    }

    .inner-cta-box{
        display:block;
    }

    .inner-cta a{
        margin-top:20px;
    }
}
.about-stats-section,
.corporate-feature-section,
.vision-mission-section,
.production-power-section,
.quality-section,
.sustainability-section,
.certificates-section{
    padding:90px 0;
    background:#f4f5f6;
}

.about-stats-section{
    background:#ffffff;
}

.stat-card{
    background:#0b111b;
    color:#fff;
    padding:38px;
    min-height:160px;
}

.stat-card strong{
    display:block;
    font-size:44px;
    font-weight:900;
    margin-bottom:12px;
}

.stat-card span{
    color:#cfd6df;
    font-weight:700;
}

.section-head{
    max-width:760px;
    margin-bottom:46px;
}

.section-head h2{
    font-size:42px;
    line-height:1.15;
    font-weight:900;
    color:#fff;
    margin-top:16px;
}

.about-stats-section .section-head h2,
.corporate-feature-section .section-head h2,
.vision-mission-section .section-head h2,
.production-power-section .section-head h2,
.quality-section .section-head h2,
.sustainability-section .section-head h2,
.certificates-section .section-head h2{
    color:#111827;
}

.section-head p{
    color:#cfd6df;
    line-height:1.8;
}

.corporate-feature-grid,
.vision-mission-grid,
.production-cards,
.quality-grid,
.sustainability-grid,
.certificate-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.production-cards,
.quality-grid,
.sustainability-grid,
.certificate-grid{
    grid-template-columns:repeat(3,1fr);
}

.corporate-feature-image img{
    width:100%;
    height:520px;
    object-fit:cover;
}

.corporate-feature-content{
    background:#0b111b;
    color:#fff;
    padding:52px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.corporate-feature-content h2,
.vm-card h2{
    font-size:40px;
    font-weight:900;
    line-height:1.15;
    margin:18px 0;
}

.corporate-feature-content p,
.corporate-feature-content li{
    color:#cfd6df;
    line-height:1.8;
}

.corporate-feature-content ul{
    margin-top:20px;
    padding-left:20px;
}

.vm-card{
    background:#fff;
    padding:52px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.vm-card.dark{
    background:#0b111b;
    color:#fff;
}

.vm-card span,
.sustainability-grid span{
    color:#e31b35;
    font-weight:900;
    letter-spacing:3px;
}

.vm-card p{
    line-height:1.8;
    color:#303743;
}

.vm-card.dark p{
    color:#cfd6df;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:30px;
}

.values-grid div,
.production-cards div,
.quality-grid div,
.sustainability-grid div,
.certificate-card{
    background:#fff;
    padding:34px;
    box-shadow:0 16px 45px rgba(0,0,0,.07);
}

.production-cards i{
    font-size:34px;
    color:#e31b35;
    margin-bottom:20px;
}

.production-cards h3,
.quality-grid h3,
.sustainability-grid h3{
    font-size:24px;
    font-weight:900;
}

.production-cards p,
.quality-grid p,
.sustainability-grid p,
.values-grid p,
.certificate-card p{
    color:#5b6470;
    line-height:1.7;
}

.certificate-card strong{
    display:block;
    font-size:28px;
    font-weight:900;
    color:#111827;
}

.certificate-card a{
    display:inline-block;
    margin-top:18px;
    color:#e31b35;
    text-decoration:none;
    font-weight:900;
}

.corporate-side a.active{
    color:#fff;
    border-left:3px solid #e31b35;
    padding-left:14px;
}

@media(max-width:991px){
    .corporate-feature-grid,
    .vision-mission-grid,
    .production-cards,
    .quality-grid,
    .sustainability-grid,
    .certificate-grid,
    .values-grid{
        grid-template-columns:1fr;
    }

    .corporate-feature-content h2,
    .vm-card h2{
        font-size:32px;
    }
}
.capability-block-section{
    padding:90px 0;
    background:#08101a;
    color:#fff;
}

.capability-block-section .section-head{
    margin-bottom:45px;
}

.capability-block-section .section-head h2{
    color:#fff;
    font-size:44px;
    line-height:1.15;
    font-weight:900;
}

.capability-page-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.capability-page-card{
    background:#fff;
    color:#111827;
    padding:36px;
    min-height:280px;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
    border-top:4px solid #e31b35;
}

.capability-page-card i{
    font-size:34px;
    color:#e31b35;
    margin-bottom:22px;
}

.capability-page-card span{
    display:block;
    font-size:11px;
    letter-spacing:3px;
    font-weight:900;
    color:#e31b35;
    margin-bottom:14px;
}

.capability-page-card h3{
    font-size:25px;
    line-height:1.25;
    font-weight:900;
    margin-bottom:16px;
    color:#111827;
}

.capability-page-card p{
    font-size:15px;
    line-height:1.75;
    color:#5b6470;
    margin:0;
}

@media(max-width:991px){
    .capability-page-grid{
        grid-template-columns:1fr;
    }
}