﻿:root {
    /* Brand */
    --ap-dark: #004e73;
    --ap-dark2: #003a55;
    --ap-dp: #FF5100;
    --ap-accent: #33bbed;
    --ap-white: #fffff;
    /* Hero tokens */
    --ap-heroText: #ffffff;
    --ap-heroMuted: rgba(255,255,255,.82);
    --ap-heroBorder: rgba(255,255,255,.22);
    /* Primary (brand-aligned) */
    --ap-primary: var(--ap-dark);
    --ap-primaryDark: #003a55; /* ap-dark’in koyusu */
    --ap-topbar-h: 46px; /* topbar yüksekliği */
    --ap-header-h: 84px; /* header yüksekliği (isteğe göre 76-90) */
    --ap-sticky-h: calc(var(--ap-topbar-h) + var(--ap-header-h));
}

/* HERO container */
section#hero.hero {
    padding: 0 !important;
    margin: 0 !important;
}
#hero.hero {
    position: relative;
    height: calc(100vh - var(--ap-sticky-h));
    overflow: hidden;
}
/* Carousel structure eşitle */
#hero .carousel,
#hero .carousel-inner,
#hero .carousel .carousel-item {
    height: 100% !important;
}

/* Carousel item background image */
    #hero .carousel .carousel-item {
        min-height: 100vh;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transform: scale(1.02);
        transition: transform 6.5s ease;
        transform-origin: center center;
    }

    #hero .carousel .carousel-item.active {
        transform: scale(1.05);
    }

/* Premium overlay (brand tint) */
#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at 18% 18%, rgba(51,187,237,.18), transparent 45%), radial-gradient(circle at 82% 35%, rgba(51,187,237,.12), transparent 50%), linear-gradient(120deg, rgba(0,78,115,.88), rgba(0,78,115,.56) 55%, rgba(0,78,115,.82));
}

/* Info layer above carousel */
#hero .info {
    position: absolute;
    inset: 0;
    z-index: 3;
    /* merkezleme yerine yukarıdan hizala */
    align-items: flex-start; /* center -> flex-start */
    justify-content: center; /* yatayda/ana eksende ortala */

    text-align: center;
    /* üst boşluğu kontrollü ver */
    padding-top: 56px; /* 40-72 arası ince ayar */
}


    /* Hero üst boşluk (bootstrap spacing) öldür */
    #hero .info,
    #hero .info .container,
    #hero .info .container-fluid,
    #hero .carousel-container,
    #hero .carousel-content,
    #hero .carousel-caption {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

        /* İçeride pt-*, mt-* sınıfları varsa override */
        #hero .info [class*="pt-"],
        #hero .info [class*="mt-"],
        #hero .info [class*="py-"],
        #hero .info [class*="my-"] {
            margin-top: 0 !important;
            padding-top: 0 !important;
        }


/* Hero badge */
#hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--ap-heroBorder);
    background: rgba(255,255,255,.10);
    color: var(--ap-heroMuted);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .2px;
    margin-bottom: 14px;
}

    #hero .hero-badge i {
        font-size: 16px;
        opacity: .95;
    }

/* Heading + paragraph */
#hero h2 {
    color: var(--ap-heroText);
    font-weight: 900;
    letter-spacing: -0.7px;
    font-size: 44px;
    line-height: 1.1;
    margin: 0 0 12px;
    text-transform: none;
}

#hero p {
    color: var(--ap-heroMuted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto 22px;
    max-width: 640px;
}

/* Base button */
#hero .ap-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    transition: .15s ease;
    will-change: transform;
}

#hero .ap-btn-primary {
    background: var(--ap-primary);
    color: #fff;
    box-shadow: 0 14px 40px rgba(0,78,115,.25);
    border-color: #33bbed;
}

    #hero .ap-btn-primary:hover {
        background: #33bbed;
        transform: translateY(-2px);
    }

#hero .ap-btn-outline {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: var(--ap-heroBorder);
}

    #hero .ap-btn-outline:hover {
        background: rgba(255,255,255,.14);
        transform: translateY(-2px);
    }

/* CTA GRID */
#hero .ap-cta-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 10px;
}

#hero .ap-cta-item {
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
}

