:root {
    --primary: #043557;
    --primary-2: #075273;
    --cyan: #00aeee;
    --ink: #122333;
    --muted: #6d7a86;
    --line: #e4ecf3;
    --soft: #f3f8fb;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(4, 53, 87, .14);
    --shadow-soft: 0 14px 34px rgba(4, 53, 87, .1);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Urbanist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--white);
    text-rendering: optimizeLegibility;
}

p {
    color: rgba(0, 37, 75, .6);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: -0.32px;
}

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

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 9999;
    padding: 10px 14px;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius);
}

.skip-link:focus {
    left: 12px;
}

.admin-preview-bar {
    color: #fff;
    background: #002b48;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.admin-preview-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 32px;
    font-size: .72rem;
    font-weight: 800;
}

.admin-preview-shell > span,
.admin-preview-shell > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-preview-shell i {
    color: var(--cyan);
}

.admin-preview-shell a {
    color: rgba(255, 255, 255, .76);
}

.admin-preview-shell a:hover {
    color: #fff;
}

.admin-preview-shell .admin-preview-visitor {
    padding: 4px 9px;
    color: #002b48;
    background: var(--cyan);
    border-radius: 4px;
}

.site-header {
    position: relative;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(228, 236, 243, .72);
    transition: box-shadow .25s ease, background .25s ease;
}

.topbar {
    position: relative;
    z-index: 4;
    border-bottom: 1px solid rgba(4, 53, 87, .08);
    background: #fff;
}

.topbar-shell {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-contact,
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #486170;
    font-size: .78rem;
    font-weight: 800;
}

.topbar a:hover {
    color: var(--cyan);
}

.topbar-actions > a:not(.topbar-bilsis) {
    justify-content: center;
    width: 26px;
    height: 26px;
    gap: 0;
    border-radius: 50%;
    background: rgba(4, 53, 87, .06);
}

.topbar-bilsis {
    padding: 7px 13px;
    color: #fff !important;
    background: var(--cyan);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(0, 174, 238, .24);
}

.site-header.is-scrolled {
    background: #fff;
    box-shadow: 0 10px 30px rgba(4, 53, 87, .08);
}

.navbar {
    min-height: 86px;
    background: var(--primary);
}

.navbar-brand {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: var(--primary);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--white);
    font-weight: 900;
    font-size: 1.35rem;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 174, 238, .25);
}

.navbar-brand strong,
.navbar-brand small {
    display: block;
    line-height: 1.05;
}

.navbar-brand strong {
    font-size: 1.18rem;
    letter-spacing: .02em;
}

.navbar-brand small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-link {
    color: #284255;
    font-size: .84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
}

.dropdown-menu {
    min-width: 340px;
    max-width: min(420px, calc(100vw - 28px));
    padding: 12px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.dropdown-item {
    white-space: normal;
    border-radius: 7px;
    font-weight: 700;
}

.dropdown-header {
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.dropdown-item:hover {
    color: #fff;
    background: var(--primary);
}

.dropdown-item:focus {
    color: #fff;
    background: var(--primary);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: -12px;
    left: calc(100% - 1px);
    display: none;
    margin-left: 0;
}

.dropdown-submenu::after {
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    width: 14px;
    height: 100%;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu {
    display: block;
}

.submenu-toggle {
    position: relative;
    padding-right: 34px;
}

.submenu-toggle::after {
    content: "\F285";
    position: absolute;
    right: 12px;
    top: 50%;
    font-family: "bootstrap-icons";
    font-size: .8rem;
    transform: translateY(-50%);
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0;
}

.btn-accent {
    color: var(--white);
    background: linear-gradient(135deg, var(--cyan), #35c9f4);
    border: 0;
    box-shadow: 0 14px 32px rgba(0, 174, 238, .28);
}

.btn-accent:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.btn-bilsis {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--white);
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, .12);
}

.btn-bilsis:hover {
    color: var(--white);
    background: var(--cyan);
}

.btn-glass {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
}

.btn-primary-soft {
    color: var(--primary);
    background: #eaf7fc;
}

.btn-whatsapp {
    color: var(--white);
    background: #19b76b;
}

.mobile-nav {
    color: var(--white);
    background: radial-gradient(circle at top left, rgba(0, 174, 238, .24), transparent 32%), var(--primary);
}

.mobile-nav .navbar-brand,
.mobile-nav .navbar-brand small {
    color: var(--white);
}

.mobile-menu-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu-list a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-weight: 800;
    text-transform: uppercase;
}

.mobile-menu-list span {
    display: block;
    padding: 18px 0 6px;
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mobile-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.mobile-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    color: #fff;
    background: transparent;
    border: 0;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
}

.mobile-accordion-toggle span {
    padding: 0;
    color: inherit;
    font-size: inherit;
    letter-spacing: 0;
}

.mobile-accordion-toggle i {
    transition: transform .25s ease;
}

.mobile-accordion-toggle:not(.collapsed) i {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    padding: 0 0 12px 14px;
}

.mobile-accordion-content span {
    padding-top: 8px;
}

.mobile-accordion-content a {
    padding: 11px 0;
    font-size: .84rem;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        display: inline-grid;
        place-items: center;
        width: 44px;
        height: 44px;
        padding: 0;
        color: #fff;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none !important;
        font-size: 2rem;
        line-height: 1;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus,
    .navbar-toggler:active {
        color: #fff;
        background: transparent;
        border: 0;
        box-shadow: none !important;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 120px 0 90px;
    color: var(--white);
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(4, 53, 87, .96) 0%, rgba(4, 53, 87, .86) 48%, rgba(4, 53, 87, .3) 100%),
        url("https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?auto=format&fit=crop&w=2200&q=85") center/cover;
}

.hero-section h1,
.page-hero h1 {
    max-width: 900px;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: .95;
    font-weight: 900;
}

.hero-lead,
.page-hero .lead {
    max-width: 760px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: var(--cyan);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 680px;
    margin-top: 44px;
}

.hero-metrics div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .1);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    font-size: 1.35rem;
}

