/* =====================================================
   ATLAS ROYAL KIZ ÖĞRENCİ YURDU
   Genel Değişkenler
===================================================== */

:root {
    --navy: #0b1b46;
    --navy-light: #152a5a;
    --navy-dark: #06102c;

    --gold: #c89b3c;
    --gold-light: #e1bd6c;
    --gold-dark: #a97a25;

    --cream: #f8f5ee;
    --white: #ffffff;
    --gray: #6d6d6d;

    --header-height: 154px;
    --container-width: 1380px;

    --transition: 0.3s ease;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background-color: var(--white);
    color: var(--navy);
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

address {
    font-style: normal;
}


/* =====================================================
   HEADER
   Sabit yükseklikli, normal sayfa akışında
===================================================== */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid rgba(200, 155, 60, 0.25);
    box-shadow: 0 5px 30px rgba(11, 27, 70, 0.07);
}

.header-container {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    width: min(100% - 44px, var(--container-width));
    height: 100%;
    margin: 0 auto;
}


/* Masaüstü navigasyon */

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 38px);
}

.desktop-navigation-left {
    justify-content: flex-end;
    padding-right: clamp(30px, 4vw, 74px);
}

.desktop-navigation-right {
    justify-content: flex-start;
    padding-right: 55px;
    padding-left: clamp(30px, 4vw, 74px);
}

.desktop-navigation a {
    position: relative;
    padding: 12px 0;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    white-space: nowrap;
    transition:
        color var(--transition),
        transform var(--transition);
}

.desktop-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background-color: var(--gold);
    content: "";
    transition: width var(--transition);
}

.desktop-navigation a:hover,
.desktop-navigation a.active {
    color: var(--gold-dark);
}

.desktop-navigation a:hover::after,
.desktop-navigation a.active::after {
    width: 100%;
}


/* Logo */

.header-logo {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 148px;
    height: 140px;
    padding: 5px;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Dil butonu */

.language-button {
    position: absolute;
    top: 18px;
    right: 0;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 49px;
    height: 34px;
    padding: 0 8px;
    background-color: var(--cream);
    border: 1px solid rgba(200, 155, 60, 0.4);
    border-radius: 5px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition:
        border-color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.language-button:hover {
    background-color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.desktop-flag-image {
    display: block;
    width: 27px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 5px rgba(11, 27, 70, 0.18);
}

.mobile-flag-emoji {
    display: none;
    font-size: 20px;
    line-height: 1;
}


/* Mobil menü parçaları */

.mobile-menu-control,
.hamburger-button,
.mobile-navigation {
    display: none;
}


/* =====================================================
   HERO / VİDEOLU SLIDER
===================================================== */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100svh - var(--header-height));
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: -4;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Video üzerindeki koyu katman */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(
            90deg,
            rgba(6, 16, 44, 0.9) 0%,
            rgba(6, 16, 44, 0.68) 43%,
            rgba(6, 16, 44, 0.2) 72%,
            rgba(6, 16, 44, 0.35) 100%
        );
}


/* Dekoratif altın çizgiler */

.hero-decoration {
    position: absolute;
    z-index: -2;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(225, 189, 108, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration-left {
    bottom: -225px;
    left: -140px;
}

.hero-decoration-right {
    top: -230px;
    right: -140px;
}

.hero-decoration::before,
.hero-decoration::after {
    position: absolute;
    border: 1px solid rgba(225, 189, 108, 0.13);
    border-radius: 50%;
    content: "";
}

.hero-decoration::before {
    inset: 35px;
}

.hero-decoration::after {
    inset: 78px;
}


/* Hero içerik */

.hero-content {
    width: min(100% - 60px, 1280px);
    margin: 0 auto;
    padding-bottom: 20px;
    color: var(--white);
}

.hero-small-title {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-small-title::before {
    display: block;
    width: 58px;
    height: 1px;
    background-color: var(--gold-light);
    content: "";
}

.hero-content h1 {
    max-width: 790px;
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -2px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}


/* Genel buton */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 54px;
    padding: 13px 25px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-align: center;
    text-transform: uppercase;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.button-primary:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
}

.button-outline {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.button-outline:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--navy);
}


/* Aşağı kaydırma göstergesi */

.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(-50%);
}

.scroll-down span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.scroll-down i {
    position: relative;
    display: block;
    width: 1px;
    height: 35px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.35);
}

.scroll-down i::after {
    position: absolute;
    top: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--gold-light);
    content: "";
    animation: scrollLine 1.8s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    60%,
    100% {
        top: 100%;
    }
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    position: relative;
    background-color: var(--navy-dark);
    color: var(--white);
    overflow: hidden;
}

.footer-decoration {
    position: absolute;
    top: -245px;
    right: -180px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(225, 189, 108, 0.08);
    border-radius: 50%;
}

.footer-decoration::before,
.footer-decoration::after {
    position: absolute;
    border: 1px solid rgba(225, 189, 108, 0.05);
    border-radius: 50%;
    content: "";
}

.footer-decoration::before {
    inset: 55px;
}

.footer-decoration::after {
    inset: 120px;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 1fr;
    gap: clamp(50px, 8vw, 120px);
    width: min(100% - 60px, 1280px);
    margin: 0 auto;
    padding: 85px 0 70px;
}

.footer-column h3 {
    position: relative;
    margin-bottom: 28px;
    padding-bottom: 14px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.footer-column h3::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 1px;
    background-color: var(--gold);
    content: "";
}


/* Footer logo */

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    line-height: 1;
}

.footer-logo-main {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    letter-spacing: 10px;
}

.footer-logo-secondary {
    margin-top: 7px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    letter-spacing: 8px;
}

.footer-about p {
    max-width: 470px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.9;
}


/* Footer navigasyon */

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
}

.footer-navigation a {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    transition:
        color var(--transition),
        padding-left var(--transition);
}

.footer-navigation a::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 1px;
    background-color: var(--gold);
    content: "";
    transform: translateY(-50%);
}

.footer-navigation a:hover {
    padding-left: 21px;
    color: var(--gold-light);
}


/* Footer iletişim */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    align-items: flex-start;
}

.contact-symbol {
    color: var(--gold-light);
    font-size: 18px;
    line-height: 1.4;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.8;
}

.contact-item a {
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--gold-light);
}


/* Footer alt bar */

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    width: min(100% - 60px, 1280px);
    min-height: 75px;
    margin: 0 auto;
}

.footer-bottom p,
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.43);
    font-size: 11px;
    letter-spacing: 0.3px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-legal-links a {
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--gold-light);
}


/* Footer yazılım ve tasarım bağlantısı */

.footer-bottom-container p a {
    color: var(--gold-light);
    font-weight: 600;
    transition: color var(--transition);
}