#hero .ap-cta-grid .ap-btn {
    min-width: 220px;
}

/* Delivery Pilot card */
#hero .ap-delivery-card {
    min-width: 340px;
    justify-content: space-between;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    color: #fff;
    transition: all .2s ease;
}

    #hero .ap-delivery-card:hover {
        background: rgba(255,255,255,.14);
        transform: translateY(-3px);
    }

#hero .ap-delivery-left {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(51,187,237,.18);
    border: 1px solid rgba(51,187,237,.28);
}

#hero .ap-delivery-mid {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
    margin-left: 12px;
    flex: 1;
}

#hero .ap-delivery-title {
    font-weight: 900;
    font-size: 15px;
    letter-spacing: .2px;
    color: var(--ap-dp);
}

#hero .ap-delivery-desc {
    font-size: 13px;
    color: rgba(255,255,255,.78);
    margin-top: 2px;
}

#hero .ap-delivery-right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
}

/* Carousel controls */
#hero .carousel-control-prev,
#hero .carousel-control-next {
    z-index: 4;
    width: 56px;
}

#hero .carousel-control-prev-icon,
#hero .carousel-control-next-icon {
    background-image: none !important;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.10);
    border: 1px solid var(--ap-heroBorder);
    backdrop-filter: blur(6px);
}

    #hero .carousel-control-prev-icon::before {
        content: "\2039";
        font-size: 28px;
        color: #fff;
        line-height: 1;
        margin-top: -1px;
    }

    #hero .carousel-control-next-icon::before {
        content: "\203A";
        font-size: 28px;
        color: #fff;
        line-height: 1;
        margin-top: -1px;
    }

/* Responsive */
@media (max-width:991px) {
    #hero.hero,
    #hero .carousel .carousel-item {
        min-height: 64vh;
    }

    #hero h2 {
        font-size: 32px;
    }

    #hero p {
        font-size: 16px;
    }
}

@media (max-width:576px) {
    #hero.hero,
    #hero .carousel .carousel-item {
        min-height: 62vh;
    }

    #hero h2 {
        font-size: 28px;
    }

    #hero .ap-cta-grid {
        flex-direction: column;
        align-items: stretch;
    }

        #hero .ap-cta-grid .ap-btn,
        #hero .ap-delivery-card {
            width: 100%;
            min-width: 0;
        }
}


/* Anasayfa About Section -------------------------------------------------------------------- */