.hero-metrics span {
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
}

.hero-visual {
    position: relative;
    border-radius: 30px;
    transform: rotate(2deg);
}

.hero-visual img {
    aspect-ratio: 4 / 5;
    width: 100%;
    object-fit: cover;
    border: 10px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .32);
}

.hero-floating-card {
    position: absolute;
    right: -18px;
    bottom: 42px;
    display: flex;
    gap: 14px;
    width: min(330px, 86%);
    padding: 18px;
    color: var(--ink);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-floating-card i {
    color: var(--cyan);
    font-size: 1.8rem;
}

.hero-floating-card strong,
.hero-floating-card span {
    display: block;
}

.hero-floating-card span {
    color: var(--muted);
    font-size: .9rem;
}

.section {
    padding: 105px 0;
}

.soft-section {
    background: var(--soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.section-heading.text-center {
    margin-right: auto;
    margin-left: auto;
}

.section-heading.compact {
    margin-bottom: 24px;
}

.section-heading h2,
.contact-preview h2,
.sticky-panel h2 {
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.08;
    font-weight: 900;
}

.philosophy-card {
    padding: clamp(28px, 6vw, 64px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
}

.philosophy-card p {
    margin: 0;
    color: #233949;
    font-size: clamp(1.28rem, 2.25vw, 2.35rem);
    line-height: 1.45;
    font-weight: 750;
}

.philosophy-card span {
    display: inline-block;
    padding: .08em .35em;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border-radius: 7px;
}

.feature-card,
.content-card,
.news-card,
.announcement-card,
.story-card,
.contact-card,
.hours-card,
.sticky-panel {
    height: 100%;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.feature-card i,
.content-card i,
.contact-card > i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: 1.45rem;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border-radius: 16px;
}

.feature-card h3,
.content-card h2,
.news-card h3,
.announcement-card h2,
.story-card h2,
.contact-card h2,
.hours-card h2 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 900;
}

.feature-card p,
.content-card p,
.news-card p,
.announcement-card p,
.story-card p,
.contact-card p,
.sticky-panel p {
    color: var(--muted);
    line-height: 1.7;
}

.testimonials-section {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(4, 53, 87, .96), rgba(4, 53, 87, .88)),
        url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.testimonial-card {
    min-height: 260px;
    padding: clamp(28px, 5vw, 56px);
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    backdrop-filter: blur(14px);
}

.testimonial-card p {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.7;
}

.testimonial-card footer {
    margin-top: 22px;
    color: #93e5ff;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: .45;
}

.swiper-pagination-bullet-active {
    background: var(--cyan);
    opacity: 1;
}

.stack-list {
    display: grid;
    gap: 16px;
}

.news-card {
    box-shadow: none;
}

.news-card time,
.announcement-card time,
.team-card span {
    color: var(--cyan);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.achievement-mini,
.stat-card {
    height: 100%;
    padding: 28px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.achievement-mini strong,
.stat-card strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    color: #7be2ff;
}

.achievement-mini span,
.stat-card span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
}

.contact-preview {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #062b3f);
}

.contact-preview h2 {
    color: var(--white);
}

.location-card {
    height: 100%;
    padding: 30px;
    color: var(--ink);
    background: var(--white);
    border-radius: var(--radius);
}

.location-card i {
    color: var(--cyan);
    font-size: 2rem;
}

.location-card h3 {
    margin-top: 16px;
    color: var(--primary);
    font-weight: 900;
}

.location-card p {
    color: var(--muted);
}

.location-card a {
    color: var(--cyan);
    font-weight: 900;
}

.page-hero {
    padding: 130px 0 85px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(4, 53, 87, .95), rgba(4, 53, 87, .78)),
        url("https://images.unsplash.com/photo-1577896851231-70ef18881754?auto=format&fit=crop&w=2000&q=85") center/cover;
}

body:not(.page-anasayfa) .page-hero {
    padding-top: 250px;
}

.compact-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
}

.team-card {
    overflow: hidden;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.team-section + .team-section {
    margin-top: 72px;
}

.team-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.team-placeholder {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    color: rgba(4, 53, 87, .35);
    font-size: 4rem;
    background: var(--soft);
}

.team-card div {
    padding: 24px;
}

.team-card h2 {
    margin-top: 8px;
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 900;
}

.team-card p {
    color: var(--muted);
}

.premium-form {
    padding: clamp(24px, 4vw, 42px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.premium-form label {
    width: 100%;
    color: var(--primary);
    font-size: .86rem;
    font-weight: 900;
}

.premium-form input,
.premium-form textarea,
.premium-form select {
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    outline: 0;
    background: #f9fcfe;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.premium-form input:focus,
.premium-form textarea:focus,
.premium-form select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 174, 238, .12);
}

.premium-form input.is-invalid,
.premium-form textarea.is-invalid,
.premium-form select.is-invalid {
    border-color: #c9364f;
    background: #fff8f9;
    box-shadow: 0 0 0 4px rgba(201, 54, 79, .1);
}

.career-form-alert {
    margin-bottom: 32px;
}

.career-form-error-list {
    display: grid;
    gap: 6px;
    margin: 12px 0 0;
    padding-left: 20px;
}

.career-form-error-list button {
    padding: 0;
    color: inherit;
    border: 0;
    background: transparent;
    font-weight: 700;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-field-error {
    display: block;
    margin-top: 7px;
    color: #b4233b;
    font-size: .8rem;
    font-weight: 800;
}

.form-ajax-status {
    margin-bottom: 28px;
}

.premium-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.premium-form button[type="submit"].is-loading {
    pointer-events: none;
    opacity: .82;
}

.career-form {
    padding: clamp(24px, 5vw, 54px);
}

.career-form-section {
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid var(--line);
}

.career-form-section-last {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.career-form-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 26px;
}

.career-form-heading > span {
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    color: var(--white);
    background: var(--primary);
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 900;
}

.career-form-heading h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 900;
}

.career-form-heading p {
    margin: 4px 0 0;
    font-size: .95rem;
}

.career-form label small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 600;
}

.career-reference-note {
    margin: 6px 0 0;
    padding: 14px 16px;
    color: rgba(0, 37, 75, .68);
    border-left: 3px solid var(--cyan);
    background: rgba(0, 174, 238, .06);
    font-size: .82rem;
    line-height: 1.65;
    font-weight: 700;
}

.career-kvkk-box {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfd;
}

.career-kvkk-box > p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--primary);
    font-weight: 800;
}

