/* ==================================================
   ANTALYA BÖLGE TEMSİLCİLİĞİ
   SEAACADEMYİK HİZMETLERİ
================================================== */

:root{
    --primary:#163a5f;
    --primary-dark:#102c48;
    --accent:#ff7a00;
    --text:#1f2937;
    --muted:#6b7280;
    --bg:#f8fafc;
    --white:#ffffff;
    --border:#e5e7eb;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:16px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
    height:auto;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

/* HERO */

.antalya-hero{
    padding:80px 0;
    background:linear-gradient(
        135deg,
        #163a5f 0%,
        #204d7a 100%
    );
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    margin-bottom:20px;
}

.hero-content h1{
    color:#fff;
    font-size:52px;
    line-height:1.1;
    margin:0 0 20px;
}

.hero-lead{
    color:#e8edf3;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.btn-primary{
    background:var(--accent);
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:10px;
    font-weight:700;
}

.btn-primary:hover{
    opacity:.9;
}

.btn-whatsapp{
    background:#25d366;
    color:#fff;
    text-decoration:none;
    padding:15px 28px;
    border-radius:10px;
    font-weight:700;
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.hero-stats div{
    background:rgba(255,255,255,.12);
    padding:20px;
    border-radius:12px;
    text-align:center;
}

.hero-stats strong{
    display:block;
    color:#fff;
    font-size:24px;
}

.hero-stats span{
    color:#d8e0e8;
    font-size:14px;
}

.hero-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

/* QUICK LINKS */

.quick-links{
    background:#fff;
    padding:30px 0;
}

.quick-links .container{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.quick-links a{
    text-decoration:none;
    color:var(--primary);
    border:1px solid var(--border);
    padding:12px 20px;
    border-radius:999px;
    font-weight:600;
}

.quick-links a:hover{
    background:var(--primary);
    color:#fff;
}

/* GENEL */

.section{
    padding:80px 0;
}

.section-tag{
    color:var(--accent);
    font-weight:700;
    display:block;
    margin-bottom:12px;
}

.section-head{
    text-align:center;
    max-width:750px;
    margin:auto auto 50px;
}

.section-head h2{
    font-size:40px;
    margin:0 0 15px;
}

.section-head p{
    color:var(--muted);
    line-height:1.8;
}

/* TWO COL */

.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.info-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:35px;
    box-shadow:var(--shadow);
}

.info-card ul{
    padding-left:20px;
}

.info-card li{
    margin-bottom:12px;
}

/* SERVICES */

.service-section{
    background:var(--bg);
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
}

.service-card img{
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
}

.service-card h3{
    padding:20px 20px 10px;
    margin:0;
}

.service-card p{
    padding:0 20px;
    color:var(--muted);
    line-height:1.7;
}

.service-card a{
    display:inline-block;
    margin:20px;
    text-decoration:none;
    color:var(--primary);
    font-weight:700;
}

/* PROCESS */

.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.process-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:25px;
    text-align:center;
}

.process-box span{
    display:inline-flex;
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:15px;
}

/* PRICING */

.price-box{
    background:linear-gradient(
        135deg,
        #163a5f,
        #204d7a
    );
    color:#fff;
    border-radius:20px;
    padding:60px;
}

.price-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}

.price-cards div{
    background:rgba(255,255,255,.1);
    padding:25px;
    border-radius:15px;
}

.price-cards strong{
    display:block;
    font-size:28px;
    margin-bottom:10px;
}

/* FORM */

.form-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:40px;
}

.offer-form{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow);
}

.form-row{
    display:flex;
    flex-direction:column;
    margin-bottom:18px;
}

.form-row label{
    font-weight:600;
    margin-bottom:8px;
}

.form-row input,
.form-row select,
.form-row textarea{
    width:100%;
    padding:14px;
    border:1px solid #d7dce2;
    border-radius:10px;
    font-size:15px;
}

.form-button{
    width:100%;
    border:none;
    background:var(--accent);
    color:#fff;
    padding:16px;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

/* FAQ */

.faq-list{
    max-width:900px;
    margin:auto;
}

.faq-item{
    border:1px solid var(--border);
    margin-bottom:15px;
    border-radius:12px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    text-align:left;
    padding:20px;
    background:#fff;
    border:none;
    cursor:pointer;
    font-weight:700;
}

.faq-answer{
    padding:0 20px 20px;
}

/* WHATSAPP */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
    background:#25d366;
    color:#fff;
    text-decoration:none;
    padding:15px 22px;
    border-radius:999px;
    font-weight:700;
    box-shadow:var(--shadow);
}

/* TABLET */

@media(max-width:991px){

    .hero-grid,
    .two-col,
    .form-grid{
        grid-template-columns:1fr;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-content h1{
        font-size:42px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .section{
        padding:60px 0;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-lead{
        font-size:16px;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .price-cards{
        grid-template-columns:1fr;
    }

    .section-head h2{
        font-size:30px;
    }

    .price-box{
        padding:35px 25px;
    }

    .offer-form{
        padding:25px;
    }

    .floating-whatsapp{
        right:15px;
        bottom:15px;
    }
}