/* ==================================================
   BALIKESİR BÖLGE TEMSİLCİLİĞİ
   SEAACADEMYİK HİZMETLERİ
   Mobil Uyumlu - Hafif - SEO Dostu
================================================== */

:root {
    --sea-blue: #12395b;
    --sea-blue-dark: #09263f;
    --sea-orange: #f28c28;
    --sea-orange-dark: #d97312;
    --sea-light: #f5f8fb;
    --sea-white: #ffffff;
    --sea-text: #24364a;
    --sea-muted: #65758b;
    --sea-border: #dfe7ef;
    --sea-shadow: 0 18px 45px rgba(9, 38, 63, 0.13);
    --sea-radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--sea-text);
    background: var(--sea-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

.balikesir-page {
    overflow: hidden;
}

.balikesir-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* HERO */

.balikesir-hero {
    position: relative;
    padding: 80px 0 70px;
    background:
        linear-gradient(135deg, rgba(9, 38, 63, 0.96), rgba(18, 57, 91, 0.9)),
        radial-gradient(circle at top right, rgba(242, 140, 40, 0.35), transparent 35%);
    color: var(--sea-white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 42px;
}

.hero-badge,
.section-title span,
.mini-title {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--sea-orange);
    background: rgba(242, 140, 40, 0.12);
    border: 1px solid rgba(242, 140, 40, 0.28);
}

.hero-content h1 {
    margin: 18px 0 18px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -1.4px;
    color: var(--sea-white);
}

.hero-content p {
    margin: 0;
    max-width: 690px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn-primary,
.btn-whatsapp,
.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn-primary {
    color: var(--sea-white);
    background: var(--sea-orange);
    box-shadow: 0 12px 28px rgba(242, 140, 40, 0.28);
}

.btn-primary:hover {
    background: var(--sea-orange-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    color: var(--sea-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats strong {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
    color: var(--sea-orange);
}

.hero-stats span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.55), rgba(255, 255, 255, 0.08));
    z-index: 0;
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--sea-shadow);
}

/* SECTIONS */

.balikesir-section {
    padding: 78px 0;
}

.intro-section,
.area-section,
.faq-section {
    background: var(--sea-white);
}

.section-title {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title h2 {
    margin: 16px 0 14px;
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.18;
    color: var(--sea-blue-dark);
    letter-spacing: -0.8px;
}

.section-title p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: var(--sea-muted);
}

.section-title.light h2,
.section-title.light p {
    color: var(--sea-white);
}

/* SERVICE CARDS */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    overflow: hidden;
    border-radius: var(--sea-radius);
    background: var(--sea-white);
    border: 1px solid var(--sea-border);
    box-shadow: 0 12px 34px rgba(9, 38, 63, 0.08);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sea-shadow);
}

.service-card img {
    width: 100%;
    height: 178px;
    object-fit: cover;
}

.service-card h3 {
    margin: 20px 18px 10px;
    font-size: 20px;
    color: var(--sea-blue-dark);
}

.service-card p {
    margin: 0 18px;
    min-height: 98px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--sea-muted);
}

.service-card a {
    display: inline-flex;
    margin: 18px;
    font-weight: 800;
    color: var(--sea-orange);
}

/* DARK SECTION */

.dark-section {
    background:
        linear-gradient(135deg, rgba(9, 38, 63, 0.98), rgba(18, 57, 91, 0.96)),
        radial-gradient(circle at top left, rgba(242, 140, 40, 0.28), transparent 40%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    padding: 26px 22px;
    border-radius: var(--sea-radius);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.why-card strong {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 28px;
    color: var(--sea-orange);
}

.why-card h3 {
    margin: 0 0 10px;
    color: var(--sea-white);
    font-size: 20px;
}

.why-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 15px;
    line-height: 1.7;
}

/* LINKS */

.link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.link-grid a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 16px 18px;
    border-radius: 15px;
    color: var(--sea-blue-dark);
    background: var(--sea-light);
    border: 1px solid var(--sea-border);
    font-weight: 800;
    transition: 0.25s ease;
}

.link-grid a:hover {
    color: var(--sea-white);
    background: var(--sea-blue);
    border-color: var(--sea-blue);
    transform: translateY(-2px);
}

/* CONTENT */