.career-kvkk-box > p i {
    color: var(--cyan);
    font-size: 1.1rem;
}

.career-kvkk-box > p button {
    padding: 0;
    color: var(--cyan);
    border: 0;
    background: transparent;
    font: inherit;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.career-kvkk-box .career-consent {
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.career-consent label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
}

.premium-form .career-consent input {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    padding: 0;
    accent-color: var(--cyan);
}

.career-consent span {
    color: var(--muted);
    line-height: 1.55;
    font-weight: 700;
}

.career-consent input.is-invalid {
    outline: 2px solid #c9364f;
    outline-offset: 2px;
}

.career-kvkk-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(4, 53, 87, .22);
}

.career-kvkk-modal .modal-header {
    padding: 20px clamp(20px, 4vw, 34px);
    border-bottom-color: var(--line);
}

.career-kvkk-modal .modal-title {
    color: #043557;
    font-size: 1.25rem;
    font-weight: 900;
}

.career-kvkk-content {
    padding: clamp(22px, 4vw, 42px);
}

.career-submit {
    min-width: 230px;
}

@media (max-width: 575.98px) {
    .career-form-section {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    .career-form-heading > span {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .career-submit {
        width: 100%;
        min-width: 0;
    }
}

.sticky-panel {
    position: sticky;
    top: 112px;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.pill-list span {
    padding: 9px 12px;
    color: var(--primary);
    background: #eaf7fc;
    border-radius: 999px;
    font-weight: 800;
}

.filter-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-toolbar button {
    padding: 10px 16px;
    color: var(--primary);
    font-weight: 900;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.filter-toolbar button.active,
.filter-toolbar button:hover {
    color: var(--white);
    background: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item span {
    position: absolute;
    left: 18px;
    bottom: 58px;
    padding: 8px 12px;
    color: var(--white);
    background: rgba(4, 53, 87, .86);
    border-radius: 999px;
    font-weight: 900;
}

.gallery-item strong {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: -webkit-box;
    overflow: hidden;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.25;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.gallery-item small {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 11px;
    color: var(--primary);
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
}

.gallery-item em {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: block;
    padding: 16px 18px;
    color: var(--white);
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(4, 53, 87, 0), rgba(4, 53, 87, .92));
}

.album-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 53, 87, 0) 38%, rgba(4, 53, 87, .82) 100%);
    pointer-events: none;
}

.album-card span,
.album-card strong,
.album-card small,
.album-card em {
    z-index: 1;
}

.album-card strong {
    display: none;
}

.gallery-detail-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.gallery-detail-top > span {
    color: var(--cyan);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gallery-detail-grid .gallery-item span,
.gallery-detail-grid .gallery-item strong,
.gallery-detail-grid .gallery-item em {
    display: none;
}

.announcement-card {
    position: relative;
    overflow: hidden;
}

.announcement-card > span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 11px;
    color: var(--white);
    background: var(--cyan);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
}

.announcement-card a {
    color: var(--primary);
    font-weight: 900;
}

.announcement-image,
.story-card img {
    width: 100%;
    height: 190px;
    margin: -8px 0 22px;
    object-fit: cover;
    border-radius: var(--radius);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: var(--primary);
    font: inherit;
    font-weight: 900;
    background: transparent;
    border: 0;
}

.empty-state {
    padding: 34px;
    color: rgba(0, 37, 75, .6);
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.story-card {
    border-top: 5px solid var(--cyan);
}

.achievement-list-card {
    display: flex;
    flex-direction: column;
    min-height: 245px;
}

.achievement-list-card p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .72);
}

.achievement-list-card .text-link {
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    color: #fff;
}

.story-body {
    margin-top: 18px;
}

.cms-highlight {
    color: var(--cyan);
    font-weight: 900;
}

.institutional-hero {
    background:
        linear-gradient(135deg, rgba(4, 53, 87, .94), rgba(4, 53, 87, .7)),
        url("../../images/slide1.jpg") center/cover;
}

.institutional-intro h2,
.institutional-band h2 {
    color: var(--primary);
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    line-height: 1.06;
    font-weight: 900;
}

.institutional-intro p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.institutional-visual {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.institutional-visual img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.institutional-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 240px;
    padding: 20px;
    color: #fff;
    background: rgba(4, 53, 87, .9);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
}

.institutional-badge strong {
    display: block;
    color: var(--cyan);
    font-size: 2.3rem;
    line-height: 1;
}

.institutional-badge span {
    display: block;
    margin-top: 8px;
    font-weight: 800;
}

.institutional-value-card,
.institutional-link-card {
    display: block;
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: transform .22s ease, box-shadow .22s ease;
}

.institutional-value-card:hover,
.institutional-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.institutional-value-card i,
.institutional-link-card i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    color: #fff;
    font-size: 1.45rem;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border-radius: 16px;
}

.institutional-value-card h3,
.institutional-link-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 900;
}

