/* ==================================================
   ÇANAKKALE BÖLGE TEMSİLCİLİĞİ CSS
   SEAACADEMYİK HİZMETLERİ
================================================== */

:root{
    --ck-primary:#0b2347;
    --ck-primary-2:#123b73;
    --ck-orange:#f97316;
    --ck-orange-2:#fb923c;
    --ck-dark:#0f172a;
    --ck-text:#334155;
    --ck-muted:#64748b;
    --ck-light:#f8fafc;
    --ck-white:#ffffff;
    --ck-border:#e2e8f0;
    --ck-shadow:0 24px 70px rgba(15,23,42,.13);
    --ck-radius:24px;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
    color:var(--ck-text);
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
}

.ck-page{
    overflow:hidden;
    background:#fff;
}

.ck-container{
    width:min(1180px,92%);
    margin:0 auto;
}

/* HERO */

.ck-hero{
    position:relative;
    padding:72px 0 64px;
    background:
        radial-gradient(circle at top left, rgba(249,115,22,.16), transparent 34%),
        linear-gradient(135deg,#061936 0%,#0b2347 48%,#123b73 100%);
    color:#fff;
}

.ck-hero:before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size:42px 42px;
    pointer-events:none;
}

.ck-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:42px;
    align-items:center;
}

.ck-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 15px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:999px;
    background:rgba(255,255,255,.09);
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.ck-badge:before{
    content:"";
    width:9px;
    height:9px;
    border-radius:50%;
    background:var(--ck-orange);
    box-shadow:0 0 0 6px rgba(249,115,22,.18);
}

.ck-hero-content h1{
    margin:0 0 18px;
    font-size:clamp(36px,5vw,64px);
    line-height:1.03;
    letter-spacing:-1.8px;
    color:#fff;
}

.ck-hero-content p{
    max-width:680px;
    margin:0 0 28px;
    font-size:18px;
    line-height:1.75;
    color:rgba(255,255,255,.88);
}

.ck-hero-content strong{
    color:#fff;
}

.ck-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:28px;
}

.ck-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 24px;
    border-radius:16px;
    font-weight:800;
    font-size:15px;
    transition:.25s ease;
}

.ck-btn-primary{
    background:linear-gradient(135deg,var(--ck-orange),var(--ck-orange-2));
    color:#fff;
    box-shadow:0 14px 34px rgba(249,115,22,.32);
}

.ck-btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 44px rgba(249,115,22,.42);
}

.ck-btn-secondary{
    background:rgba(255,255,255,.11);
    border:1px solid rgba(255,255,255,.23);
    color:#fff;
}

.ck-btn-secondary:hover{
    background:rgba(255,255,255,.18);
    transform:translateY(-2px);
}

.ck-hero-info{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    max-width:620px;
}

.ck-hero-info div{
    padding:18px;
    border-radius:20px;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(10px);
}

.ck-hero-info strong{
    display:block;
    font-size:17px;
    margin-bottom:5px;
}

.ck-hero-info span{
    color:rgba(255,255,255,.72);
    font-size:13px;
}

.ck-hero-image{
    position:relative;
}

.ck-hero-image:before{
    content:"";
    position:absolute;
    inset:26px -16px -16px 26px;
    border-radius:32px;
    background:linear-gradient(135deg,rgba(249,115,22,.55),rgba(255,255,255,.08));
    z-index:-1;
}

.ck-hero-image img{
    width:100%;
    border-radius:32px;
    border:1px solid rgba(255,255,255,.2);
    box-shadow:0 30px 90px rgba(0,0,0,.32);
    object-fit:cover;
}

/* SECTION HEAD */

.ck-section-head{
    text-align:center;
    max-width:820px;
    margin:0 auto 34px;
}

.ck-section-head span,
.ck-mini-title{
    display:inline-block;
    margin-bottom:10px;
    color:var(--ck-orange);
    font-weight:900;
    font-size:13px;
    letter-spacing:.8px;
    text-transform:uppercase;
}

.ck-section-head h2,
.ck-two-grid h2,
.ck-form-text h2,
.ck-content h2{
    margin:0 0 14px;
    color:var(--ck-dark);
    font-size:clamp(28px,3.5vw,42px);
    line-height:1.16;
    letter-spacing:-.8px;
}

.ck-section-head p,
.ck-two-grid p,
.ck-form-text p,
.ck-content p{
    margin:0;
    color:var(--ck-muted);
    font-size:16px;
    line-height:1.8;
}

/* SERVICES */

.ck-services{
    padding:72px 0;
    background:#fff;
}

.ck-card-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.ck-card{
    position:relative;
    min-height:210px;
    padding:26px;
    border-radius:var(--ck-radius);
    background:#fff;
    border:1px solid var(--ck-border);
    box-shadow:0 12px 36px rgba(15,23,42,.06);
    transition:.25s ease;
    overflow:hidden;
}

