/* =========================================================
   YAYLAPINAR ANAOKULU
   PREMIUM SITE.CSS
========================================================= */


/* =========================================================
   RENKLER / DEĞİŞKENLER
========================================================= */

:root {
    --school-green: #315e58;
    --school-green-dark: #1d423d;
    --school-green-light: #477c74;
    --school-green-soft: #eaf3f0;
    --school-orange: #ed9945;
    --school-orange-dark: #d97b2a;
    --school-orange-light: #f6b66f;
    --school-orange-soft: #fff3e7;
    --school-text: #293330;
    --school-muted: #6c7774;
    --school-bg: #f7faf9;
    --school-white: #ffffff;
    --school-border: rgba(49, 94, 88, .09);
    --shadow-xs: 0 5px 18px rgba(28, 61, 56, .05);
    --shadow-soft: 0 12px 35px rgba(28, 61, 56, .08);
    --shadow-medium: 0 18px 55px rgba(28, 61, 56, .12);
    --shadow-premium: 0 28px 75px rgba(25, 58, 53, .16);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
}


/* =========================================================
   TEMEL
========================================================= */

html {
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--school-text);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

main {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    color: #ffffff;
    background: var(--school-orange);
}


/* =========================================================
   GENEL SECTION
========================================================= */

.section {
    position: relative;
    padding: 105px 0;
}

.section-small,
.page-header-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--school-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.7px;
    text-transform: uppercase;
}

.section-title {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}

    .section-title span {
        display: inline-block;
        margin-bottom: 12px;
        color: var(--school-orange);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2.6px;
        text-transform: uppercase;
    }

    .section-title h2 {
        margin-bottom: 18px;
        color: var(--school-green);
        font-size: clamp(32px, 4vw, 48px);
        line-height: 1.12;
        font-weight: 850;
        letter-spacing: -1px;
    }

    .section-title p {
        margin-bottom: 0;
        color: var(--school-muted);
        font-size: 17px;
        line-height: 1.8;
    }


/* =========================================================
   GENEL BUTONLAR
========================================================= */

.btn {
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

.btn-school {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 27px;
    color: #ffffff !important;
    font-weight: 750;
    border: none;
    border-radius: 999px;
    background: linear-gradient( 135deg, #f0a14d, #df8432 );
    box-shadow: 0 12px 30px rgba(222, 132, 50, .23);
}

    .btn-school:hover {
        color: #ffffff !important;
        transform: translateY(-3px);
        background: linear-gradient( 135deg, #e9943f, #d27627 );
        box-shadow: 0 18px 38px rgba(222, 132, 50, .31);
    }

.btn-outline-secondary {
    color: var(--school-green);
    border-color: rgba(49, 94, 88, .32);
    border-radius: 999px;
}

    .btn-outline-secondary:hover {
        color: #ffffff;
        border-color: var(--school-green);
        background: var(--school-green);
    }


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: relative;
    z-index: 100;
    min-height: 115px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(255, 255, 255, .97) !important;
    border-bottom: 1px solid rgba(49, 94, 88, .06);
    box-shadow: 0 8px 35px rgba(28, 56, 52, .07);
    backdrop-filter: blur(18px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 25px;
}

.site-logo {
    width: 100px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .25s ease, filter .25s ease;
}

.navbar-brand:hover .site-logo {
    transform: scale(1.04);
}


/* MENÜ */

.navbar-nav {
    gap: 6px;
}

    .navbar-nav .nav-link {
        position: relative;
        margin: 0 4px;
        padding: 14px 11px !important;
        color: #282d2c !important;
        font-size: 18px;
        font-weight: 700;
        white-space: nowrap;
        transition: color .2s ease, transform .2s ease;
    }

        .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 4px;
            width: 0;
            height: 3px;
            border-radius: 20px;
            background: var(--school-orange);
            transform: translateX(-50%);
            transition: width .25s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--school-orange) !important;
            transform: translateY(-1px);
        }

            .navbar-nav .nav-link:hover::after {
                width: 34px;
            }


    /* BİLGİ AL */

    .navbar-nav .btn-school {
        min-height: 58px;
        padding: 15px 30px;
        font-size: 18px;
        font-weight: 750;
        box-shadow: 0 14px 32px rgba(222, 132, 50, .24);
    }

        .navbar-nav .btn-school i {
            font-size: 19px;
        }

.navbar-toggler {
    padding: 9px 11px;
    border: 1px solid rgba(49, 94, 88, .15);
    border-radius: 12px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }


/* =========================================================
   ANA SAYFA PREMIUM HERO
========================================================= */

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background-image: linear-gradient( 90deg, rgba(20, 51, 47, .96) 0%, rgba(27, 65, 59, .88) 32%, rgba(31, 74, 67, .52) 57%, rgba(31, 74, 67, .08) 100% ), url('/images/hero-premium.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

    .hero::before {
        content: "";
        position: absolute;
        top: -220px;
        left: -180px;
        width: 560px;
        height: 560px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(242, 159, 74, .23), transparent 68% );
        pointer-events: none;
    }

    .hero::after {
        content: "";
        position: absolute;
        right: -220px;
        bottom: -160px;
        width: 720px;
        height: 720px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(237, 153, 69, .13), transparent 68% );
        pointer-events: none;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

    .hero .row {
        min-height: 760px;
    }

.hero-small {
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    color: #ffd6a7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.hero h1 {
    max-width: 800px;
    margin: 24px 0 22px;
    color: #ffffff;
    font-size: clamp(48px, 5vw, 74px);
    line-height: 1.035;
    font-weight: 850;
    letter-spacing: -2.2px;
    text-shadow: 0 5px 24px rgba(0, 0, 0, .18);
}

.hero p {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .89);
    font-size: 19px;
    line-height: 1.85;
}

.hero .btn {
    min-height: 52px;
    padding-left: 28px;
    padding-right: 28px;
}

.hero .btn-outline-light {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .60);
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(9px);
}

    .hero .btn-outline-light:hover {
        color: var(--school-green);
        border-color: #ffffff;
        background: #ffffff;
        transform: translateY(-3px);
    }


/* =========================================================
   FEATURE KARTLARI
========================================================= */