.institutional-value-card p,
.institutional-link-card p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.7;
}

.institutional-band {
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 174, 238, .24), transparent 28%),
        linear-gradient(135deg, #043557, #072a3e);
}

.institutional-band h2 {
    color: #fff;
}

.institutional-quote {
    padding: clamp(28px, 5vw, 48px);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
}

.institutional-quote p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.55;
    font-weight: 750;
}

.why-hero {
    background:
        linear-gradient(135deg, rgba(4, 53, 87, .94), rgba(4, 53, 87, .62)),
        url("../../images/neden-eylemer-1.jpg") center/cover;
}

.why-intro-section h2 {
    color: var(--primary);
    font-size: clamp(2.15rem, 4vw, 3.8rem);
    line-height: 1.06;
    font-weight: 900;
}

.why-intro-section p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.82;
}

.why-feature-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.why-feature-image img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.why-principles {
    display: grid;
    gap: 34px;
}

.why-principle-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 28px;
    align-items: stretch;
    padding: clamp(22px, 3vw, 34px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.why-principle-card.is-reverse {
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
}

.why-principle-card.is-reverse .why-principle-content {
    order: 2;
}

.why-principle-card.is-reverse .why-principle-media {
    order: 1;
}

.why-principle-content span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--cyan);
    font-size: .85rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.why-principle-content h2 {
    color: var(--primary);
    font-size: clamp(1.65rem, 2.6vw, 2.65rem);
    line-height: 1.1;
    font-weight: 900;
}

.why-principle-content p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
}

.why-principle-media {
    display: block;
    overflow: hidden;
    min-height: 320px;
    border-radius: 18px;
}

.why-principle-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform .45s ease;
}

.why-principle-media:hover img {
    transform: scale(1.05);
}

.why-gallery-section {
    background: #fff;
}

.why-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.why-photo-grid a {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.why-photo-grid img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform .45s ease;
}

.why-photo-grid a:hover img {
    transform: scale(1.06);
}