/* About (minimal premium) */
.about-us {
    padding: 80px 0;
    background: #fff;
}

    .about-us .about-wrap {
        align-items: center;
    }

    .about-us .about-visual {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 18px 50px rgba(0,0,0,.08);
    }

        .about-us .about-visual img {
            display: block;
            width: 100%;
            height: auto;
            transform: scale(1.02);
        }

        .about-us .about-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(0,78,115,.20), rgba(0,78,115,.06) 45%, rgba(0,78,115,.20));
            pointer-events: none;
        }

    .about-us .about-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(51,187,237,.14);
        color: var(--ap-dark);
        font-weight: 800;
        font-size: 13px;
        letter-spacing: .2px;
        margin-bottom: 14px;
    }

    .about-us .about-title {
        font-weight: 900;
        letter-spacing: -0.5px;
        font-size: 34px;
        line-height: 1.15;
        margin: 0 0 10px;
        color: var(--ap-dark);
    }

    .about-us .about-subtitle {
        font-weight: 800;
        font-size: 16px;
        color: rgba(0,78,115,.82);
        margin-bottom: 14px;
    }

    .about-us .about-text {
        color: rgba(0,78,115,.85);
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .about-us .about-metrics {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin: 18px 0 18px;
    }

    .about-us .metric {
        display: inline-flex;
        align-items: baseline;
        gap: 8px;
        padding: 10px 12px;
        border: 1px solid rgba(0,78,115,.12);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 10px 24px rgba(0,0,0,.05);
    }

        .about-us .metric strong {
            font-size: 18px;
            font-weight: 900;
            color: var(--ap-dark);
        }

        .about-us .metric span {
            font-size: 13px;
            color: rgba(0,78,115,.75);
            font-weight: 800;
        }

    .about-us .about-values {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 16px;
    }

    .about-us .value-card {
        border: 1px solid rgba(0,78,115,.12);
        border-radius: 16px;
        background: #fff;
        padding: 14px 14px;
        box-shadow: 0 14px 34px rgba(0,0,0,.06);
        transition: transform .2s ease, box-shadow .2s ease;
        height: 100%;
    }

        .about-us .value-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 44px rgba(0,0,0,.08);
        }

        .about-us .value-card .icon {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(51,187,237,.16);
            color: var(--ap-dark);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .about-us .value-card h6 {
            margin: 0 0 6px;
            font-weight: 900;
            font-size: 14px;
            color: var(--ap-dark);
        }

        .about-us .value-card p {
            margin: 0;
            font-size: 13px;
            line-height: 1.55;
            color: rgba(0,78,115,.78);
        }

/* Responsive */
@media (max-width: 991px) {
    .about-us {
        padding: 60px 0;
    }

        .about-us .about-title {
            font-size: 28px;
        }

        .about-us .about-values {
            grid-template-columns: 1fr;
        }
}

/* Services (minimal premium) */
.services {
    padding: 70px 0;
    background: rgba(51,187,237,.08);
}

    .services .svc-card {
        border: 1px solid rgba(0,78,115,.12);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 16px 44px rgba(0,0,0,.06);
        transition: transform .2s ease, box-shadow .2s ease;
        height: 100%;
    }

        .services .svc-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 22px 60px rgba(0,0,0,.09);
        }

    .services .svc-body {
        padding: 28px;
    }

    .services .svc-top {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }

    .services .svc-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(51,187,237,.18);
        color: var(--ap-dark);
        font-size: 20px;
        flex: 0 0 auto;
    }

    .services .svc-title {
        margin: 0;
        font-weight: 900;
        letter-spacing: -.2px;
        font-size: 18px;
        color: var(--ap-dark);
    }

    .services .svc-text {
        color: rgba(0,78,115,.80);
        line-height: 1.65;
        margin: 10px 0 14px;
    }

    .services .svc-list {
        margin: 0 0 18px;
        padding-left: 18px;
        color: rgba(0,78,115,.78);
        font-size: 14px;
    }

        .services .svc-list li {
            margin: 6px 0;
        }

    .services .svc-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 900;
        border: 1px solid rgba(0,78,115,.14);
        color: var(--ap-dark);
        background: #fff;
        transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }

        .services .svc-btn:hover {
            background: rgba(51,187,237,.12);
            border-color: rgba(51,187,237,.55);
            transform: translateY(-2px);
        }

    .services .svc-btn--primary {
        background: var(--ap-dark);
        border-color: var(--ap-dark);
        color: #fff;
        box-shadow: 0 14px 40px rgba(0,78,115,.22);
    }

        .services .svc-btn--primary:hover {
            background: var(--ap-primaryDark);
        }

@media (max-width: 991px) {
    .services {
        padding: 56px 0;
    }
}

/* =========================
   SEARCH + TABS (Premium)
   ========================= */
.search {
    padding: 70px 0;
    background: #fff;
}

/* Search box area spacing */
#e-search {
    margin-top: 8px;
}