.feature-card {
    position: relative;
    height: 100%;
    padding: 40px 29px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(49, 94, 88, .07);
    border-radius: 22px;
    background: linear-gradient( 180deg, #ffffff, #fcfdfd );
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 25%;
        right: 25%;
        height: 3px;
        opacity: 0;
        border-radius: 10px;
        background: linear-gradient( 90deg, var(--school-orange), #f5ba7b );
        transition: opacity .3s ease;
    }

    .feature-card:hover {
        transform: translateY(-9px);
        border-color: rgba(237, 153, 69, .18);
        box-shadow: var(--shadow-medium);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

.feature-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 42px;
    border-radius: 22px;
    background: linear-gradient( 145deg, var(--school-green-soft), #f6faf8 );
    box-shadow: inset 0 0 0 1px rgba(49, 94, 88, .04);
}

.feature-card h3 {
    margin-bottom: 13px;
    color: var(--school-green);
    font-size: 21px;
    font-weight: 750;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--school-muted);
    line-height: 1.75;
}


/* =========================================================
   ANA SAYFA - HAKKIMIZDA PREMIUM
========================================================= */

.about-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: radial-gradient( circle at 8% 20%, rgba(237, 153, 69, .055), transparent 28% ), radial-gradient( circle at 92% 75%, rgba(49, 94, 88, .045), transparent 26% ), linear-gradient( 145deg, #f8fbfa 0%, #ffffff 55%, #fbfdfc 100% );
}


/* =========================================================
   SOL PREMIUM FOTOĞRAF
========================================================= */

.about-premium-visual {
    position: relative;
    width: 100%;
    height: 610px;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, .98);
    border-radius: 36px;
    background: #eaf2ef;
    box-shadow: 0 34px 85px rgba(25, 60, 54, .17), 0 12px 32px rgba(25, 60, 54, .08);
    isolation: isolate;
}


/* FOTOĞRAF */

.about-premium-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* Dikey fotoğraflarda okul binası ortada kalsın */
    object-position: center center;
    border-radius: 29px;
    transition: transform .75s ease, filter .4s ease;
}


/* FOTOĞRAF HOVER */

.about-premium-visual:hover .about-premium-photo {
    transform: scale(1.035);
    filter: saturate(1.05) contrast(1.02) brightness(1.01);
}


/* ALT GÖLGE GEÇİŞİ */

.about-premium-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient( to top, rgba(18, 49, 44, .28) 0%, rgba(18, 49, 44, .07) 30%, transparent 58% );
}


/* TURUNCU DEKOR */

.about-premium-visual::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -75px;
    z-index: 2;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(237, 153, 69, .22), rgba(237, 153, 69, .05) 65%, transparent 70% );
    pointer-events: none;
}


/* =========================================================
   FOTOĞRAF ÜZERİNDE PREMIUM ETİKET
========================================================= */

.about-premium-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: calc(100% - 48px);
    padding: 13px 19px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .15px;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    background: rgba(33, 72, 66, .78);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


    /* ETİKET İKONU */

    .about-premium-badge i {
        color: #f7b36d;
        font-size: 16px;
    }


/* =========================================================
   SAĞ YAZI ALANI
========================================================= */

.about-section .section-small {
    margin-bottom: 15px;
}

.about-section h2 {
    max-width: 700px;
    margin: 10px 0 28px;
    color: var(--school-green);
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -1.4px;
}

.about-section p {
    max-width: 720px;
    margin-bottom: 20px;
    color: #66726f;
    font-size: 17px;
    line-height: 1.95;
}


/* =========================================================
   HAKKIMIZDA BUTONLARI
========================================================= */

.about-section .d-flex {
    margin-top: 30px !important;
    gap: 12px !important;
}

.about-section .btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 27px;
    font-size: 16px;
    font-weight: 750;
    border-radius: 999px;
}

.about-section .btn-school {
    box-shadow: 0 14px 32px rgba(222, 132, 50, .24);
}

    .about-section .btn-school:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(222, 132, 50, .31);
    }

.about-section .btn-outline-secondary {
    color: var(--school-green);
    border: 1px solid rgba(49, 94, 88, .32);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(8px);
}

    .about-section .btn-outline-secondary:hover {
        color: #ffffff;
        border-color: var(--school-green);
        background: var(--school-green);
        transform: translateY(-3px);
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-section {
        padding: 90px 0;
    }

    .about-premium-visual {
        height: 500px;
        margin-bottom: 15px;
    }

    .about-section h2 {
        font-size: 44px;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 767px) {

    .about-section {
        padding: 75px 0;
    }

    .about-premium-visual {
        height: 390px;
        border-width: 5px;
        border-radius: 27px;
    }

    .about-premium-photo {
        border-radius: 22px;
    }

    .about-premium-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
        justify-content: center;
        padding: 11px 14px;
        font-size: 13px;
    }

    .about-section {
        text-align: center;
    }

        .about-section h2 {
            margin-left: auto;
            margin-right: auto;
            font-size: 36px;
        }

        .about-section p {
            margin-left: auto;
            margin-right: auto;
            font-size: 16px;
        }

        .about-section .d-flex {
            justify-content: center;
        }
}


/* =========================================================
   KÜÇÜK TELEFON
========================================================= */

@media (max-width: 480px) {

    .about-premium-visual {
        height: 320px;
        border-radius: 23px;
    }

    .about-premium-photo {
        border-radius: 18px;
    }

    .about-section h2 {
        font-size: 31px;
    }

    .about-section .btn {
        width: 100%;
        min-height: 52px;
    }
}
/* =========================================================
   ANA SAYFA BİR GÜNÜMÜZ PREMIUM
========================================================= */

.daily-premium-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background: radial-gradient( circle at 85% 20%, rgba(49, 94, 88, .06), transparent 25% ), linear-gradient( 145deg, #f8fbfa, #ffffff );
}

.daily-premium-content h2 {
    margin: 13px 0 25px;
    color: var(--school-green);
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -1.2px;
}

.daily-premium-content p {
    max-width: 700px;
    color: #697371;
    font-size: 17px;
    line-height: 1.9;
}

.daily-premium-image {
    position: relative;
    height: 545px;
    overflow: hidden;
    border: 7px solid rgba(255,255,255,.96);
    border-radius: 34px;
    background: #edf5f2;
    box-shadow: 0 30px 80px rgba(28,65,59,.18), 0 10px 30px rgba(28,65,59,.08);
}

    .daily-premium-image::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( to top, rgba(18,47,43,.20), transparent 42% );
    }

    .daily-premium-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .7s ease, filter .4s ease;
    }

    .daily-premium-image:hover img {
        transform: scale(1.045);
        filter: saturate(1.08) contrast(1.03);
    }

.daily-image-label {
    position: absolute;
    top: 23px;
    left: 23px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 10px 17px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 999px;
    background: rgba(29,68,62,.68);
    backdrop-filter: blur(12px);
}

.daily-image-info {
    position: absolute;
    left: 23px;
    bottom: 23px;
    z-index: 3;
    min-width: 255px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 16px 38px rgba(0,0,0,.13);
    backdrop-filter: blur(16px);
}