.footer-bottom-container p a:hover {
    color: var(--white);
}


/* =====================================================
   ORTA EKRANLAR
===================================================== */

@media (max-width: 1180px) {

    .desktop-navigation {
        gap: 15px;
    }

    .desktop-navigation-left {
        padding-right: 25px;
    }

    .desktop-navigation-right {
        padding-right: 48px;
        padding-left: 25px;
    }

    .desktop-navigation a {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .header-logo {
        width: 132px;
    }

}


/* =====================================================
   TABLET VE MOBİL
===================================================== */

@media (max-width: 900px) {

    :root {
        --header-height: 86px;
    }

    .header-container {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0 18px;
    }

    .desktop-navigation {
        display: none;
    }

    .header-logo {
        width: 82px;
        height: 78px;
        padding: 3px;
    }

    .language-button {
        top: 50%;
        right: auto;
        left: 18px;
        min-width: 44px;
        height: 35px;
        padding: 0 7px;
        transform: translateY(-50%);
    }

    .language-button:hover {
        transform: translateY(-50%);
    }

    .desktop-flag-image {
        display: none;
    }

    .mobile-flag-emoji {
        display: inline-block;
    }

    .language-text {
        display: none;
    }

    .mobile-menu-control {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .hamburger-button {
        position: absolute;
        top: 50%;
        right: 18px;
        z-index: 9;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 42px;
        height: 42px;
        padding: 8px;
        cursor: pointer;
        transform: translateY(-50%);
    }

    .hamburger-button span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--navy);
        transition:
            transform var(--transition),
            opacity var(--transition),
            width var(--transition);
    }

    .hamburger-button span:nth-child(2) {
        width: 75%;
        margin-left: auto;
    }

    .mobile-menu-control:checked + .hamburger-button span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-control:checked + .hamburger-button span:nth-child(2) {
        width: 0;
        opacity: 0;
    }

    .mobile-menu-control:checked + .hamburger-button span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 8;
        display: flex;
        flex-direction: column;
        max-height: 0;
        padding: 0 24px;
        background-color: rgba(255, 255, 255, 0.985);
        border-top: 1px solid rgba(200, 155, 60, 0.22);
        box-shadow: 0 18px 30px rgba(11, 27, 70, 0.12);
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transform: translateY(-10px);
        transition:
            max-height 0.45s ease,
            padding 0.35s ease,
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .mobile-navigation a {
        padding: 14px 4px;
        border-bottom: 1px solid rgba(11, 27, 70, 0.08);
        color: var(--navy);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.7px;
    }

    .mobile-navigation a:last-child {
        border-bottom: 0;
    }

    .mobile-navigation a.active {
        color: var(--gold-dark);
    }

    .mobile-menu-control:checked ~ .mobile-navigation {
        max-height: 600px;
        padding-top: 12px;
        padding-bottom: 12px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero-section {
        min-height: 570px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(6, 16, 44, 0.88) 0%,
                rgba(6, 16, 44, 0.69) 65%,
                rgba(6, 16, 44, 0.48) 100%
            );
    }

    .hero-content {
        width: min(100% - 44px, 720px);
    }

    .hero-content h1 {
        max-width: 650px;
        font-size: clamp(45px, 8vw, 67px);
    }

    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-about {
        grid-column: 1 / -1;
    }

}


/* =====================================================
   MOBİL
===================================================== */

@media (max-width: 600px) {

    .header-logo {
        width: 77px;
        height: 74px;
    }

    .language-button {
        left: 14px;
    }

    .hamburger-button {
        right: 12px;
    }

    .hero-section {
        min-height: 590px;
    }

    .hero-video {
        object-position: center center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(6, 16, 44, 0.58) 0%,
                rgba(6, 16, 44, 0.76) 45%,
                rgba(6, 16, 44, 0.92) 100%
            );
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: calc(100% - 34px);
        padding-top: 25px;
        padding-bottom: 55px;
        text-align: center;
    }

    .hero-small-title {
        margin-bottom: 18px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-small-title::before {
        display: none;
    }

    .hero-content h1 {
        margin-bottom: 20px;
        font-size: clamp(40px, 12vw, 56px);
        line-height: 1.07;
        letter-spacing: -1px;
    }

    .hero-content p {
        max-width: 420px;
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;
        width: min(100%, 320px);
        margin-top: 30px;
    }

    .button {
        width: 100%;
        min-height: 51px;
    }

    .scroll-down {
        bottom: 14px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
        width: calc(100% - 40px);
        padding: 65px 0 55px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-logo {
        align-items: flex-start;
    }

    .footer-logo-main {
        font-size: 30px;
        letter-spacing: 8px;
    }

    .footer-logo-secondary {
        font-size: 17px;
        letter-spacing: 6px;
    }

    .footer-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;
        width: calc(100% - 40px);
        min-height: 105px;
        padding: 22px 0;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

}


/* =====================================================
   ÇOK KÜÇÜK EKRANLAR
===================================================== */

@media (max-width: 370px) {

    .hero-content h1 {
        font-size: 37px;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   YURDUMUZ GALERİSİ
===================================================== */

.dormitory-gallery-section {
    position: relative;
    padding: 105px 0 115px;
    background-color: var(--white);
    overflow: hidden;
}

.dormitory-gallery-section::before {
    position: absolute;
    top: -170px;
    left: -170px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(200, 155, 60, 0.12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.dormitory-gallery-section::after {
    position: absolute;
    right: -130px;
    bottom: -210px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(11, 27, 70, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.gallery-container {
    position: relative;
    z-index: 2;
    width: min(100% - 50px, 1380px);
    margin: 0 auto;
}


/* Galeri başlığı */

.gallery-heading {
    max-width: 720px;
    margin: 0 auto 58px;
    text-align: center;
}

.gallery-heading > span {
    display: block;
    margin-bottom: 11px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gallery-heading h2 {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 20px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 55px);
    font-weight: 400;
    line-height: 1.15;
}

.gallery-heading h2::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 75px;
    height: 2px;
    margin: auto;
    background-color: var(--gold);
    content: "";
}

.gallery-heading p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.85;
}


/* Slider alanı */

.gallery-slider-wrapper {
    position: relative;
    padding: 0 58px;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 54px) / 4);
    gap: 18px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}


/* Galeri kartları */

.gallery-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    scroll-snap-align: start;
    isolation: isolate;
}

.gallery-card::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(6, 16, 44, 0.46) 100%
        );
    content: "";
    opacity: 0.55;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-card::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background-color: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(200, 155, 60, 0.7);
    border-radius: 50%;
    color: var(--navy);
    content: "+";
    font-family: Arial, sans-serif;
    font-size: 29px;
    font-weight: 300;
    line-height: 1;
    opacity: 0;
    transform: translate(-50%, -40%);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background-color 0.35s ease;
    pointer-events: none;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-card:hover img {
    transform: scale(1.055);
}

.gallery-card:hover::before {
    opacity: 0.2;
}

.gallery-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.gallery-card:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}