/* Tabs container */
.e-tabs {
    margin-top: 24px;
}

    /* Premium tab buttons */
    .e-tabs .nav-tabs {
        border-bottom: 0;
        display: flex;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

        .e-tabs .nav-tabs .nav-link {
            border: 1px solid rgba(0,78,115,.14);
            border-radius: 999px;
            padding: 12px 16px;
            font-weight: 900;
            color: var(--ap-dark);
            background: rgba(51,187,237,.10);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 10px 26px rgba(0,0,0,.05);
            transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
            width: auto !important;
            white-space: nowrap;
            flex: 0 0 auto;
        }

            .e-tabs .nav-tabs .nav-link i {
                font-size: 18px;
                opacity: .95;
                color: var(--ap-dark);
            }

            .e-tabs .nav-tabs .nav-link:hover {
                background: rgba(51,187,237,.18);
                border-color: rgba(51,187,237,.60);
                transform: translateY(-2px);
                box-shadow: 0 14px 34px rgba(0,0,0,.07);
            }

            .e-tabs .nav-tabs .nav-link.active {
                background: var(--ap-dark);
                border-color: var(--ap-dark);
                color: #fff;
                box-shadow: 0 14px 40px rgba(0,78,115,.20);
            }

                .e-tabs .nav-tabs .nav-link.active i {
                    color: var(--ap-accent);
                }

    /* Tab content spacing */
    .e-tabs .tab-pane {
        margin-top: 22px;
    }

    /* Section header inside tab */
    .e-tabs .tab-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 12px;
        margin-top: 10px;
        margin-bottom: 8px;
    }

        .e-tabs .tab-head h2 {
            margin: 0;
            font-weight: 900;
            letter-spacing: -0.4px;
            font-size: 24px;
            color: var(--ap-dark);
        }

        .e-tabs .tab-head p {
            margin: 0;
            color: rgba(0,78,115,.75);
            font-size: 14px;
            font-weight: 700;
        }

    /* Premium cards */
    .e-tabs .card {
        border: 1px solid rgba(0,78,115,.12);
        border-radius: 18px;
        box-shadow: 0 16px 44px rgba(0,0,0,.06);
        transition: transform .2s ease, box-shadow .2s ease;
        height: 100%;
        overflow: hidden;
        background: #fff;
    }

        .e-tabs .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 22px 60px rgba(0,0,0,.09);
        }

    .e-tabs .card-body {
        padding: 22px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .e-tabs .card-title {
        font-weight: 900;
        letter-spacing: -0.2px;
        color: var(--ap-dark);
        margin-bottom: 6px;
        line-height: 1.25;
        font-size: 16px;
    }

    .e-tabs .card-subtitle {
        font-weight: 900;
        color: var(--ap-accent);
        font-size: 12px;
        margin-bottom: 12px;
        opacity: .98;
    }

    .e-tabs .card-text {
        color: rgba(0,78,115,.82);
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 14px;
    }

    /* Link as premium button */
    .e-tabs .card-link {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 900;
        text-decoration: none;
        border-radius: 14px;
        padding: 10px 12px;
        border: 1px solid rgba(0,78,115,.14);
        color: var(--ap-dark);
        background: rgba(51,187,237,.08);
        transition: transform .15s ease, background .15s ease, border-color .15s ease;
        width: fit-content;
    }

        .e-tabs .card-link:hover {
            background: rgba(51,187,237,.16);
            border-color: rgba(51,187,237,.60);
            transform: translateY(-2px);
        }

        .e-tabs .card-link::after {
            content: "→";
            font-weight: 900;
        }

    /* "All trainings" CTA button */
    .e-tabs .search-cta {
        margin-top: 22px;
        text-align: center;
    }

    .e-tabs .search-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 18px;
        border-radius: 14px;
        font-weight: 900;
        text-decoration: none;
        border: 1px solid var(--ap-dark);
        background: var(--ap-dark);
        color: #fff;
        box-shadow: 0 14px 40px rgba(0,78,115,.18);
        transition: transform .15s ease, background .15s ease, border-color .15s ease;
    }

        .e-tabs .search-btn:hover {
            background: var(--ap-primaryDark);
            border-color: var(--ap-primaryDark);
            transform: translateY(-2px);
        }

/* Mobile behavior */
@media (max-width: 768px) {
    .e-tabs .nav-tabs {
        flex-wrap: wrap !important;
    }

        .e-tabs .nav-tabs .nav-link {
            width: 100% !important;
            justify-content: center;
        }
}

/* Responsive */
@media (max-width: 991px) {
    .search {
        padding: 56px 0;
    }

    .e-tabs .tab-head h2 {
        font-size: 22px;
    }
}





.dp-band {
    padding: 34px 0;
    background: #fff;
}

.dp-wrap {
    position: relative;
    border-radius: 22px;
    padding: 22px 22px;
    border: 1px solid rgba(0,78,115,.14);
    background: radial-gradient(circle at 18% 18%, rgba(51,187,237,.20), transparent 45%), radial-gradient(circle at 86% 45%, rgba(51,187,237,.14), transparent 50%), linear-gradient(180deg, rgba(0,78,115,.06), rgba(0,78,115,.02));
    box-shadow: 0 18px 50px rgba(0,0,0,.06);
    overflow: hidden;
}

    /* subtle decorative line */
    .dp-wrap:before {
        content: "";
        position: absolute;
        inset: auto -20% 0 -20%;
        height: 3px;
        background: linear-gradient(90deg, transparent, rgba(51,187,237,.95), transparent);
        opacity: .55;
    }