.content-page-section {
    background: linear-gradient(180deg, #fff 0%, #f5f9fc 100%);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(34px, 6vw, 88px);
    align-items: start;
}

.content-aside {
    min-width: 0;
}

.content-aside-inner {
    position: sticky;
    top: 34px;
}

.content-aside h2 {
    color: var(--primary);
    font-size: clamp(2.7rem, 5.4vw, 5.9rem);
    line-height: .95;
    font-weight: 900;
}

.content-aside p {
    max-width: 520px;
    margin: 22px 0 28px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.content-main-image {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.content-main-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .45s ease;
}

.content-main-image:hover img {
    transform: scale(1.045);
}

.content-body {
    padding: clamp(28px, 4vw, 48px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.content-body .content-lead {
    color: var(--primary);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.62;
    font-weight: 800;
}

.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5 {
    margin: 38px 0 14px;
    color: #043557;
    font-weight: 900;
    letter-spacing: 0;
}

.content-body h2 {
    font-size: clamp(1.65rem, 2.55vw, 2.35rem);
    line-height: 1.08;
}

.content-body h3 {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.14;
}

.content-body h4 {
    font-size: clamp(1.12rem, 1.55vw, 1.38rem);
}

.content-body h5 {
    font-size: .98rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.content-body p {
    color: rgba(0, 37, 75, .6);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: -0.32px;
}

.content-body p strong {
    color: #043557;
    font-weight: 900;
}

.content-body .table-responsive {
    margin: 24px 0;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.content-body .table {
    min-width: 760px;
    margin-bottom: 0;
}

.content-body .table th,
.content-body .table td {
    padding: 14px 16px;
    color: var(--primary);
    font-size: .95rem;
    line-height: 1.55;
    vertical-align: middle;
}

.content-body .table th {
    color: #043557;
    font-weight: 800;
    white-space: nowrap;
    background: rgba(0, 174, 238, .1);
}

.content-body .table .align-center {
    text-align: center;
}

.content-inline-image {
    max-width: min(480px, 54%);
    margin: 8px 0 20px;
}

.content-inline-image.image-left {
    float: left;
    margin-right: 30px;
}

.content-inline-image.image-right {
    float: right;
    margin-left: 30px;
}

.content-inline-image.image-full {
    float: none;
    clear: both;
    max-width: 100%;
    margin: 28px 0;
}

.content-inline-image a {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.content-inline-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .45s ease;
}

.content-inline-image a:hover img {
    transform: scale(1.05);
}

.content-body::after {
    content: "";
    display: block;
    clear: both;
}

.content-gallery {
    margin-top: clamp(58px, 8vw, 100px);
}

.content-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.content-gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.content-gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform .45s ease;
}

.content-gallery-grid a:hover img {
    transform: scale(1.06);
}

@media (max-width: 991.98px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .content-aside-inner {
        position: static;
    }

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

    .why-principle-card,
    .why-principle-card.is-reverse {
        grid-template-columns: 1fr;
    }

    .why-principle-card.is-reverse .why-principle-content,
    .why-principle-card.is-reverse .why-principle-media {
        order: initial;
    }

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

@media (max-width: 575.98px) {
    .content-body {
        padding: 24px;
        border-radius: 18px;
    }

    .content-gallery-grid {
        grid-template-columns: 1fr;
    }

    .content-inline-image,
    .content-inline-image.image-left,
    .content-inline-image.image-right,
    .content-inline-image.image-full {
        float: none;
        max-width: 100%;
        margin: 24px 0;
    }

    .why-photo-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card a,
.contact-card span {
    display: block;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 800;
}

.hours-card div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.hours-card span {
    color: var(--muted);
}

.hours-card strong {
    color: var(--primary);
}

.map-placeholder {
    overflow: hidden;
    min-height: 410px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.map-placeholder iframe {
    width: 100%;
    height: 410px;
    border: 0;
}

.page-iletisim .contact-branch-column {
    display: flex;
    flex-direction: column;
}

.page-iletisim .contact-card {
    height: auto;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    padding: 28px;
}

.page-iletisim .contact-card h2 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-details {
    display: grid;
    gap: 11px;
}

@media (min-width: 992px) {
    .page-iletisim .contact-details {
        min-height: 212px;
    }
}

.contact-details > div {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
}

.contact-details > div > i {
    color: var(--cyan);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-details p,
.contact-details a,
.contact-details span {
    min-width: 0;
    margin: 0;
    color: var(--primary);
    font-weight: 750;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.contact-card-map {
    overflow: hidden;
    height: 280px;
    min-height: 280px;
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.contact-card-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.page-iletisim .contact-card .contact-card-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0 !important;
}

.branch-hours-collapse {
    margin-top: 18px;
}

.branch-hours-panel {
    padding: 18px 20px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.branch-hours-panel h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 900;
}

.branch-hours-panel > div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
}

.branch-hours-panel > div:last-child {
    border-bottom: 0;
}

.branch-hours-panel span {
    color: var(--muted);
}

.branch-hours-panel strong {
    color: var(--primary);
}

.contact-form-row {
    margin-top: clamp(64px, 8vw, 108px);
}

.contact-form-heading {
    max-width: 680px;
    margin: 0 auto 30px;
    text-align: center;
}

.contact-form-heading h2 {
    margin: 8px 0 10px;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
}

.contact-form-heading p {
    margin-bottom: 0;
}

@media (max-width: 575.98px) {
    .page-iletisim .contact-card {
        padding: 22px;
    }

    .contact-card-map {
        height: 240px;
        min-height: 240px;
    }

    .contact-card-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .page-iletisim .contact-card .contact-card-actions .btn {
        width: 100%;
    }

    .branch-hours-panel > div {
        font-size: .92rem;
    }
}

.announcement-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.announcement-category-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 34px;
    padding: 4px;
    background: #edf3f6;
    border-radius: 8px;
}

.announcement-category-switch a {
    min-width: 124px;
    padding: 11px 18px;
    color: rgba(0, 37, 75, .62);
    border-radius: 6px;
    text-align: center;
    font-size: .9rem;
    font-weight: 900;
}

.announcement-category-switch a:hover,
.announcement-category-switch a.active {
    color: #fff;
    background: var(--primary);
}

.announcement-list-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(4, 53, 87, .1);
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(4, 53, 87, .08);
}

.announcement-list-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin: 0;
}

.announcement-list-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.announcement-list-card:hover .announcement-list-media img {
    transform: scale(1.04);
}

.announcement-list-content {
    padding: 24px;
}

.announcement-list-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(0, 37, 75, .55);
    font-size: .78rem;
    font-weight: 800;
}

.announcement-list-meta span {
    color: var(--cyan);
}

.announcement-list-card h2 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 1.25;
}

.announcement-list-card h2 a {
    color: var(--primary);
}

.announcement-list-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.announcement-list-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 900;
}

.announcement-detail-hero time {
    display: inline-block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.announcement-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 64px;
    align-items: start;
}

.announcement-detail-body {
    max-width: none;
}

.announcement-detail-body .lead {
    margin-bottom: 34px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(4, 53, 87, .12);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.announcement-detail-body blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    background: #eef7fb;
    border-left: 4px solid var(--cyan);
}

.announcement-share {
    position: sticky;
    top: 32px;
    display: grid;
    gap: 10px;
}

.announcement-share a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: var(--primary);
    background: #f1f6f9;
    border-radius: 7px;
    font-weight: 800;
}

.site-footer {
    padding: 70px 0 28px;
    color: rgba(255, 255, 255, .72);
    background: #062b3f;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.65fr 1.35fr .8fr 1.15fr;
    gap: 34px;
}

.site-footer .navbar-brand,
.site-footer .navbar-brand small {
    color: var(--white);
}

.footer-brand p {
    max-width: 420px;
    margin-top: 18px;
    color: var(--white);
    line-height: 1.7;
}

.site-footer .footer-kvkk-links h3 {
    margin: 28px 0 16px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
}

.footer-kvkk-links a {
    font-size: .88rem;
    line-height: 1.35;
}

.site-footer h2 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
}

.site-footer a {
    display: block;
    margin: 10px 0;
}

.site-footer a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .9rem;
}

.footer-credit {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
    white-space: nowrap;
}

.site-footer .footer-credit a {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--white);
    background: #19b76b;
    border-radius: 50%;
    box-shadow: 0 16px 32px rgba(25, 183, 107, .34);
}

.floating-whatsapp i {
    font-size: 1.65rem;
}