.daily-image-info-icon {
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 13px;
    background: linear-gradient( 135deg, var(--school-orange), var(--school-orange-dark) );
}

.daily-image-info strong {
    display: block;
    color: var(--school-green);
    font-size: 16px;
    font-weight: 800;
}

.daily-image-info span {
    display: block;
    color: #74807d;
    font-size: 12px;
}


/* =========================================================
   DUYURULAR
========================================================= */

.news-card {
    position: relative;
    height: 100%;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--school-border);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .news-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-medium);
    }

.news-date {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--school-orange);
    font-size: 14px;
    font-weight: 750;
}

.news-card h4 {
    margin-bottom: 15px;
    color: var(--school-green);
    font-size: 22px;
    font-weight: 800;
}

.news-card p {
    color: var(--school-muted);
    line-height: 1.75;
}

.news-card a {
    color: var(--school-orange);
    font-weight: 700;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.page-header {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient( circle at 90% 10%, rgba(255,255,255,.07), transparent 25% ), linear-gradient( 135deg, #234a44, #3d746b );
}

    .page-header::before {
        content: "";
        position: absolute;
        left: -130px;
        bottom: -190px;
        width: 330px;
        height: 330px;
        border-radius: 50%;
        background: rgba(237,153,69,.09);
    }

    .page-header::after {
        content: "";
        position: absolute;
        top: -180px;
        right: -90px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
    }

    .page-header .container {
        position: relative;
        z-index: 2;
    }

    .page-header h1 {
        margin-bottom: 15px;
        color: #ffffff;
        font-size: clamp(40px, 5vw, 56px);
        font-weight: 850;
        letter-spacing: -1px;
    }

    .page-header p {
        max-width: 720px;
        margin: auto;
        color: rgba(255,255,255,.88);
        font-size: 18px;
        line-height: 1.75;
    }


/* =========================================================
   HAKKIMIZDA SAYFASI PREMIUM
========================================================= */

.about-detail-section {
    position: relative;
    padding: 115px 0;
    background: radial-gradient( circle at 12% 85%, rgba(237,153,69,.045), transparent 25% ), #ffffff;
}


/* FOTOĞRAF */

.about-detail-image {
    position: relative;
    overflow: hidden;
    border: 7px solid rgba(255,255,255,.98);
    border-radius: 34px;
    background: #eef5f2;
    box-shadow: 0 32px 80px rgba(30,67,61,.17), 0 10px 30px rgba(30,67,61,.08);
}

    .about-detail-image::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient( to top, rgba(22,51,47,.17), transparent 45% );
    }

    .about-detail-image::after {
        content: "";
        position: absolute;
        right: -50px;
        bottom: -50px;
        z-index: 3;
        width: 170px;
        height: 170px;
        border-radius: 55% 0 0 0;
        background: rgba(237,153,69,.12);
        pointer-events: none;
    }

    .about-detail-image img {
        width: 100%;
        height: 560px;
        display: block;
        object-fit: cover;
        border-radius: 27px;
        transition: transform .7s ease, filter .35s ease;
    }

    .about-detail-image:hover img {
        transform: scale(1.04);
        filter: saturate(1.06) contrast(1.02);
    }


/* HAKKIMIZDA YAZI */

.about-detail-section h2 {
    margin: 12px 0 26px;
    color: var(--school-green);
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.10;
    font-weight: 850;
    letter-spacing: -1px;
}

.about-detail-section p {
    margin-bottom: 20px;
    color: #626d6a;
    font-size: 17px;
    line-height: 1.9;
}


/* =========================================================
   MİSYON / VİZYON
========================================================= */

.mission-section {
    padding: 105px 0;
    background: linear-gradient( 180deg, #f5f9f7, #fbfcfc );
}

.mission-card {
    position: relative;
    height: 100%;
    padding: 43px;
    overflow: hidden;
    border: 1px solid var(--school-border);
    border-radius: 25px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .mission-card::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: rgba(237,153,69,.055);
    }

    .mission-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-medium);
    }

.mission-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 39px;
    border-radius: 20px;
    background: var(--school-green-soft);
}

.mission-card h3 {
    color: var(--school-green);
    font-weight: 800;
}

.mission-card p {
    margin-bottom: 0;
    color: var(--school-muted);
    line-height: 1.8;
}


/* =========================================================
   DEĞERLER
========================================================= */

.values-section {
    padding: 105px 0;
    background: #ffffff;
}

.value-card {
    height: 100%;
    padding: 38px 26px;
    text-align: center;
    border: 1px solid var(--school-border);
    border-radius: 23px;
    background: linear-gradient( 180deg, #ffffff, #fcfdfd );
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-medium);
    }

.value-icon {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 39px;
    border-radius: 22px;
    background: linear-gradient( 145deg, var(--school-green-soft), #f9fbfa );
}

.value-card h4 {
    color: var(--school-green);
    font-weight: 800;
}

.value-card p {
    margin-bottom: 0;
    color: var(--school-muted);
    line-height: 1.75;
}


/* =========================================================
   ANAOKULU PROGRAMI PREMIUM
========================================================= */

.anaokulu-premium-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: radial-gradient( circle at 90% 10%, rgba(237,153,69,.07), transparent 24% ), linear-gradient( 145deg, #ffffff, #f8fbfa );
}

.anaokulu-premium-content h2 {
    margin: 12px 0 24px;
    color: var(--school-green);
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -1.2px;
}

.anaokulu-premium-content p {
    max-width: 720px;
    margin-bottom: 20px;
    color: #687370;
    font-size: 17px;
    line-height: 1.9;
}


/* LİSTE */

.program-premium-list {
    margin-top: 30px;
}

.program-premium-item {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 12px;
    padding: 15px 18px;
    color: var(--school-green);
    font-size: 16px;
    font-weight: 700;
    border: 1px solid rgba(49,94,88,.08);
    border-radius: 14px;
    background: linear-gradient( 90deg, rgba(234,242,239,.80), rgba(255,255,255,.95) );
    box-shadow: var(--shadow-xs);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .program-premium-item:hover {
        transform: translateX(6px);
        box-shadow: var(--shadow-soft);
    }

.program-premium-check {
    width: 31px;
    min-width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 10px;
    background: linear-gradient( 135deg, var(--school-green), #3f766e );
}


/* PREMIUM FOTOĞRAF */

.anaokulu-premium-visual {
    position: relative;
    height: 585px;
    overflow: hidden;
    border: 7px solid rgba(255,255,255,.96);
    border-radius: 34px;
    background: #edf5f2;
    box-shadow: 0 30px 80px rgba(30,67,61,.16), 0 10px 30px rgba(30,67,61,.08);
}

    .anaokulu-premium-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient( to top, rgba(20,48,44,.34), rgba(20,48,44,.06) 35%, transparent 60% );
    }

.anaokulu-premium-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease, filter .35s ease;
}

.anaokulu-premium-visual:hover
.anaokulu-premium-photo {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.02);
}