.ck-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:5px;
    background:linear-gradient(90deg,var(--ck-primary),var(--ck-orange));
}

.ck-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--ck-shadow);
    border-color:rgba(249,115,22,.35);
}

.ck-card h3{
    margin:0 0 12px;
    color:var(--ck-dark);
    font-size:20px;
    line-height:1.25;
}

.ck-card p{
    margin:0;
    color:var(--ck-muted);
    line-height:1.7;
    font-size:15px;
}

/* OSB */

.ck-osb{
    padding:78px 0;
    background:linear-gradient(180deg,#f8fafc 0%,#fff 100%);
}

.ck-two-grid{
    display:grid;
    grid-template-columns:1fr .95fr;
    gap:46px;
    align-items:center;
}

.ck-check-list{
    list-style:none;
    padding:0;
    margin:24px 0 0;
    display:grid;
    gap:12px;
}

.ck-check-list li{
    position:relative;
    padding:15px 18px 15px 48px;
    border-radius:16px;
    background:#fff;
    border:1px solid var(--ck-border);
    color:var(--ck-dark);
    font-weight:700;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.ck-check-list li:before{
    content:"✓";
    position:absolute;
    left:16px;
    top:50%;
    transform:translateY(-50%);
    width:22px;
    height:22px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(249,115,22,.12);
    color:var(--ck-orange);
    font-weight:900;
}

.ck-image-box{
    position:relative;
}

.ck-image-box:after{
    content:"Çanakkale OSB";
    position:absolute;
    left:22px;
    bottom:22px;
    padding:12px 16px;
    border-radius:999px;
    background:rgba(11,35,71,.88);
    color:#fff;
    font-weight:900;
    font-size:14px;
}

.ck-image-box img{
    width:100%;
    border-radius:30px;
    box-shadow:var(--ck-shadow);
    object-fit:cover;
}

/* DISTRICTS */

.ck-districts{
    padding:72px 0;
    background:#fff;
}

.ck-link-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.ck-link-grid a{
    display:flex;
    align-items:center;
    min-height:72px;
    padding:18px;
    border-radius:18px;
    background:#f8fafc;
    border:1px solid var(--ck-border);
    color:var(--ck-dark);
    font-weight:900;
    line-height:1.35;
    transition:.22s ease;
}

.ck-link-grid a:hover{
    background:var(--ck-primary);
    color:#fff;
    border-color:var(--ck-primary);
    transform:translateY(-3px);
}

/* PROCESS */

.ck-process{
    padding:76px 0;
    background:
        radial-gradient(circle at top right, rgba(249,115,22,.13), transparent 32%),
        #0b2347;
}

.ck-process .ck-section-head h2{
    color:#fff;
}

.ck-process .ck-section-head span{
    color:#fb923c;
}

.ck-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.ck-process-grid div{
    padding:26px;
    border-radius:24px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
}

.ck-process-grid strong{
    display:inline-flex;
    width:46px;
    height:46px;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:var(--ck-orange);
    color:#fff;
    margin-bottom:18px;
    font-size:16px;
}

.ck-process-grid h3{
    margin:0 0 10px;
    color:#fff;
    font-size:20px;
}

.ck-process-grid p{
    margin:0;
    color:rgba(255,255,255,.75);
    line-height:1.7;
    font-size:15px;
}

/* FORM */

.ck-form-section{
    padding:82px 0;
    background:#f8fafc;
}

.ck-form-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:34px;
    align-items:start;
}

.ck-form-text{
    position:sticky;
    top:24px;
    padding:34px;
    border-radius:28px;
    background:#fff;
    border:1px solid var(--ck-border);
    box-shadow:0 14px 42px rgba(15,23,42,.07);
}

.ck-contact-box{
    display:grid;
    gap:12px;
    margin-top:24px;
}

.ck-contact-box a{
    display:flex;
    align-items:center;
    min-height:52px;
    padding:0 16px;
    border-radius:16px;
    background:#f8fafc;
    border:1px solid var(--ck-border);
    color:var(--ck-primary);
    font-weight:900;
}

.ck-contact-box a:hover{
    background:var(--ck-primary);
    color:#fff;
}

.ck-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    padding:28px;
    border-radius:30px;
    background:#fff;
    border:1px solid var(--ck-border);
    box-shadow:var(--ck-shadow);
}

.ck-form-row{
    display:flex;
    flex-direction:column;
    gap:7px;
}

.ck-form-row label{
    color:var(--ck-dark);
    font-size:14px;
    font-weight:900;
}

.ck-form-row input,
.ck-form-row select,
.ck-form-row textarea{
    width:100%;
    min-height:50px;
    border:1px solid var(--ck-border);
    border-radius:15px;
    padding:0 14px;
    outline:none;
    background:#f8fafc;
    color:var(--ck-dark);
    font-size:15px;
    transition:.2s ease;
}

.ck-form-row textarea{
    min-height:130px;
    padding:14px;
    resize:vertical;
    font-family:Arial, Helvetica, sans-serif;
}