@media (max-width: 1199.98px) {
    .navbar {
        min-height: 76px;
    }

    .hero-section {
        min-height: auto;
        padding-top: 92px;
    }

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

@media (max-width: 991.98px) {
    .hero-section,
    .section {
        padding: 76px 0;
    }

    .page-hero {
        padding: 94px 0 70px;
    }

    .hero-visual {
        transform: none;
    }

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

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

    .announcement-detail-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .announcement-share {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .hero-section h1,
    .page-hero h1 {
        font-size: 3rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-floating-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .gallery-grid,
    .announcement-list-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .announcement-share {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .philosophy-card {
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* Referans tasarıma yakın kurumsal okul portalı görünümü */
body {
    font-family: "Urbanist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff;
}

.brand-logo {
    width: 92px;
    height: auto;
    object-fit: contain;
}

.site-header {
    background: #fff;
}

.page-anasayfa .site-header {
    position: absolute;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.page-anasayfa .topbar {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .08);
}

.page-anasayfa .topbar-shell {
    width: 100%;
    max-width: none;
    padding-right: clamp(42px, 3.8vw, 74px);
    padding-left: clamp(42px, 3.8vw, 74px);
}

.page-anasayfa .topbar a {
    color: rgba(255, 255, 255, .9);
}

.page-anasayfa .topbar-actions > a:not(.topbar-bilsis) {
    background: rgba(255, 255, 255, .12);
}

.page-anasayfa .navbar {
    min-height: 158px;
    align-items: flex-start;
    padding-top: 0;
    background: transparent;
}

.page-anasayfa .nav-shell {
    width: 100%;
    max-width: none;
    min-height: 150px;
    padding-right: clamp(42px, 3.8vw, 74px);
    padding-left: clamp(42px, 3.8vw, 74px);
    align-items: flex-start;
}

.page-anasayfa .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
}

.navbar {
    min-height: 86px;
}

.nav-shell {
    position: relative;
}

.page-anasayfa .nav-shell::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 56px;
    width: calc(100% - clamp(84px, 7.6vw, 148px));
    height: 2px;
    background:
        linear-gradient(
            90deg,
            #fff 0,
            #fff calc(50% - 178px),
            transparent calc(50% - 178px),
            transparent calc(50% + 178px),
            #fff calc(50% + 178px),
            #fff 100%
        );
    transform: translateX(-50%);
}

.page-anasayfa .brand-desktop {
    position: absolute;
    left: 50%;
    top: 8px;
    z-index: 3;
    transform: translateX(-50%);
}

.page-anasayfa .brand-desktop .brand-logo {
    width: 270px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .22));
}

.navbar-collapse {
    width: 100%;
}

.page-anasayfa .navbar-collapse {
    padding-top: 52px;
}

.page-anasayfa .nav-left,
.page-anasayfa .nav-right {
    width: calc(50% - 165px);
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    padding-right: 18px !important;
    padding-left: 18px !important;
    color: var(--primary);
    font-size: .72rem;
    letter-spacing: .04em;
    font-weight: 900;
}

.page-anasayfa .nav-link {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1rem, 1.15vw, 1.32rem);
    letter-spacing: .02em;
    line-height: 1;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .2);
}

.page-anasayfa .nav-link:hover,
.page-anasayfa .nav-link.active {
    color: #fff;
}

body:not(.page-anasayfa) .site-header .navbar .nav-link {
    color: #fff;
}

body:not(.page-anasayfa) .site-header .navbar .nav-link:hover,
body:not(.page-anasayfa) .site-header .navbar .nav-link.active {
    color: var(--cyan);
}

@media (min-width: 992px) {
    body:not(.page-anasayfa) .site-header {
        position: absolute;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: 0;
        box-shadow: none;
    }

    body:not(.page-anasayfa) .topbar {
        border-bottom: 1px solid rgba(255, 255, 255, .14);
        background: rgba(0, 0, 0, .08);
    }

    body:not(.page-anasayfa) .topbar-shell {
        width: 100%;
        max-width: none;
        padding-right: clamp(42px, 3.8vw, 74px);
        padding-left: clamp(42px, 3.8vw, 74px);
    }

    body:not(.page-anasayfa) .topbar a {
        color: rgba(255, 255, 255, .9);
    }

    body:not(.page-anasayfa) .topbar-actions > a:not(.topbar-bilsis) {
        background: rgba(255, 255, 255, .12);
    }

    body:not(.page-anasayfa) .navbar {
        min-height: 158px;
        align-items: flex-start;
        padding-top: 0;
        background: transparent;
    }

    body:not(.page-anasayfa) .nav-shell {
        width: 100%;
        max-width: none;
        min-height: 150px;
        padding-right: clamp(42px, 3.8vw, 74px);
        padding-left: clamp(42px, 3.8vw, 74px);
        align-items: flex-start;
    }

    body:not(.page-anasayfa) .nav-shell::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 56px;
        width: calc(100% - clamp(84px, 7.6vw, 148px));
        height: 2px;
        background: linear-gradient(90deg, #fff 0, #fff calc(50% - 178px), transparent calc(50% - 178px), transparent calc(50% + 178px), #fff calc(50% + 178px), #fff 100%);
        transform: translateX(-50%);
    }

    body:not(.page-anasayfa) .brand-desktop {
        position: absolute;
        left: 50%;
        top: 8px;
        z-index: 3;
        transform: translateX(-50%);
    }

    body:not(.page-anasayfa) .brand-desktop .brand-logo {
        width: 270px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .22));
    }

    body:not(.page-anasayfa) .navbar-collapse {
        padding-top: 52px;
    }

    body:not(.page-anasayfa) .nav-left,
    body:not(.page-anasayfa) .nav-right {
        width: calc(50% - 165px);
    }

    body:not(.page-anasayfa) .site-header .navbar .nav-link {
        color: rgba(255, 255, 255, .9);
        font-size: clamp(1rem, 1.15vw, 1.32rem);
        letter-spacing: .02em;
        line-height: 1;
        text-shadow: 0 2px 14px rgba(0, 0, 0, .2);
    }

    body:not(.page-anasayfa) .site-header .navbar .nav-link:hover,
    body:not(.page-anasayfa) .site-header .navbar .nav-link.active {
        color: #fff;
    }
}

.btn-bilsis {
    min-width: auto;
    padding: 9px 14px;
    font-size: .72rem;
    background: rgba(255, 255, 255, .08);
}

.page-anasayfa .btn-bilsis {
    display: none;
}

.home-visual-hero {
    min-height: 780px;
    padding: 0;
    background: #051f33;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
    width: 100%;
    min-height: 780px;
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.heroSwiper .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 18, 32, .58) 0%, rgba(2, 18, 32, .08) 42%, rgba(2, 18, 32, .52) 100%);
}