.dp-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.dp-left {
    min-width: 280px;
    flex: 1;
}

.dp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(51,187,237,.16);
    border: 1px solid rgba(51,187,237,.35);
    color: var(--ap-dark);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .2px;
    margin-bottom: 10px;
    color: var(--ap-dp);
}

.dp-title {
    margin: 0 0 6px;
    font-weight: 900;
    letter-spacing: -.5px;
    color: var(--ap-dark);
    font-size: 24px;
    line-height: 1.2;
}

    .dp-title span {
        color: var(--ap-dp);
    }

.dp-desc {
    margin: 0;
    color: rgba(0,78,115,.82);
    font-size: 15px;
    line-height: 1.65;
    max-width: 720px;
}

.dp-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.dp-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,78,115,.12);
    box-shadow: 0 10px 22px rgba(0,0,0,.05);
    color: var(--ap-dark);
    font-weight: 900;
    font-size: 13px;
    white-space: nowrap;
}

.dp-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--ap-accent);
    box-shadow: 0 0 0 4px rgba(51,187,237,.18);
}

.dp-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.dp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid rgba(0,78,115,.14);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    white-space: nowrap;
}

.dp-btn-primary {
    background: var(--ap-dark);
    border-color: var(--ap-dark);
    color: #fff;
    box-shadow: 0 14px 40px rgba(0,78,115,.22);
}

    .dp-btn-primary:hover {
        background: var(--ap-dark2);
        border-color: var(--ap-dark2);
        transform: translateY(-2px);
        color: #fff;
    }

.dp-btn-ghost {
    background: rgba(51,187,237,.12);
    border-color: rgba(51,187,237,.40);
    color: var(--ap-dark);
}

    .dp-btn-ghost:hover {
        background: rgba(51,187,237,.18);
        border-color: rgba(51,187,237,.65);
        transform: translateY(-2px);
        color: var(--ap-dark);
    }

@media (max-width: 991px) {
    .dp-wrap {
        padding: 18px;
    }

    .dp-title {
        font-size: 22px;
    }

    .dp-right {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .dp-band {
        padding: 26px 0;
    }

    .dp-right {
        flex-direction: column;
        align-items: stretch;
    }

    .dp-btn {
        width: 100%;
    }
}


.home-contact {
    background: linear-gradient(135deg, #004e73, #003a55);
    color: #fff;
}

.ap-stat-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 22px;
    transition: all .2s ease;
}

    .ap-stat-box:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,0.12);
    }

    .ap-stat-box i {
        font-size: 26px;
        margin-bottom: 12px;
        display: inline-block;
        color: #33bbed;
    }

    .ap-stat-box h4 {
        font-weight: 800;
        margin-bottom: 8px;
        color: #fff;
    }

    .ap-stat-box p {
        font-size: 14px;
        opacity: .85;
        margin: 0;
    }

.ap-contact-card {
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}




.ap-references {
    background: #f8fafc;
}

.ap-section-title h2 {
    font-weight: 900;
    color: #004e73;
    margin-bottom: 10px;
}

.ap-section-title p {
    max-width: 720px;
    margin: 0 auto;
    color: #6b7280;
}

.ap-carousel {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

    .ap-carousel .carousel-control-prev-icon,
    .ap-carousel .carousel-control-next-icon {
        filter: invert(1);
        opacity: .6;
    }

        .ap-carousel .carousel-control-prev-icon:hover,
        .ap-carousel .carousel-control-next-icon:hover {
            opacity: 1;
        }



/* Shell tek sticky */
.ap-sticky-shell {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: var(--ap-dark); /* arada 1px bile kalsa görünmesin */
}

/* Topbar + Header artık sticky değil (shell sticky) */
#topbar.ap-topbar,
#header.ap-header {
    position: relative !important;
    top: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--ap-dark);
}

