/* =========================================================
SEAACADEMYIK - OYUN ABLASI
Dosya: assets/css/oyun-ablasi.css
========================================================= */

/* =========================
ROOT
========================= */

:root{
    --primary:#0f172a;
    --secondary:#1e293b;
    --accent:#f97316;
    --accent-dark:#ea580c;
    --text:#1f2937;
    --text-light:#64748b;
    --white:#ffffff;
    --soft:#f8fafc;
    --border:#e2e8f0;

    --shadow-lg:0 25px 60px rgba(15,23,42,.12);
    --shadow-md:0 10px 35px rgba(15,23,42,.08);

    --radius-xl:28px;
    --radius-lg:22px;
    --radius-md:16px;

    --container:1280px;
}

/* =========================
BASE
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,system-ui,sans-serif;
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

button,
input,
textarea,
select{
    font-family:inherit;
}

/* =========================
LAYOUT
========================= */

.oyun-page{
    width:100%;
    overflow:hidden;
}

.oyun-container{
    width:100%;
    max-width:var(--container);
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

.oyun-section{
    padding:110px 0;
}

.oyun-two-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* =========================
SECTION HEAD
========================= */

.oyun-section-head{
    text-align:center;
    margin-bottom:60px;
}

.oyun-section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(249,115,22,.12);
    color:var(--accent-dark);
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.4px;
    margin-bottom:18px;
}

.oyun-section-head h2,
.oyun-intro h2,
.oyun-why h2,
.oyun-form-content h2,
.oyun-seo-content h2{
    font-size:clamp(32px,5vw,54px);
    line-height:1.08;
    color:var(--primary);
    font-weight:900;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.oyun-section-head p,
.oyun-intro p,
.oyun-why p,
.oyun-form-content p,
.oyun-seo-content p{
    color:var(--text-light);
    line-height:1.9;
    font-size:17px;
}

/* =========================
HERO
========================= */

.oyun-hero{
    position:relative;
    background:
    linear-gradient(135deg, rgba(15,23,42,.92), rgba(30,41,59,.88)),
    url('../images/seaacademyik-oyun-ablasi-danismanlik.webp') center/cover no-repeat;
    overflow:hidden;
    padding:110px 0 90px;
}

.oyun-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right, rgba(249,115,22,.25), transparent 35%);
    pointer-events:none;
}

.oyun-hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.oyun-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
    font-size:13px;
    font-weight:800;
    margin-bottom:26px;
    backdrop-filter:blur(10px);
}

.oyun-hero-content h1{
    font-size:clamp(40px,6vw,72px);
    line-height:1.02;
    color:#fff;
    font-weight:900;
    letter-spacing:-2px;
    margin-bottom:24px;
}

.oyun-hero-content p{
    color:rgba(255,255,255,.82);
    font-size:18px;
    line-height:1.9;
    max-width:700px;
}

.oyun-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:40px;
}

.oyun-btn{
    min-height:58px;
    padding:0 28px;
    border-radius:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:800;
    transition:.35s ease;
}

.oyun-btn-primary{
    background:linear-gradient(135deg,var(--accent),#fb923c);
    color:#fff;
    box-shadow:0 20px 45px rgba(249,115,22,.35);
}

.oyun-btn-primary:hover{
    transform:translateY(-4px);
}

.oyun-btn-whatsapp{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    backdrop-filter:blur(10px);
}

.oyun-btn-whatsapp:hover{
    background:#25d366;
    border-color:#25d366;
}

.oyun-trust-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:42px;
}

.oyun-trust-list div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    border-radius:20px;
    padding:22px;
    backdrop-filter:blur(12px);
}

.oyun-trust-list strong{
    display:block;
    color:#fff;
    font-size:18px;
    margin-bottom:6px;
}

.oyun-trust-list span{
    color:rgba(255,255,255,.7);
    font-size:14px;
}

.oyun-hero-image{
    position:relative;
}

.oyun-hero-image img{
    width:100%;
    border-radius:32px;
    box-shadow:0 30px 70px rgba(0,0,0,.35);
    border:1px solid rgba(255,255,255,.08);
}

/* =========================
INFO CARD
========================= */

.oyun-info-card{
    background:#fff;
    border-radius:var(--radius-xl);
    padding:40px;
    box-shadow:var(--shadow-lg);
    border:1px solid var(--border);
}

