/* =====================================================
   AFYONKARAHİSAR BÖLGE TEMSİLCİLİĞİ
   SEAACADEMYİK HİZMETLERİ
===================================================== */

:root{
    --primary:#0f172a;
    --secondary:#1e293b;
    --accent:#f97316;
    --accent-hover:#ea580c;
    --white:#ffffff;
    --light:#f8fafc;
    --gray:#64748b;
    --border:#e2e8f0;
    --success:#16a34a;

    --shadow-sm:0 5px 20px rgba(15,23,42,.05);
    --shadow-md:0 15px 40px rgba(15,23,42,.08);
    --shadow-lg:0 25px 60px rgba(15,23,42,.12);

    --radius:24px;
    --container:1280px;
    --transition:.3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',Arial,sans-serif;
    color:var(--primary);
    background:#fff;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
    height:auto;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

ul{
    list-style:none;
}

.container{
    width:min(100% - 32px,var(--container));
    margin:auto;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 28px;
    border-radius:14px;
    font-weight:700;
    transition:var(--transition);
    text-align:center;
}

.btn-primary{
    background:var(--accent);
    color:#fff;
}

.btn-primary:hover{
    background:var(--accent-hover);
    transform:translateY(-2px);
}

.btn-secondary{
    background:#fff;
    color:var(--primary);
}

.btn-secondary:hover{
    transform:translateY(-2px);
}

.btn-light{
    background:#fff;
    color:var(--primary);
}

/* =====================================================
   HERO - YENİ SAYFALAR
===================================================== */

.hero{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);
}

.hero-bg{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right,rgba(249,115,22,.18),transparent 35%);
}

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:center;
}

.eyebrow{
    display:inline-flex;
    padding:8px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:.82rem;
    margin-bottom:18px;
    font-weight:700;
}

.hero h1{
    color:#fff;
    font-size:3.4rem;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
}

.hero p{
    color:#dbeafe;
    font-size:1.08rem;
    margin-bottom:30px;
}

.hero-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-badges span{
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:.88rem;
}

.hero-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);
}

.hero-card img{
    width:100%;
    aspect-ratio:16/12;
    object-fit:cover;
}

.quick-contact{
    padding:28px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.quick-contact strong{
    font-size:1.2rem;
}

.quick-contact a{
    color:var(--accent);
    font-weight:700;
}

/* =====================================================
   PAGE HERO - ESKİ SAYFALAR
===================================================== */

.page-hero{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%);
}

.page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right,rgba(249,115,22,.18),transparent 35%);
}

.page-hero .container{
    position:relative;
    z-index:2;
}

.breadcrumb{
    margin-bottom:30px;
    color:#cbd5e1;
    font-size:.95rem;
}

.breadcrumb a{
    color:#fff;
    font-weight:600;
}

.breadcrumb span{
    color:var(--accent);
    font-weight:700;
}

.page-hero .hero-content{
    max-width:900px;
}

.page-hero h1{
    color:#fff;
    font-size:3.2rem;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
}

.page-hero p{
    color:#dbeafe;
    font-size:1.08rem;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* =====================================================
   MINI FORM
===================================================== */

.mini-form-section{
    margin-top:-40px;
    position:relative;
    z-index:10;
}

.mini-form{
    background:#fff;
    border-radius:24px;
    box-shadow:var(--shadow-md);
    padding:25px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}

.mini-form input,
.mini-form select{
    height:58px;
    border:1px solid var(--border);
    border-radius:14px;
    padding:0 15px;
    font-size:.95rem;
}

.mini-form button{
    border:none;
    background:var(--accent);
    color:#fff;
    border-radius:14px;
    font-weight:700;
    cursor:pointer;
}

/* =====================================================
   GENERAL SECTIONS
===================================================== */

section{
    padding:90px 0;
}

.section-head{
    text-align:center;
    max-width:850px;
    margin:auto auto 50px;
}

.section-head span{
    color:var(--accent);
    font-weight:700;
}

.section-head h2{
    font-size:2.5rem;
    margin-top:10px;
    margin-bottom:15px;
}

.section-head p{
    color:var(--gray);
}

/* =====================================================
   CONTENT SECTION
===================================================== */

.content-section{
    padding:90px 0;
}

.content-section h2{
    font-size:2rem;
    margin:35px 0 15px;
}

.content-section p{
    margin-bottom:18px;
    color:#334155;
}

.content-section ul,
.content-section ol{
    padding-left:22px;
    margin:20px 0;
}

.content-section ul{
    list-style:disc;
}

.content-section ol{
    list-style:decimal;
}

.content-section li{
    margin-bottom:10px;
    color:#334155;
}

/* =====================================================
   CTA BOX
===================================================== */

.cta-box{
    margin-top:35px;
    padding:35px;
    border-radius:24px;
    background:#f8fafc;
    border:1px solid var(--border);
}

.cta-box h2{
    margin-top:0;
}

/* =====================================================
   SERVICES
===================================================== */

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:24px;
    overflow:hidden;
    transition:var(--transition);
    color:var(--primary);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-md);
}