.anaokulu-premium-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    background: rgba(36,74,68,.72);
    backdrop-filter: blur(12px);
}

    .anaokulu-premium-tag i {
        color: #f4b16e;
    }

.anaokulu-premium-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 44px rgba(0,0,0,.13);
    backdrop-filter: blur(16px);
}

.anaokulu-premium-overlay-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 14px;
    background: linear-gradient( 135deg, #ef9a45, #dc7d2d );
}

.anaokulu-premium-overlay-text strong {
    display: block;
    color: var(--school-green);
    font-size: 16px;
    font-weight: 800;
}

.anaokulu-premium-overlay-text span {
    display: block;
    margin-top: 3px;
    color: #74807d;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   GÜNLÜK AKIŞ
========================================================= */

.daily-section {
    padding: 105px 0;
    background: linear-gradient( 180deg, #f5f9f7, #fbfcfc );
}

.timeline {
    max-width: 970px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 115px 1fr;
    gap: 18px;
    margin-bottom: 21px;
}

.timeline-time {
    padding-top: 24px;
    color: var(--school-orange);
    font-size: 20px;
    font-weight: 800;
}

.timeline-content {
    display: flex;
    align-items: flex-start;
    gap: 21px;
    padding: 27px 30px;
    border: 1px solid var(--school-border);
    border-radius: 21px;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .timeline-content:hover {
        transform: translateX(5px);
        box-shadow: var(--shadow-soft);
    }

.timeline-icon {
    width: 58px;
    min-width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    border-radius: 17px;
    background: var(--school-green-soft);
}

.timeline-content h3 {
    margin-bottom: 7px;
    color: var(--school-green);
    font-size: 20px;
    font-weight: 800;
}

.timeline-content p {
    margin: 0;
    color: var(--school-muted);
    line-height: 1.75;
}


/* =========================================================
   OKUL BİLGİ KARTLARI
========================================================= */

.school-info-section {
    padding: 100px 0;
    background: #ffffff;
}

.school-info-card {
    position: relative;
    height: 100%;
    padding: 37px 23px;
    text-align: center;
    overflow: hidden;
    border: 1px solid var(--school-border);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .school-info-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-medium);
    }

.school-info-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 19px;
    color: var(--school-orange);
    font-size: 37px;
    border-radius: 22px;
    background: linear-gradient( 145deg, var(--school-green-soft), #f9fbfa );
}

.school-info-card h3 {
    margin-bottom: 11px;
    color: var(--school-green);
    font-size: 20px;
    font-weight: 800;
}

.school-info-card p {
    margin-bottom: 0;
    color: var(--school-muted);
    line-height: 1.7;
}

.school-info-card a {
    color: var(--school-orange);
    font-weight: 700;
}


/* =========================================================
   EĞİTİMLER
========================================================= */

.education-intro {
    padding: 110px 0;
}

    .education-intro h2 {
        margin: 10px 0 24px;
        color: var(--school-green);
        font-size: clamp(36px, 4vw, 48px);
        font-weight: 850;
    }

    .education-intro p {
        color: #626b69;
        line-height: 1.85;
    }

.education-intro-box {
    position: relative;
    min-height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 66px;
    border-radius: 32px;
    background: linear-gradient( 145deg, #dfebe7, #f3f8f6 );
    box-shadow: var(--shadow-medium);
}

.education-section {
    padding: 105px 0;
    background: linear-gradient( 180deg, #f6f9f8, #fbfcfc );
}

.education-card {
    height: 100%;
    padding: 38px 28px;
    text-align: center;
    border: 1px solid var(--school-border);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .education-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-medium);
    }

.education-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 41px;
    border-radius: 22px;
    background: var(--school-green-soft);
}

.education-card h3 {
    margin-bottom: 13px;
    color: var(--school-green);
    font-size: 21px;
    font-weight: 800;
}

.education-card p {
    margin-bottom: 0;
    color: var(--school-muted);
    line-height: 1.75;
}

.program-cta {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient( 135deg, #dc7e2d, #f0a04b );
}

    .program-cta h2 {
        color: #ffffff;
        font-weight: 850;
    }

    .program-cta p {
        color: rgba(255,255,255,.92);
    }


/* =========================================================
   GALERİ
========================================================= */

.gallery-section {
    padding: 105px 0;
    background: #ffffff;
}

.gallery-card {
    position: relative;
    height: 310px;
    overflow: hidden;
    border-radius: 25px;
    background: #e8efed;
    box-shadow: 0 15px 40px rgba(29,59,55,.11);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .gallery-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 22px 55px rgba(29,59,55,.16);
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.075);
    }

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 24px 24px;
    color: #ffffff;
    background: linear-gradient( to top, rgba(17,36,33,.91), rgba(17,36,33,.42), transparent );
}

    .gallery-overlay h4 {
        color: #ffffff;
        font-size: 20px;
        font-weight: 800;
    }

    .gallery-overlay p {
        color: rgba(255,255,255,.87);
    }


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 105px 0;
    background: linear-gradient( 180deg, #f5f9f7, #fbfcfc );
}

.accordion {
    max-width: 920px;
    margin: auto;
}

.accordion-item {
    margin-bottom: 14px;
    overflow: hidden;
    border: none;
    border-radius: 18px !important;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
}

.accordion-button {
    padding: 22px 24px;
    color: var(--school-green);
    font-size: 16px;
    font-weight: 750;
    background: #ffffff;
}

    .accordion-button:not(.collapsed) {
        color: var(--school-green);
        background: linear-gradient( 90deg, #edf5f2, #f7faf9 );
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

.accordion-body {
    padding: 22px 24px;
    color: #666f6d;
    line-height: 1.8;
}


/* =========================================================
   FORMLAR
========================================================= */

.info-form-section,
.contact-form-section {
    padding: 105px 0;
    background: linear-gradient( 180deg, #f6f9f8, #fbfcfc );
}

.info-form-box,
.contact-form-box {
    position: relative;
    padding: 50px;
    overflow: hidden;
    border: 1px solid var(--school-border);
    border-radius: 31px;
    background: #ffffff;
    box-shadow: var(--shadow-premium);
}

    .info-form-box::before,
    .contact-form-box::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 190px;
        height: 190px;
        border-radius: 50%;
        background: rgba(237,153,69,.07);
    }

    .info-form-box h2,
    .contact-form-box h2 {
        position: relative;
        margin: 10px 0 18px;
        color: var(--school-green);
        font-size: clamp(30px, 4vw, 40px);
        font-weight: 850;
    }

    .info-form-box p,
    .contact-form-box p {
        color: #656e6c;
        line-height: 1.8;
    }

.form-label {
    margin-bottom: 7px;
    color: var(--school-green);
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 52px;
    padding: 12px 15px;
    color: #333938;
    border: 1px solid #dde5e2;
    border-radius: 13px;
    background: #ffffff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

textarea.form-control {
    min-height: 145px;
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(49,94,88,.28);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--school-orange);
    box-shadow: 0 0 0 .20rem rgba(237,153,69,.13);
}

.form-check-input:checked {
    border-color: var(--school-orange);
    background-color: var(--school-orange);
}

.text-danger {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

.alert-success {
    color: #245c48;
    border: none;
    border-radius: 15px;
    background: #e7f5ef;
}


/* =========================================================
   İLETİŞİM
========================================================= */

.contact-info-section {
    padding: 105px 0;
}

.contact-info-card {
    height: 100%;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid var(--school-border);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .contact-info-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-medium);
    }

.contact-info-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--school-orange);
    font-size: 29px;
    border-radius: 22px;
    background: linear-gradient( 145deg, var(--school-green-soft), #f8fbfa );
}

.contact-info-card h3 {
    color: var(--school-green);
    font-weight: 800;
}

.contact-info-card p {
    color: var(--school-muted);
    line-height: 1.7;
}

.contact-info-card a {
    color: var(--school-orange);
    font-weight: 700;
    word-break: break-word;
}


/* HIZLI İLETİŞİM */

.quick-contact-section {
    padding: 105px 0;
    background: linear-gradient( 180deg, #f5f9f7, #fbfcfc );
}

    .quick-contact-section h2 {
        color: var(--school-green);
        font-size: clamp(33px, 4vw, 45px);
        font-weight: 850;
    }

    .quick-contact-section p {
        color: #626b69;
        line-height: 1.85;
    }

.quick-contact-box {
    padding: 48px;
    text-align: center;
    border: 1px solid var(--school-border);
    border-radius: 29px;
    background: #ffffff;
    box-shadow: var(--shadow-medium);
}

.quick-contact-icon {
    margin-bottom: 15px;
    font-size: 65px;
}

.quick-contact-box h3 {
    color: var(--school-green);
    font-weight: 800;
}


/* E-POSTA */

.contact-email-section {
    padding: 95px 0;
}

.contact-email-box {
    padding: 48px;
    border: 1px solid var(--school-border);
    border-radius: 29px;
    background: #ffffff;
    box-shadow: var(--shadow-medium);
}

    .contact-email-box h2 {
        color: var(--school-green);
        font-weight: 850;
    }

    .contact-email-box p {
        color: var(--school-muted);
    }

    .contact-email-box strong {
        color: var(--school-green);
    }


/* =========================================================
   GOOGLE MAP
========================================================= */

.contact-map-section {
    padding: 105px 0;
    background: linear-gradient( 180deg, #f5f9f7, #fbfcfc );
}

.contact-map-box {
    overflow: hidden;
    border: 7px solid #ffffff;
    border-radius: 29px;
    background: #ffffff;
    box-shadow: var(--shadow-premium);
}

    .contact-map-box iframe {
        display: block;
        width: 100%;
        min-height: 460px;
        border: 0;
    }


/* =========================================================
   PREMIUM CONTACT BANNER
========================================================= */

.contact-banner {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient( circle at 82% 20%, rgba(255,255,255,.16), transparent 20% ), radial-gradient( circle at 10% 88%, rgba(255,255,255,.08), transparent 24% ), linear-gradient( 135deg, #d97828 0%, #e98d35 38%, #f2a24c 68%, #f6b469 100% );
}

    .contact-banner::before {
        content: "";
        position: absolute;
        top: -165px;
        right: -130px;
        width: 440px;
        height: 440px;
        border-radius: 50%;
        border: 44px solid rgba(255,255,255,.075);
        box-shadow: 0 0 0 42px rgba(255,255,255,.035), 0 0 0 84px rgba(255,255,255,.018);
    }

    .contact-banner::after {
        content: "";
        position: absolute;
        left: -150px;
        bottom: -190px;
        width: 390px;
        height: 390px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(255,255,255,.10), transparent 70% );
    }

    .contact-banner .container {
        position: relative;
        z-index: 2;
    }

    .contact-banner h2 {
        max-width: 980px;
        margin: 0 auto 20px;
        color: #ffffff;
        font-size: clamp(40px, 5vw, 60px);
        line-height: 1.08;
        font-weight: 850;
        letter-spacing: -1.4px;
        text-shadow: 0 5px 24px rgba(110,52,14,.18);
    }

    .contact-banner p {
        max-width: 880px;
        margin: 0 auto 36px;
        color: rgba(255,255,255,.93);
        font-size: 19px;
        line-height: 1.8;
    }

    .contact-banner .d-flex {
        gap: 13px !important;
    }

    .contact-banner .btn {
        min-height: 60px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 15px 30px;
        border-radius: 16px;
        font-size: 18px;
        font-weight: 750;
        backdrop-filter: blur(12px);
    }

    .contact-banner .btn-light {
        color: #263b37;
        border: 1px solid rgba(255,255,255,.80);
        background: rgba(255,255,255,.96);
        box-shadow: 0 14px 32px rgba(107,55,18,.16);
    }

        .contact-banner .btn-light:hover {
            color: #263b37;
            transform: translateY(-4px);
            background: #ffffff;
            box-shadow: 0 20px 40px rgba(107,55,18,.23);
        }

    .contact-banner .btn-outline-light {
        color: #ffffff;
        border: 1px solid rgba(255,255,255,.75);
        background: rgba(255,255,255,.08);
    }

        .contact-banner .btn-outline-light:hover {
            color: #28524c;
            border-color: #ffffff;
            background: #ffffff;
            transform: translateY(-4px);
        }

    .contact-banner .btn-success {
        color: #ffffff;
        border: none;
        background: linear-gradient( 135deg, #20b86b, #128c4f );
        box-shadow: 0 14px 32px rgba(16,127,72,.27);
    }

        .contact-banner .btn-success:hover {
            color: #ffffff;
            transform: translateY(-4px);
            background: linear-gradient( 135deg, #25c573, #0d7c45 );
        }


/* =========================================================
   PREMIUM FOOTER
========================================================= */

.site-footer {
    position: relative;
    padding: 90px 0 28px;
    overflow: hidden;
    color: rgba(255,255,255,.84);
    background: radial-gradient( circle at top left, rgba(237,153,69,.10), transparent 30% ), linear-gradient( 145deg, #183a35 0%, #214b45 45%, #28564f 100% );
}

    .site-footer::before {
        content: "";
        position: absolute;
        top: -160px;
        right: -120px;
        width: 430px;
        height: 430px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.06);
        box-shadow: 0 0 0 45px rgba(255,255,255,.02), 0 0 0 90px rgba(255,255,255,.015);
    }

    .site-footer .container {
        position: relative;
        z-index: 2;
    }

.footer-brand {
    max-width: 430px;
}

.footer-logo {
    width: 320px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 24px;
    object-fit: contain;
    filter: drop-shadow( 0 16px 28px rgba(0,0,0,.12) );
}

.footer-brand p {
    max-width: 410px;
    color: rgba(255,255,255,.80);
    font-size: 16px;
    line-height: 1.9;
}

.footer-title {
    position: relative;
    display: inline-block;
    margin-bottom: 28px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

    .footer-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 34px;
        height: 3px;
        border-radius: 20px;
        background: linear-gradient( 90deg, #f0a14d, #ffbd72 );
    }

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255,255,255,.78);
        font-size: 16px;
        transition: color .2s ease, transform .2s ease;
    }

        .footer-links a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.80);
    font-size: 15px;
    line-height: 1.7;
}

    .footer-contact p i {
        width: 34px;
        min-width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #f3a65d;
        border-radius: 10px;
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.08);
    }

.footer-contact strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-contact a {
    color: rgba(255,255,255,.82);
}

    .footer-contact a:hover {
        color: #f4b16e;
    }

.footer-contact .btn {
    min-height: 42px;
    padding: 9px 15px;
    font-size: 14px;
    border-radius: 12px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    transition: transform .2s ease, background .2s ease;
}

    .footer-social-btn i {
        color: #f3a65d;
        font-size: 18px;
    }

    .footer-social-btn:hover {
        transform: translateY(-4px);
        background: rgba(243,166,93,.12);
    }

.footer-divider {
    margin: 55px 0 25px;
    opacity: 1;
    border: none;
    height: 1px;
    background: linear-gradient( 90deg, transparent, rgba(255,255,255,.23), transparent );
}

.footer-copy {
    margin: 0;
    color: rgba(255,255,255,.62) !important;
    font-size: 14px;
}

.footer-bottom-link {
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

    .footer-bottom-link:hover {
        color: #f4b16e;
    }


/* =========================================================
   ADMIN PANEL
========================================================= */

.admin-page {
    min-height: 80vh;
    background: linear-gradient( 180deg, #f4f7f6, #f9fbfa );
}

.admin-title {
    color: var(--school-green);
    font-size: 39px;
    font-weight: 850;
}

.admin-stat-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 27px;
    border: 1px solid rgba(49,94,88,.065);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .admin-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-medium);
    }

.admin-stat-icon {
    width: 68px;
    min-width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    border-radius: 19px;
    background: linear-gradient( 145deg, var(--school-green-soft), #f7faf9 );
}

.admin-stat-card span {
    color: #717a78;
    font-size: 14px;
}

.admin-stat-card h2 {
    margin: 3px 0 0;
    color: var(--school-green);
    font-size: 35px;
    font-weight: 850;
}

.admin-table-card {
    overflow: hidden;
    border: 1px solid rgba(49,94,88,.06);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-medium);
}

.admin-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px;
    border-bottom: 1px solid #edf0ef;
}

    .admin-table-header h3 {
        margin: 0 0 5px;
        color: var(--school-green);
        font-weight: 800;
    }

    .admin-table-header p {
        margin: 0;
        color: #848b89;
    }

.admin-table-card table {
    margin-bottom: 0;
}

.admin-table-card thead th {
    padding: 17px 16px;
    color: var(--school-green);
    border-bottom: 1px solid #e7ecea;
    background: #f7f9f8;
}

.admin-table-card tbody td {
    padding: 17px 16px;
}

.admin-new-row {
    background: #fff9ed;
}

    .admin-new-row td:first-child {
        border-left: 4px solid var(--school-orange);
    }


/* =========================================================
   RESPONSIVE 1199
========================================================= */

@media (max-width: 1199px) {

    .navbar-nav {
        gap: 2px;
    }

        .navbar-nav .nav-link {
            font-size: 16px;
            padding-left: 8px !important;
            padding-right: 8px !important;
        }

        .navbar-nav .btn-school {
            min-height: 52px;
            padding-left: 22px;
            padding-right: 22px;
            font-size: 16px;
        }
}


/* =========================================================
   RESPONSIVE 991
========================================================= */

@media (max-width: 991px) {

    .site-logo {
        width: 95px;
    }

    .navbar {
        min-height: 100px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .navbar-brand {
        margin-right: 15px;
    }

    .navbar-nav {
        margin-top: 18px;
        gap: 0;
        align-items: stretch !important;
    }

        .navbar-nav .nav-item {
            width: 100%;
        }

        .navbar-nav .nav-link {
            width: 100%;
            margin: 0;
            padding: 13px 5px !important;
            font-size: 17px;
        }

            .navbar-nav .nav-link::after {
                display: none;
            }

        .navbar-nav .btn-school {
            width: 100%;
            margin-top: 10px;
            margin-bottom: 10px;
        }


    .hero {
        min-height: 690px;
        background-position: 61% center;
    }

        .hero .row {
            min-height: 690px;
        }


    .daily-premium-image {
        height: 460px;
    }


    .about-detail-image img {
        height: 440px;
    }


    .anaokulu-premium-section {
        padding: 85px 0;
    }

    .anaokulu-premium-visual {
        height: 470px;
    }


    .program-cta {
        text-align: center;
    }

        .program-cta .text-lg-end {
            margin-top: 25px;
        }


    .contact-banner {
        padding: 95px 0;
    }

        .contact-banner h2 {
            font-size: 44px;
        }


    .footer-logo {
        width: 275px;
    }
}


/* =========================================================
   RESPONSIVE 767
========================================================= */

@media (max-width: 767px) {

    .section {
        padding: 75px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 31px;
        }


    .site-logo {
        width: 88px;
    }

    .navbar {
        min-height: 92px;
    }


    .hero {
        min-height: 660px;
        text-align: center;
        background-position: 63% center;
        background-image: linear-gradient( rgba(21,53,49,.86), rgba(21,53,49,.91) ), url('/images/hero-premium.png');
    }

        .hero .row {
            min-height: 660px;
        }

        .hero h1 {
            font-size: 43px;
            letter-spacing: -1px;
        }

        .hero p {
            margin-left: auto;
            margin-right: auto;
            font-size: 16px;
        }

        .hero .d-flex {
            justify-content: center;
        }


    .about-section,
    .about-detail-section,
    .mission-section,
    .values-section,
    .education-section,
    .education-intro,
    .daily-section,
    .school-info-section,
    .gallery-section,
    .faq-section,
    .info-form-section,
    .contact-form-section,
    .contact-info-section,
    .quick-contact-section,
    .contact-email-section,
    .contact-map-section {
        padding: 75px 0;
    }


    .about-detail-image {
        border-width: 5px;
        border-radius: 25px;
    }

        .about-detail-image img {
            height: 330px;
            border-radius: 20px;
        }

    .about-detail-section h2 {
        font-size: 36px;
    }


    .daily-premium-section {
        padding: 75px 0;
    }

    .daily-premium-content {
        text-align: center;
    }

        .daily-premium-content h2 {
            font-size: 37px;
        }

    .daily-premium-image {
        height: 350px;
        border-width: 5px;
        border-radius: 25px;
    }

    .daily-image-info {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }


    .anaokulu-premium-section {
        padding: 70px 0;
    }

    .anaokulu-premium-content {
        text-align: center;
    }

        .anaokulu-premium-content h2 {
            font-size: 36px;
        }

    .program-premium-item {
        text-align: left;
    }

    .anaokulu-premium-visual {
        height: 350px;
        border-width: 5px;
        border-radius: 25px;
    }

    .anaokulu-premium-tag {
        top: 14px;
        left: 14px;
    }

    .anaokulu-premium-overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 13px 14px;
    }


    .timeline-item {
        display: block;
    }

    .timeline-time {
        padding: 7px 5px 10px;
    }


    .gallery-card {
        height: 260px;
    }


    .info-form-box,
    .contact-form-box {
        padding: 30px 22px;
    }


    .education-intro-box {
        min-height: 290px;
    }


    .contact-map-box iframe {
        min-height: 340px;
    }


    .page-header {
        padding: 65px 0;
    }

        .page-header h1 {
            font-size: 36px;
        }


    .contact-banner {
        padding: 80px 0;
    }

        .contact-banner h2 {
            font-size: 35px;
        }

        .contact-banner p {
            font-size: 16px;
        }

        .contact-banner .d-flex {
            flex-direction: column;
            align-items: stretch;
        }

        .contact-banner .btn {
            width: 100%;
        }


    .site-footer {
        padding: 65px 0 24px;
        text-align: center;
    }

    .footer-logo {
        width: 230px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }


    .admin-title {
        font-size: 32px;
    }

    .admin-table-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* =========================================================
   RESPONSIVE 480
========================================================= */

@media (max-width: 480px) {

    .site-logo {
        width: 82px;
    }

    .navbar {
        min-height: 85px;
    }

    .navbar-nav .nav-link,
    .navbar-nav .btn-school {
        font-size: 16px;
    }


    .hero {
        min-height: 640px;
    }

        .hero .row {
            min-height: 640px;
        }

        .hero h1 {
            font-size: 36px;
        }

        .hero p {
            font-size: 15px;
        }

        .hero .btn {
            width: 100%;
        }


    .about-detail-section h2 {
        font-size: 31px;
    }


    .daily-premium-image {
        height: 300px;
    }

    .daily-premium-content h2 {
        font-size: 32px;
    }


    .anaokulu-premium-content h2 {
        font-size: 31px;
    }

    .anaokulu-premium-visual {
        height: 300px;
    }

    .program-premium-item {
        padding: 13px 14px;
        font-size: 15px;
    }


    .timeline-content {
        gap: 14px;
        padding: 20px;
    }

    .timeline-icon {
        width: 49px;
        min-width: 49px;
        height: 49px;
        font-size: 27px;
    }


    .gallery-card {
        height: 235px;
    }


    .mission-card {
        padding: 30px 24px;
    }


    .contact-banner {
        padding: 68px 0;
    }

        .contact-banner h2 {
            font-size: 30px;
        }

        .contact-banner p {
            font-size: 15px;
        }

        .contact-banner .btn {
            min-height: 53px;
            font-size: 16px;
        }


    .footer-logo {
        width: 205px;
    }
}

/* =========================================================
   EĞİTİMLER - PREMIUM FOTOĞRAF
========================================================= */

.education-premium-visual {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border: 7px solid rgba(255, 255, 255, .97);
    border-radius: 34px;
    background: #eaf2ef;
    box-shadow: 0 30px 80px rgba(29, 66, 60, .17), 0 10px 30px rgba(29, 66, 60, .08);
    isolation: isolate;
}


/* FOTOĞRAF */

.education-premium-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .7s ease, filter .4s ease;
}


/* HOVER */

.education-premium-visual:hover .education-premium-photo {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.03) brightness(1.01);
}


