/* base.css — baska-proje partials inline <style> bloklarindan cikarildi (yukleme sirasi: top, header, footer) */

/* ===== top.php ===== */
ul { margin: 0; padding: 0; }
    .navbar { padding: 0; }
    section { overflow: hidden; }
    .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white span, .text-white a { color: #fff !important; }
    button { border: none; }
    *:focus { outline: 2px solid #0391DF !important; outline-offset: 2px; }
    *:focus:not(:focus-visible) { outline: none !important; }
    .navbar-brand { padding: 0; }
    form { position: relative; }
    .form-control:focus { outline: 2px solid #0391DF !important; outline-offset: 2px; box-shadow: 0 0 0; }
    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-size: inherit; color: inherit; }
    .mt-30 { margin-top: 30px; }

    .animated { animation-duration: 1s; animation-fill-mode: both; }
    @media (print), (prefers-reduced-motion) { .animated { animation: unset !important; transition: none !important; } }
    @keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 100%, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
    .fadeInUp { animation-name: fadeInUp; }
    @keyframes fadeInLeft { from { opacity: 0; transform: translate3d(-100%, 0, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
    .fadeInLeft { animation-name: fadeInLeft; }
    @keyframes fadeInRight { from { opacity: 0; transform: translate3d(100%, 0, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
    .fadeInRight { animation-name: fadeInRight; }

/* ===== header.php ===== */
.aces-hdr {
        width: 100%;
        position: relative;
        z-index: 99999;
    }
    #sticky-nav.aces-hdr-wrap {
        padding: 0;
        background: #fff;
    }
    .aces-hdr-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 95px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .aces-hdr-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        flex-shrink: 0;
        margin-left: 16px;
        margin-top: 25px;
        align-self: flex-start;
    }
    .aces-hdr-logo:hover {
        text-decoration: none;
    }
    .aces-hdr-logo img {
        width: 224px;
        height: auto;
        display: block;
    }
    .aces-hdr-logo__text {
        color: #484343;
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 200;
        line-height: 1;
        margin-top: 2px;
    }

    .aces-hdr-nav {
        display: flex;
        align-items: center;
        margin-right: 30px;
    }
    .aces-hdr-nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
    }
    .aces-hdr-nav__item {
        position: relative;
    }
    .aces-hdr-nav__item--has-sub > .aces-hdr-nav__link {
        padding-right: 7px;
    }
    .aces-hdr-nav__item--has-sub > .aces-hdr-nav__link::after {
        content: '';
        display: inline-block;
        width: 5px;
        height: 5px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
        margin-left: 5px;
        vertical-align: middle;
        transition: transform 0.3s;
    }
    .aces-hdr-nav__item--has-sub:hover > .aces-hdr-nav__link::after {
        transform: rotate(-135deg) translateY(-1px);
    }
    .aces-hdr-nav__link {
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        font-weight: 200;
        line-height: 1.5;
        padding: 10px 20px;
        text-decoration: none;
        display: block;
        transition: color 0.3s;
        white-space: nowrap;
    }
    .aces-hdr-nav__link:hover,
    .aces-hdr-nav__link:focus {
        color: #0391DF;
        text-decoration: none;
    }

    .aces-hdr-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 200px;
        background: #0391DF;
        list-style: none;
        padding: 4px 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .aces-hdr-nav__item:hover > .aces-hdr-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .aces-hdr-dropdown li {
        display: block;
    }
    .aces-hdr-dropdown li a {
        color: #fff;
        padding: 5px 16px;
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 300;
        text-decoration: none;
        transition: background 0.2s;
        white-space: nowrap;
        line-height: 22px;
    }
    .aces-hdr-dropdown li a:hover,
    .aces-hdr-dropdown li a:focus {
        background: #027ab8;
        color: #fff;
        text-decoration: none;
    }

    .aces-hdr-lang__flag {
        width: 24px;
        height: 24px;
        vertical-align: middle;
    }
    .aces-hdr-dropdown .aces-hdr-lang__inline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .aces-hdr-dropdown .aces-hdr-lang__inline img {
        width: 18px;
        height: 18px;
    }

    .aces-hdr-hamburger {
        display: none;
        width: 24px;
        height: 18px;
        position: relative;
        cursor: pointer;
        border: none;
        background: transparent;
        padding: 0;
        margin-right: 20px;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
    }
    .aces-hdr-hamburger__line {
        display: block;
        width: 24px;
        height: 2px;
        background: #0391DF;
        position: absolute;
        left: 0;
        transition: transform 0.3s ease, opacity 0.2s ease;
        border-radius: 1px;
    }
    .aces-hdr-hamburger__line:nth-child(1) { top: 0; }
    .aces-hdr-hamburger__line:nth-child(2) { top: 8px; }
    .aces-hdr-hamburger__line:nth-child(3) { top: 16px; }

    .aces-hdr-hamburger--open .aces-hdr-hamburger__line:nth-child(1) {
        top: 8px;
        transform: rotate(45deg);
    }
    .aces-hdr-hamburger--open .aces-hdr-hamburger__line:nth-child(2) {
        opacity: 0;
    }
    .aces-hdr-hamburger--open .aces-hdr-hamburger__line:nth-child(3) {
        top: 8px;
        transform: rotate(-45deg);
    }

    .aces-hdr-mobile {
        display: none;
        width: 100%;
        background: #0391DF;
        overflow: hidden;
    }
    .aces-hdr-mobile--open {
        display: block;
    }
    .aces-hdr-mobile__list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .aces-hdr-mobile__item {
        position: relative;
    }
    .aces-hdr-mobile__link {
        display: block;
        color: #fff;
        padding: 8px 20px;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 300;
        text-decoration: none;
        text-transform: uppercase;
        border-top: 1px solid rgba(255,255,255,0.2);
        letter-spacing: 0.3px;
        line-height: 16px;
    }
    .aces-hdr-mobile__link:hover,
    .aces-hdr-mobile__link:focus {
        background: rgba(255,255,255,0.1);
        color: #fff;
        text-decoration: none;
    }
    .aces-hdr-mobile__toggle {
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        height: 33px;
        border: none;
        border-left: 1px solid rgba(255,255,255,0.2);
        background: rgba(255,255,255,0.08);
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        line-height: 1;
    }
    .aces-hdr-mobile__toggle:hover {
        background: rgba(255,255,255,0.15);
    }
    .aces-hdr-mobile__sub {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(0,0,0,0.12);
    }
    .aces-hdr-mobile__sub--open {
        max-height: 600px;
    }
    .aces-hdr-mobile__sub li a {
        display: block;
        color: #fff;
        padding: 6px 20px 6px 35px;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 300;
        text-decoration: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        opacity: 0.85;
        line-height: 16px;
    }
    .aces-hdr-mobile__sub li a:hover {
        background: rgba(255,255,255,0.1);
        opacity: 1;
        text-decoration: none;
        color: #fff;
    }

    @media (max-width: 992px) {
        .aces-hdr-nav {
            display: none;
        }
        .aces-hdr-hamburger {
            display: block;
        }
        .aces-hdr-bar {
            height: 65px;
            padding: 0;
        }
        .aces-hdr-logo {
            margin-left: 16px;
            margin-top: 0;
            align-self: center;
        }
        .aces-hdr-logo img {
            width: 180px;
        }
        .aces-hdr-logo__text {
            font-size: 8px;
        }
    }
    @media (max-width: 480px) {
        .aces-hdr-bar {
            height: 65px;
        }
        .aces-hdr-logo img {
            width: 180px;
        }
        .aces-hdr-logo {
            margin-left: 12px;
        }
        .aces-hdr-hamburger {
            margin-right: 16px;
        }
    }

/* ===== header.php ===== */
.aces-skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 999999;
    background: #0391DF;
    color: #fff;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s;
}
.aces-skip-nav:focus {
    top: 0;
    color: #fff;
    text-decoration: none;
}

/* ===== footer.php ===== */
.aces-ftr {
        font-family: 'Montserrat', sans-serif;
        background: #000033;
        margin-top: 55px;
    }

    .aces-ftr-contact {
        position: relative;
        z-index: 2;
        padding: 0 15px;
        transform: translateY(-50%);
        margin-bottom: -55px;
    }
    .aces-ftr-contact__grid {
        max-width: 1190px;
        margin: 0 auto;
        padding: 25px 30px 5px 30px;
        background: #de0909;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }
    .aces-ftr-contact__item {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 1;
    }
    .aces-ftr-contact__icon {
        min-width: 40px;
    }
    .aces-ftr-contact__icon img {
        width: 40px;
        height: 40px;
    }
    .aces-ftr-contact__title {
        color: #fff;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 4px 0;
    }
    .aces-ftr-contact__text {
        color: #fff;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.4;
        font-style: normal;
    }
    .aces-ftr-contact__text a {
        color: #fff;
        text-decoration: none;
    }
    .aces-ftr-contact__text a:hover {
        text-decoration: underline;
    }
    .aces-ftr-contact__follow {
        display: flex;
        gap: 18px;
        margin-top: 4px;
    }
    .aces-ftr-contact__follow a {
        color: #fff;
        font-size: 18px;
        text-decoration: none;
        transition: opacity 0.3s;
    }
    .aces-ftr-contact__follow a:hover {
        opacity: 0.7;
    }

    .aces-ftr-main {
        padding: 20px 0 40px;
    }
    .aces-ftr-grid {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        display: grid;
        grid-template-columns: 3fr 2fr 2fr 5fr;
        gap: 30px;
    }

    .aces-ftr-widget__title {
        color: #fff;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 15px 0;
    }
    .aces-ftr-widget__img {
        width: 100%;
        border-radius: 15px;
        margin-bottom: 10px;
        display: block;
    }
    .aces-ftr-widget__desc {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;
        margin: 15px 0;
    }

    .aces-ftr-social {
        display: flex;
        gap: 18px;
        margin-top: 10px;
    }
    .aces-ftr-social__link {
        display: inline-block;
        transition: opacity 0.3s;
    }
    .aces-ftr-social__link:hover {
        opacity: 0.7;
    }
    .aces-ftr-social__link img {
        width: 24px;
        height: 24px;
    }

    .aces-ftr-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .aces-ftr-links__item {
        margin-bottom: 0;
    }
    .aces-ftr-links__item a {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-weight: 400;
        text-decoration: none;
        line-height: 1.8;
        transition: color 0.3s;
    }
    .aces-ftr-links__item a:hover {
        color: #ff5e14;
    }

    .aces-ftr-links--dual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 30px;
    }

    .aces-ftr-bottom {
        border-top: 1px solid #131e3e;
        padding: 20px 0;
    }
    .aces-ftr-bottom__inner {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .aces-ftr-bottom__copy {
        color: rgba(255, 255, 255, 0.56);
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: normal;
        line-height: 120%;
    }
    .aces-ftr-bottom__legal {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 20px;
    }
    .aces-ftr-bottom__legal a {
        color: rgba(255, 255, 255, 0.56);
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: normal;
        line-height: 120%;
        text-decoration: none;
        transition: color 0.3s;
    }
    .aces-ftr-bottom__legal a:hover {
        color: #fff;
    }

    @media (max-width: 991px) {
        .aces-ftr {
            margin-top: 120px;
        }
        .aces-ftr-contact {
            padding: 0 20px;
            margin-bottom: -120px;
        }
        .aces-ftr-contact__grid {
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
            padding: 20px 25px;
        }
        .aces-ftr-main {
            padding: 25px 0 35px;
        }
        .aces-ftr-grid {
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            padding: 0 20px;
        }
        .aces-ftr-widget--wide {
            grid-column: 1 / -1;
        }
        .aces-ftr-bottom__inner {
            flex-direction: column;
            text-align: center;
            gap: 10px;
            padding: 0 20px;
        }
    }

    @media (max-width: 576px) {
        .aces-ftr {
            margin-top: 140px;
        }
        .aces-ftr-contact {
            padding: 0 12px;
            margin-bottom: -140px;
        }
        .aces-ftr-contact__grid {
            padding: 18px 20px;
            gap: 12px;
        }
        .aces-ftr-contact__title {
            font-size: 14px;
        }
        .aces-ftr-contact__text {
            font-size: 12px;
        }
        .aces-ftr-contact__icon {
            min-width: 32px;
        }
        .aces-ftr-contact__icon img {
            width: 32px;
            height: 32px;
        }
        .aces-ftr-main {
            padding: 20px 0 25px;
        }
        .aces-ftr-grid {
            grid-template-columns: 1fr;
            gap: 25px;
            padding: 0 12px;
        }
        .aces-ftr-widget--wide {
            grid-column: auto;
        }
        .aces-ftr-links--dual {
            grid-template-columns: 1fr;
        }
        .aces-ftr-widget__desc {
            font-size: 14px;
        }
        .aces-ftr-links__item a {
            font-size: 14px;
        }
        .aces-ftr-bottom__inner {
            padding: 0 12px;
        }
        .aces-ftr-bottom__legal {
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
    }