/* Slider yön butonları */

.gallery-slider-button {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 76px;
    padding: 0;
    background-color: var(--navy);
    border: 1px solid rgba(200, 155, 60, 0.45);
    color: var(--white);
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 25px;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.gallery-slider-prev {
    left: 0;
}

.gallery-slider-next {
    right: 0;
}

.gallery-slider-button:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.gallery-slider-prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.gallery-slider-next:hover {
    transform: translateY(-50%) translateX(3px);
}

.gallery-slider-button:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}


/* Mobil kaydırma yazısı */

.gallery-mobile-hint {
    display: none;
}


/* =====================================================
   GALERİ POP-UP / LIGHTBOX
===================================================== */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(3, 8, 23, 0.94);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.gallery-lightbox-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 1450px);
    height: min(92vh, 950px);
    transform: scale(0.96);
    transition: transform 0.35s ease;
}

.gallery-lightbox.is-open .gallery-lightbox-content {
    transform: scale(1);
}

.gallery-lightbox-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 170px);
    height: 100%;
}

.gallery-lightbox-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.48);
    user-select: none;
    -webkit-user-drag: none;
}


/* Pop-up kapatma düğmesi */

.gallery-lightbox-close {
    position: fixed;
    top: 23px;
    right: 28px;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 35px;
    font-weight: 200;
    line-height: 1;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.gallery-lightbox-close:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    transform: rotate(90deg);
}


/* Pop-up ileri geri düğmeleri */

.gallery-lightbox-arrow {
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 76px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 29px;
    line-height: 1;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.gallery-lightbox-prev {
    margin-right: 23px;
}

.gallery-lightbox-next {
    margin-left: 23px;
}

.gallery-lightbox-arrow:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.gallery-lightbox-prev:hover {
    transform: translateX(-4px);
}

.gallery-lightbox-next:hover {
    transform: translateX(4px);
}


/* Fotoğraf sayacı */

.gallery-lightbox-counter {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 72px;
    padding: 8px 13px;
    background-color: rgba(6, 16, 44, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    backdrop-filter: blur(5px);
}


/* Pop-up açıldığında sayfanın kaymasını engeller */

body.gallery-lightbox-open {
    overflow: hidden;
}


/* =====================================================
   GALERİ TABLET VE MOBİL
===================================================== */

@media (max-width: 900px) {

    .dormitory-gallery-section {
        padding: 78px 0 85px;
    }

    .gallery-container {
        width: calc(100% - 30px);
    }

    .gallery-heading {
        margin-bottom: 42px;
    }

    .gallery-heading > span {
        font-size: 10px;
        letter-spacing: 2.2px;
    }

    .gallery-heading h2 {
        font-size: 40px;
    }

    .gallery-heading p {
        font-size: 14px;
    }

    .gallery-slider-wrapper {
        padding: 0;
    }

    .gallery-track {
        grid-auto-columns: 100%;
        gap: 14px;
    }

    .gallery-slider-button {
        top: 50%;
        width: 42px;
        height: 68px;
        background-color: rgba(6, 16, 44, 0.82);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .gallery-slider-prev {
        left: 10px;
    }

    .gallery-slider-next {
        right: 10px;
    }

    .gallery-mobile-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 19px;
        color: var(--gray);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.1px;
        text-align: center;
        text-transform: uppercase;
    }

    .gallery-mobile-hint span {
        position: relative;
        padding-right: 38px;
    }

    .gallery-mobile-hint span::after {
        position: absolute;
        top: 50%;
        right: 0;
        width: 27px;
        height: 1px;
        background-color: var(--gold);
        content: "";
        transform: translateY(-50%);
    }

    .gallery-lightbox {
        padding: 12px;
    }

    .gallery-lightbox-content {
        width: 100%;
        height: 100%;
    }

    .gallery-lightbox-image-wrapper {
        width: 100%;
        height: 100%;
        padding: 65px 8px 75px;
    }

    .gallery-lightbox-image {
        max-width: 100%;
        max-height: calc(100vh - 150px);
    }

    .gallery-lightbox-close {
        top: 14px;
        right: 14px;
        width: 43px;
        height: 43px;
        font-size: 31px;
    }

    .gallery-lightbox-arrow {
        position: fixed;
        bottom: 18px;
        width: 55px;
        height: 48px;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .gallery-lightbox-prev {
        left: 18px;
        margin: 0;
    }

    .gallery-lightbox-next {
        right: 18px;
        margin: 0;
    }

    .gallery-lightbox-counter {
        right: 50%;
        bottom: 20px;
        transform: translateX(50%);
    }

}

@media (max-width: 420px) {

    .gallery-slider-button {
        width: 38px;
        height: 61px;
        font-size: 22px;
    }

    .gallery-slider-prev {
        left: 7px;
    }

    .gallery-slider-next {
        right: 7px;
    }

}


/* =====================================================
   ÖĞRENCİ VE VELİ YORUMLARI
===================================================== */

.testimonials-section {
    position: relative;
    padding: 110px 0 120px;
    background:
        linear-gradient(
            145deg,
            var(--cream) 0%,
            #ffffff 53%,
            #f5f0e5 100%
        );
    overflow: hidden;
}

.testimonials-section::before {
    position: absolute;
    top: -250px;
    right: -230px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(200, 155, 60, 0.14);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.testimonials-section::after {
    position: absolute;
    bottom: -210px;
    left: -190px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(11, 27, 70, 0.07);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    width: min(100% - 50px, 1280px);
    margin: 0 auto;
}

.testimonials-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.testimonials-heading > span {
    display: block;
    margin-bottom: 11px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.testimonials-heading h2 {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 20px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 55px);
    font-weight: 400;
    line-height: 1.15;
}

.testimonials-heading h2::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 75px;
    height: 2px;
    margin: auto;
    background-color: var(--gold);
    content: "";
}

.testimonials-heading > p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.85;
}


/* Google yorumları butonu */

.google-reviews-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 285px;
    margin-top: 28px;
    padding: 13px 17px;
    background-color: var(--white);
    border: 1px solid rgba(11, 27, 70, 0.13);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(11, 27, 70, 0.08);
    text-align: left;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.google-reviews-button:hover {
    border-color: rgba(200, 155, 60, 0.65);
    box-shadow: 0 17px 38px rgba(11, 27, 70, 0.14);
    transform: translateY(-3px);
}

.google-logo {
    flex: 0 0 auto;
    width: 35px;
    height: 35px;
}

.google-reviews-button > span:nth-of-type(1) {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.google-reviews-button strong {
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.google-reviews-button small {
    color: var(--gray);
    font-size: 10px;
    line-height: 1.5;
}

.google-button-arrow {
    color: var(--gold-dark);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.google-reviews-button:hover .google-button-arrow {
    transform: translate(3px, -3px);
}


/* Yorum slider */

.testimonials-slider-wrapper {
    position: relative;
    padding: 0 58px;
}

.testimonials-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    align-items: start;
    width: 100%;
    padding: 8px 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}


/* Yorum kartı */

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 480px;
    min-height: 480px;
    padding: 30px 29px 25px;
    background-color: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(200, 155, 60, 0.23);
    border-radius: 4px;
    box-shadow: 0 12px 35px rgba(11, 27, 70, 0.06);
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease,
        height 0.45s ease;
}

.testimonial-card.is-expanded {
    height: auto;
    min-height: 480px;
}

.testimonial-card::before {
    position: absolute;
    top: -25px;
    right: 17px;
    color: rgba(200, 155, 60, 0.1);
    content: "“";
    font-family: Georgia, "Times New Roman", serif;
    font-size: 145px;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--gold);
    content: "";
    transition: width 0.45s ease;
}

.testimonial-card:hover {
    border-color: rgba(200, 155, 60, 0.55);
    box-shadow: 0 22px 50px rgba(11, 27, 70, 0.12);
    transform: translateY(-7px);
}

.testimonial-card:hover::after {
    width: 100%;
}

.testimonial-card-top {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 25px;
    gap: 13px;
    align-items: center;
    margin-bottom: 25px;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background:
        linear-gradient(
            145deg,
            var(--navy) 0%,
            var(--navy-light) 100%
        );
    border: 2px solid rgba(200, 155, 60, 0.45);
    border-radius: 50%;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonial-person {
    min-width: 0;
}

.testimonial-person h3 {
    margin-bottom: 4px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #f4b400;
    font-size: 14px;
    line-height: 1;
}

.testimonial-google-icon {
    align-self: start;
    width: 24px;
    height: 24px;
}

.testimonial-text {
    position: relative;
    flex: 1 1 auto;
    max-height: 285px;
    padding-right: 5px;
    color: var(--gray);
    overflow: hidden;
}

.testimonial-text::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 55px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.94) 80%
        );
    content: "";
    pointer-events: none;
}