/* FOTOĞRAF ALT GEÇİŞ */

.education-premium-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient( to top, rgba(18, 48, 44, .34) 0%, rgba(18, 48, 44, .07) 35%, transparent 62% );
}


/* TURUNCU DEKOR */

.education-premium-visual::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    z-index: 2;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(237, 153, 69, .20), rgba(237, 153, 69, .04) 65%, transparent 70% );
    pointer-events: none;
}


/* =========================================================
   ÜST ETİKET
========================================================= */

.education-premium-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 999px;
    background: rgba(34, 72, 66, .75);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


    .education-premium-tag i {
        color: #f5ae66;
        font-size: 15px;
    }


/* =========================================================
   ALT PREMIUM BİLGİ KARTI
========================================================= */

.education-premium-info {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* ALT KART İKONU */

.education-premium-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 19px;
    border-radius: 14px;
    background: linear-gradient( 135deg, var(--school-orange), var(--school-orange-dark) );
    box-shadow: 0 10px 25px rgba(222, 132, 50, .24);
}


/* ALT KART YAZI */

.education-premium-info strong {
    display: block;
    margin-bottom: 3px;
    color: var(--school-green);
    font-size: 16px;
    font-weight: 800;
}


.education-premium-info span {
    display: block;
    color: #717d79;
    font-size: 13px;
    line-height: 1.45;
}


