/* =========================================================
SEAACADEMYIK — HASTA BAKICILIĞI PREMIUM CSS
========================================================= */

:root{
    --primary:#0f172a;
    --secondary:#1e293b;
    --accent:#f97316;
    --accent-hover:#ea580c;
    --white:#ffffff;
    --light:#f8fafc;
    --gray:#64748b;
    --border:#e2e8f0;
    --success:#16a34a;

    --radius:24px;
    --shadow:0 20px 60px rgba(15,23,42,.08);

    --container:1280px;
}

/* =========================================================
BASE
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background:#fff;
    color:var(--primary);
    line-height:1.7;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.hasta-page{
    position:relative;
    overflow:hidden;
}

.hasta-container{
    width:100%;
    max-width:var(--container);
    margin:0 auto;
    padding-left:20px;
    padding-right:20px;
}

/* =========================================================
TYPOGRAPHY
========================================================= */

.section-label{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    background:rgba(249,115,22,.1);
    color:var(--accent);
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    margin-bottom:18px;
}

.section-head{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.section-head h2{
    font-size:clamp(34px,5vw,52px);
    line-height:1.15;
    margin-bottom:20px;
    font-weight:900;
    color:var(--primary);
}

.section-head p{
    font-size:18px;
    color:var(--gray);
}

/* =========================================================
BUTTONS
========================================================= */

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:58px;
    padding:0 34px;
    border-radius:16px;
    font-size:16px;
    font-weight:800;
    transition:.3s ease;
}