/* TOPBAR */
#topbar.ap-topbar {
    height: var(--ap-topbar-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

    #topbar.ap-topbar .container {
        display: flex;
        align-items: center !important;
    }

    #topbar.ap-topbar .contact-info {
        display: flex;
        align-items: center;
        gap: 14px;
        color: rgba(255,255,255,.92);
    }

        #topbar.ap-topbar .contact-info i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            color: var(--ap-accent);
            margin-right: 6px;
        }

        #topbar.ap-topbar .contact-info a {
            color: rgba(255,255,255,.92);
            text-decoration: none;
            font-weight: 700;
            line-height: 1;
        }

            #topbar.ap-topbar .contact-info a:hover {
                color: #fff;
                text-decoration: underline;
                text-underline-offset: 3px;
            }

        #topbar.ap-topbar .contact-info .ap-sep {
            width: 1px;
            height: 14px;
            background: rgba(255,255,255,.22);
        }

    /* Social */
    #topbar.ap-topbar .social-links {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        #topbar.ap-topbar .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.12);
            color: rgba(255,255,255,.92);
            transition: .15s ease;
        }

            #topbar.ap-topbar .social-links a i {
                font-size: 16px;
                line-height: 1;
            }

            #topbar.ap-topbar .social-links a:hover {
                transform: translateY(-2px);
                background: rgba(51,187,237,.16);
                border-color: rgba(51,187,237,.35);
                color: #fff;
            }

/* HEADER */
#header.ap-header {
    height: var(--ap-header-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

    #header.ap-header .container {
        display: flex;
        align-items: center !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Logo */
    #header.ap-header .ap-logo {
        height: 66px;
        width: auto;
    }
    /* Logo dikey ortalama fix */
    #header.ap-header .logo {
        display: flex !important;
        align-items: center !important;
        height: var(--ap-header-h) !important; /* header yüksekliğiyle aynı */
    }

        #header.ap-header .logo img,
        #header.ap-header .ap-logo {
            display: block !important; /* baseline boşluğunu kaldırır */
            margin: 0 !important;
        }

    /* Çok az aşağı/ yukarı kayma varsa ince ayar */
    #header.ap-header .ap-logo {
        transform: translateY(-1px); /* gerekirse 0 veya -2 yap */
    }


    /* Navbar reset (tema margin/padding bırakmasın) */
    #header.ap-header .ap-navbar,
    #header.ap-header #navbar {
        padding: 0 !important;
        margin: 0 !important;
    }

        #header.ap-header #navbar ul {
            margin: 0 !important;
            padding: 0 !important;
        }

            /* Menü linkleri */
            #header.ap-header #navbar ul li a {
                color: rgba(255,255,255,.92) !important;
                font-weight: 800;
                letter-spacing: .2px;
                font-size: 13px;
                padding: 12px 12px !important;
                border-radius: 12px;
                transition: .15s ease;
            }

                #header.ap-header #navbar ul li a:hover {
                    color: #fff !important;
                    background: rgba(255,255,255,.08);
                }

                #header.ap-header #navbar ul li a.active {
                    color: #fff !important;
                    background: rgba(51,187,237,.18);
                    border: 1px solid rgba(51,187,237,.30);
                }

        /* Dropdown */
        #header.ap-header #navbar .dropdown > a i {
            color: rgba(255,255,255,.85) !important;
        }

        #header.ap-header #navbar .dropdown ul {
            border-radius: 16px;
            padding: 10px;
            border: 1px solid rgba(15,23,42,.14);
            box-shadow: 0 18px 50px rgba(0,0,0,.18);
        }

            #header.ap-header #navbar .dropdown ul li a {
                color: #0b1d3a !important;
                background: transparent;
                font-weight: 700;
                padding: 10px 12px !important;
                border-radius: 12px;
            }

                #header.ap-header #navbar .dropdown ul li a:hover {
                    background: rgba(0,78,115,.08);
                    color: var(--ap-heroText) !important;
                }

    /* Mobile toggle */
    #header.ap-header .mobile-nav-toggle {
        color: #fff !important;
    }

