/* ==================================================
   HATAY BÖLGE TEMSİLCİLİĞİ CSS
   SEAACADEMYİK HİZMETLERİ
================================================== */

:root{
    --hatay-primary:#12385f;
    --hatay-primary-dark:#08243f;
    --hatay-orange:#f58220;
    --hatay-orange-dark:#d96c12;
    --hatay-text:#172033;
    --hatay-muted:#64748b;
    --hatay-bg:#f7f9fc;
    --hatay-white:#ffffff;
    --hatay-border:#e5eaf1;
    --hatay-soft:#eef4fb;
    --hatay-shadow:0 18px 50px rgba(15,23,42,.10);
    --hatay-radius:24px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:var(--hatay-text);
    background:var(--hatay-white);
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
}

button,
input,
select,
textarea{
    font:inherit;
}

.hatay-page{
    overflow:hidden;
    background:var(--hatay-white);
}

.hatay-container{
    width:min(1180px, calc(100% - 32px));
    margin:0 auto;
}

/* HERO */

.hatay-hero{
    position:relative;
    padding:86px 0 72px;
    background:
        radial-gradient(circle at top left, rgba(245,130,32,.18), transparent 32%),
        linear-gradient(135deg, #08243f 0%, #12385f 48%, #0e3153 100%);
    color:var(--hatay-white);
}

.hatay-hero::after{
    content:"";
    position:absolute;
    right:-140px;
    top:-120px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    pointer-events:none;
}

.hatay-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:48px;
    align-items:center;
}

.hatay-badge,
.hatay-badge-light{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.2px;
}

.hatay-badge{
    background:rgba(245,130,32,.16);
    color:#ffd2a8;
    border:1px solid rgba(245,130,32,.35);
}

.hatay-badge-light{
    background:rgba(255,255,255,.10);
    color:#ffffff;
    border:1px solid rgba(255,255,255,.22);
}

.hatay-hero h1{
    margin:22px 0 18px;
    font-size:clamp(34px, 5vw, 62px);
    line-height:1.03;
    letter-spacing:-1.5px;
    font-weight:900;
}

.hatay-hero p{
    max-width:660px;
    margin:0;
    color:#dce8f5;
    font-size:18px;
    line-height:1.75;
}

.hatay-hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:30px;
}

.hatay-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 22px;
    border-radius:999px;
    font-weight:800;
    font-size:15px;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hatay-btn:hover{
    transform:translateY(-2px);
}

.hatay-btn-primary{
    background:var(--hatay-orange);
    color:#fff;
    box-shadow:0 14px 30px rgba(245,130,32,.28);
}

.hatay-btn-primary:hover{
    background:var(--hatay-orange-dark);
}

.hatay-btn-outline{
    color:#fff;
    border:1px solid rgba(255,255,255,.34);
    background:rgba(255,255,255,.08);
}

.hatay-btn-outline:hover{
    background:rgba(255,255,255,.14);
}

.hatay-hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:34px;
    max-width:620px;
}

.hatay-hero-stats div{
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.13);
    backdrop-filter:blur(8px);
}

.hatay-hero-stats strong{
    display:block;
    font-size:24px;
    color:#fff;
    margin-bottom:5px;
}

.hatay-hero-stats span{
    display:block;
    font-size:13px;
    color:#d8e4f2;
}

.hatay-hero-image{
    position:relative;
}

.hatay-hero-image::before{
    content:"";
    position:absolute;
    inset:22px -14px -14px 22px;
    border-radius:30px;
    background:rgba(245,130,32,.26);
}

.hatay-hero-image img{
    position:relative;
    width:100%;
    aspect-ratio:720 / 520;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 28px 80px rgba(0,0,0,.32);
    border:1px solid rgba(255,255,255,.18);
}

/* SECTION */

.hatay-section{
    padding:78px 0;
    background:#fff;
}

.hatay-section:nth-of-type(even){
    background:var(--hatay-bg);
}

.hatay-section-title{
    max-width:760px;
    margin:0 auto 42px;
    text-align:center;
}

.hatay-section-title span{
    display:inline-block;
    margin-bottom:10px;
    color:var(--hatay-orange);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.hatay-section-title h2{
    margin:0;
    color:var(--hatay-primary-dark);
    font-size:clamp(28px, 4vw, 42px);
    line-height:1.16;
    letter-spacing:-.7px;
}

.hatay-section-title p{
    margin:16px auto 0;
    color:var(--hatay-muted);
    font-size:17px;
    line-height:1.75;
}

/* CARDS */

.hatay-card-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.hatay-card{
    overflow:hidden;
    border-radius:var(--hatay-radius);
    background:#fff;
    border:1px solid var(--hatay-border);
    box-shadow:0 12px 34px rgba(15,23,42,.07);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hatay-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--hatay-shadow);
    border-color:rgba(245,130,32,.35);
}