.btn-primary{
    background:linear-gradient(135deg,var(--accent),#fb923c);
    color:#fff;
    box-shadow:0 16px 40px rgba(249,115,22,.28);
}

.btn-primary:hover{
    transform:translateY(-3px);
    background:linear-gradient(135deg,var(--accent-hover),var(--accent));
}

.btn-secondary{
    border:2px solid rgba(15,23,42,.08);
    color:var(--primary);
    background:#fff;
}

.btn-secondary:hover{
    border-color:var(--accent);
    color:var(--accent);
    transform:translateY(-3px);
}

/* =========================================================
HERO
========================================================= */

.hasta-hero{
    position:relative;
    padding:90px 0 80px;
    background:
    radial-gradient(circle at top left, rgba(249,115,22,.10), transparent 32%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:12px 18px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    font-size:14px;
    font-weight:800;
    color:var(--accent);
    margin-bottom:24px;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.hero-content h1{
    font-size:clamp(46px,7vw,78px);
    line-height:1;
    font-weight:900;
    letter-spacing:-2px;
    margin-bottom:26px;
    color:var(--primary);
}

.hero-lead{
    font-size:20px;
    color:var(--gray);
    margin-bottom:34px;
    max-width:720px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:42px;
}

.hero-trust{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.hero-trust div{
    background:#fff;
    border-radius:20px;
    padding:22px;
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 10px 40px rgba(15,23,42,.04);
}

.hero-trust strong{
    display:block;
    font-size:20px;
    margin-bottom:4px;
    color:var(--primary);
}

.hero-trust span{
    color:var(--gray);
    font-size:14px;
}

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    border-radius:36px;
    object-fit:cover;
    box-shadow:0 30px 70px rgba(15,23,42,.14);
}

/* =========================================================
TRUST STRIP
========================================================= */

.trust-strip{
    padding:22px 0;
    background:var(--primary);
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    text-align:center;
}

.trust-grid div{
    color:#fff;
    font-weight:700;
    font-size:15px;
}

/* =========================================================
SECTIONS
========================================================= */

.hasta-section,
.services-section,
.why-section,
.success-section,
.guide-section,
.form-map-section,
.faq-section,
.seo-content,
.bottom-cta{
    padding:110px 0;
}

.section-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:center;
}

.section-grid h2{
    font-size:clamp(36px,5vw,56px);
    line-height:1.1;
    margin-bottom:24px;
    font-weight:900;
}

.section-grid p{
    color:var(--gray);
    font-size:18px;
    margin-bottom:18px;
}

.info-card{
    background:#fff;
    border-radius:32px;
    padding:40px;
    box-shadow:var(--shadow);
    border:1px solid rgba(15,23,42,.05);
}

.info-card h3{
    font-size:28px;
    margin-bottom:24px;
}

.info-card ul{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.info-card li{
    position:relative;
    padding-left:30px;
    color:var(--gray);
}

.info-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    font-weight:900;
    color:var(--success);
}

/* =========================================================
SERVICES
========================================================= */

.services-section{
    background:#f8fafc;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.service-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.05);
    box-shadow:0 16px 50px rgba(15,23,42,.05);
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.service-card h3{
    font-size:28px;
    line-height:1.2;
    padding:28px 28px 14px;
    font-weight:900;
}

.service-card p{
    padding:0 28px;
    color:var(--gray);
    font-size:16px;
    min-height:110px;
}

.service-card a{
    margin:26px 28px 30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 24px;
    border-radius:14px;
    background:var(--primary);
    color:#fff;
    font-weight:800;
    transition:.3s;
}

.service-card a:hover{
    background:var(--accent);
}

/* =========================================================
WHY
========================================================= */

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.why-image img{
    border-radius:36px;
    box-shadow:0 30px 80px rgba(15,23,42,.12);
}

.why-content h2{
    font-size:clamp(36px,5vw,58px);
    line-height:1.1;
    margin-bottom:28px;
    font-weight:900;
}

.why-list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.why-list div{
    background:#fff;
    border-radius:24px;
    padding:28px;
    border:1px solid rgba(15,23,42,.05);
    box-shadow:0 12px 40px rgba(15,23,42,.04);
}

.why-list strong{
    display:block;
    font-size:22px;
    margin-bottom:10px;
}

.why-list p{
    color:var(--gray);
}

/* =========================================================
SUCCESS
========================================================= */

.success-section{
    background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
}

.success-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.success-grid div{
    background:#fff;
    border-radius:26px;
    padding:40px 28px;
    text-align:center;
    box-shadow:0 16px 50px rgba(15,23,42,.05);
}

.success-grid strong{
    display:block;
    font-size:32px;
    margin-bottom:12px;
    color:var(--primary);
}

.success-grid span{
    color:var(--gray);
}

/* =========================================================
GUIDE
========================================================= */

.guide-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.guide-grid h2{
    font-size:clamp(36px,5vw,54px);
    line-height:1.1;
    margin-bottom:24px;
}

.guide-grid p{
    font-size:18px;
    color:var(--gray);
}

.check-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.check-grid div{
    background:#fff;
    border-radius:20px;
    padding:24px;
    border:1px solid rgba(15,23,42,.06);
    font-weight:800;
    box-shadow:0 10px 40px rgba(15,23,42,.04);
}

/* =========================================================
FORM + MAP
========================================================= */

.form-map-section{
    background:#f8fafc;
}

.form-map-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px;
    align-items:start;
}

.form-box,
.map-box{
    background:#fff;
    border-radius:34px;
    padding:42px;
    box-shadow:0 18px 60px rgba(15,23,42,.06);
}

.form-box h2{
    font-size:42px;
    line-height:1.1;
    margin-bottom:18px;
}

.form-box p{
    color:var(--gray);
    margin-bottom:34px;
}

.hasta-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.hasta-form label{
    font-weight:700;
    color:var(--primary);
    font-size:15px;
}

.hasta-form input,
.hasta-form select,
.hasta-form textarea{
    width:100%;
    min-height:60px;
    border-radius:16px;
    border:1px solid var(--border);
    background:#fff;
    padding:18px;
    font-size:16px;
    outline:none;
    transition:.25s ease;
}

.hasta-form textarea{
    min-height:140px;
    resize:vertical;
}

.hasta-form input:focus,
.hasta-form select:focus,
.hasta-form textarea:focus{
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(249,115,22,.12);
}

.kvkk{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-top:10px;
}

.kvkk input{
    width:20px;
    height:20px;
    min-height:auto;
    margin-top:4px;
}

.kvkk span{
    font-size:14px;
    color:var(--gray);
}

.hasta-form button{
    margin-top:12px;
    min-height:62px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,var(--accent),#fb923c);
    color:#fff;
    font-size:17px;
    font-weight:900;
    cursor:pointer;
    transition:.3s ease;
    box-shadow:0 18px 40px rgba(249,115,22,.28);
}

.hasta-form button:hover{
    transform:translateY(-3px);
}

.map-box h3{
    font-size:36px;
    margin-bottom:14px;
}

.map-box p{
    color:var(--gray);
    margin-bottom:28px;
}

.map-box iframe{
    border-radius:22px;
    margin-bottom:24px;
}

.map-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:58px;
    border-radius:18px;
    background:#25d366;
    color:#fff;
    font-weight:900;
    transition:.3s ease;
}

.map-whatsapp:hover{
    transform:translateY(-3px);
}

/* =========================================================
FAQ
========================================================= */

.faq-list{
    max-width:980px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:#fff;
    border-radius:24px;
    border:1px solid rgba(15,23,42,.06);
    overflow:hidden;
    box-shadow:0 10px 40px rgba(15,23,42,.04);
}

.faq-question{
    width:100%;
    min-height:88px;
    padding:24px 28px;
    background:#fff;
    border:none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    text-align:left;
    font-size:20px;
    font-weight:800;
    cursor:pointer;
    color:var(--primary);
}

.faq-question span{
    font-size:34px;
    color:var(--accent);
    transition:.3s ease;
}

.faq-answer{
    display:none;
    padding:0 28px 28px;
}

.faq-answer p{
    color:var(--gray);
    font-size:17px;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

/* =========================================================
SEO CONTENT
========================================================= */

.seo-content{
    background:#fff;
}

.seo-content h2{
    font-size:48px;
    margin-bottom:26px;
    text-align:center;
    line-height:1.1;
}

.seo-content p{
    max-width:980px;
    margin:0 auto 24px;
    text-align:center;
    color:var(--gray);
    font-size:18px;
}

/* =========================================================
BOTTOM CTA
========================================================= */

.bottom-cta{
    padding-top:0;
}

.bottom-cta-box{
    background:
    linear-gradient(135deg,rgba(15,23,42,.95),rgba(30,41,59,.95)),
    url("images/seaacademyik-hasta-bakici-danismanlik.webp") center/cover;
    border-radius:40px;
    padding:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.bottom-cta-box span{
    display:block;
    color:#fbbf24;
    font-weight:800;
    margin-bottom:14px;
}

.bottom-cta-box h2{
    color:#fff;
    font-size:clamp(34px,5vw,60px);
    line-height:1.1;
    max-width:760px;
}

/* =========================================================
FLOATING WHATSAPP
========================================================= */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
    min-width:64px;
    height:64px;
    border-radius:999px;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    padding:0 20px;
    box-shadow:0 18px 40px rgba(37,211,102,.35);
    transition:.3s ease;
}

.floating-whatsapp:hover{
    transform:translateY(-4px) scale(1.03);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width:1200px){

    .hero-grid,
    .section-grid,
    .why-grid,
    .guide-grid,
    .form-map-grid{
        grid-template-columns:1fr;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .success-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bottom-cta-box{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media (max-width:768px){

    .hasta-hero,
    .hasta-section,
    .services-section,
    .why-section,
    .success-section,
    .guide-section,
    .form-map-section,
    .faq-section,
    .seo-content,
    .bottom-cta{
        padding:80px 0;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-lead{
        font-size:18px;
    }

    .hero-trust{
        grid-template-columns:1fr;
    }

    .trust-grid{
        grid-template-columns:1fr 1fr;
        gap:14px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .success-grid{
        grid-template-columns:1fr;
    }

    .check-grid{
        grid-template-columns:1fr;
    }

    .form-box,
    .map-box{
        padding:28px;
    }

    .faq-question{
        font-size:18px;
        min-height:auto;
    }

    .seo-content h2{
        font-size:38px;
    }

    .bottom-cta-box{
        padding:40px 28px;
    }

    .bottom-cta-box h2{
        font-size:38px;
    }

    .floating-whatsapp{
        right:14px;
        bottom:14px;
        height:58px;
        min-width:58px;
        font-size:14px;
    }
}

@media (max-width:480px){

    .hero-content h1{
        font-size:42px;
    }

    .section-head h2,
    .section-grid h2,
    .why-content h2,
    .guide-grid h2,
    .form-box h2{
        font-size:34px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

    .service-card h3{
        font-size:24px;
    }

    .map-box h3{
        font-size:30px;
    }

    .seo-content h2{
        font-size:32px;
    }
}