/* Boşluk kalıntısı temizliği */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Tema placeholder/spacer üretirse öldür */
.header-spacer,
.sticky-header-placeholder,
.header-placeholder,
.navbar-placeholder {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================= */
/*      ACADEMY CORPORATE FOOTER */
/* ============================= */

#academy-footer {
    background: #003a55;
    color: #cbd5e1;
    font-size: 14px;
}

    #academy-footer .academy-footer-top {
        padding: 70px 0 50px;
    }

    #academy-footer .academy-footer-title {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
    }

    #academy-footer .academy-footer-logo {
        max-width: 160px;
    }

    #academy-footer .academy-footer-description {
        opacity: 0.8;
        line-height: 1.6;
        max-width: 340px;
    }

    #academy-footer .academy-footer-links,
    #academy-footer .academy-footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #academy-footer .academy-footer-links li,
        #academy-footer .academy-footer-contact li {
            margin-bottom: 10px;
        }

    #academy-footer a {
        color: #cbd5e1;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        #academy-footer a:hover {
            color: #38bdf8;
        }

    #academy-footer .academy-footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #1e293b;
        border-radius: 50%;
        margin-right: 8px;
        color: #ffffff;
        transition: 0.3s ease;
    }

        #academy-footer .academy-footer-social a:hover {
            background: #38bdf8;
            color: #0f172a;
        }

    #academy-footer .academy-footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 20px 0;
        font-size: 13px;
        opacity: 0.8;
    }

    #academy-footer .academy-footer-policy a {
        color: #cbd5e1;
    }


/* ============================= */
/*       ACADEMY - CALENDAR      */
/* ============================= */

#academy-calendar.academy-calendar {
    background: #ffffff;
}
#academy-calendar {
    margin-top: -80px; /* #main offset kadar */
}

    #academy-calendar .academy-calendar-hero {
        padding-top: 170px; /* telafi */
    }
/* Hero */
#academy-calendar .academy-calendar-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #0b3a57 55%, #0f172a 100%);
    color: #fff;
    padding: 90px 0 60px;
    overflow: hidden;
}

#academy-calendar .academy-calendar-hero-inner {
    position: relative;
    z-index: 2;
}

#academy-calendar .academy-calendar-hero::before {
    content: "";
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle at 20% 20%, rgba(56,189,248,0.20), transparent 45%), radial-gradient(circle at 80% 30%, rgba(99,102,241,0.16), transparent 40%);
    filter: blur(2px);
    z-index: 1;
}

#academy-calendar .academy-calendar-hero-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
    z-index: 2;
}

#academy-calendar .academy-calendar-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
    letter-spacing: 0.2px;
    margin-bottom: 14px;
}

#academy-calendar .academy-calendar-title {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 12px;
    font-weight: 700;
    color: #fff !important;
}

#academy-calendar .academy-calendar-subtitle {
    margin: 0;
    opacity: 0.85;
    max-width: 620px;
}

/* Contact card */
#academy-calendar .academy-calendar-contactcard {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    padding: 18px 18px;
    backdrop-filter: blur(6px);
}

#academy-calendar .academy-calendar-contact-title {
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.95;
}

#academy-calendar .academy-calendar-contactlink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s ease;
    background: rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(255,255,255,0.10);
    margin-bottom: 10px;
}

    #academy-calendar .academy-calendar-contactlink i {
        font-size: 18px;
        opacity: 0.95;
    }

    #academy-calendar .academy-calendar-contactlink:hover {
        transform: translateY(-1px);
        background: rgba(56,189,248,0.18);
        border-color: rgba(56,189,248,0.30);
    }

#academy-calendar .academy-calendar-contactnote {
    opacity: 0.8;
    font-size: 13px;
    margin-top: 2px;
}

/* Content panel */
#academy-calendar .academy-calendar-content {
    padding: 35px 0 80px;
}

#academy-calendar .academy-calendar-panel {
    border: 1px solid #e6edf3;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

#academy-calendar .academy-calendar-panelhead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 22px;
    border-bottom: 1px solid #eef3f7;
    background: #fbfdff;
}

#academy-calendar .academy-calendar-paneltitle {
    margin: 0 0 6px;
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
}

#academy-calendar .academy-calendar-paneldesc {
    color: #475569;
    font-size: 13px;
}

#academy-calendar .academy-calendar-panelbody {
    padding: 18px 22px 24px;
}

#academy-calendar .academy-calendar-cta.btn.btn-primary {
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    #academy-calendar .academy-calendar-title {
        font-size: 28px;
    }
}