.hatay-card img{
    width:100%;
    aspect-ratio:420 / 260;
    object-fit:cover;
}

.hatay-card div{
    padding:22px;
}

.hatay-card h3{
    margin:0 0 10px;
    color:var(--hatay-primary-dark);
    font-size:20px;
    line-height:1.25;
}

.hatay-card p{
    margin:0 0 16px;
    color:var(--hatay-muted);
    font-size:15px;
    line-height:1.65;
}

.hatay-card a{
    display:inline-flex;
    color:var(--hatay-orange);
    font-weight:900;
    font-size:14px;
}

.hatay-card a:hover{
    color:var(--hatay-orange-dark);
}

/* DARK SECTION */

.hatay-dark-section{
    padding:78px 0;
    background:
        linear-gradient(135deg, rgba(8,36,63,.96), rgba(18,56,95,.96)),
        radial-gradient(circle at 20% 20%, rgba(245,130,32,.20), transparent 34%);
    color:#fff;
}

.hatay-dark-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:44px;
    align-items:start;
}

.hatay-dark-grid h2{
    margin:20px 0 16px;
    font-size:clamp(28px, 4vw, 44px);
    line-height:1.15;
    letter-spacing:-.8px;
}

.hatay-dark-grid p{
    margin:0;
    color:#dbe7f3;
    font-size:17px;
    line-height:1.75;
}

.hatay-feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.hatay-feature-list div{
    padding:24px;
    border-radius:22px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
}

.hatay-feature-list strong{
    display:inline-flex;
    width:38px;
    height:38px;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:var(--hatay-orange);
    color:#fff;
    margin-bottom:18px;
}

.hatay-feature-list h3{
    margin:0 0 8px;
    font-size:20px;
}

.hatay-feature-list p{
    font-size:15px;
    line-height:1.6;
}

/* LINK GRID */

.hatay-link-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.hatay-link-grid a{
    display:flex;
    align-items:center;
    min-height:66px;
    padding:18px 20px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--hatay-border);
    color:var(--hatay-primary-dark);
    font-weight:900;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
    transition:.22s ease;
}

.hatay-link-grid a::before{
    content:"";
    width:9px;
    height:9px;
    flex:0 0 9px;
    margin-right:12px;
    border-radius:50%;
    background:var(--hatay-orange);
}

.hatay-link-grid a:hover{
    transform:translateY(-3px);
    border-color:rgba(245,130,32,.45);
    color:var(--hatay-orange-dark);
}

/* PROCESS */

.hatay-process{
    padding:78px 0;
    background:linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.hatay-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    counter-reset:process;
}

.hatay-process-grid div{
    position:relative;
    padding:26px;
    border-radius:24px;
    background:#fff;
    border:1px solid var(--hatay-border);
    box-shadow:0 12px 32px rgba(15,23,42,.06);
}

.hatay-process-grid span{
    display:inline-flex;
    width:44px;
    height:44px;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    background:var(--hatay-primary);
    color:#fff;
    font-weight:900;
    margin-bottom:18px;
}

.hatay-process-grid h3{
    margin:0 0 10px;
    color:var(--hatay-primary-dark);
    font-size:20px;
}

.hatay-process-grid p{
    margin:0;
    color:var(--hatay-muted);
    font-size:15px;
    line-height:1.65;
}

/* FORM */

.hatay-form-section{
    background:
        radial-gradient(circle at top right, rgba(245,130,32,.13), transparent 30%),
        #f7f9fc;
}

.hatay-form-grid{
    display:grid;
    grid-template-columns:.82fr 1.18fr;
    gap:34px;
    align-items:start;
}

.hatay-form-text{
    position:sticky;
    top:20px;
    padding:34px;
    border-radius:28px;
    background:var(--hatay-primary-dark);
    color:#fff;
    box-shadow:var(--hatay-shadow);
}

.hatay-form-text span{
    display:inline-block;
    margin-bottom:12px;
    color:#ffd2a8;
    font-weight:900;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.7px;
}

.hatay-form-text h2{
    margin:0 0 16px;
    font-size:clamp(26px, 3vw, 38px);
    line-height:1.16;
}

.hatay-form-text p{
    margin:0 0 20px;
    color:#dce8f5;
    font-size:16px;
    line-height:1.75;
}

.hatay-form-text ul{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:12px;
}

.hatay-form-text li{
    position:relative;
    padding-left:26px;
    color:#eef6ff;
    font-weight:700;
    font-size:15px;
}

.hatay-form-text li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--hatay-orange);
    font-weight:900;
}

.hatay-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    padding:28px;
    border-radius:28px;
    background:#fff;
    border:1px solid var(--hatay-border);
    box-shadow:var(--hatay-shadow);
}