.content-section {
    background: var(--sea-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: start;
}

.content-grid h2 {
    margin: 16px 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    color: var(--sea-blue-dark);
}

.content-grid p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--sea-muted);
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 14px 14px 14px 42px;
    border-radius: 14px;
    background: var(--sea-white);
    border: 1px solid var(--sea-border);
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 13px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--sea-white);
    background: var(--sea-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.side-box {
    padding: 30px;
    border-radius: 24px;
    background: var(--sea-white);
    border: 1px solid var(--sea-border);
    box-shadow: 0 16px 38px rgba(9, 38, 63, 0.08);
}

.side-box h3 {
    margin: 0 0 18px;
    font-size: 24px;
    color: var(--sea-blue-dark);
}

.side-box ol {
    margin: 0;
    padding-left: 22px;
}

.side-box li {
    margin-bottom: 14px;
    line-height: 1.6;
    color: var(--sea-muted);
    font-weight: 700;
}

/* FORM */

.form-section {
    background:
        linear-gradient(135deg, rgba(245, 248, 251, 1), rgba(255, 255, 255, 1));
}

.form-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 34px;
    align-items: start;
}

.form-info {
    position: sticky;
    top: 20px;
    padding: 34px;
    border-radius: 26px;
    color: var(--sea-white);
    background: linear-gradient(135deg, var(--sea-blue-dark), var(--sea-blue));
    box-shadow: var(--sea-shadow);
}

.form-info h2 {
    margin: 16px 0;
    font-size: clamp(27px, 4vw, 40px);
    line-height: 1.2;
}

.form-info p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.84);
}

.contact-mini {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-mini p {
    margin: 0 0 10px;
}

.balikesir-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 30px;
    border-radius: 26px;
    background: var(--sea-white);
    border: 1px solid var(--sea-border);
    box-shadow: var(--sea-shadow);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row.full {
    grid-column: 1 / -1;
}

.form-row label {
    font-size: 14px;
    font-weight: 800;
    color: var(--sea-blue-dark);
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    border-radius: 13px;
    border: 1px solid var(--sea-border);
    background: #fbfdff;
    color: var(--sea-text);
    font-size: 15px;
    outline: none;
    transition: 0.2s ease;
}

.form-row textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--sea-orange);
    box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.13);
    background: var(--sea-white);
}

.checkbox-row label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--sea-muted);
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    min-height: auto;
    margin-top: 2px;
}

.form-submit {
    grid-column: 1 / -1;
    width: 100%;
    border: 0;
    color: var(--sea-white);
    background: var(--sea-orange);
}

.form-submit:hover {
    background: var(--sea-orange-dark);
    transform: translateY(-2px);
}

/* FAQ */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--sea-border);
    background: var(--sea-white);
    box-shadow: 0 10px 26px rgba(9, 38, 63, 0.06);
}

.faq-question {
    width: 100%;
    border: 0;
    background: var(--sea-white);
    color: var(--sea-blue-dark);
    padding: 20px 22px;
    text-align: left;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    float: right;
    font-size: 22px;
    color: var(--sea-orange);
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: var(--sea-muted);
    line-height: 1.7;
}

/* WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--sea-white);
    background: #25d366;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32);
}

.floating-whatsapp:hover {
    background: #1ebe5d;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .hero-grid,
    .content-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-info {
        position: static;
    }

    .hero-image img {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .balikesir-container {
        width: min(100% - 22px, 1180px);
    }

    .balikesir-hero {
        padding: 54px 0 46px;
    }

    .balikesir-section {
        padding: 52px 0;
    }

    .hero-content h1 {
        letter-spacing: -0.8px;
    }

    .hero-content p,
    .section-title p,
    .content-grid p,
    .form-info p {
        font-size: 15.5px;
        line-height: 1.72;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-whatsapp {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .why-grid,
    .link-grid,
    .check-list,
    .balikesir-form {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .hero-image img {
        min-height: 260px;
        border-radius: 20px;
    }

    .hero-image::before {
        border-radius: 22px;
    }

    .form-info,
    .balikesir-form,
    .side-box {
        padding: 22px;
        border-radius: 20px;
    }

    .faq-question {
        padding: 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        min-width: 110px;
        min-height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title h2,
    .content-grid h2,
    .form-info h2 {
        font-size: 27px;
    }

    .hero-stats div,
    .why-card,
    .service-card,
    .link-grid a {
        border-radius: 16px;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
        font-size: 14px;
    }
}