.heroSwiper img {
    width: 100%;
    height: 780px;
    min-height: 780px;
    object-fit: cover;
    filter: saturate(.96);
    transform: scale(1.02);
}

.hero-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
}

.heroSwiper .heroSwiper-pagination,
.heroSwiper .swiper-pagination-bullets.heroSwiper-pagination {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 54px !important;
    z-index: 4;
    width: auto !important;
    transform: translateX(-50%);
}

.heroSwiper .heroSwiper-pagination .swiper-pagination-bullet {
    width: 26px;
    height: 3px;
    background: rgba(255, 255, 255, .8);
    border-radius: 999px;
    opacity: .5;
}

.heroSwiper .heroSwiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    font-size: 1.3rem;
}

.intro-section {
    padding-top: 92px;
    background: #fff;
}

.intro-section .section-heading h1 {
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    font-weight: 900;
}

.intro-section .section-heading p {
    max-width: 720px;
    margin: 16px auto 0;
    color: #738292;
    line-height: 1.7;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    margin: 46px 0 56px;
}

.stat-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 5px 12px;
}

.stat-item i {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #e43737;
    background: #fff1f1;
    border-radius: 50%;
}

.stat-item strong {
    color: var(--primary);
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    line-height: 1;
    font-weight: 900;
}

.stat-item span {
    color: #758394;
    font-size: .82rem;
    font-weight: 700;
}

.home-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

.mosaic-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 26px;
    border-radius: 18px;
    background: #f3f6f9;
}

.mosaic-card h2 {
    color: var(--primary);
    font-size: 1.45rem;
    font-weight: 900;
}

.mosaic-card p {
    color: #718091;
    line-height: 1.65;
}

.mosaic-card span {
    display: block;
    margin-bottom: 10px;
    color: #0f5482;
    font-weight: 900;
}

.mosaic-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 900;
}

.mosaic-card img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 100%;
    object-fit: cover;
}

.mosaic-card > div {
    position: relative;
    z-index: 2;
}

.mosaic-blue {
    color: #fff;
    background: #005293;
}

.mosaic-blue h2,
.mosaic-blue span,
.mosaic-blue a {
    color: #fff;
}

.mosaic-blue > div {
    width: 52%;
}

.mosaic-blue img {
    opacity: .9;
    width: 48%;
}

.mosaic-achievements {
    min-height: 300px;
    background: #003f72;
}

.mosaic-achievements::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 63, 114, .44), rgba(0, 63, 114, .95));
}

.mosaic-achievements > div {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 248px;
}

.mosaic-achievements img {
    inset: 0;
    width: 100%;
    opacity: .34;
}

.achievementTicker {
    flex: 1;
    display: block;
    width: 100%;
    min-height: 214px;
    height: 214px;
    margin: 2px 0 4px;
    overflow: hidden;
}

.achievementTicker .swiper-wrapper {
    height: 214px;
    transition-timing-function: cubic-bezier(.45, 0, .2, 1);
}

.achievementTicker .swiper-slide {
    height: 214px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-sizing: border-box;
}

.achievementTicker small {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    padding: 5px 9px;
    color: #fff;
    background: var(--cyan);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
}

.achievementTicker h2 {
    margin: 0;
    font-size: clamp(1.05rem, 1.45vw, 1.34rem);
    line-height: 1.14;
}

.achievementTicker h2 a {
    display: inline;
    margin: 0;
    gap: 0;
    font-size: inherit;
}

.achievement-detail-link {
    width: fit-content;
    margin-top: 14px;
    flex-shrink: 0;
}

.achievement-slide-content {
    width: 100%;
    padding-bottom: 6px;
}

.mosaic-announcements .achievementTicker .swiper-slide {
    align-items: stretch;
    justify-content: center;
}

.mosaic-achievements:not(.mosaic-announcements) > div {
    position: absolute;
    inset: 26px;
    width: auto;
    height: auto;
    min-height: 0;
}

.mosaic-achievements:not(.mosaic-announcements) .achievementTicker {
    flex: 1 1 auto;
    min-height: 0;
    height: auto !important;
}

.mosaic-achievements:not(.mosaic-announcements) .achievementTicker .swiper-wrapper,
.mosaic-achievements:not(.mosaic-announcements) .achievementTicker .swiper-slide {
    min-height: 0;
    height: 100% !important;
}

.mosaic-achievements:not(.mosaic-announcements) .achievementTicker .swiper-slide {
    align-items: stretch;
    justify-content: center;
}

.mosaic-announcements > div {
    position: absolute;
    inset: 26px;
    width: auto;
    height: auto;
    min-height: 0;
}

.mosaic-announcements .announcementTicker {
    min-height: 0;
    height: auto !important;
    flex: 1 1 auto;
}

.mosaic-announcements .announcementTicker .swiper-wrapper,
.mosaic-announcements .announcementTicker .swiper-slide {
    min-height: 0;
    height: 100% !important;
}

.mosaic-announcements .achievement-slide-content {
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 575.98px) {
    .mosaic-achievements:not(.mosaic-announcements) > div,
    .mosaic-announcements > div {
        inset: 24px;
    }
}

.mosaic-wide {
    grid-column: span 2;
    display: flex;
    justify-content: flex-end;
    background: linear-gradient(90deg, #eef3f7, #fff);
}

.mosaic-wide img {
    left: 0;
    right: auto;
    width: 58%;
    filter: grayscale(.7);
}

.mosaic-wide > div {
    position: relative;
    z-index: 2;
    width: 46%;
    margin-left: auto;
    padding: 22px;
    background: rgba(255, 255, 255, .82);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.mosaic-light > div {
    width: 52%;
    margin-right: auto;
    margin-left: 0;
}

.mosaic-light img {
    left: auto;
    right: 0;
    filter: grayscale(.35);
}

.campus-section {
    color: #fff;
    background: #043557;
}

.events-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 12% 20%, rgba(0, 174, 238, .28), transparent 28%),
        linear-gradient(135deg, #075273 0%, #043557 48%, #08283d 100%);
}

.events-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32), transparent);
}