.ck-form-row input:focus,
.ck-form-row select:focus,
.ck-form-row textarea:focus{
    border-color:var(--ck-orange);
    background:#fff;
    box-shadow:0 0 0 4px rgba(249,115,22,.11);
}

.ck-full{
    grid-column:1/-1;
}

.ck-submit{
    grid-column:1/-1;
    min-height:56px;
    border:0;
    border-radius:18px;
    background:linear-gradient(135deg,var(--ck-primary),var(--ck-primary-2));
    color:#fff;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 16px 36px rgba(11,35,71,.24);
    transition:.25s ease;
}

.ck-submit:hover{
    transform:translateY(-2px);
    background:linear-gradient(135deg,var(--ck-orange),var(--ck-orange-2));
}

/* CONTENT */

.ck-content{
    padding:76px 0;
    background:#fff;
}

.ck-content .ck-container{
    max-width:980px;
}

.ck-content h2{
    text-align:center;
    margin-bottom:22px;
}

.ck-content p{
    margin-bottom:18px;
}

/* FAQ */

.ck-faq{
    padding:76px 0 92px;
    background:#f8fafc;
}

.ck-faq-list{
    max-width:920px;
    margin:0 auto;
    display:grid;
    gap:14px;
}

.ck-faq-item{
    border-radius:20px;
    background:#fff;
    border:1px solid var(--ck-border);
    overflow:hidden;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.ck-faq-item button{
    width:100%;
    min-height:64px;
    padding:18px 56px 18px 20px;
    border:0;
    background:#fff;
    color:var(--ck-dark);
    font-size:16px;
    font-weight:900;
    text-align:left;
    cursor:pointer;
    position:relative;
}

.ck-faq-item button:after{
    content:"+";
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#f1f5f9;
    color:var(--ck-primary);
    font-size:20px;
}

.ck-faq-item div{
    display:none;
    padding:0 20px 20px;
    color:var(--ck-muted);
    line-height:1.75;
}

.ck-faq-item.active button{
    color:var(--ck-orange);
}

.ck-faq-item.active button:after{
    content:"−";
    background:rgba(249,115,22,.12);
    color:var(--ck-orange);
}

.ck-faq-item.active div{
    display:block;
}

/* WHATSAPP */

.ck-whatsapp{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:132px;
    height:52px;
    padding:0 20px;
    border-radius:999px;
    background:#25d366;
    color:#fff;
    font-weight:900;
    box-shadow:0 16px 38px rgba(37,211,102,.38);
}

.ck-whatsapp:hover{
    transform:translateY(-2px);
}

/* RESPONSIVE */

@media (max-width:1100px){
    .ck-card-grid,
    .ck-process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ck-link-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:900px){
    .ck-hero{
        padding:56px 0;
    }

    .ck-hero-grid,
    .ck-two-grid,
    .ck-form-grid{
        grid-template-columns:1fr;
    }

    .ck-hero-content{
        text-align:left;
    }

    .ck-hero-info{
        grid-template-columns:1fr;
    }

    .ck-form-text{
        position:relative;
        top:auto;
    }
}

@media (max-width:700px){
    .ck-container{
        width:min(94%,520px);
    }

    .ck-hero{
        padding:42px 0 46px;
    }

    .ck-hero-content h1{
        font-size:38px;
        letter-spacing:-1px;
    }

    .ck-hero-content p{
        font-size:16px;
        line-height:1.65;
    }

    .ck-hero-actions{
        display:grid;
        grid-template-columns:1fr;
    }

    .ck-btn{
        width:100%;
    }

    .ck-hero-image:before{
        display:none;
    }

    .ck-hero-image img{
        border-radius:24px;
    }

    .ck-services,
    .ck-osb,
    .ck-districts,
    .ck-process,
    .ck-form-section,
    .ck-content,
    .ck-faq{
        padding:52px 0;
    }

    .ck-card-grid,
    .ck-process-grid,
    .ck-link-grid,
    .ck-form{
        grid-template-columns:1fr;
    }

    .ck-form{
        padding:20px;
        border-radius:24px;
    }

    .ck-form-text{
        padding:24px;
        border-radius:24px;
    }

    .ck-section-head{
        text-align:left;
        margin-bottom:26px;
    }

    .ck-section-head h2,
    .ck-two-grid h2,
    .ck-form-text h2,
    .ck-content h2{
        font-size:29px;
    }

    .ck-content h2{
        text-align:left;
    }

    .ck-whatsapp{
        right:14px;
        bottom:14px;
        min-width:118px;
        height:48px;
        font-size:14px;
    }
}

@media (max-width:420px){
    .ck-hero-content h1{
        font-size:34px;
    }

    .ck-card,
    .ck-process-grid div{
        padding:22px;
    }

    .ck-link-grid a{
        min-height:64px;
    }

    .ck-faq-item button{
        font-size:15px;
    }
}