.hatay-form-row{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.hatay-form-full{
    grid-column:1 / -1;
}

.hatay-form label{
    color:var(--hatay-primary-dark);
    font-size:14px;
    font-weight:900;
}

.hatay-form input,
.hatay-form select,
.hatay-form textarea{
    width:100%;
    border:1px solid #d8e0ea;
    background:#fff;
    color:var(--hatay-text);
    border-radius:15px;
    padding:14px 15px;
    outline:none;
    transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.hatay-form textarea{
    resize:vertical;
    min-height:126px;
}

.hatay-form input:focus,
.hatay-form select:focus,
.hatay-form textarea:focus{
    border-color:var(--hatay-orange);
    box-shadow:0 0 0 4px rgba(245,130,32,.14);
}

.hatay-submit-btn{
    grid-column:1 / -1;
    min-height:54px;
    border:0;
    border-radius:999px;
    background:var(--hatay-orange);
    color:#fff;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 14px 30px rgba(245,130,32,.26);
    transition:transform .2s ease, background .2s ease;
}

.hatay-submit-btn:hover{
    transform:translateY(-2px);
    background:var(--hatay-orange-dark);
}

/* FAQ */

.hatay-faq-section{
    padding:78px 0;
    background:#fff;
}

.hatay-faq-list{
    max-width:900px;
    margin:0 auto;
    display:grid;
    gap:14px;
}

.hatay-faq-item{
    overflow:hidden;
    border-radius:18px;
    border:1px solid var(--hatay-border);
    background:#fff;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.hatay-faq-question{
    width:100%;
    padding:20px 22px;
    border:0;
    background:#fff;
    color:var(--hatay-primary-dark);
    text-align:left;
    font-weight:900;
    font-size:16px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.hatay-faq-question::after{
    content:"+";
    width:30px;
    height:30px;
    flex:0 0 30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--hatay-soft);
    color:var(--hatay-primary);
    font-size:22px;
    line-height:1;
}

.hatay-faq-item.active .hatay-faq-question::after{
    content:"−";
    background:var(--hatay-orange);
    color:#fff;
}

.hatay-faq-answer{
    display:none;
    padding:0 22px 20px;
}

.hatay-faq-item.active .hatay-faq-answer{
    display:block;
}

.hatay-faq-answer p{
    margin:0;
    color:var(--hatay-muted);
    line-height:1.7;
    font-size:15px;
}

/* WHATSAPP */

.hatay-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:9999;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:118px;
    height:48px;
    padding:0 18px;
    border-radius:999px;
    background:#25d366;
    color:#fff;
    font-weight:900;
    box-shadow:0 14px 35px rgba(37,211,102,.35);
    transition:transform .2s ease;
}

.hatay-whatsapp:hover{
    transform:translateY(-3px);
}

/* RESPONSIVE */

@media (max-width:1100px){
    .hatay-card-grid,
    .hatay-process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hatay-link-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:900px){
    .hatay-hero{
        padding:62px 0 56px;
    }

    .hatay-hero-grid,
    .hatay-dark-grid,
    .hatay-form-grid{
        grid-template-columns:1fr;
    }

    .hatay-form-text{
        position:static;
    }

    .hatay-hero-image{
        max-width:680px;
        margin:0 auto;
    }
}

@media (max-width:640px){
    .hatay-container{
        width:min(100% - 22px, 1180px);
    }

    .hatay-hero{
        padding:48px 0 46px;
    }

    .hatay-hero h1{
        letter-spacing:-.8px;
    }

    .hatay-hero p{
        font-size:16px;
        line-height:1.65;
    }

    .hatay-hero-buttons{
        display:grid;
        grid-template-columns:1fr;
    }

    .hatay-btn{
        width:100%;
    }

    .hatay-hero-stats{
        grid-template-columns:1fr;
    }

    .hatay-section,
    .hatay-dark-section,
    .hatay-process,
    .hatay-faq-section{
        padding:54px 0;
    }

    .hatay-card-grid,
    .hatay-feature-list,
    .hatay-process-grid,
    .hatay-link-grid,
    .hatay-form{
        grid-template-columns:1fr;
    }

    .hatay-form{
        padding:20px;
        border-radius:22px;
    }

    .hatay-form-text{
        padding:24px;
        border-radius:22px;
    }

    .hatay-card div{
        padding:20px;
    }

    .hatay-link-grid a{
        min-height:auto;
    }

    .hatay-whatsapp{
        right:14px;
        bottom:14px;
        min-width:108px;
        height:46px;
        font-size:14px;
    }
}

@media (max-width:420px){
    .hatay-section-title{
        margin-bottom:30px;
    }

    .hatay-hero-image::before{
        display:none;
    }

    .hatay-hero-image img{
        border-radius:22px;
    }

    .hatay-card,
    .hatay-process-grid div,
    .hatay-feature-list div{
        border-radius:20px;
    }
}