.oyun-info-card h3{
    font-size:30px;
    color:var(--primary);
    margin-bottom:24px;
}

.oyun-info-card ul{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.oyun-info-card li{
    list-style:none;
    position:relative;
    padding-left:30px;
    color:var(--text-light);
    line-height:1.8;
}

.oyun-info-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--accent);
    font-weight:900;
}

/* =========================
SERVICE CARDS
========================= */

.oyun-services{
    background:var(--soft);
}

.oyun-card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.oyun-service-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    border:1px solid var(--border);
    transition:.35s ease;
    box-shadow:0 12px 30px rgba(15,23,42,.05);
}

.oyun-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(15,23,42,.12);
}

.oyun-service-card img{
    width:100%;
    aspect-ratio:1.1/1;
    object-fit:cover;
}

.oyun-service-card h3{
    font-size:25px;
    color:var(--primary);
    padding:28px 28px 14px;
    line-height:1.2;
}

.oyun-service-card p{
    padding:0 28px 30px;
    color:var(--text-light);
    line-height:1.8;
}

/* =========================
WHY
========================= */

.oyun-image-box img{
    border-radius:32px;
    box-shadow:var(--shadow-lg);
}

.oyun-check-list{
    display:grid;
    gap:16px;
    margin-top:34px;
}

.oyun-check-list div{
    background:#fff;
    border-radius:18px;
    padding:18px 22px;
    border:1px solid var(--border);
    box-shadow:0 6px 20px rgba(15,23,42,.05);
    font-weight:600;
    color:var(--secondary);
}

/* =========================
STATS
========================= */

.oyun-stats{
    padding:40px 0 90px;
}

.oyun-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.oyun-stats-grid div{
    background:linear-gradient(145deg,#fff,#f8fafc);
    border:1px solid var(--border);
    border-radius:26px;
    padding:38px 24px;
    text-align:center;
    box-shadow:0 15px 40px rgba(15,23,42,.05);
}

.oyun-stats-grid strong{
    display:block;
    font-size:34px;
    color:var(--accent);
    margin-bottom:10px;
    font-weight:900;
}

.oyun-stats-grid span{
    color:var(--text-light);
    line-height:1.7;
}

/* =========================
PROCESS
========================= */

.oyun-process{
    background:var(--soft);
}

.oyun-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.oyun-process-grid div{
    background:#fff;
    border-radius:30px;
    padding:38px;
    border:1px solid var(--border);
    position:relative;
    overflow:hidden;
}

.oyun-process-grid span{
    width:72px;
    height:72px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--accent),#fb923c);
    color:#fff;
    font-size:24px;
    font-weight:900;
    margin-bottom:28px;
}

.oyun-process-grid h3{
    font-size:24px;
    color:var(--primary);
    margin-bottom:14px;
}

.oyun-process-grid p{
    color:var(--text-light);
    line-height:1.8;
}

/* =========================
FORM
========================= */

.oyun-form-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:50px;
    align-items:start;
}

.oyun-whatsapp-box{
    margin-top:32px;
    background:#25d366;
    color:#fff;
    min-height:60px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 30px;
    border-radius:18px;
    font-weight:800;
    box-shadow:0 15px 40px rgba(37,211,102,.28);
}

.oyun-form{
    background:#fff;
    border-radius:32px;
    padding:45px;
    border:1px solid var(--border);
    box-shadow:var(--shadow-lg);
}

.oyun-form label{
    display:block;
    margin-bottom:10px;
    color:var(--primary);
    font-weight:700;
    font-size:15px;
}

.oyun-form input,
.oyun-form textarea,
.oyun-form select{
    width:100%;
    min-height:60px;
    border-radius:18px;
    border:1px solid #dbe4ee;
    padding:0 20px;
    margin-bottom:22px;
    background:#fff;
    color:var(--text);
    transition:.25s ease;
    font-size:15px;
}

.oyun-form textarea{
    min-height:150px;
    padding-top:18px;
    resize:vertical;
}

.oyun-form input:focus,
.oyun-form textarea:focus,
.oyun-form select:focus{
    outline:none;
    border-color:var(--accent);
    box-shadow:0 0 0 5px rgba(249,115,22,.12);
}

.oyun-kvkk{
    display:flex !important;
    align-items:flex-start;
    gap:12px;
    line-height:1.7;
    font-size:14px !important;
    color:var(--text-light) !important;
    margin-bottom:24px;
}

