/* ==================================================
   ÇEREZ BİLDİRİMİ
   ================================================== */

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner {
    position: fixed;
    z-index: 2000;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 16px 0;
    color: #fff;
    background-color: rgba(30, 41, 55, 0.97);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(100%);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    width: calc(100% - 48px);
    max-width: 1400px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
}

.cookie-banner p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
}

.cookie-banner p a {
    margin-left: 6px;
    color: #fff;
    text-decoration: underline;
}

.cookie-banner p a:hover,
.cookie-banner p a:focus {
    color: #d9e7ff;
}

.cookie-accept-button {
    flex-shrink: 0;
    min-width: 105px;
    padding: 11px 18px;
    border: 0;
    color: #fff;
    background-color: var(--mge-blue);
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.cookie-accept-button:hover,
.cookie-accept-button:focus {
    background-color: #2362c2;
}

/* ==================================================
   YUKARI DÖN BUTONU
   ================================================== */

.scroll-top-button[hidden] {
    display: none;
}

.scroll-top-button {
    position: fixed;
    z-index: 1500;
    right: 24px;
    bottom: 90px;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background-color: var(--mge-blue);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        background-color 0.2s ease;
}

.scroll-top-button.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-button:hover,
.scroll-top-button:focus {
    color: #fff;
    background-color: var(--mge-dark-blue);
}

.scroll-top-button i {
    font-size: 20px;
}

/* Telefon */

@media (max-width: 575.98px) {
    .cookie-banner {
        padding: 15px 0;
    }

    .cookie-banner-content {
        width: calc(100% - 32px);
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .cookie-accept-button {
        width: 100%;
    }

    .scroll-top-button {
        right: 16px;
        bottom: 125px;
        width: 42px;
        height: 42px;
    }
}

/* ==================================================
   ORTAK İÇ SAYFA BAŞLIĞI
   ================================================== */

.inner-page-header {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 175px;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(
            110deg,
            rgba(11, 48, 107, 0.98),
            rgba(23, 71, 151, 0.94)
        );
}

.inner-page-header::before {
    position: absolute;
    top: -120px;
    right: -90px;
    width: 420px;
    height: 320px;
    content: "";
    border: 65px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.inner-page-header .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.inner-page-header h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.page-breadcrumb a {
    color: #fff;
    transition: opacity 0.2s ease;
}

.page-breadcrumb a:hover,
.page-breadcrumb a:focus {
    color: #fff;
    opacity: 0.75;
}