.testimonial-card.is-expanded .testimonial-text {
    max-height: none;
    overflow: visible;
}

.testimonial-card.is-expanded .testimonial-text::after {
    display: none;
}

.testimonial-text p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.85;
}

.testimonial-text p:last-child {
    margin-bottom: 0;
}


/* Devamını oku */

.testimonial-read-more {
    display: none;
    align-self: flex-start;
    margin-top: 17px;
    padding: 0 0 5px;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(200, 155, 60, 0.65);
    color: var(--gold-dark);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.testimonial-card.has-overflow .testimonial-read-more {
    display: inline-flex;
}

.testimonial-read-more:hover {
    border-color: var(--navy);
    color: var(--navy);
}


/* Yorum yön düğmeleri */

.testimonials-slider-button {
    position: absolute;
    top: 240px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 76px;
    padding: 0;
    background-color: var(--navy);
    border: 1px solid rgba(200, 155, 60, 0.45);
    color: var(--white);
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 25px;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.testimonials-slider-prev {
    left: 0;
}

.testimonials-slider-next {
    right: 0;
}

.testimonials-slider-button:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.testimonials-slider-prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.testimonials-slider-next:hover {
    transform: translateY(-50%) translateX(3px);
}

.testimonials-slider-button:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}

.testimonials-mobile-hint {
    display: none;
}


/* Yorumlar tablet */

@media (max-width: 1050px) {

    .testimonials-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }

}


/* Yorumlar mobil */

@media (max-width: 700px) {

    .testimonials-section {
        padding: 80px 0 85px;
    }

    .testimonials-container {
        width: calc(100% - 30px);
    }

    .testimonials-heading {
        margin-bottom: 45px;
    }

    .testimonials-heading > span {
        font-size: 10px;
        letter-spacing: 2.2px;
    }

    .testimonials-heading h2 {
        font-size: 40px;
    }

    .testimonials-heading > p {
        font-size: 14px;
    }

    .google-reviews-button {
        min-width: 0;
        width: min(100%, 310px);
    }

    .testimonials-slider-wrapper {
        padding: 0;
    }

    .testimonials-track {
        grid-auto-columns: 100%;
        gap: 14px;
    }

    .testimonial-card {
        height: 450px;
        min-height: 450px;
        padding: 26px 22px 22px;
    }

    .testimonial-card.is-expanded {
        min-height: 450px;
    }

    .testimonial-card-top {
        grid-template-columns: 44px minmax(0, 1fr) 23px;
        gap: 11px;
        margin-bottom: 22px;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .testimonial-person h3 {
        font-size: 18px;
    }

    .testimonial-text {
        max-height: 245px;
    }

    .testimonial-text p {
        font-size: 13px;
        line-height: 1.8;
    }

    .testimonial-read-more {
        font-size: 10px;
    }

    .testimonials-slider-button {
        top: 222px;
        width: 39px;
        height: 64px;
        background-color: rgba(6, 16, 44, 0.87);
        border-color: rgba(255, 255, 255, 0.48);
        font-size: 22px;
    }

    .testimonials-slider-prev {
        left: 7px;
    }

    .testimonials-slider-next {
        right: 7px;
    }

    .testimonials-mobile-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 18px;
        color: var(--gray);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1px;
        text-align: center;
        text-transform: uppercase;
    }

}


/* =====================================================
   BURADAYIZ / HARİTA
===================================================== */

.location-section {
    position: relative;
    width: 100%;
    padding-top: 100px;
    background-color: var(--white);
    overflow: hidden;
}

.location-heading {
    width: min(100% - 50px, 760px);
    margin: 0 auto 55px;
    text-align: center;
}

.location-heading > span {
    display: block;
    margin-bottom: 11px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.location-heading h2 {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 20px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 55px);
    font-weight: 400;
    line-height: 1.15;
}

.location-heading h2::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 75px;
    height: 2px;
    margin: auto;
    background-color: var(--gold);
    content: "";
}

.location-heading p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.85;
}