.oyun-kvkk input{
    width:18px;
    height:18px;
    margin:3px 0 0;
    min-height:auto;
}

.oyun-form button{
    width:100%;
    min-height:62px;
    border:none;
    border-radius:20px;
    background:linear-gradient(135deg,var(--accent),#fb923c);
    color:#fff;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    transition:.35s ease;
    box-shadow:0 20px 45px rgba(249,115,22,.30);
}

.oyun-form button:hover{
    transform:translateY(-4px);
}

/* =========================
SEO CONTENT
========================= */

.oyun-seo-content{
    background:var(--soft);
}

.oyun-seo-content .oyun-container{
    max-width:980px;
}

.oyun-seo-content p{
    margin-bottom:24px;
}

/* =========================
FAQ
========================= */

.oyun-faq-list{
    max-width:980px;
    margin:0 auto;
    display:grid;
    gap:20px;
}

.oyun-faq-list details{
    background:#fff;
    border-radius:24px;
    border:1px solid var(--border);
    padding:0 28px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.oyun-faq-list summary{
    list-style:none;
    cursor:pointer;
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    font-size:18px;
    color:var(--primary);
    font-weight:800;
}

.oyun-faq-list summary::-webkit-details-marker{
    display:none;
}

.oyun-faq-list summary::after{
    content:"+";
    font-size:26px;
    color:var(--accent);
}

.oyun-faq-list details[open] summary::after{
    content:"−";
}

.oyun-faq-list p{
    padding-bottom:28px;
    color:var(--text-light);
    line-height:1.9;
}

/* =========================
MAP
========================= */

.oyun-map-box{
    border-radius:32px;
    overflow:hidden;
    box-shadow:var(--shadow-lg);
    border:1px solid var(--border);
}

/* =========================
FLOATING WHATSAPP
========================= */

.oyun-floating-whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:999;
    min-width:66px;
    height:66px;
    padding:0 22px;
    border-radius:999px;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:900;
    box-shadow:0 20px 45px rgba(37,211,102,.35);
    transition:.3s ease;
}

.oyun-floating-whatsapp:hover{
    transform:translateY(-5px) scale(1.04);
}

/* =========================
ANIMATIONS
========================= */

.oyun-service-card,
.oyun-process-grid div,
.oyun-stats-grid div,
.oyun-info-card,
.oyun-form,
.oyun-faq-list details{
    transition:
    transform .35s ease,
    box-shadow .35s ease;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

    .oyun-card-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .oyun-process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .oyun-stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:992px){

    .oyun-section{
        padding:90px 0;
    }

    .oyun-hero-grid,
    .oyun-two-grid,
    .oyun-form-grid{
        grid-template-columns:1fr;
    }

    .oyun-hero-content{
        text-align:center;
    }

    .oyun-hero-actions{
        justify-content:center;
    }

    .oyun-trust-list{
        grid-template-columns:1fr;
    }

    .oyun-section-head h2,
    .oyun-intro h2,
    .oyun-why h2,
    .oyun-form-content h2,
    .oyun-seo-content h2{
        font-size:40px;
    }
}

@media(max-width:768px){

    .oyun-card-grid,
    .oyun-process-grid,
    .oyun-stats-grid{
        grid-template-columns:1fr;
    }

    .oyun-hero{
        padding-top:90px;
    }

    .oyun-hero-content h1{
        font-size:44px;
    }

    .oyun-form{
        padding:30px 24px;
    }

    .oyun-section-head h2,
    .oyun-intro h2,
    .oyun-why h2,
    .oyun-form-content h2,
    .oyun-seo-content h2{
        font-size:34px;
    }

    .oyun-btn{
        width:100%;
    }

    .oyun-floating-whatsapp{
        right:16px;
        bottom:16px;
        height:60px;
        min-width:60px;
        font-size:14px;
    }
}

@media(max-width:480px){

    .oyun-container{
        padding-left:16px;
        padding-right:16px;
    }

    .oyun-hero-content h1{
        font-size:38px;
    }

    .oyun-service-card h3{
        font-size:22px;
    }

    .oyun-process-grid div{
        padding:28px;
    }

    .oyun-info-card{
        padding:28px;
    }

    .oyun-faq-list summary{
        font-size:16px;
    }
}