/* =========================================================
   EDUCATION INTRO SOL TARAF
========================================================= */

.education-intro {
    position: relative;
    padding: 115px 0;
    background: radial-gradient( circle at 88% 18%, rgba(49, 94, 88, .05), transparent 26% ), linear-gradient( 145deg, #ffffff, #f9fbfa );
}


    .education-intro h2 {
        margin: 12px 0 26px;
        color: var(--school-green);
        font-size: clamp(42px, 4vw, 56px);
        line-height: 1.08;
        font-weight: 850;
        letter-spacing: -1.2px;
    }


    .education-intro p {
        margin-bottom: 20px;
        color: #65706d;
        font-size: 17px;
        line-height: 1.9;
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .education-premium-visual {
        height: 450px;
    }

    .education-intro {
        padding: 90px 0;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 767px) {

    .education-intro {
        padding: 75px 0;
    }

        .education-intro h2 {
            font-size: 36px;
        }

        .education-intro p {
            font-size: 16px;
        }

    .education-premium-visual {
        height: 340px;
        border-width: 5px;
        border-radius: 25px;
    }

    .education-premium-tag {
        top: 14px;
        left: 14px;
        font-size: 11px;
    }

    .education-premium-info {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 13px 14px;
        border-radius: 16px;
    }

    .education-premium-icon {
        width: 42px;
        min-width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .education-premium-info strong {
        font-size: 14px;
    }

    .education-premium-info span {
        font-size: 11px;
    }
}


/* =========================================================
   KÜÇÜK TELEFON
========================================================= */

@media (max-width: 480px) {

    .education-premium-visual {
        height: 300px;
    }

    .education-intro h2 {
        font-size: 31px;
    }
}

/* =========================================================
   HERO PREMIUM BUTONLAR
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}


    /* İKİ BUTON AYNI HİZADA */

    .hero-actions .hero-btn,
    .hero-actions .hero-contact-btn {
        min-height: 58px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 15px 30px;
        border-radius: 18px;
        font-size: 18px;
        font-weight: 750;
        line-height: 1;
        white-space: nowrap;
        transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
    }


    /* ANAOKULUMUZU KEŞFEDİN */

    .hero-actions .hero-btn {
        color: #ffffff !important;
        border: 1px solid transparent;
        background: linear-gradient( 135deg, #f0a14d, #e58832 );
        box-shadow: 0 14px 32px rgba(222, 132, 50, .28);
    }


        .hero-actions .hero-btn:hover {
            transform: translateY(-3px);
            background: linear-gradient( 135deg, #f4aa58, #dc7b29 );
            box-shadow: 0 20px 42px rgba(222, 132, 50, .34);
        }


    /* BİZE ULAŞIN */

    .hero-actions .hero-contact-btn {
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, .55);
        background: rgba(255, 255, 255, .10);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 12px 30px rgba(0, 0, 0, .10);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }


        .hero-actions .hero-contact-btn i {
            font-size: 17px;
        }


        .hero-actions .hero-contact-btn:hover {
            color: var(--school-green) !important;
            transform: translateY(-3px);
            border-color: #ffffff;
            background: #ffffff;
            box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
        }


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 767px) {

    .hero-actions {
        justify-content: center;
        gap: 12px;
    }

        .hero-actions .hero-btn,
        .hero-actions .hero-contact-btn {
            min-height: 54px;
            font-size: 16px;
            padding: 13px 22px;
        }
}


/* =========================================================
   KÜÇÜK TELEFON
========================================================= */

@media (max-width: 480px) {

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .hero-btn,
        .hero-actions .hero-contact-btn {
            width: 100%;
        }
}

/* =========================================================
   ADMIN - HIZLI ERİŞİM PREMIUM BUTONLAR
========================================================= */

.admin-quick-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px;
}


/* ORTAK BUTON */

.admin-action-btn {
    min-width: 230px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}


    .admin-action-btn i {
        font-size: 18px;
    }


/* DUYURULAR */

.admin-action-primary {
    color: #ffffff;
    background: linear-gradient( 135deg, #f0a14d, #e6872f );
    box-shadow: 0 12px 28px rgba(229, 137, 49, .22);
}


    .admin-action-primary:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(229, 137, 49, .3);
    }


/* GALERİ */

.admin-action-secondary {
    color: #2f67d8;
    border-color: rgba(47, 103, 216, .35);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(47, 103, 216, .07);
}


    .admin-action-secondary:hover {
        color: #ffffff;
        border-color: #2f67d8;
        background: #2f67d8;
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(47, 103, 216, .22);
    }


/* İLETİŞİM */

.admin-action-success {
    color: #198754;
    border-color: rgba(25, 135, 84, .35);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(25, 135, 84, .07);
}


    .admin-action-success:hover {
        color: #ffffff;
        border-color: #198754;
        background: #198754;
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(25, 135, 84, .22);
    }


/* YENİ MESAJ SAYISI */

.admin-action-badge {
    min-width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    margin-left: 2px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 9px;
    background: #dc3545;
    box-shadow: 0 6px 15px rgba(220, 53, 69, .25);
}


/* TABLET */

@media (max-width: 991px) {

    .admin-quick-actions {
        justify-content: flex-start;
    }

    .admin-action-btn {
        min-width: 210px;
    }
}


/* MOBİL */

@media (max-width: 767px) {

    .admin-quick-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-action-btn {
        width: 100%;
        min-width: 0;
        min-height: 54px;
    }
}

/* =========================================================
   İLETİŞİM - HIZLI İLETİŞİM PREMIUM BUTONLAR
========================================================= */

.quick-contact-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}


/* ORTAK BUTON */

.quick-contact-btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 28px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}


    .quick-contact-btn i {
        font-size: 20px;
    }


/* TELEFON */

.quick-contact-phone {
    min-width: 260px;
    color: #ffffff;
    background: linear-gradient( 135deg, #f0a14d, #e6872f );
    box-shadow: 0 14px 30px rgba(230, 135, 47, .24);
}


    .quick-contact-phone:hover {
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(230, 135, 47, .34);
    }


/* WHATSAPP */

.quick-contact-whatsapp {
    min-width: 190px;
    color: #ffffff;
    background: linear-gradient( 135deg, #1fa463, #16884f );
    box-shadow: 0 14px 30px rgba(25, 135, 84, .22);
}


    .quick-contact-whatsapp:hover {
        color: #ffffff;
        transform: translateY(-3px);
        background: linear-gradient( 135deg, #22ae69, #147b48 );
        box-shadow: 0 20px 40px rgba(25, 135, 84, .30);
    }


/* TABLET */

@media (max-width: 991px) {

    .quick-contact-actions {
        justify-content: flex-start;
    }
}


/* MOBİL */

@media (max-width: 767px) {

    .quick-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-contact-btn {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        font-size: 16px;
    }
}