.location-map {
    width: 100%;
    height: 450px;
    background-color: var(--cream);
    line-height: 0;
    overflow: hidden;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {

    .location-section {
        padding-top: 75px;
    }

    .location-heading {
        width: calc(100% - 30px);
        margin-bottom: 40px;
    }

    .location-heading > span {
        font-size: 10px;
        letter-spacing: 2.2px;
    }

    .location-heading h2 {
        font-size: 40px;
    }

    .location-heading p {
        font-size: 14px;
    }

    .location-map {
        height: 380px;
    }

}

@media (max-width: 600px) {

    .location-section {
        padding-top: 68px;
    }

    .location-heading {
        margin-bottom: 34px;
    }

    .location-map {
        height: 350px;
    }

}


/* =====================================================
   HAREKET AZALTMA TERCİHİ
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

}

/* =====================================================
   ALT SAYFA / HAKKIMIZDA STİLLERİ
===================================================== */

/* =====================================================
   HAKKIMIZDA SAYFASI ÖZEL STİLLERİ
   Bu bölüm ana sayfa stillerinden sonra gelir.
===================================================== */

/* =====================================================
   DEĞİŞKENLER
===================================================== */

:root {
    --about-primary: var(--gold, #c89b3c);
    --about-primary-light: var(--gold-light, #e1bd6c);
    --about-primary-dark: var(--gold-dark, #a97a25);

    --about-navy: var(--navy, #0b1b46);
    --about-navy-light: var(--navy-light, #152a5a);
    --about-navy-dark: var(--navy-dark, #06102c);

    --about-white: var(--white, #ffffff);
    --about-cream: var(--cream, #f8f5ee);
    --about-gray: var(--gray, #6d6d6d);

    --about-border: rgba(200, 155, 60, 0.24);
    --about-container-width: 1200px;
    --about-header-height: 150px;
}


/* =====================================================
   GENEL
===================================================== */

.about-page {
    min-width: 320px;
    margin: 0;

    background-color: var(--about-white);
    color: var(--about-navy);

    overflow-x: hidden;
}

.about-page *,
.about-page *::before,
.about-page *::after {
    box-sizing: border-box;
}

.about-page main {
    display: block;
    width: 100%;
}

.about-page img {
    display: block;
    max-width: 100%;
}

.about-container {
    width: min(
        calc(100% - 50px),
        var(--about-container-width)
    );

    margin-right: auto;
    margin-left: auto;
}


/* =====================================================
   ALT SAYFA HEADER
===================================================== */

.subpage-header {
    position: relative;
    z-index: 1000;

    width: 100%;
    height: var(--about-header-height);

    background-image:
        linear-gradient(
            90deg,
            rgba(6, 16, 44, 0.78) 0%,
            rgba(6, 16, 44, 0.58) 50%,
            rgba(6, 16, 44, 0.78) 100%
        ),
        url("galeri/galeri7.jpg");

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 1px solid rgba(225, 189, 108, 0.35);
    box-shadow: 0 7px 30px rgba(6, 16, 44, 0.18);

    overflow: visible;
    isolation: isolate;
}

.subpage-header::before {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            180deg,
            rgba(6, 16, 44, 0.08) 0%,
            rgba(6, 16, 44, 0.22) 100%
        );

    content: "";
    pointer-events: none;
}

.subpage-header-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        148px
        minmax(0, 1fr);

    align-items: center;

    width: min(
        calc(100% - 44px),
        1380px
    );

    height: 100%;
    margin-right: auto;
    margin-left: auto;
}


/* =====================================================
   MASAÜSTÜ NAVİGASYON
===================================================== */

.subpage-desktop-navigation {
    display: flex;
    align-items: center;

    gap: clamp(18px, 2vw, 38px);
}

.subpage-desktop-navigation-left {
    justify-content: flex-end;

    padding-right: clamp(30px, 4vw, 74px);
}

.subpage-desktop-navigation-right {
    justify-content: flex-start;

    padding-right: 55px;
    padding-left: clamp(30px, 4vw, 74px);
}

.subpage-desktop-navigation a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 0;

    color: var(--about-white);

    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.6px;
    text-decoration: none;
    white-space: nowrap;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);

    transition:
        color 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.subpage-desktop-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;

    width: 0;
    height: 2px;
    margin: auto;

    background-color: var(--about-primary-light);

    content: "";

    transition: width 0.3s ease;
}

.subpage-desktop-navigation a:hover,
.subpage-desktop-navigation a.active {
    color: var(--about-primary-light);
}

.subpage-desktop-navigation a:hover {
    transform: translateY(-1px);
}

.subpage-desktop-navigation a:hover::after,
.subpage-desktop-navigation a.active::after {
    width: 100%;
}


/* =====================================================
   HEADER LOGO
===================================================== */

.subpage-header-logo {
    position: relative;
    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 148px;
    height: 140px;
    padding: 5px;

    margin-right: auto;
    margin-left: auto;

    text-decoration: none;
}

.subpage-header-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        brightness(0)
        invert(1);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.subpage-header-logo:hover img {
    opacity: 0.88;
    transform: scale(1.02);
}


/* =====================================================
   DİL BUTONU
===================================================== */

.subpage-language-button {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 7;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    min-width: 49px;
    height: 34px;
    padding: 0 8px;

    background-color: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 5px;

    color: var(--about-white);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    text-decoration: none;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transform: translateY(-50%);

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.subpage-language-button:hover {
    background-color: rgba(255, 255, 255, 0.22);
    border-color: var(--about-primary-light);
    color: var(--about-primary-light);
}


/* Masaüstü bayrağı */

.subpage-language-button .desktop-flag-image {
    display: block;

    width: 27px;
    height: 18px;

    border-radius: 2px;

    object-fit: cover;

    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.22);
}


/* Mobil emoji masaüstünde gizli */

.subpage-language-button .mobile-flag-emoji {
    display: none;

    font-family:
        "Segoe UI Emoji",
        "Apple Color Emoji",
        "Noto Color Emoji",
        sans-serif;

    font-size: 20px;
    line-height: 1;
}


/* EN yazısı masaüstünde görünür */

.subpage-language-button .language-text {
    display: inline-block;
}


/* =====================================================
   MOBİL MENÜ ELEMANLARI
===================================================== */

.about-mobile-menu-control,
.about-hamburger-button,
.about-mobile-navigation {
    display: none;
}


/* =====================================================
   SAYFA BAŞLIĞI
===================================================== */

.about-title-section {
    position: relative;

    padding: 86px 0 80px;

    background:
        linear-gradient(
            145deg,
            var(--about-cream) 0%,
            #ffffff 54%,
            #f5f0e5 100%
        );

    text-align: center;
    overflow: hidden;
}

.about-title-section::before {
    position: absolute;
    top: -230px;
    right: -180px;

    width: 480px;
    height: 480px;

    border: 1px solid rgba(200, 155, 60, 0.12);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}

.about-title-section::after {
    position: absolute;
    bottom: -260px;
    left: -210px;

    width: 510px;
    height: 510px;

    border: 1px solid rgba(11, 27, 70, 0.07);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}

.about-title-section .about-container {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.about-small-title {
    display: block;

    margin-bottom: 12px;

    color: var(--about-primary-dark);

    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-title-section h1 {
    position: relative;

    margin: 0;
    padding-bottom: 23px;

    color: var(--about-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(44px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.about-title-section h1::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 75px;
    height: 2px;
    margin: auto;

    background-color: var(--about-primary);

    content: "";
}

.about-title-section p {
    max-width: 690px;

    margin: 25px auto 0;

    color: var(--about-gray);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
}


/* =====================================================
   HAKKIMIZDA İÇERİĞİ
===================================================== */

.about-content-section {
    position: relative;

    padding: 110px 0 120px;

    background-color: var(--about-white);

    overflow: hidden;
}

.about-content-section::before {
    position: absolute;
    top: 100px;
    left: -200px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(200, 155, 60, 0.09);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}

.about-content-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: clamp(55px, 7vw, 100px);
}


/* =====================================================
   HAKKIMIZDA FOTOĞRAFI
===================================================== */

.about-image-wrapper {
    position: relative;

    width: 100%;

    margin: 0;
    padding: 0 0 32px 32px;
}

.about-image-wrapper::before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;

    width: calc(100% - 35px);
    height: calc(100% - 35px);

    border: 1px solid var(--about-primary);

    content: "";
}

.about-image-wrapper::after {
    position: absolute;
    top: -17px;
    right: -17px;
    z-index: 0;

    width: 100px;
    height: 100px;

    border-top: 2px solid rgba(200, 155, 60, 0.65);
    border-right: 2px solid rgba(200, 155, 60, 0.65);

    content: "";
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: 580px;

    border-radius: 2px;

    object-fit: cover;
    object-position: center;

    box-shadow: 0 22px 60px rgba(11, 27, 70, 0.14);
}

.about-image-wrapper figcaption {
    position: absolute;
    right: 20px;
    bottom: 0;
    z-index: 3;

    max-width: 340px;
    padding: 18px 22px;

    background-color: var(--about-navy);

    border-left: 3px solid var(--about-primary);

    color: rgba(255, 255, 255, 0.84);

    font-size: 13px;
    font-style: normal;
    line-height: 1.65;

    box-shadow: 0 12px 30px rgba(6, 16, 44, 0.18);
}


/* =====================================================
   HAKKIMIZDA METİN ALANI
===================================================== */

.about-text-content {
    min-width: 0;
}

.about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 15px;

    color: var(--about-primary-dark);

    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.about-section-label::before {
    display: block;

    width: 42px;
    height: 1px;

    background-color: var(--about-primary);

    content: "";
}

.about-text-content h2 {
    max-width: 610px;

    margin: 0 0 30px;

    color: var(--about-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1px;
}

.about-text-content > p {
    margin: 0 0 20px;

    color: var(--about-gray);

    font-size: 16px;
    line-height: 1.9;
}

.about-text-content > p:last-child {
    margin-bottom: 0;
}


/* HTML içinde eski değer alanı kalmışsa gizle */

.about-values {
    display: none;
}


/* =====================================================
   MİSYON VE VİZYON
===================================================== */

.about-principles-section {
    position: relative;

    padding: 95px 0;

    background:
        linear-gradient(
            145deg,
            var(--about-cream) 0%,
            #ffffff 55%,
            #f5f0e5 100%
        );

    overflow: hidden;
}

.about-principles-section::before {
    position: absolute;
    top: -230px;
    right: -210px;

    width: 510px;
    height: 510px;

    border: 1px solid rgba(200, 155, 60, 0.11);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}

.about-principles-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;
}

.about-principle-card {
    position: relative;

    min-height: 310px;
    padding: 50px;

    background-color: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(200, 155, 60, 0.23);
    border-radius: 3px;

    box-shadow: 0 15px 38px rgba(11, 27, 70, 0.06);

    overflow: hidden;

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.about-principle-card:hover {
    border-color: rgba(200, 155, 60, 0.58);

    box-shadow: 0 22px 50px rgba(11, 27, 70, 0.11);

    transform: translateY(-6px);
}

.about-principle-card > span {
    display: block;

    margin-bottom: 42px;

    color: var(--about-primary-dark);

    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
}

.about-principle-card h2 {
    margin: 0 0 20px;

    color: var(--about-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;
    font-weight: 400;
    line-height: 1.2;
}

.about-principle-card p {
    position: relative;
    z-index: 2;

    max-width: 470px;

    margin: 0;

    color: var(--about-gray);

    font-size: 16px;
    line-height: 1.85;
}

.about-principle-card::before {
    position: absolute;
    bottom: 0;
    left: 0;

    width: 0;
    height: 3px;

    background-color: var(--about-primary);

    content: "";

    transition: width 0.4s ease;
}

.about-principle-card:hover::before {
    width: 100%;
}

.about-principle-card::after {
    position: absolute;
    right: -45px;
    bottom: -45px;

    width: 140px;
    height: 140px;

    border: 1px solid rgba(200, 155, 60, 0.19);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}


/* =====================================================
   SIKÇA SORULAN SORULAR
===================================================== */

.about-faq-section {
    position: relative;

    padding: 110px 0 125px;

    background-color: var(--about-white);

    overflow: hidden;
}

.about-faq-section::before {
    position: absolute;
    bottom: -230px;
    left: -200px;

    width: 480px;
    height: 480px;

    border: 1px solid rgba(11, 27, 70, 0.06);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}

.about-faq-heading {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: 0 auto 58px;

    text-align: center;
}

.about-faq-heading > span {
    display: block;

    margin-bottom: 12px;

    color: var(--about-primary-dark);

    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-faq-heading h2 {
    position: relative;

    margin: 0;
    padding-bottom: 22px;

    color: var(--about-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

.about-faq-heading h2::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 75px;
    height: 2px;
    margin: auto;

    background-color: var(--about-primary);

    content: "";
}

.about-faq-heading p {
    margin: 23px auto 0;

    color: var(--about-gray);

    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   SSS LİSTESİ
===================================================== */

.about-faq-list {
    position: relative;
    z-index: 2;

    max-width: 920px;

    margin: 0 auto;

    border-top: 1px solid var(--about-border);
}

.about-faq-item {
    background-color: var(--about-white);

    border-bottom: 1px solid var(--about-border);
}

.about-faq-item summary {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 84px;
    padding: 22px 65px 22px 4px;

    color: var(--about-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;

    cursor: pointer;
    list-style: none;
    user-select: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.about-faq-item summary::-webkit-details-marker {
    display: none;
}

.about-faq-item summary::marker {
    content: "";
}

.about-faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    background-color: transparent;

    border: 1px solid rgba(200, 155, 60, 0.44);
    border-radius: 50%;

    color: var(--about-primary-dark);

    font-family:
        Arial,
        sans-serif;

    font-size: 25px;
    font-weight: 300;
    line-height: 1;

    content: "+";

    transform: translateY(-50%);

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.about-faq-item summary:hover {
    padding-left: 10px;

    color: var(--about-primary-dark);
}

.about-faq-item summary:hover::after {
    border-color: var(--about-primary);
}

.about-faq-item summary:focus-visible {
    outline: 2px solid var(--about-primary);
    outline-offset: 4px;
}

.about-faq-item[open] summary {
    color: var(--about-primary-dark);
}

.about-faq-item[open] summary::after {
    background-color: var(--about-primary);
    border-color: var(--about-primary);

    color: var(--about-navy-dark);

    transform:
        translateY(-50%)
        rotate(45deg);
}

.about-faq-answer {
    padding: 0 65px 30px 4px;
}

.about-faq-answer p {
    max-width: 780px;

    margin: 0;

    color: var(--about-gray);

    font-size: 15px;
    line-height: 1.9;
}


/* =====================================================
   ORTA EKRANLAR
===================================================== */

@media (max-width: 1250px) {

    .subpage-header-container {
        width: calc(100% - 50px);

        grid-template-columns:
            minmax(0, 1fr)
            132px
            minmax(0, 1fr);
    }

    .subpage-desktop-navigation {
        gap: 18px;
    }

    .subpage-desktop-navigation-left {
        padding-right: 30px;
    }

    .subpage-desktop-navigation-right {
        padding-right: 50px;
        padding-left: 30px;
    }

    .subpage-desktop-navigation a {
        font-size: 12px;
        letter-spacing: 0.4px;
    }

    .subpage-header-logo {
        width: 132px;
    }

}


/* =====================================================
   KÜÇÜK MASAÜSTÜ
===================================================== */

@media (max-width: 1100px) {

    .subpage-header-container {
        grid-template-columns:
            minmax(0, 1fr)
            112px
            minmax(0, 1fr);
    }

    .subpage-desktop-navigation {
        gap: 14px;
    }

    .subpage-desktop-navigation-left {
        padding-right: 22px;
    }

    .subpage-desktop-navigation-right {
        padding-right: 46px;
        padding-left: 22px;
    }

    .subpage-desktop-navigation a {
        font-size: 11px;
        letter-spacing: 0.25px;
    }

    .subpage-header-logo {
        width: 106px;
        height: 126px;
    }

    .about-content-grid {
        gap: 50px;
    }

    .about-image-wrapper img {
        height: 520px;
    }

}


/* =====================================================
   TABLET VE MOBİL
===================================================== */

@media (max-width: 900px) {

    :root {
        --about-header-height: 100px;
    }


    /* Header */

    .subpage-header {
        height: var(--about-header-height);

        background-image:
            linear-gradient(
                rgba(6, 16, 44, 0.7),
                rgba(6, 16, 44, 0.7)
            ),
            url("galeri/galeri7.jpg");
    }

    .subpage-header-container {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: 100%;
        padding: 0 18px;
    }


    /* Masaüstü navigasyon */

    .subpage-desktop-navigation {
        display: none;
    }


    /* Logo */

    .subpage-header-logo {
        width: 88px;
        height: 88px;

        margin: 0;
        padding: 3px;
    }

    .subpage-header-logo img {
        width: 100%;
        height: 100%;
    }


    /* Mobil dil butonu */

    .subpage-language-button {
        top: 50%;
        right: auto;
        left: 18px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: 0;

        min-width: 44px;
        width: 44px;
        height: 35px;
        padding: 0;

        transform: translateY(-50%);
    }

    .subpage-language-button:hover {
        transform: translateY(-50%);
    }


    /* Masaüstü bayrağını gizle */

    .subpage-language-button .desktop-flag-image {
        display: none !important;
    }


    /* Yalnızca tek mobil bayrak göster */

    .subpage-language-button .mobile-flag-emoji {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        width: auto;
        height: auto;

        font-size: 20px;
        line-height: 1;
    }


    /* EN yazısını gizle */

    .subpage-language-button .language-text {
        display: none !important;
    }


    /* Checkbox */

    .about-mobile-menu-control {
        position: absolute;

        display: block;

        width: 1px;
        height: 1px;

        opacity: 0;
        pointer-events: none;
    }


    /* Hamburger */

    .about-hamburger-button {
        position: absolute;
        top: 50%;
        right: 18px;
        z-index: 9;

        display: flex;
        flex-direction: column;
        justify-content: center;

        gap: 6px;

        width: 42px;
        height: 42px;
        padding: 8px;

        cursor: pointer;

        transform: translateY(-50%);
    }

    .about-hamburger-button span {
        display: block;

        width: 100%;
        height: 2px;

        background-color: var(--about-white);

        transition:
            transform 0.3s ease,
            opacity 0.3s ease,
            width 0.3s ease;
    }

    .about-hamburger-button span:nth-child(2) {
        width: 75%;

        margin-left: auto;
    }

    .about-mobile-menu-control:checked
    + .about-hamburger-button
    span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .about-mobile-menu-control:checked
    + .about-hamburger-button
    span:nth-child(2) {
        width: 0;

        opacity: 0;
    }

    .about-mobile-menu-control:checked
    + .about-hamburger-button
    span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    /* Mobil navigasyon */

    .about-mobile-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 8;

        display: flex;
        flex-direction: column;

        max-height: 0;
        padding: 0 24px;

        background-color: rgba(6, 16, 44, 0.985);

        border-top: 1px solid rgba(225, 189, 108, 0.25);

        box-shadow: 0 18px 30px rgba(6, 16, 44, 0.24);

        opacity: 0;
        visibility: hidden;
        overflow: hidden;

        transform: translateY(-10px);

        transition:
            max-height 0.45s ease,
            padding 0.35s ease,
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease;
    }

    .about-mobile-navigation a {
        display: block;

        padding: 14px 4px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        color: rgba(255, 255, 255, 0.84);

        font-size: 13px;
        font-weight: 600;
        line-height: 1.5;
        letter-spacing: 0.7px;
        text-decoration: none;

        transition:
            color 0.3s ease,
            padding-left 0.3s ease;
    }

    .about-mobile-navigation a:last-child {
        border-bottom: 0;
    }

    .about-mobile-navigation a:hover,
    .about-mobile-navigation a.active {
        padding-left: 10px;

        color: var(--about-primary-light);
    }

    .about-mobile-menu-control:checked
    ~ .about-mobile-navigation {
        max-height: 600px;

        padding-top: 12px;
        padding-bottom: 12px;

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /* Sayfa başlığı */

    .about-title-section {
        padding: 65px 0 60px;
    }

    .about-title-section p {
        font-size: 16px;
    }


    /* Hakkımızda */

    .about-content-section {
        padding: 80px 0 90px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .about-image-wrapper {
        width: 100%;
        max-width: 650px;

        margin-right: auto;
        margin-left: auto;
    }

    .about-image-wrapper img {
        height: 560px;
    }


    /* Misyon ve vizyon */

    .about-principles-section {
        padding: 80px 0;
    }

    .about-principles-grid {
        grid-template-columns: 1fr;
    }


    /* SSS */

    .about-faq-section {
        padding: 85px 0 95px;
    }

}


/* =====================================================
   MOBİL
===================================================== */

@media (max-width: 600px) {

    .about-container {
        width: calc(100% - 30px);
    }


    /* Header */

    .subpage-header-container {
        padding-right: 14px;
        padding-left: 14px;
    }

    .subpage-header-logo {
        width: 82px;
        height: 84px;
    }

    .subpage-language-button {
        left: 14px;
    }

    .about-hamburger-button {
        right: 12px;
    }


    /* Sayfa başlığı */

    .about-title-section {
        padding: 55px 0 52px;
    }

    .about-small-title {
        font-size: 10px;
        letter-spacing: 2.1px;
    }

    .about-title-section h1 {
        padding-bottom: 20px;

        font-size: 42px;
        letter-spacing: -0.8px;
    }

    .about-title-section h1::after {
        width: 62px;
    }

    .about-title-section p {
        margin-top: 20px;

        font-size: 15px;
        line-height: 1.75;
    }


    /* Hakkımızda içeriği */

    .about-content-section {
        padding: 65px 0 75px;
    }

    .about-content-grid {
        gap: 50px;
    }

    .about-image-wrapper {
        padding: 0 0 20px 20px;
    }

    .about-image-wrapper::before {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }

    .about-image-wrapper::after {
        top: -10px;
        right: -8px;

        width: 70px;
        height: 70px;
    }

    .about-image-wrapper img {
        height: 410px;
    }

    .about-image-wrapper figcaption {
        right: 10px;

        max-width: calc(100% - 45px);
        padding: 13px 16px;

        font-size: 11px;
        line-height: 1.6;
    }

    .about-section-label {
        gap: 9px;

        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .about-section-label::before {
        width: 28px;
    }

    .about-text-content h2 {
        margin-bottom: 24px;

        font-size: 35px;
        line-height: 1.18;
    }

    .about-text-content > p {
        margin-bottom: 18px;

        font-size: 15px;
        line-height: 1.82;
    }


    /* Misyon ve vizyon */

    .about-principles-section {
        padding: 68px 0;
    }

    .about-principles-grid {
        gap: 20px;
    }

    .about-principle-card {
        min-height: auto;
        padding: 36px 28px;
    }

    .about-principle-card > span {
        margin-bottom: 30px;
    }

    .about-principle-card h2 {
        font-size: 28px;
    }

    .about-principle-card p {
        font-size: 15px;
        line-height: 1.8;
    }


    /* Sıkça sorulan sorular */

    .about-faq-section {
        padding: 72px 0 88px;
    }

    .about-faq-heading {
        margin-bottom: 40px;
    }

    .about-faq-heading > span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .about-faq-heading h2 {
        padding-bottom: 20px;

        font-size: 35px;
    }

    .about-faq-heading h2::after {
        width: 62px;
    }

    .about-faq-heading p {
        margin-top: 20px;

        font-size: 15px;
        line-height: 1.75;
    }

    .about-faq-item summary {
        min-height: 74px;
        padding: 18px 54px 18px 0;

        font-size: 16px;
        line-height: 1.5;
    }

    .about-faq-item summary:hover {
        padding-left: 0;
    }

    .about-faq-item summary::after {
        right: 0;

        width: 31px;
        height: 31px;

        font-size: 22px;
    }

    .about-faq-answer {
        padding: 0 43px 24px 0;
    }

    .about-faq-answer p {
        font-size: 14px;
        line-height: 1.82;
    }

}


/* =====================================================
   ÇOK KÜÇÜK EKRANLAR
===================================================== */

@media (max-width: 380px) {

    .subpage-header-logo {
        width: 74px;
        height: 80px;
    }

    .subpage-language-button {
        left: 10px;

        min-width: 40px;
        width: 40px;
        padding: 0;
    }

    .about-hamburger-button {
        right: 8px;
    }

    .about-title-section h1 {
        font-size: 37px;
    }

    .about-image-wrapper img {
        height: 350px;
    }

    .about-text-content h2 {
        font-size: 31px;
    }

    .about-faq-heading h2 {
        font-size: 31px;
    }

}

/* =====================================================
   ORTAK DİL BUTONU DÜZELTMESİ
   Ana sayfa ve Hakkımızda sayfasında birlikte çalışır.
   Masaüstü: gerçek bayrak görseli + EN
   Mobil: yalnızca gerçek bayrak görseli
===================================================== */

.language-button,
.subpage-language-button {
    top: 50%;
    transform: translateY(-50%);
}

.language-button:hover,
.subpage-language-button:hover {
    transform: translateY(-50%);
}

.language-button .desktop-flag-image,
.subpage-language-button .desktop-flag-image {
    display: block !important;
    flex: 0 0 auto;
    width: 27px !important;
    height: 18px !important;
    object-fit: cover;
    border-radius: 2px;
}

.language-button .mobile-flag-emoji,
.subpage-language-button .mobile-flag-emoji {
    display: none !important;
}

.language-button .language-text,
.subpage-language-button .language-text {
    display: inline-block !important;
}

@media (max-width: 900px) {

    .language-button,
    .subpage-language-button {
        top: 50%;
        right: auto;
        left: 18px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 44px;
        min-width: 44px;
        height: 35px;
        padding: 0;
        transform: translateY(-50%);
    }

    .language-button:hover,
    .subpage-language-button:hover {
        transform: translateY(-50%);
    }

    .language-button .desktop-flag-image,
    .subpage-language-button .desktop-flag-image {
        display: block !important;
        width: 27px !important;
        height: 18px !important;
    }

    .language-button .mobile-flag-emoji,
    .subpage-language-button .mobile-flag-emoji {
        display: none !important;
    }

    .language-button .language-text,
    .subpage-language-button .language-text {
        display: none !important;
    }
}

@media (max-width: 600px) {

    .language-button,
    .subpage-language-button {
        left: 14px;
    }
}


.footer-instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: fit-content;
    margin-top: 8px;
    padding: 11px 18px;
    border: 1px solid currentColor;
    border-radius: 6px;
    color: inherit;
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-instagram-button svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-instagram-button:hover {
    background-color: currentColor;
    transform: translateY(-2px);
}

.footer-instagram-button:hover span,
.footer-instagram-button:hover svg {
    color: var(--footer-background, #111);
    stroke: var(--footer-background, #111);
}