.service-card img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
}

.service-card h3{
    padding:20px 20px 10px;
    font-size:1.15rem;
}

.service-card p{
    padding:0 20px 20px;
    color:var(--gray);
}

/* =====================================================
   WHY
===================================================== */

.why{
    background:var(--light);
}

.why-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:center;
}

.why h2{
    font-size:2.3rem;
    margin:15px 0 20px;
}

.why p{
    color:#334155;
}

.check-list{
    margin-top:25px;
    display:grid;
    gap:14px;
}

.check-list li{
    background:#fff;
    border-radius:14px;
    padding:15px 18px;
    border:1px solid var(--border);
}

.stats-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stats-box div{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:var(--shadow-sm);
}

.stats-box strong{
    display:block;
    font-size:2rem;
    color:var(--accent);
}

.stats-box span{
    color:var(--gray);
}

/* =====================================================
   DISTRICTS / INTERNAL LINKS
===================================================== */

.internal-links-section{
    padding:80px 0;
    background:#f8fafc;
}

.internal-links-section h2{
    text-align:center;
    font-size:2rem;
    margin-bottom:35px;
}

.district-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.district-grid a{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:20px;
    font-weight:600;
    color:var(--primary);
}

.district-grid a:hover{
    border-color:var(--accent);
    color:var(--accent);
}

/* =====================================================
   PROCESS
===================================================== */

.process{
    background:#f8fafc;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.process-grid div{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:var(--shadow-sm);
}

.process-grid b{
    color:var(--accent);
    font-size:2rem;
    display:block;
    margin-bottom:12px;
}

.process-grid h3{
    margin-bottom:10px;
}

/* =====================================================
   BIG FORM
===================================================== */

.big-form-section{
    background:#fff;
}

.form-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:40px;
}

.form-info h2{
    font-size:2.3rem;
    margin:15px 0;
}

.form-info p{
    color:#334155;
}

.contact-box{
    margin-top:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-box a{
    background:#f8fafc;
    border:1px solid var(--border);
    padding:15px 18px;
    border-radius:14px;
    color:var(--primary);
    font-weight:600;
}

.detailed-form{
    background:#fff;
    border-radius:30px;
    padding:35px;
    border:1px solid var(--border);
    box-shadow:var(--shadow-md);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:15px;
}

.detailed-form input,
.detailed-form select,
.detailed-form textarea{
    width:100%;
    border:1px solid var(--border);
    border-radius:14px;
    padding:15px;
    font-size:.95rem;
    font-family:inherit;
}

.detailed-form textarea{
    min-height:170px;
    resize:vertical;
    margin-bottom:15px;
}

.kvkk{
    display:flex;
    gap:10px;
    margin-bottom:20px;
    align-items:flex-start;
    color:#334155;
}

.kvkk input{
    width:auto;
    margin-top:6px;
}

.detailed-form button{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:var(--accent);
    color:#fff;
    font-size:1rem;
    font-weight:700;
    cursor:pointer;
}

.detailed-form button:hover{
    background:var(--accent-hover);
}

/* =====================================================
   FAQ
===================================================== */

.faq{
    background:#f8fafc;
}

.faq-list{
    max-width:950px;
    margin:auto;
}

.faq-list details{
    background:#fff;
    margin-bottom:15px;
    border-radius:18px;
    border:1px solid var(--border);
    overflow:hidden;
}

.faq-list summary{
    padding:22px;
    cursor:pointer;
    font-weight:700;
}

.faq-list p{
    padding:0 22px 22px;
    color:var(--gray);
}

/* =====================================================
   FINAL CTA
===================================================== */

.final-box{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    border-radius:30px;
    padding:50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}

.final-box h2{
    color:#fff;
    margin-bottom:10px;
}

.final-box p{
    color:#cbd5e1;
}

.final-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    z-index:9999;
    box-shadow:0 15px 40px rgba(37,211,102,.4);
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:1200px){

    .service-grid,
    .district-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-grid,
    .why-grid,
    .form-grid{
        grid-template-columns:1fr;
    }

    .mini-form{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .hero,
    .page-hero{
        padding:70px 0;
    }

    .hero h1,
    .page-hero h1{
        font-size:2.2rem;
    }

    .section-head h2{
        font-size:1.9rem;
    }

    .service-grid,
    .district-grid,
    .process-grid,
    .stats-box{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .mini-form{
        grid-template-columns:1fr;
    }

    .final-box{
        flex-direction:column;
        text-align:center;
    }

    .detailed-form{
        padding:25px;
    }

    .btn,
    .hero-buttons .btn{
        width:100%;
    }

    .hero-actions{
        flex-direction:column;
    }

    .cta-box{
        padding:25px;
    }
}

@media(max-width:480px){

    .container{
        width:min(100% - 20px,var(--container));
    }

    .hero h1,
    .page-hero h1{
        font-size:1.95rem;
    }

    .floating-whatsapp{
        width:60px;
        height:60px;
    }
}