.events-section .container {
    position: relative;
    z-index: 1;
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 34px;
}

.section-top h2 {
    max-width: 720px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 900;
}

.section-top p {
    max-width: 620px;
    color: rgba(255, 255, 255, .66);
    line-height: 1.7;
}

.section-top > a {
    color: inherit;
    font-size: .82rem;
    font-weight: 900;
    border-bottom: 1px solid currentColor;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-controls button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--primary);
    background: #fff;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
}

.slider-controls button:hover {
    color: #fff;
    background: var(--cyan);
}

.campus-card {
    position: relative;
    overflow: hidden;
    padding-bottom: 18px;
}

.campus-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 14px;
}

.campus-card h3 {
    margin: 16px 0 6px;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 900;
}

.campus-card > span {
    display: inline-flex;
    margin-top: 16px;
    padding: 7px 11px;
    color: #fff;
    background: rgba(0, 174, 238, .95);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 900;
}

.campus-card p {
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
}

.campus-card .card-action,
.home-news-card .card-action,
.event-card a {
    position: absolute;
    right: 14px;
    bottom: 54px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #fff;
    background: #005293;
    border-radius: 50%;
}

.card-media-link,
.card-title-link {
    display: block;
}

.card-media-link img {
    transition: transform .35s ease;
}

.card-media-link:hover img {
    transform: scale(1.035);
}

.card-title-link:hover {
    color: var(--cyan);
}

.news-section {
    background: #fff;
}

.dark-text h2 {
    color: var(--primary);
}

.dark-text p {
    color: #738292;
}

.filter-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.filter-pills button {
    padding: 9px 16px;
    color: #718091;
    background: #fff;
    border: 1px solid #e9eff5;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 800;
}

.filter-pills button.active {
    color: #fff;
    background: var(--primary);
}

.news-carousel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-news-card,
.event-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #edf2f6;
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(4, 53, 87, .1);
}

.home-news-card img,
.event-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.home-news-card div {
    padding: 18px;
}

.home-news-card span {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 5px 8px;
    color: #fff;
    background: #e43737;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 900;
}

.home-news-card h3,
.event-card h3 {
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 900;
}

.home-news-card time {
    color: #9aa6b2;
    font-size: .78rem;
    font-weight: 700;
}

.home-news-card .card-action {
    bottom: 16px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.event-card {
    min-height: 250px;
    border: 0;
    box-shadow: 0 24px 60px rgba(2, 20, 34, .28);
}

.event-card time {
    position: absolute;
    left: 14px;
    top: 116px;
    display: grid;
    place-items: center;
    width: 54px;
    height: 60px;
    color: #fff;
    background: #e43737;
    border-radius: 10px;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.event-card time strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
}

.event-card h3 {
    padding: 28px 18px 38px;
}

.event-card a {
    bottom: 16px;
}

.site-footer {
    background: #043557;
}

.site-footer .brand-logo {
    width: 168px;
}

@media (max-width: 1199.98px) {
    .page-anasayfa .nav-left,
    .page-anasayfa .nav-right {
        width: calc(50% - 145px);
    }

    .nav-link {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

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

@media (max-width: 991.98px) {
    .page-anasayfa .site-header,
    .site-header {
        position: relative;
        background: #043557;
    }

    .navbar,
    .page-anasayfa .navbar {
        min-height: 100px;
        height: 100px;
        padding: 0;
        align-items: flex-start;
    }

    .nav-shell,
    .page-anasayfa .nav-shell {
        min-height: 100px;
        height: 100px;
        padding-right: 20px;
        padding-left: 20px;
        align-items: flex-start;
    }

    .brand-desktop,
    .page-anasayfa .brand-desktop {
        position: static;
        left: auto;
        top: auto;
        margin: 8px auto 0 0;
        transform: none;
    }

    .brand-desktop .brand-logo,
    .page-anasayfa .brand-desktop .brand-logo {
        width: 170px;
    }

    .navbar-toggler {
        margin-top: 30px;
        margin-right: 0;
        margin-left: auto;
    }

    .topbar-shell {
        min-height: auto;
        padding-top: 9px;
        padding-bottom: 9px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .topbar-contact,
    .topbar-actions {
        flex-wrap: wrap;
        gap: 9px;
    }

    .page-anasayfa .topbar {
        background: #043557;
    }

    .page-anasayfa .nav-shell::after {
        display: none;
    }

    .admin-preview-shell {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .admin-preview-shell > span {
        max-width: 55%;
    }

    .nav-left,
    .nav-right {
        width: auto;
    }

    .home-visual-hero {
        min-height: 540px;
    }

    .heroSwiper,
    .heroSwiper .swiper-wrapper,
    .heroSwiper .swiper-slide,
    .heroSwiper img {
        min-height: 540px;
        height: 540px;
    }

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

    .home-mosaic,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .mosaic-wide {
        grid-column: auto;
    }

    .mosaic-card,
    .mosaic-wide {
        min-height: 300px;
    }

    .mosaic-card img,
    .mosaic-wide img {
        width: 100%;
        opacity: .28;
    }

    .mosaic-wide > div,
    .mosaic-light > div {
        width: 100%;
    }

    .section-top {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .home-visual-hero {
        min-height: 460px;
    }

    .heroSwiper,
    .heroSwiper .swiper-wrapper,
    .heroSwiper .swiper-slide,
    .heroSwiper img {
        min-height: 460px;
        height: 460px;
    }

    .stats-row,
    .news-carousel {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 12px 0;
        border-bottom: 1px solid #edf2f6;
    }

    .section {
        padding: 68px 0;
    }
}
