@charset "UTF-8";


:root {
    --primary: #17063d;
    --primary-dark: #0d0226;
    --primary-light: #2c1159;
    --primary-soft: #f2edf8;
    --accent: #b79ed6;
    --accent-light: #e7dcf3;

    --text: #211d29;
    --text-soft: #77717e;
    --text-light: #a49eaa;

    --white: #ffffff;
    --surface: #f8f6fb;
    --surface-dark: #12042f;
    --border: rgba(23, 6, 61, 0.11);

    --success: #1ca85c;

    --shadow-sm: 0 12px 32px rgba(23, 6, 61, 0.08);
    --shadow-md: 0 20px 55px rgba(23, 6, 61, 0.13);
    --shadow-lg: 0 30px 90px rgba(12, 2, 35, 0.22);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;

    --font-heading: "Red Hat Display", sans-serif;
    --font-body: "Urbanist", sans-serif;

    --header-transition: 320ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

/* =====================================================
   TEMEL AYARLAR
   ===================================================== */

html {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}

body.site-body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.site-body *,
body.site-body *::before,
body.site-body *::after {
    box-sizing: border-box;
}

body.site-body img {
    max-width: 100%;
}

body.site-body a {
    text-decoration: none;
}

body.site-body button,
body.site-body input,
body.site-body textarea,
body.site-body select {
    font-family: inherit;
}

body.site-body h1,
body.site-body h2,
body.site-body h3,
body.site-body h4,
body.site-body h5,
body.site-body h6,
body.site-body strong {
    font-family: var(--font-heading);
}

.site-main {
    position: relative;
    min-height: 600px;
}

.skip-to-content {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 99999;
    padding: 12px 18px;
    border-radius: 10px;
    color: var(--white);
    background: var(--primary);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-30px);
    transition:
        opacity 200ms ease,
        transform 200ms ease;
}

.skip-to-content:focus {
    color: var(--white);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* =====================================================
   HEADER
   ===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    background: var(--white);
    transition:
        box-shadow var(--header-transition),
        background var(--header-transition);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 35px rgba(23, 6, 61, 0.11);
}

/* =====================================================
   ÜST BİLGİ ÇUBUĞU
   ===================================================== */

.site-topbar {
    max-height: 46px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.78);
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 1;
    transition:
        max-height var(--header-transition),
        opacity var(--header-transition),
        border-color var(--header-transition);
}

.site-header.is-scrolled .site-topbar {
    max-height: 0;
    border-color: transparent;
    opacity: 0;
}

.site-topbar .container {
    min-height: 45px;
}

.site-topbar__contact {
    min-height: 45px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.site-topbar__link,
.site-topbar__location {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.site-topbar__link {
    transition: color var(--header-transition);
}

.site-topbar__link:hover {
    color: var(--white);
}

.site-topbar__link i,
.site-topbar__location i {
    color: var(--accent);
    font-size: 12px;
}

.site-topbar__right {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.site-topbar__message {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.site-topbar__social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.site-topbar__social a {
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    transition:
        color var(--header-transition),
        background var(--header-transition),
        border-color var(--header-transition),
        transform var(--header-transition);
}

.site-topbar__social a:hover {
    color: var(--primary);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* =====================================================
   NAVBAR
   ===================================================== */

.site-navbar {
    min-height: 92px;
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    transition:
        min-height var(--header-transition),
        background var(--header-transition);
}

.site-header.is-scrolled .site-navbar {
    min-height: 76px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
}

.site-navbar > .container {
    min-height: inherit;
    display: flex;
    align-items: center;
}

/* =====================================================
   LOGO
   ===================================================== */

.site-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--primary);
}

.site-brand:hover {
    color: var(--primary);
}

.site-brand__image {
    width: auto;
    max-width: 225px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
    transition:
        height var(--header-transition),
        transform var(--header-transition);
}

.site-header.is-scrolled .site-brand__image {
    height: 48px;
}

.site-brand:hover .site-brand__image {
    transform: translateY(-1px);
}

.site-brand__text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.site-brand__text strong {
    color: var(--primary);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.site-brand__text small {
    margin-top: 7px;
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.35em;
}

/* =====================================================
   MASAÜSTÜ MENÜ
   ===================================================== */

.site-navbar__desktop {
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.site-nav {
    min-height: 92px;
    display: flex;
    align-items: stretch;
    gap: 3px;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: min-height var(--header-transition);
}

.site-header.is-scrolled .site-nav {
    min-height: 76px;
}

.site-nav__item {
    position: relative;
    display: flex;
    align-items: center;
}

.site-nav__link {
    position: relative;
    min-height: inherit;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    color: #332d3c;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: color var(--header-transition);
}

.site-nav__link::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 24px;
    left: 15px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition:
        opacity var(--header-transition),
        transform var(--header-transition),
        bottom var(--header-transition);
}

.site-header.is-scrolled .site-nav__link::after {
    bottom: 17px;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--primary);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-nav__dropdown-toggle {
    width: 22px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -11px;
    padding: 0;
    border: 0;
    color: var(--text-soft);
    background: transparent;
    font-size: 10px;
    transition:
        color var(--header-transition),
        transform var(--header-transition);
}

.site-nav__item.dropdown:hover .site-nav__dropdown-toggle,
.site-nav__item.dropdown.is-open .site-nav__dropdown-toggle {
    color: var(--primary);
    transform: rotate(180deg);
}

/* =====================================================
   HİZMETLER DROPDOWN
   ===================================================== */

.site-services-menu {
    top: calc(100% - 7px) !important;
    left: 50% !important;
    width: 660px;
    max-width: calc(100vw - 40px);
    margin: 0 !important;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateX(-50%) translateY(13px) !important;
    opacity: 0;
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.site-services-menu.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0) !important;
}

.site-services-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(192, 159, 225, 0.25),
            transparent 45%
        ),
        var(--primary);
}

.site-services-menu__head span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.site-services-menu__head a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 700;
    transition: color var(--header-transition);
}

.site-services-menu__head a:hover {
    color: var(--white);
}

.site-services-menu__list {
    display: flex;
    flex-wrap: wrap;
    padding: 14px;
}

.site-services-menu__item {
    width: 50%;
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    border-radius: 14px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    transition:
        color var(--header-transition),
        background var(--header-transition),
        transform var(--header-transition);
}

.site-services-menu__item:hover {
    color: var(--primary);
    background: var(--primary-soft);
    transform: translateX(3px);
}

.site-services-menu__icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--primary);
    background: var(--accent-light);
    font-size: 10px;
    transition:
        color var(--header-transition),
        background var(--header-transition),
        transform var(--header-transition);
}

.site-services-menu__item:hover .site-services-menu__icon {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-35deg);
}

/* =====================================================
   KÜÇÜK DROPDOWN
   ===================================================== */

.site-small-menu {
    top: calc(100% - 7px) !important;
    left: 50% !important;
    min-width: 230px;
    margin: 0 !important;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(-50%) translateY(13px) !important;
    opacity: 0;
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.site-small-menu.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0) !important;
}

.site-small-menu li {
    list-style: none;
}

.site-small-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 11px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    transition:
        color var(--header-transition),
        background var(--header-transition),
        padding-left var(--header-transition);
}

.site-small-menu a:hover {
    padding-left: 18px;
    color: var(--primary);
    background: var(--primary-soft);
}

/* =====================================================
   NAVBAR SAĞ ALAN
   ===================================================== */

.site-navbar__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-navbar__appointment {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 21px;
    border-radius: 999px;
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 12px 28px rgba(23, 6, 61, 0.2);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    transition:
        color var(--header-transition),
        background var(--header-transition),
        transform var(--header-transition),
        box-shadow var(--header-transition);
}

.site-navbar__appointment:hover {
    color: var(--white);
    background: var(--primary-light);
    box-shadow: 0 17px 35px rgba(23, 6, 61, 0.28);
    transform: translateY(-2px);
}

.site-navbar__appointment i {
    font-size: 11px;
    transition: transform var(--header-transition);
}

.site-navbar__appointment:hover i {
    transform: translateX(4px);
}

/* =====================================================
   MOBİL MENÜ BUTONU
   ===================================================== */

.site-navbar__mobile-button {
    width: 49px;
    height: 49px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 15px;
    background: var(--primary-soft);
}

.site-navbar__mobile-button span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--primary);
    transition:
        width var(--header-transition),
        transform var(--header-transition);
}

.site-navbar__mobile-button span:nth-child(2) {
    width: 15px;
}

.site-navbar__mobile-button:hover span:nth-child(2) {
    width: 21px;
}

/* =====================================================
   MOBİL OFFCANVAS
   ===================================================== */

.site-mobile-menu {
    width: min(430px, 100vw) !important;
    border-left: 0;
    background: var(--white);
}

.site-mobile-menu__header {
    min-height: 88px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
}

.site-mobile-menu__brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
}

.site-mobile-menu__brand:hover {
    color: var(--primary);
}

.site-mobile-menu__brand img {
    width: auto;
    max-width: 185px;
    height: 49px;
    object-fit: contain;
}

.site-mobile-menu__brand span {
    display: flex;
    flex-direction: column;
}

.site-mobile-menu__brand strong {
    color: var(--primary);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.07em;
}

.site-mobile-menu__brand small {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.3em;
}

.site-mobile-menu__close {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 14px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 18px;
    transition:
        color var(--header-transition),
        background var(--header-transition),
        transform var(--header-transition);
}

.site-mobile-menu__close:hover {
    color: var(--white);
    background: var(--primary);
    transform: rotate(90deg);
}

.site-mobile-menu__body {
    display: flex;
    flex-direction: column;
    padding: 24px 22px 30px;
}

.site-mobile-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-mobile-nav > li {
    border-bottom: 1px solid var(--border);
}

.site-mobile-nav > li > a,
.site-mobile-nav__dropdown > button {
    width: 100%;
    min-height: 59px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    color: var(--text);
    background: transparent;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 750;
    text-align: left;
    transition:
        color var(--header-transition),
        padding-left var(--header-transition);
}

.site-mobile-nav > li > a:hover,
.site-mobile-nav > li > a.is-active,
.site-mobile-nav__dropdown > button:hover,
.site-mobile-nav__dropdown.is-open > button {
    padding-left: 5px;
    color: var(--primary);
}

.site-mobile-nav > li > a i,
.site-mobile-nav__dropdown > button i {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 10px;
    transition:
        color var(--header-transition),
        background var(--header-transition),
        transform var(--header-transition);
}

.site-mobile-nav__dropdown.is-open > button i {
    color: var(--white);
    background: var(--primary);
    transform: rotate(45deg);
}

.site-mobile-nav__submenu {
    padding: 0 0 15px 14px;
}

.site-mobile-nav__submenu a {
    display: block;
    padding: 9px 12px;
    border-left: 1px solid var(--accent-light);
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 650;
    transition:
        color var(--header-transition),
        padding-left var(--header-transition),
        border-color var(--header-transition);
}

.site-mobile-nav__submenu a:hover {
    padding-left: 17px;
    color: var(--primary);
    border-color: var(--primary);
}

.site-mobile-nav__submenu .site-mobile-nav__all {
    margin-top: 5px;
    color: var(--primary);
    font-weight: 800;
}

.site-mobile-menu__contact {
    margin-top: 31px;
    padding: 21px;
    border-radius: var(--radius-md);
    background: var(--primary-soft);
}

.site-mobile-menu__contact-title {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-mobile-menu__contact a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 7px 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
}

.site-mobile-menu__contact a:hover {
    color: var(--primary);
}

.site-mobile-menu__contact i {
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--white);
    background: var(--primary);
    font-size: 10px;
}

.site-mobile-menu__appointment {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 16px;
    border-radius: 999px;
    color: var(--white);
    background: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(23, 6, 61, 0.22);
}

.site-mobile-menu__appointment:hover {
    color: var(--white);
    background: var(--primary-light);
}

/* =====================================================
   FOOTER ÜST İLETİŞİM ALANI
   ===================================================== */

.footer-contact-strip {
    position: relative;
    z-index: 3;
    padding: 100px 0 0;
    margin-bottom: -82px;
}

.footer-contact-strip__box {
    position: relative;
    overflow: hidden;
    padding: 49px 55px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(201, 170, 230, 0.27),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary) 60%,
            #321265
        );
    box-shadow: var(--shadow-lg);
}

.footer-contact-strip__box::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -190px;
    width: 360px;
    height: 360px;
    border: 68px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
}

.footer-contact-strip__eyebrow {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-contact-strip__eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
}

.footer-contact-strip h2 {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0;
    color: var(--white);
    font-size: clamp(32px, 4vw, 51px);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.footer-contact-strip p {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
}

.footer-contact-strip__actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.footer-contact-strip__button {
    min-height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 25px;
    border-radius: 999px;
    color: var(--primary);
    background: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
    transition:
        color var(--header-transition),
        background var(--header-transition),
        transform var(--header-transition);
}

.footer-contact-strip__button:hover {
    color: var(--white);
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-contact-strip__button i {
    font-size: 11px;
    transition: transform var(--header-transition);
}

.footer-contact-strip__button:hover i {
    transform: translateX(4px);
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 170px 0 0;
    color: rgba(255, 255, 255, 0.72);
    background: var(--primary-dark);
}

.site-footer__shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.site-footer__shape--one {
    top: -170px;
    left: -180px;
    width: 460px;
    height: 460px;
    border: 85px solid rgba(255, 255, 255, 0.025);
}

.site-footer__shape--two {
    right: -170px;
    bottom: -200px;
    width: 480px;
    height: 480px;
    background: rgba(161, 119, 204, 0.08);
    filter: blur(3px);
}

.site-footer__main {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
}

.site-footer__brand:hover {
    color: var(--white);
}

.site-footer__brand img {
    width: auto;
    max-width: 245px;
    height: 68px;
    object-fit: contain;
    object-position: left center;
}

.site-footer__brand span {
    display: flex;
    flex-direction: column;
}

.site-footer__brand strong {
    color: var(--white);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.site-footer__brand small {
    margin-top: 7px;
    color: var(--accent);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.34em;
}

.site-footer__description {
    max-width: 420px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    line-height: 1.8;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
}

.site-footer__social a {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    transition:
        color var(--header-transition),
        background var(--header-transition),
        border-color var(--header-transition),
        transform var(--header-transition);
}

.site-footer__social a:hover {
    color: var(--primary);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.site-footer__column h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 13px;
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
}

.site-footer__column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
}

.site-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column li + li {
    margin-top: 10px;
}

.site-footer__column li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.57);
    font-size: 14px;
    line-height: 1.5;
    transition:
        color var(--header-transition),
        transform var(--header-transition);
}

.site-footer__column li a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: var(--accent);
    transition:
        width var(--header-transition),
        margin-right var(--header-transition);
}

.site-footer__column li a:hover {
    color: var(--white);
    transform: translateX(2px);
}

.site-footer__column li a:hover::before {
    width: 15px;
    margin-right: 8px;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 17px;
}

.site-footer__contact-item > span {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.035);
    font-size: 12px;
}

.site-footer__contact-item p,
.site-footer__contact-item a {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.65;
}

.site-footer__contact-item a {
    transition: color var(--header-transition);
}

.site-footer__contact-item a:hover {
    color: var(--white);
}

.site-footer__bottom {
    position: relative;
    z-index: 2;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copyright,
.site-footer__disclaimer {
    margin: 0;
}

.site-footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 650;
}

.site-footer__disclaimer {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 11px;
}

.site-footer__developer {
    text-align: right;
}

.site-footer__developer a {
    color: rgba(255, 255, 255, 0.43);
    font-size: 12px;
    transition: color var(--header-transition);
}

.site-footer__developer a:hover {
    color: var(--white);
}

.site-footer__developer strong {
    color: rgba(255, 255, 255, 0.75);
}

/* =====================================================
   YUKARI ÇIK
   ===================================================== */

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1030;
    width: 51px;
    height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 16px;
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 16px 35px rgba(23, 6, 61, 0.26);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity var(--header-transition),
        visibility var(--header-transition),
        transform var(--header-transition),
        background var(--header-transition);
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* =====================================================
   OFFCANVAS BACKDROP
   ===================================================== */

.offcanvas-backdrop.show {
    opacity: 0.65;
    background: var(--primary-dark);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1399.98px) {
    .site-nav__link {
        padding-right: 11px;
        padding-left: 11px;
        font-size: 13px;
    }

    .site-nav__link::after {
        right: 11px;
        left: 11px;
    }

    .site-navbar__appointment {
        padding-right: 17px;
        padding-left: 17px;
    }
}

@media (max-width: 1199.98px) {
    .site-navbar {
        min-height: 82px;
    }

    .site-header.is-scrolled .site-navbar {
        min-height: 72px;
    }

    .site-brand__image {
        height: 53px;
    }

    .site-header.is-scrolled .site-brand__image {
        height: 46px;
    }

    .footer-contact-strip {
        padding-top: 80px;
    }

    .footer-contact-strip__box {
        padding: 43px 42px;
    }
}

@media (max-width: 991.98px) {
    .site-topbar__contact {
        justify-content: center;
    }

    .footer-contact-strip__actions {
        justify-content: flex-start;
    }

    .site-footer__developer {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .site-topbar {
        max-height: 41px;
    }

    .site-topbar .container,
    .site-topbar__contact {
        min-height: 40px;
    }

    .site-topbar__contact {
        gap: 15px;
    }

    .site-topbar__link,
    .site-topbar__location {
        font-size: 11px;
    }

    .site-topbar__location {
        display: none;
    }

    .site-navbar {
        min-height: 75px;
    }

    .site-header.is-scrolled .site-navbar {
        min-height: 68px;
    }

    .site-brand__image {
        max-width: 180px;
        height: 48px;
    }

    .site-header.is-scrolled .site-brand__image {
        height: 43px;
    }

    .site-brand__text strong {
        font-size: 17px;
    }

    .site-brand__text small {
        font-size: 8px;
    }

    .footer-contact-strip {
        padding-top: 70px;
        margin-bottom: -65px;
    }

    .footer-contact-strip__box {
        padding: 35px 27px;
        border-radius: 25px;
    }

    .footer-contact-strip h2 {
        font-size: 34px;
    }

    .footer-contact-strip__button {
        width: 100%;
    }

    .site-footer {
        padding-top: 145px;
    }

    .site-footer__main {
        padding-bottom: 50px;
    }

    .site-footer__brand img {
        max-width: 205px;
        height: 57px;
    }

    .site-footer__developer {
        text-align: left;
    }

    .scroll-to-top {
        right: 15px;
        bottom: 15px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575.98px) {
    .site-topbar__contact {
        justify-content: flex-start;
    }

    .site-topbar__link:nth-child(2) {
        display: none;
    }

    .site-brand__image {
        max-width: 155px;
    }

    .site-brand__text strong {
        font-size: 15px;
    }

    .site-brand__text small {
        letter-spacing: 0.25em;
    }

    .site-navbar__mobile-button {
        width: 45px;
        height: 45px;
    }

    .site-mobile-menu__header {
        padding-right: 17px;
        padding-left: 17px;
    }

    .site-mobile-menu__body {
        padding-right: 17px;
        padding-left: 17px;
    }

    .site-mobile-menu__brand img {
        max-width: 155px;
        height: 44px;
    }

    .footer-contact-strip__box {
        padding: 31px 22px;
    }

    .footer-contact-strip h2 {
        font-size: 31px;
    }

    .site-footer__column h3 {
        margin-bottom: 19px;
    }
}

@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;
    }
}

/* =========================================================
     ANA SAYFA ÖZEL AYARLAR
     Yalnızca bu sayfada çalışır.
     ========================================================= */

  .sa-home {
      position: relative;
      width: 100%;
      overflow: hidden;
      color: var(--text);
      background: var(--white);
  }

      .sa-home img {
          display: block;
          max-width: 100%;
      }

  .sa-section {
      position: relative;
      padding: 120px 0;
  }

  .sa-section--surface {
      background: var(--surface);
  }

  .sa-section--white {
      background: var(--white);
  }

  .sa-section__shape {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
  }

  .sa-section__shape--one {
      top: 5%;
      left: -180px;
      width: 420px;
      height: 420px;
      border: 70px solid rgba(23, 6, 61, 0.025);
  }

  .sa-section__shape--two {
      right: -170px;
      bottom: 5%;
      width: 380px;
      height: 380px;
      background: rgba(183, 158, 214, 0.1);
      filter: blur(5px);
  }

  /* =========================================================
     BAŞLIKLAR
     ========================================================= */

  .sa-heading {
      position: relative;
  }

  .sa-heading--center {
      max-width: 900px;
      margin-right: auto;
      margin-left: auto;
      text-align: center;
  }

  .sa-heading__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 17px;
      color: var(--primary);
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      line-height: 1.3;
      text-transform: uppercase;
  }

      .sa-heading__eyebrow::before {
          content: "";
          width: 36px;
          height: 2px;
          flex: 0 0 36px;
          border-radius: 999px;
          background: currentColor;
      }

  .sa-heading--center .sa-heading__eyebrow::after {
      content: "";
      width: 36px;
      height: 2px;
      flex: 0 0 36px;
      border-radius: 999px;
      background: currentColor;
  }

  .sa-heading__title {
      max-width: 920px;
      margin: 0;
      color: var(--primary);
      font-family: var(--font-heading);
      font-size: clamp(31px, 3.6vw, 48px);
      font-weight: 700;
      letter-spacing: -0.062em;
      line-height: 1.04;
  }

  .sa-heading--center .sa-heading__title {
      margin-right: auto;
      margin-left: auto;
  }

  .sa-heading__description {
      max-width: 780px;
      margin: 22px 0 0;
      color: var(--text-soft);
      font-size: 17px;
      line-height: 1.82;
  }

  .sa-heading--center .sa-heading__description {
      margin-right: auto;
      margin-left: auto;
  }

  /* =========================================================
     BUTONLAR
     ========================================================= */

  .sa-btn {
      position: relative;
      min-height: 57px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      overflow: hidden;
      padding: 14px 26px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 800;
      line-height: 1;
      isolation: isolate;
      transition: color 280ms ease, background 280ms ease, border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease;
  }

      .sa-btn::before {
          content: "";
          position: absolute;
          top: -40%;
          bottom: -40%;
          left: -80%;
          z-index: -1;
          width: 45%;
          background: rgba(255, 255, 255, 0.22);
          transform: skewX(-24deg);
          transition: left 600ms ease;
      }

      .sa-btn:hover::before {
          left: 135%;
      }

      .sa-btn:hover {
          transform: translateY(-4px);
      }

          .sa-btn:hover::after {
              transform: translateX(5px);
          }

  .sa-btn--primary {
      color: var(--white);
      background: var(--primary);
      box-shadow: 0 15px 34px rgba(23, 6, 61, 0.22);
  }

      .sa-btn--primary:hover {
          color: var(--white);
          background: var(--primary-light);
          box-shadow: 0 21px 43px rgba(23, 6, 61, 0.3);
      }

  .sa-btn--white {
      color: var(--primary);
      background: var(--white);
      box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  }

      .sa-btn--white:hover {
          color: var(--white);
          background: var(--primary-light);
      }

  .sa-btn--outline {
      color: var(--primary);
      border-color: rgba(23, 6, 61, 0.28);
      background: transparent;
  }

      .sa-btn--outline:hover {
          color: var(--white);
          border-color: var(--primary);
          background: var(--primary);
      }

  .sa-btn--glass {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(14px);
  }

      .sa-btn--glass:hover {
          color: var(--primary);
          border-color: var(--white);
          background: var(--white);
      }

  .sa-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--primary);
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 800;
      transition: color 250ms ease, transform 250ms ease;
  }

      .sa-link:hover {
          color: var(--primary-light);
          transform: translateX(4px);
      }

          .sa-link:hover::after {
              transform: translateX(5px);
          }

  /* =========================================================
     HERO
     ========================================================= */

  .sa-hero {
      position: relative;
      min-height: 780px;
      overflow: hidden;
      background: var(--primary-dark);
  }

      .sa-hero .carousel-inner,
      .sa-hero .carousel-item {
          min-height: 780px;
      }

  .sa-hero__slide {
      position: relative;
      min-height: 780px;
      overflow: hidden;
  }

  .sa-hero__media {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: radial-gradient( circle at 70% 35%, rgba(183, 158, 214, 0.25), transparent 35% ), var(--primary-dark);
  }

      .sa-hero__media img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
          transform: scale(1.07);
          transition: transform 8s ease;
      }

  .sa-hero .carousel-item.active .sa-hero__media img {
      transform: scale(1);
  }

  .sa-hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient( 90deg, rgba(9, 1, 28, 0.97) 0%, rgba(15, 3, 42, 0.9) 38%, rgba(18, 5, 48, 0.43) 70%, rgba(10, 2, 31, 0.44) 100% ), linear-gradient( 180deg, rgba(8, 1, 24, 0.16) 0%, rgba(8, 1, 24, 0.02) 53%, rgba(8, 1, 24, 0.78) 100% );
  }

  .sa-hero__glow {
      position: absolute;
      bottom: -330px;
      left: -250px;
      width: 780px;
      height: 780px;
      border-radius: 50%;
      background: rgba(183, 158, 214, 0.16);
      filter: blur(25px);
  }

  .sa-hero__container {
      position: relative;
      z-index: 4;
  }

  .sa-hero__row {
      min-height: 780px;
      padding-top: 95px;
      padding-bottom: 115px;
  }

  .sa-hero__content {
      max-width: 880px;
  }

  .sa-hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      margin-bottom: 25px;
      color: rgba(255, 255, 255, 0.78);
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.17em;
      text-transform: uppercase;
  }

      .sa-hero__eyebrow::before {
          content: "";
          width: 40px;
          height: 2px;
          flex: 0 0 40px;
          background: var(--accent);
      }

  .sa-hero__title {
      margin: 0;
      color: var(--white);
      font-family: var(--font-heading);
      font-size: clamp(39px, 6vw, 65px);
      font-weight: 600;
      letter-spacing: -0.062em;
      line-height: 0.99;
  }

  .sa-hero__description {
      max-width: 730px;
      margin: 28px 0 0;
      color: rgba(255, 255, 255, 0.76);
      font-size: 18px;
      font-weight: 500;
      line-height: 1.75;
  }

  .sa-hero__buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 35px;
  }

  .sa-hero__features {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 25px;
      margin-top: 32px;
  }

  .sa-hero__feature {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.77);
      font-size: 13px;
      font-weight: 650;
  }

      .sa-hero__feature i {
          color: var(--accent);
      }

  .sa-hero .carousel-control-prev,
  .sa-hero .carousel-control-next {
      top: auto;
      bottom: 42px;
      width: 49px;
      height: 49px;
      z-index: 7;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      opacity: 1;
      backdrop-filter: blur(12px);
      transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
  }

  .sa-hero .carousel-control-prev {
      right: 90px;
      left: auto;
  }

  .sa-hero .carousel-control-next {
      right: 30px;
  }

      .sa-hero .carousel-control-prev:hover,
      .sa-hero .carousel-control-next:hover {
          border-color: var(--white);
          background: var(--white);
          transform: translateY(-3px);
      }

  .sa-hero .carousel-control-prev-icon,
  .sa-hero .carousel-control-next-icon {
      width: 17px;
      height: 17px;
      filter: none;
  }

  .sa-hero .carousel-control-prev:hover .carousel-control-prev-icon,
  .sa-hero .carousel-control-next:hover .carousel-control-next-icon {
      filter: invert(15%) sepia(74%) saturate(1653%) hue-rotate(244deg);
  }

  .sa-hero .carousel-item.active .sa-hero__content > * {
      animation: saHeroReveal 850ms both;
  }

      .sa-hero .carousel-item.active .sa-hero__content > *:nth-child(2) {
          animation-delay: 100ms;
      }

      .sa-hero .carousel-item.active .sa-hero__content > *:nth-child(3) {
          animation-delay: 190ms;
      }

      .sa-hero .carousel-item.active .sa-hero__content > *:nth-child(4) {
          animation-delay: 280ms;
      }

      .sa-hero .carousel-item.active .sa-hero__content > *:nth-child(5) {
          animation-delay: 370ms;
      }

  @keyframes saHeroReveal {
      from {
          opacity: 0;
          transform: translateY(35px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* =========================================================
     ÖNE ÇIKAN BİLGİLER
     ========================================================= */

  .sa-highlights {
      position: relative;
      z-index: 8;
      margin-top: -50px;
  }

  .sa-highlights__box {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-md);
  }

  .sa-highlight {
      position: relative;
      height: 100%;
      min-height: 118px;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 27px 25px;
      background: var(--white);
      transition: background 280ms ease, transform 280ms ease;
  }

      .sa-highlight::after {
          content: "";
          position: absolute;
          top: 22px;
          right: 0;
          bottom: 22px;
          width: 1px;
          background: var(--border);
      }

  .sa-highlights .col-xl-3:last-child .sa-highlight::after {
      display: none;
  }

  .sa-highlight:hover {
      z-index: 2;
      background: var(--primary-soft);
      transform: translateY(-5px);
  }

  .sa-highlight__icon {
      width: 55px;
      height: 55px;
      flex: 0 0 55px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      color: var(--primary);
      background: var(--primary-soft);
      font-size: 20px;
      transition: color 280ms ease, background 280ms ease, transform 280ms ease;
  }

  .sa-highlight:hover .sa-highlight__icon {
      color: var(--white);
      background: var(--primary);
      transform: rotate(-8deg) scale(1.06);
  }

  .sa-highlight strong {
      display: block;
      color: var(--primary);
      font-size: 16px;
      font-weight: 800;
      line-height: 1.3;
  }

  .sa-highlight small {
      display: block;
      margin-top: 5px;
      color: var(--text-soft);
      font-size: 13px;
      line-height: 1.5;
  }

  /* =========================================================
     HAKKIMDA
     ========================================================= */

  .sa-about__visual {
      position: relative;
      max-width: 590px;
      margin-right: auto;
      margin-left: auto;
      padding: 0 62px 68px 0;
  }

  .sa-about__main-image {
      position: relative;
      min-height: 650px;
      overflow: hidden;
      border-radius: 35px;
      background: radial-gradient( circle at 60% 25%, rgba(183, 158, 214, 0.35), transparent 38% ), var(--primary-soft);
      box-shadow: var(--shadow-md);
  }

      .sa-about__main-image::before {
          content: "\f554";
          position: absolute;
          top: 50%;
          left: 50%;
          color: rgba(23, 6, 61, 0.16);
          font-family: "Font Awesome 6 Free";
          font-size: 95px;
          font-weight: 900;
          transform: translate(-50%, -50%);
      }

      .sa-about__main-image img {
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
      }

  .sa-about__visual:hover .sa-about__main-image img {
      transform: scale(1.035);
  }

  .sa-about__small-image {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 235px;
      height: 235px;
      overflow: hidden;
      border: 10px solid var(--white);
      border-radius: 30px;
      background: var(--primary-soft);
      box-shadow: var(--shadow-md);
  }

      .sa-about__small-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 700ms ease;
      }

      .sa-about__small-image:hover img {
          transform: scale(1.08);
      }

  .sa-about__badge {
      position: absolute;
      top: 15px;
      right: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 15px 17px;
      border-radius: 19px;
      color: var(--white);
      background: var(--primary);
      box-shadow: var(--shadow-md);
  }

  .sa-about__badge-icon {
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.12);
  }

  .sa-about__badge strong,
  .sa-about__badge small {
      display: block;
  }

  .sa-about__badge strong {
      color: var(--white);
      font-size: 14px;
  }

  .sa-about__badge small {
      margin-top: 2px;
      color: rgba(255, 255, 255, 0.65);
      font-size: 11px;
  }

  .sa-about__summary {
      margin: 25px 0 0;
      color: var(--text);
      font-size: 16px;
      line-height: 1.85;
  }

  .sa-about__items {
      margin-top: 27px;
  }

  .sa-about-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid var(--border);
      transition: padding-left 280ms ease, border-color 280ms ease;
  }

      .sa-about-item:last-child {
          border-bottom: 0;
      }

      .sa-about-item:hover {
          padding-left: 8px;
          border-color: var(--accent);
      }

  .sa-about-item__icon {
      width: 49px;
      height: 49px;
      flex: 0 0 49px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      color: var(--primary);
      background: var(--primary-soft);
      font-size: 17px;
      transition: color 280ms ease, background 280ms ease, transform 280ms ease;
  }

  .sa-about-item:hover .sa-about-item__icon {
      color: var(--white);
      background: var(--primary);
      transform: rotate(-7deg);
  }

  .sa-about-item strong {
      display: block;
      color: var(--primary);
      font-size: 16px;
      font-weight: 800;
  }

  .sa-about-item p {
      margin: 5px 0 0;
      color: var(--text-soft);
      font-size: 14px;
      line-height: 1.7;
  }

  .sa-about__button {
      margin-top: 27px;
  }

  /* =========================================================
     HİZMETLER
     ========================================================= */

  .sa-services__top {
      margin-bottom: 48px;
  }

  .sa-service-card {
      position: relative;
      height: 100%;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease;
  }

      .sa-service-card:hover {
          border-color: rgba(23, 6, 61, 0.18);
          box-shadow: var(--shadow-md);
          transform: translateY(-11px);
      }

  .sa-service-card__image {
      position: relative;
      height: 245px;
      display: block;
      overflow: hidden;
      background: radial-gradient( circle at 55% 35%, rgba(183, 158, 214, 0.45), transparent 38% ), var(--primary-soft);
  }

      .sa-service-card__image::before {
          content: "\f554";
          position: absolute;
          top: 50%;
          left: 50%;
          color: rgba(23, 6, 61, 0.18);
          font-family: "Font Awesome 6 Free";
          font-size: 55px;
          font-weight: 900;
          transform: translate(-50%, -50%);
      }

      .sa-service-card__image img {
          position: absolute;
          inset: 0;
          z-index: 2;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
      }

  .sa-service-card:hover .sa-service-card__image img {
      transform: scale(1.07);
  }

  .sa-service-card__overlay {
      position: absolute;
      inset: 0;
      z-index: 3;
      background: linear-gradient( 180deg, transparent 45%, rgba(13, 2, 38, 0.58) 100% );
  }

  .sa-service-card__number {
      position: absolute;
      top: 17px;
      right: 17px;
      z-index: 4;
      width: 43px;
      height: 43px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      color: var(--white);
      background: rgba(23, 6, 61, 0.86);
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 800;
      backdrop-filter: blur(10px);
  }

  .sa-service-card__body {
      position: relative;
      padding: 26px 25px 27px;
  }

  .sa-service-card__category {
      display: block;
      margin-bottom: 10px;
      color: var(--text-soft);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      line-height: 1.4;
      text-transform: uppercase;
  }

  .sa-service-card h3 {
      margin: 0;
      font-size: 23px;
      font-weight: 750;
      line-height: 1.15;
  }

      .sa-service-card h3 a {
          color: var(--primary);
          transition: color 250ms ease;
      }

  .sa-service-card:hover h3 a {
      color: var(--primary-light);
  }

  .sa-service-card p {
      display: -webkit-box;
      min-height: 73px;
      overflow: hidden;
      margin: 17px 0 0;
      color: var(--text-soft);
      font-size: 14px;
      line-height: 1.72;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
  }

  .sa-service-card__link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 21px;
      color: var(--primary);
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 800;
  }

      .sa-service-card__link i {
          transition: transform 250ms ease;
      }

  .sa-service-card:hover .sa-service-card__link i {
      transform: translateX(6px);
  }

  /* =========================================================
     SCHROTH
     ========================================================= */

  .sa-schroth__box {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: radial-gradient( circle at 10% 15%, rgba(183, 158, 214, 0.23), transparent 35% ), linear-gradient( 135deg, var(--primary-dark), var(--primary) 62%, #321265 );
      box-shadow: var(--shadow-lg);
  }

      .sa-schroth__box::before {
          content: "";
          position: absolute;
          top: -150px;
          left: -130px;
          width: 370px;
          height: 370px;
          border: 65px solid rgba(255, 255, 255, 0.035);
          border-radius: 50%;
      }

  .sa-schroth__content {
      position: relative;
      z-index: 3;
      height: 100%;
      padding: 70px 65px;
  }

  .sa-schroth__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--accent);
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
  }

      .sa-schroth__eyebrow::before {
          content: "";
          width: 36px;
          height: 2px;
          background: currentColor;
      }

  .sa-schroth h2 {
      max-width: 660px;
      margin: 22px 0 0;
      color: var(--white);
      font-family: var(--font-heading);
      font-size: clamp(29px, 3.4vw, 48px);
      font-weight: 650;
      letter-spacing: -0.062em;
      line-height: 1.03;
  }

      .sa-schroth h2 em {
          color: var(--accent);
          font-style: normal;
      }

  .sa-schroth__content > p {
      max-width: 650px;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, 0.69);
      font-size: 16px;
      line-height: 1.82;
  }

  .sa-schroth__list {
      margin-top: 28px;
  }

  .sa-schroth__item {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-top: 13px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 14px;
  }

      .sa-schroth__item i {
          width: 27px;
          height: 27px;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          border-radius: 9px;
          color: var(--primary);
          background: var(--accent);
          font-size: 10px;
      }

  .sa-schroth__button {
      margin-top: 34px;
  }

  .sa-schroth__image {
      position: relative;
      height: 100%;
      min-height: 640px;
      overflow: hidden;
      background: var(--primary-soft);
  }

      .sa-schroth__image::before {
          content: "\f55b";
          position: absolute;
          top: 50%;
          left: 50%;
          color: rgba(23, 6, 61, 0.2);
          font-family: "Font Awesome 6 Free";
          font-size: 95px;
          font-weight: 900;
          transform: translate(-50%, -50%);
      }

      .sa-schroth__image img {
          position: absolute;
          inset: 0;
          z-index: 2;
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
      }

  .sa-schroth__box:hover .sa-schroth__image img {
      transform: scale(1.05);
  }

  .sa-schroth__image::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 3;
      background: linear-gradient( 90deg, rgba(23, 6, 61, 0.35), transparent 45% );
  }

  .sa-schroth__floating {
      position: absolute;
      right: 28px;
      bottom: 28px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 16px 18px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 19px;
      background: rgba(13, 2, 38, 0.85);
      backdrop-filter: blur(13px);
  }

  .sa-schroth__floating-icon {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
  }

  .sa-schroth__floating strong,
  .sa-schroth__floating small {
      display: block;
  }

  .sa-schroth__floating strong {
      color: var(--white);
      font-size: 14px;
  }

  .sa-schroth__floating small {
      margin-top: 3px;
      color: rgba(255, 255, 255, 0.58);
      font-size: 11px;
  }

  /* =========================================================
     UZMANLIKLAR
     ========================================================= */

  .sa-expertise-card {
      position: relative;
      height: 100%;
      display: block;
      overflow: hidden;
      padding: 30px 27px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      color: var(--text);
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: color 320ms ease, border-color 320ms ease, background 320ms ease, box-shadow 320ms ease, transform 320ms ease;
  }

      .sa-expertise-card::before {
          content: "";
          position: absolute;
          right: -80px;
          bottom: -90px;
          width: 180px;
          height: 180px;
          border: 35px solid rgba(183, 158, 214, 0.13);
          border-radius: 50%;
          transition: border-color 320ms ease, transform 500ms ease;
      }

      .sa-expertise-card:hover {
          color: var(--white);
          border-color: var(--primary);
          background: var(--primary);
          box-shadow: var(--shadow-md);
          transform: translateY(-10px);
      }

          .sa-expertise-card:hover::before {
              border-color: rgba(255, 255, 255, 0.08);
              transform: scale(1.15) rotate(25deg);
          }

  .sa-expertise-card__top {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .sa-expertise-card__icon {
      width: 59px;
      height: 59px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 19px;
      color: var(--primary);
      background: var(--primary-soft);
      font-size: 21px;
      transition: color 320ms ease, background 320ms ease, transform 320ms ease;
  }

  .sa-expertise-card:hover .sa-expertise-card__icon {
      color: var(--primary);
      background: var(--white);
      transform: rotate(-9deg) scale(1.06);
  }

  .sa-expertise-card__number {
      color: var(--accent);
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 800;
  }

  .sa-expertise-card h3 {
      position: relative;
      z-index: 2;
      margin: 25px 0 0;
      color: var(--primary);
      font-size: 23px;
      font-weight: 750;
      line-height: 1.2;
      transition: color 320ms ease;
  }

  .sa-expertise-card:hover h3 {
      color: var(--white);
  }

  .sa-expertise-card p {
      position: relative;
      z-index: 2;
      min-height: 71px;
      margin: 15px 0 0;
      color: var(--text-soft);
      font-size: 14px;
      line-height: 1.7;
      transition: color 320ms ease;
  }

  .sa-expertise-card:hover p {
      color: rgba(255, 255, 255, 0.67);
  }

  .sa-expertise-card__link {
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-top: 21px;
      color: var(--primary);
      font-size: 13px;
      font-weight: 800;
      transition: color 320ms ease;
  }

  .sa-expertise-card:hover .sa-expertise-card__link {
      color: var(--white);
  }

  .sa-expertise-card__link i {
      transition: transform 250ms ease;
  }

  .sa-expertise-card:hover .sa-expertise-card__link i {
      transform: translateX(6px);
  }

  /* =========================================================
     SÜREÇ
     ========================================================= */

  .sa-process__heading {
      position: sticky;
      top: 130px;
  }

  .sa-process-card {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 21px;
  }

      .sa-process-card + .sa-process-card {
          margin-top: 25px;
      }

  .sa-process-card__number {
      width: 59px;
      height: 59px;
      flex: 0 0 59px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 19px;
      color: var(--white);
      background: var(--primary);
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 14px 30px rgba(23, 6, 61, 0.2);
      transition: background 280ms ease, transform 280ms ease;
  }

  .sa-process-card:hover .sa-process-card__number {
      background: var(--primary-light);
      transform: rotate(-8deg) scale(1.06);
  }

  .sa-process-card__body {
      position: relative;
      flex: 1;
      padding: 27px 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--surface);
      transition: border-color 300ms ease, background 300ms ease, box-shadow 300ms ease, transform 300ms ease;
  }

      .sa-process-card__body::before {
          content: "";
          position: absolute;
          top: 27px;
          left: -9px;
          width: 17px;
          height: 17px;
          border-bottom: 1px solid var(--border);
          border-left: 1px solid var(--border);
          background: var(--surface);
          transform: rotate(45deg);
          transition: border-color 300ms ease, background 300ms ease;
      }

  .sa-process-card:hover .sa-process-card__body {
      border-color: rgba(23, 6, 61, 0.18);
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transform: translateX(7px);
  }

      .sa-process-card:hover .sa-process-card__body::before {
          border-color: rgba(23, 6, 61, 0.18);
          background: var(--white);
      }

  .sa-process-card__body h3 {
      margin: 0;
      color: var(--primary);
      font-size: 23px;
      font-weight: 750;
  }

  .sa-process-card__body p {
      margin: 11px 0 0;
      color: var(--text-soft);
      font-size: 14px;
      line-height: 1.75;
  }

  /* =========================================================
     KONUM
     ========================================================= */

  .sa-location {
      padding: 0 0 120px;
      background: var(--white);
  }

  .sa-location__box {
      position: relative;
      overflow: hidden;
      padding: 50px 52px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: radial-gradient( circle at 95% 0%, rgba(183, 158, 214, 0.25), transparent 34% ), var(--surface);
  }

      .sa-location__box::before {
          content: "\f3c5";
          position: absolute;
          right: 55px;
          bottom: -35px;
          color: rgba(23, 6, 61, 0.035);
          font-family: "Font Awesome 6 Free";
          font-size: 190px;
          font-weight: 900;
      }

  .sa-location__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--primary);
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
  }

      .sa-location__eyebrow::before {
          content: "";
          width: 34px;
          height: 2px;
          background: var(--primary);
      }

  .sa-location h2 {
      max-width: 780px;
      margin: 18px 0 0;
      color: var(--primary);
      font-family: var(--font-heading);
      font-size: clamp(35px, 4vw, 54px);
      font-weight: 700;
      letter-spacing: -0.047em;
      line-height: 1.06;
  }

  .sa-location p {
      max-width: 850px;
      margin: 17px 0 0;
      color: var(--text-soft);
      font-size: 16px;
      line-height: 1.78;
  }

  /* =========================================================
     CTA
     ========================================================= */

  .sa-cta {
      position: relative;
      overflow: hidden;
      padding: 115px 0;
      color: var(--white);
      background: radial-gradient( circle at 8% 8%, rgba(183, 158, 214, 0.24), transparent 32% ), linear-gradient( 135deg, var(--primary-dark), var(--primary) 58%, #321068 );
  }

      .sa-cta::before {
          content: "";
          position: absolute;
          top: -190px;
          left: -190px;
          width: 490px;
          height: 490px;
          border: 85px solid rgba(255, 255, 255, 0.03);
          border-radius: 50%;
      }

      .sa-cta::after {
          content: "";
          position: absolute;
          right: -180px;
          bottom: -220px;
          width: 500px;
          height: 500px;
          border-radius: 50%;
          background: rgba(183, 158, 214, 0.12);
      }

  .sa-cta__content {
      position: relative;
      z-index: 2;
      max-width: 930px;
      margin-right: auto;
      margin-left: auto;
      text-align: center;
  }

  .sa-cta__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--accent);
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
  }

      .sa-cta__eyebrow::before,
      .sa-cta__eyebrow::after {
          content: "";
          width: 35px;
          height: 2px;
          background: currentColor;
      }

  .sa-cta h2 {
      margin: 24px 0 0;
      color: var(--white);
      font-family: var(--font-heading);
      font-size: clamp(42px, 5.4vw, 72px);
      font-weight: 650;
      letter-spacing: -0.06em;
      line-height: 1.02;
  }

  .sa-cta p {
      max-width: 770px;
      margin: 24px auto 0;
      color: rgba(255, 255, 255, 0.69);
      font-size: 17px;
      line-height: 1.82;
  }

  .sa-cta__buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 13px;
      margin-top: 34px;
  }

  .sa-cta__whatsapp {
      position: relative;
      min-height: 57px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      padding: 14px 26px;
      border-radius: 999px;
      color: var(--white);
      background: #1ca85c;
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 15px 35px rgba(17, 125, 67, 0.25);
      transition: color 280ms ease, background 280ms ease, box-shadow 280ms ease, transform 280ms ease;
  }

      .sa-cta__whatsapp:hover {
          color: var(--white);
          background: #168f4d;
          box-shadow: 0 20px 42px rgba(17, 125, 67, 0.35);
          transform: translateY(-4px);
      }

  /* =========================================================
     SAĞ SABİT İLETİŞİM BUTONLARI
     ========================================================= */

  .sa-floating-contact {
      position: fixed;
      right: 25px;
      bottom: 25px;
      z-index: 1035;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
  }

  .sa-floating-contact__button {
      position: relative;
      width: 57px;
      height: 57px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 57px;
      color: var(--white);
      font-size: 21px;
      box-shadow: 0 16px 36px rgba(20, 7, 47, 0.23);
      transition: color 280ms ease, background 280ms ease, box-shadow 280ms ease, transform 280ms ease;
  }

  .sa-floating-contact__button .fa-whatsapp{
    font-size: 27px;
  }

      .sa-floating-contact__button::before {
          content: attr(data-tooltip);
          position: absolute;
          top: 50%;
          right: calc(100% + 12px);
          padding: 8px 11px;
          border-radius: 57px;
          color: var(--white);
          background: var(--primary-dark);
          font-family: var(--font-body);
          font-size: 12px;
          font-weight: 700;
          line-height: 1;
          white-space: nowrap;
          opacity: 0;
          visibility: hidden;
          transform: translate(8px, -50%);
          transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
      }

      .sa-floating-contact__button:hover::before {
          opacity: 1;
          visibility: visible;
          transform: translate(0, -50%);
      }

      .sa-floating-contact__button:hover {
          color: var(--white);
          transform: translateY(-4px) scale(1.04);
      }

  .sa-floating-contact__button--phone {
      background: var(--primary);
  }

      .sa-floating-contact__button--phone:hover {
          background: var(--primary-light);
          box-shadow: 0 20px 43px rgba(23, 6, 61, 0.34);
      }

  .sa-floating-contact__button--whatsapp {
      background: #1ca85c;
  }

      .sa-floating-contact__button--whatsapp:hover {
          background: #168f4d;
          box-shadow: 0 20px 43px rgba(18, 141, 73, 0.36);
      }

      .sa-floating-contact__button--whatsapp::after {
          content: "";
          position: absolute;
          inset: -7px;
          z-index: -1;
          border: 1px solid rgba(28, 168, 92, 0.45);
          border-radius: 57px;
          animation: saContactPulse 2.4s ease-out infinite;
      }

  @keyframes saContactPulse {
      0% {
          opacity: 0;
          transform: scale(0.84);
      }

      35% {
          opacity: 0.8;
      }

      100% {
          opacity: 0;
          transform: scale(1.25);
      }
  }

  /* =========================================================
     SCROLL REVEAL
     ========================================================= */

  html.sa-animation-ready .sa-reveal {
      opacity: 0;
      will-change: opacity, transform;
      transition: opacity 850ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 850ms cubic-bezier(0.2, 0.75, 0.25, 1);
  }

      html.sa-animation-ready .sa-reveal[data-sa-reveal="up"] {
          transform: translateY(55px);
      }

      html.sa-animation-ready .sa-reveal[data-sa-reveal="down"] {
          transform: translateY(-45px);
      }

      html.sa-animation-ready .sa-reveal[data-sa-reveal="left"] {
          transform: translateX(-60px);
      }

      html.sa-animation-ready .sa-reveal[data-sa-reveal="right"] {
          transform: translateX(60px);
      }

      html.sa-animation-ready .sa-reveal[data-sa-reveal="zoom"] {
          transform: scale(0.9);
      }

      html.sa-animation-ready .sa-reveal[data-sa-reveal="rotate"] {
          transform: translateY(45px) rotate(-3deg);
      }

      html.sa-animation-ready .sa-reveal.is-visible {
          opacity: 1;
          transform: translate(0, 0) scale(1) rotate(0);
      }

  /* =========================================================
     RESPONSIVE
     ========================================================= */

  @media (max-width: 1199.98px) {
      .sa-section {
          padding: 100px 0;
      }

      .sa-hero,
      .sa-hero .carousel-inner,
      .sa-hero .carousel-item,
      .sa-hero__slide,
      .sa-hero__row {
          min-height: 710px;
      }

      .sa-about__main-image {
          min-height: 590px;
      }

      .sa-schroth__content {
          padding: 58px 48px;
      }

      .sa-process__heading {
          position: static;
      }
  }

  @media (max-width: 991.98px) {
      .sa-section {
          padding: 90px 0;
      }

      .sa-heading__title {
          font-size: clamp(37px, 7vw, 55px);
      }

      .sa-hero,
      .sa-hero .carousel-inner,
      .sa-hero .carousel-item,
      .sa-hero__slide,
      .sa-hero__row {
          min-height: 680px;
      }

      .sa-hero__row {
          padding-top: 80px;
          padding-bottom: 100px;
      }

      .sa-hero__title {
          font-size: clamp(48px, 8vw, 73px);
      }

      .sa-highlights {
          margin-top: -35px;
      }

      .sa-highlight::after {
          display: none;
      }

      .sa-highlight {
          border-bottom: 1px solid var(--border);
      }

      .sa-highlights .col-xl-3:last-child .sa-highlight {
          border-bottom: 0;
      }

      .sa-about__visual {
          max-width: 660px;
      }

      .sa-schroth__content {
          padding: 55px 42px;
      }

      .sa-schroth__image {
          min-height: 520px;
      }

      .sa-location__box {
          padding: 42px 38px;
      }
  }

  @media (max-width: 767.98px) {
      .sa-section {
          padding: 76px 0;
      }

      .sa-heading__eyebrow {
          font-size: 10px;
      }

      .sa-heading__title {
          font-size: 39px;
      }

      .sa-heading__description {
          font-size: 15px;
      }

      .sa-hero,
      .sa-hero .carousel-inner,
      .sa-hero .carousel-item,
      .sa-hero__slide,
      .sa-hero__row {
          min-height: 650px;
      }

      .sa-hero__row {
          padding-top: 60px;
          padding-bottom: 85px;
      }

      .sa-hero__eyebrow {
          font-size: 10px;
      }

      .sa-hero__title {
          font-size: 49px;
      }

      .sa-hero__description {
          font-size: 16px;
      }

      .sa-hero__buttons {
          flex-direction: column;
          align-items: flex-start;
      }

          .sa-hero__buttons .sa-btn {
              width: 100%;
              max-width: 330px;
          }

      .sa-hero .carousel-control-prev,
      .sa-hero .carousel-control-next {
          display: none;
      }

      .sa-highlights {
          margin-top: 0;
          padding-top: 18px;
          background: var(--white);
      }

      .sa-highlights__box {
          border-radius: 22px;
      }

      .sa-about__visual {
          padding: 0 35px 58px 0;
      }

      .sa-about__main-image {
          min-height: 490px;
          border-radius: 28px;
      }

      .sa-about__small-image {
          width: 180px;
          height: 180px;
          border-width: 7px;
          border-radius: 24px;
      }

      .sa-about__badge {
          top: 25px;
          right: 0;
      }

      .sa-service-card__image {
          height: 270px;
      }

      .sa-schroth__content {
          padding: 47px 27px;
      }

      .sa-schroth h2 {
          font-size: 42px;
      }

      .sa-schroth__image {
          min-height: 440px;
      }

      .sa-process-card {
          gap: 13px;
      }

      .sa-process-card__number {
          width: 50px;
          height: 50px;
          flex-basis: 50px;
          border-radius: 16px;
      }

      .sa-process-card__body {
          padding: 22px 20px;
      }

          .sa-process-card__body::before {
              top: 22px;
          }

      .sa-location {
          padding-bottom: 76px;
      }

      .sa-location__box {
          padding: 36px 25px;
          border-radius: 25px;
      }

      .sa-cta {
          padding: 85px 0;
      }

          .sa-cta h2 {
              font-size: 43px;
          }

      .sa-floating-contact {
          right: 15px;
          bottom: 79px;
          gap: 9px;
      }

      .sa-floating-contact__button {
          width: 51px;
          height: 51px;
          border-radius: 16px;
          font-size: 19px;
      }

          .sa-floating-contact__button::before {
              display: none;
          }
  }

  @media (max-width: 575.98px) {
      .sa-section {
          padding: 68px 0;
      }

      .sa-heading__title {
          font-size: 35px;
      }

      .sa-heading--center .sa-heading__eyebrow::after {
          display: none;
      }

      .sa-hero,
      .sa-hero .carousel-inner,
      .sa-hero .carousel-item,
      .sa-hero__slide,
      .sa-hero__row {
          min-height: 620px;
      }

      .sa-hero__title {
          font-size: 41px;
          line-height: 1.02;
      }

      .sa-hero__description {
          margin-top: 21px;
          font-size: 15px;
          line-height: 1.65;
      }

      .sa-hero__features {
          display: none;
      }

      .sa-highlight {
          min-height: 101px;
          padding: 22px 20px;
      }

      .sa-about__visual {
          padding: 0 20px 48px 0;
      }

      .sa-about__main-image {
          min-height: 410px;
      }

      .sa-about__small-image {
          width: 145px;
          height: 145px;
      }

      .sa-about__badge {
          top: 18px;
          max-width: 190px;
          padding: 12px;
      }

      .sa-about__badge-icon {
          width: 38px;
          height: 38px;
      }

      .sa-service-card__image {
          height: 245px;
      }

      .sa-schroth__content {
          padding: 42px 22px;
      }

      .sa-schroth h2 {
          font-size: 36px;
      }

      .sa-schroth__image {
          min-height: 390px;
      }

      .sa-schroth__floating {
          right: 16px;
          bottom: 16px;
          left: 16px;
      }

      .sa-location h2 {
          font-size: 34px;
      }

      .sa-cta h2 {
          font-size: 36px;
      }

      .sa-cta__buttons {
          flex-direction: column;
      }

          .sa-cta__buttons > * {
              width: 100%;
          }
  }

  @media (prefers-reduced-motion: reduce) {
      .sa-reveal,
      .sa-hero__media img,
      .sa-hero__content > *,
      .sa-floating-contact__button--whatsapp::after {
          animation: none !important;
          opacity: 1 !important;
          transform: none !important;
          transition: none !important;
      }
  }

  /* =====================================================
   MASAÜSTÜ DROPDOWN HOVER AÇILMA
   ===================================================== */

@media (min-width: 1200px) {

    .site-nav__item.dropdown:hover > .dropdown-menu,
    .site-nav__item.dropdown:focus-within > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav__item.dropdown:hover > .site-services-menu,
    .site-nav__item.dropdown:focus-within > .site-services-menu {
        transform: translateX(-50%) translateY(0) !important;
    }

    .site-nav__item.dropdown:hover > .site-small-menu,
    .site-nav__item.dropdown:focus-within > .site-small-menu {
        transform: translateX(-50%) translateY(0) !important;
    }

    .site-nav__item.dropdown:hover .site-nav__dropdown-toggle,
    .site-nav__item.dropdown:focus-within .site-nav__dropdown-toggle {
        color: var(--primary);
        transform: rotate(180deg);
    }

    .site-services-menu,
    .site-small-menu {
        visibility: hidden;
        pointer-events: none;
    }

    .site-services-menu.show,
    .site-small-menu.show {
        visibility: visible;
        pointer-events: auto;
    }
}



/* =====================================================
   ANA SAYFA BLOG
   ===================================================== */

   .pb-10{
    padding-bottom: 10px !important;
   }

.sa-blog {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}


.sa-blog__header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.sa-blog-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
}

.sa-blog-card:hover {
    border-color: rgba(23, 6, 61, 0.18);
    transform: translateY(-11px);
}

.sa-blog-card__image {
    position: relative;
    height: 270px;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(183, 158, 214, 0.42),
            transparent 38%
        ),
        var(--primary-soft);
}

.sa-blog-card__image::before {
    content: "\f1ea";
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(23, 6, 61, 0.15);
    font-family: "Font Awesome 6 Free";
    font-size: 62px;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.sa-blog-card__image img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        filter 650ms ease,
        transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.sa-blog-card:hover .sa-blog-card__image img {
    filter: saturate(1.05);
    transform: scale(1.065);
}

.sa-blog-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(13, 2, 38, 0.05) 30%,
            rgba(13, 2, 38, 0.68) 100%
        );
}

.sa-blog-card__category {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.78);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.sa-blog-card__arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    box-shadow: 0 12px 28px rgba(13, 2, 38, 0.15);
    backdrop-filter: blur(10px);
    transition:
        color 280ms ease,
        background 280ms ease,
        transform 280ms ease;
}

.sa-blog-card:hover .sa-blog-card__arrow {
    color: var(--white);
    background: var(--primary);
    transform: rotate(8deg) scale(1.06);
}

.sa-blog-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 305px;
    padding: 28px 27px 29px;
}

.sa-blog-card__date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 650;
}

.sa-blog-card__date i {
    color: var(--primary);
    font-size: 12px;
}

.sa-blog-card__title {
    margin: 0;
    font-size: 25px;
    font-weight: 750;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.sa-blog-card__title a {
    color: var(--primary);
    transition: color 250ms ease;
}

.sa-blog-card__title a:hover,
.sa-blog-card:hover .sa-blog-card__title a {
    color: var(--primary-light);
}

.sa-blog-card__description {
    display: -webkit-box;
    min-height: 76px;
    overflow: hidden;
    margin: 17px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.sa-blog-card__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 10px;
    margin-top: auto;
    padding-top: 23px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    transition:
        color 250ms ease,
        transform 250ms ease;
}

.sa-blog-card__link i {
    font-size: 11px;
    transition: transform 250ms ease;
}

.sa-blog-card__link:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.sa-blog-card__link:hover i,
.sa-blog-card:hover .sa-blog-card__link i {
    transform: translateX(6px);
}

.sa-blog__mobile-button {
    display: none;
    margin-top: 38px;
    text-align: center;
}

@media (max-width: 1199.98px) {
    .sa-blog-card__image {
        height: 250px;
    }

    .sa-blog-card__body {
        min-height: 300px;
    }
}

@media (max-width: 991.98px) {
    .sa-blog__header {
        margin-bottom: 40px;
    }

    .sa-blog__header .col-lg-4 {
        display: none;
    }

    .sa-blog__mobile-button {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .sa-blog-card__image {
        height: 265px;
    }

    .sa-blog-card__body {
        min-height: auto;
        padding: 25px 23px 27px;
    }

    .sa-blog-card__title {
        font-size: 23px;
    }

    .sa-blog-card__description {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .sa-blog__header {
        margin-bottom: 32px;
    }

    .sa-blog-card__image {
        height: 235px;
    }

    .sa-blog-card__category {
        bottom: 14px;
        left: 14px;
    }

    .sa-blog-card__arrow {
        top: 14px;
        right: 14px;
        width: 41px;
        height: 41px;
        border-radius: 13px;
    }

    .sa-blog__mobile-button .sa-btn {
        width: 100%;
    }
}


/* =========================================================
   ORTAK İÇ SAYFA BAŞLIĞI

   Bu sınıflar kurumsal, belgeler, hizmetler, bloglar,
   galeriler, iletişim ve yasal sayfalarda ortak kullanılacaktır.
   ========================================================= */

.sa-inner-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 112px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(183, 158, 214, 0.24),
            transparent 31%
        ),
        radial-gradient(
            circle at 12% 92%,
            rgba(255, 255, 255, 0.07),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary) 62%,
            #321265
        );
}

.sa-inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.55),
            transparent 82%
        );
    -webkit-mask-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.55),
            transparent 82%
        );
}

.sa-inner-hero__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sa-inner-hero__shape--one {
    top: -235px;
    right: -125px;
    width: 520px;
    height: 520px;
    border: 88px solid rgba(255, 255, 255, 0.045);
}

.sa-inner-hero__shape--two {
    bottom: -250px;
    left: 8%;
    width: 440px;
    height: 440px;
    background: rgba(183, 158, 214, 0.1);
    filter: blur(3px);
}

.sa-inner-hero__line {
    position: absolute;
    right: 8%;
    bottom: 0;
    width: 1px;
    height: 72%;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.18)
        );
}

.sa-inner-hero__content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    animation:
        saCorporateFadeUp
        720ms
        ease
        both;
}

.sa-breadcrumb {
    margin-bottom: 25px;
}

.sa-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sa-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.sa-breadcrumb li + li::before {
    content: "/";
    color: rgba(255, 255, 255, 0.24);
}

.sa-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    transition:
        color
        220ms
        ease;
}

.sa-breadcrumb a:hover {
    color: var(--white);
}

.sa-inner-hero__eyebrow,
.sa-corporate-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sa-inner-hero__eyebrow {
    color: var(--accent);
}

.sa-inner-hero__eyebrow::before,
.sa-corporate-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-inner-hero__title {
    margin: 19px 0 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(39px, 4vw, 62px);
    font-weight: 650;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.sa-inner-hero__description {
    max-width: 760px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.78;
}

.sa-inner-hero__aside {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 17px;
    max-width: 390px;
    margin-left: auto;
    padding: 22px 23px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow:
        0 18px 55px
        rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(15px);
    animation:
        saCorporateFadeUp
        720ms
        120ms
        ease
        both;
}

.sa-inner-hero__aside-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: var(--primary);
    background: var(--white);
    font-size: 18px;
}

.sa-inner-hero__aside strong,
.sa-inner-hero__aside small {
    display: block;
}

.sa-inner-hero__aside strong {
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.sa-inner-hero__aside small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.55;
}

/* =========================================================
   KURUMSAL SAYFA TEMELİ
   ========================================================= */

.sa-corporate {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.sa-corporate-eyebrow {
    color: var(--primary);
}

.sa-corporate-heading h2,
.sa-corporate-intro__content h2,
.sa-corporate-article__header h2,
.sa-corporate-values h2,
.sa-corporate-cta h2 {
    font-family: var(--font-heading);
    letter-spacing: -0.055em;
}

.sa-corporate-heading h2 {
    margin: 19px 0 0;
    color: var(--primary);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.04;
}

.sa-corporate-heading--center {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.sa-corporate-heading--center
.sa-corporate-eyebrow {
    justify-content: center;
}

.sa-corporate-heading--center
.sa-corporate-eyebrow::after {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-corporate-heading--center h2,
.sa-corporate-heading--center
.sa-corporate-heading__description {
    margin-right: auto;
    margin-left: auto;
}

.sa-corporate-heading__description {
    max-width: 620px;
    margin: 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================================
   TANITIM
   ========================================================= */

.sa-corporate-intro {
    position: relative;
    padding: 125px 0;
    background: var(--white);
}

.sa-corporate-visual {
    position: relative;
    max-width: 640px;
    min-height: 690px;
    padding: 0 62px 62px 0;
    animation:
        saCorporateFadeRight
        850ms
        100ms
        ease
        both;
}

.sa-corporate-visual::before {
    content: "";
    position: absolute;
    top: 54px;
    right: 12px;
    bottom: 8px;
    left: 52px;
    border: 1px solid rgba(23, 6, 61, 0.1);
    border-radius: 32px;
    transform: rotate(3.5deg);
}

.sa-corporate-visual__main {
    position: relative;
    z-index: 2;
    min-height: 635px;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(183, 158, 214, 0.38),
            transparent 36%
        ),
        var(--primary-soft);
    box-shadow: var(--shadow-lg);
}

.sa-corporate-visual__main::before,
.sa-corporate-visual__small::before {
    content: "\f554";
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(23, 6, 61, 0.14);
    font-family: "Font Awesome 6 Free";
    font-size: 60px;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.sa-corporate-visual__main img,
.sa-corporate-visual__small img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-corporate-visual__main img {
    object-position: center top;
}

.sa-corporate-visual__small {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 4;
    width: 225px;
    height: 225px;
    overflow: hidden;
    border: 9px solid var(--white);
    border-radius: 50%;
    background: var(--primary-soft);
    box-shadow: var(--shadow-md);
}

.sa-corporate-visual__badge {
    position: absolute;
    bottom: 42px;
    left: -35px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 255px;
    padding: 17px 19px;
    border: 1px solid rgba(23, 6, 61, 0.08);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.sa-corporate-visual__badge-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--white);
    background: var(--primary);
    font-size: 16px;
}

.sa-corporate-visual__badge strong,
.sa-corporate-visual__badge small {
    display: block;
}

.sa-corporate-visual__badge strong {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.sa-corporate-visual__badge small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 11px;
}

.sa-corporate-visual__dot {
    position: absolute;
    z-index: 6;
    display: block;
    border-radius: 50%;
    background: var(--accent);
}

.sa-corporate-visual__dot--one {
    top: 30px;
    left: -15px;
    width: 18px;
    height: 18px;
}

.sa-corporate-visual__dot--two {
    top: 72px;
    left: 3px;
    width: 8px;
    height: 8px;
    opacity: 0.65;
}

.sa-corporate-intro__content {
    max-width: 680px;
    padding-left: 20px;
    animation:
        saCorporateFadeLeft
        850ms
        160ms
        ease
        both;
}

.sa-corporate-intro__content h2 {
    margin: 20px 0 0;
    color: var(--primary);
    font-size: clamp(33px, 2.3vw, 31px);
    font-weight: 700;
    line-height: 1.02;
}

.sa-corporate-intro__lead {
    margin: 26px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.82;
}

.sa-corporate-intro__points {
    margin-top: 31px;
}

.sa-corporate-intro__point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.sa-corporate-intro__point:first-child {
    border-top: 1px solid var(--border);
}

.sa-corporate-intro__point > span {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 15px;
    transition:
        color 260ms ease,
        background 260ms ease,
        transform 260ms ease;
}

.sa-corporate-intro__point:hover > span {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-6deg);
}

.sa-corporate-intro__point strong {
    display: block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
}

.sa-corporate-intro__point p {
    margin: 5px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.sa-corporate-intro__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.sa-corporate-button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition:
        color 280ms ease,
        background 280ms ease,
        border-color 280ms ease,
        box-shadow 280ms ease,
        transform 280ms ease;
}

.sa-corporate-button:hover {
    transform: translateY(-3px);
}

.sa-corporate-button i {
    font-size: 11px;
    transition:
        transform
        260ms
        ease;
}

.sa-corporate-button:hover i {
    transform: translateX(4px);
}

.sa-corporate-button--primary {
    color: var(--white);
    background: var(--primary);
    box-shadow:
        0 14px 32px
        rgba(23, 6, 61, 0.22);
}

.sa-corporate-button--primary:hover {
    color: var(--white);
    background: var(--primary-light);
    box-shadow:
        0 19px 40px
        rgba(23, 6, 61, 0.28);
}

.sa-corporate-button--outline {
    color: var(--primary);
    border-color: rgba(23, 6, 61, 0.2);
    background: var(--white);
}

.sa-corporate-button--outline:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
}

.sa-corporate-button--white {
    color: var(--primary);
    background: var(--white);
    box-shadow:
        0 15px 38px
        rgba(0, 0, 0, 0.16);
}

.sa-corporate-button--white:hover {
    color: var(--white);
    background: var(--primary-light);
}

/* =========================================================
   YAKLAŞIM KARTLARI
   ========================================================= */

.sa-corporate-principles {
    position: relative;
    padding: 115px 0 120px;
    background: var(--surface);
}

.sa-principle-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    overflow: hidden;
    padding: 31px 28px 29px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        border-color 320ms ease,
        box-shadow 320ms ease,
        transform 320ms ease;
}

.sa-principle-card::after {
    content: "";
    position: absolute;
    right: -58px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border: 28px solid rgba(23, 6, 61, 0.025);
    border-radius: 50%;
    transition:
        transform
        450ms
        ease;
}

.sa-principle-card:hover {
    border-color: rgba(23, 6, 61, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.sa-principle-card:hover::after {
    transform: scale(1.18);
}

.sa-principle-card__number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: rgba(23, 6, 61, 0.13);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.sa-principle-card__icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 20px;
    transition:
        color 300ms ease,
        background 300ms ease,
        transform 300ms ease;
}

.sa-principle-card:hover
.sa-principle-card__icon {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-7deg);
}

.sa-principle-card h3 {
    margin: 30px 0 0;
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
}

.sa-principle-card p {
    position: relative;
    z-index: 2;
    margin: 16px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.78;
}

/* =========================================================
   DETAYLI HAKKIMDA İÇERİĞİ
   ========================================================= */

.sa-corporate-detail {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    background: var(--white);
}

.sa-corporate-detail__shape {
    position: absolute;
    top: 90px;
    right: -200px;
    width: 470px;
    height: 470px;
    border: 80px solid rgba(23, 6, 61, 0.025);
    border-radius: 50%;
    pointer-events: none;
}

.sa-corporate-side {
    position: sticky;
    top: 110px;
}

.sa-corporate-side__eyebrow {
    display: block;
    margin-bottom: 13px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sa-corporate-side nav {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-corporate-side nav a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 17px;
    border-bottom: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 750;
    transition:
        color 240ms ease,
        background 240ms ease,
        padding 240ms ease;
}

.sa-corporate-side nav a:last-child {
    border-bottom: 0;
}

.sa-corporate-side nav a:hover,
.sa-corporate-side nav a.is-active {
    padding-left: 21px;
    color: var(--primary);
    background: var(--primary-soft);
}

.sa-corporate-side nav a i {
    font-size: 10px;
    transition:
        transform
        240ms
        ease;
}

.sa-corporate-side nav a:hover i {
    transform: translateX(4px);
}

.sa-corporate-side__contact {
    position: relative;
    overflow: hidden;
    margin-top: 22px;
    padding: 27px 24px;
    border-radius: 21px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(183, 158, 214, 0.28),
            transparent 40%
        ),
        var(--primary);
    box-shadow: var(--shadow-md);
}

.sa-corporate-side__contact::after {
    content: "";
    position: absolute;
    right: -68px;
    bottom: -85px;
    width: 170px;
    height: 170px;
    border: 30px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
}

.sa-corporate-side__contact-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--primary);
    background: var(--white);
    font-size: 17px;
}

.sa-corporate-side__contact h3 {
    position: relative;
    z-index: 2;
    margin: 21px 0 0;
    color: var(--white);
    font-size: 20px;
    font-weight: 750;
    line-height: 1.25;
}

.sa-corporate-side__contact p {
    position: relative;
    z-index: 2;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.7;
}

.sa-corporate-side__contact a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 19px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.sa-corporate-side__contact a i {
    font-size: 10px;
    transition:
        transform
        230ms
        ease;
}

.sa-corporate-side__contact a:hover i {
    transform: translateX(5px);
}

.sa-corporate-article {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-corporate-article__header {
    position: relative;
    overflow: hidden;
    padding: 50px 55px 44px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 92% 5%,
            rgba(183, 158, 214, 0.3),
            transparent 33%
        ),
        var(--primary-soft);
}

.sa-corporate-article__header::after {
    content: "SA";
    position: absolute;
    right: 30px;
    bottom: -32px;
    color: rgba(23, 6, 61, 0.045);
    font-family: var(--font-heading);
    font-size: 130px;
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 1;
}

.sa-corporate-article__header > * {
    position: relative;
    z-index: 2;
}

.sa-corporate-article__header h2 {
    max-width: 720px;
    margin: 19px 0 0;
    color: var(--primary);
    font-size: clamp(31px, 4vw, 47px);
    font-weight: 700;
    line-height: 1.05;
}

.sa-corporate-article__header p {
    max-width: 720px;
    margin: 19px 0 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.78;
}

.sa-corporate-article__content {
    padding: 56px 55px 60px;
}

.sa-corporate .corporate-content {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.9;
}

.sa-corporate
.corporate-content > *:first-child {
    margin-top: 0;
}

.sa-corporate
.corporate-content > *:last-child {
    margin-bottom: 0;
}

.sa-corporate .corporate-content p {
    margin: 0 0 22px;
}

.sa-corporate
.corporate-content p.lead {
    position: relative;
    margin-bottom: 34px;
    padding: 24px 25px 24px 28px;
    border-left: 3px solid var(--primary);
    border-radius: 0 17px 17px 0;
    color: var(--primary);
    background: var(--primary-soft);
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.72;
}

.sa-corporate .corporate-content h2 {
    position: relative;
    margin: 48px 0 21px;
    padding-left: 22px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(25px, 3vw, 33px);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.18;
}

.sa-corporate
.corporate-content h2::before {
    content: "";
    position: absolute;
    top: 0.2em;
    bottom: 0.14em;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background: var(--accent);
}

.sa-corporate .corporate-content h3 {
    margin: 34px 0 15px;
    color: var(--primary);
    font-size: 21px;
    font-weight: 750;
    line-height: 1.3;
}

.sa-corporate .corporate-content strong {
    color: var(--primary);
    font-weight: 800;
}

.sa-corporate .corporate-content a {
    color: var(--primary);
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: rgba(23, 6, 61, 0.28);
    text-underline-offset: 4px;
    transition:
        color 220ms ease,
        text-decoration-color 220ms ease;
}

.sa-corporate .corporate-content a:hover {
    color: var(--primary-light);
    text-decoration-color: var(--primary-light);
}

.sa-corporate .corporate-content ul,
.sa-corporate .corporate-content ol {
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.sa-corporate .corporate-content li {
    position: relative;
    margin-top: 12px;
    padding-left: 31px;
}

.sa-corporate
.corporate-content ul li::before {
    content: "\f00c";
    position: absolute;
    top: 1px;
    left: 0;
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--primary);
    background: var(--primary-soft);
    font-family: "Font Awesome 6 Free";
    font-size: 9px;
    font-weight: 900;
}

.sa-corporate .corporate-content ol {
    counter-reset: corporateCounter;
}

.sa-corporate .corporate-content ol li {
    counter-increment: corporateCounter;
}

.sa-corporate
.corporate-content ol li::before {
    content:
        counter(
            corporateCounter,
            decimal-leading-zero
        );
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
}

.sa-corporate
.corporate-content blockquote {
    margin: 32px 0;
    padding: 27px 28px;
    border: 0;
    border-radius: 19px;
    color: var(--white);
    background: var(--primary);
    box-shadow: var(--shadow-sm);
}

.sa-corporate
.corporate-content
blockquote p:last-child {
    margin-bottom: 0;
}

.sa-corporate .corporate-content img {
    height: auto;
    margin: 18px 0 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.sa-corporate .corporate-content table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
}

.sa-corporate .corporate-content th,
.sa-corporate .corporate-content td {
    padding: 14px 15px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.sa-corporate .corporate-content th {
    color: var(--white);
    background: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
}

/* =========================================================
   MİSYON VE VİZYON
   ========================================================= */

.sa-corporate-values {
    position: relative;
    padding: 120px 0;
    background: var(--surface);
}

.sa-value-card {
    position: relative;
    height: 100%;
    min-height: 440px;
    overflow: hidden;
    padding: 43px 41px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.sa-value-card--mission {
    color: var(--white);
    background:
        radial-gradient(
            circle at 95% 5%,
            rgba(183, 158, 214, 0.28),
            transparent 37%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary) 70%,
            #321265
        );
}

.sa-value-card--vision {
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--white);
}

.sa-value-card__watermark {
    position: absolute;
    right: -18px;
    bottom: -78px;
    font-family: var(--font-heading);
    font-size: 280px;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.sa-value-card--mission
.sa-value-card__watermark {
    color: rgba(255, 255, 255, 0.035);
}

.sa-value-card--vision
.sa-value-card__watermark {
    color: rgba(23, 6, 61, 0.035);
}

.sa-value-card__head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sa-value-card__icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
    font-size: 20px;
}

.sa-value-card--mission
.sa-value-card__icon {
    color: var(--primary);
    background: var(--white);
}

.sa-value-card--vision
.sa-value-card__icon {
    color: var(--white);
    background: var(--primary);
}

.sa-value-card__head small,
.sa-value-card__head h3 {
    display: block;
}

.sa-value-card__head small {
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.sa-value-card--mission
.sa-value-card__head small {
    color: var(--accent);
}

.sa-value-card--vision
.sa-value-card__head small {
    color: var(--text-light);
}

.sa-value-card__head h3 {
    margin: 0;
    font-size: 29px;
    font-weight: 750;
}

.sa-value-card--mission
.sa-value-card__head h3 {
    color: var(--white);
}

.sa-value-card--vision
.sa-value-card__head h3 {
    color: var(--primary);
}

.sa-value-card__content {
    position: relative;
    z-index: 2;
    margin-top: 31px;
    font-size: 15px;
    line-height: 1.84;
}

.sa-value-card__content
.corporate-content p {
    margin: 0 0 19px;
}

.sa-value-card__content
.corporate-content p:last-child {
    margin-bottom: 0;
}

.sa-value-card__content
.corporate-content h2,
.sa-value-card__content
.corporate-content h3 {
    margin: 26px 0 13px;
    padding: 0;
    font-size: 20px;
}

.sa-value-card__content
.corporate-content h2::before {
    display: none;
}

.sa-value-card--mission
.sa-value-card__content,
.sa-value-card--mission
.sa-value-card__content
.corporate-content,
.sa-value-card--mission
.sa-value-card__content
.corporate-content p {
    color: rgba(255, 255, 255, 0.68);
}

.sa-value-card--mission
.sa-value-card__content
.corporate-content strong,
.sa-value-card--mission
.sa-value-card__content
.corporate-content h2,
.sa-value-card--mission
.sa-value-card__content
.corporate-content h3 {
    color: var(--white);
}

.sa-value-card--vision
.sa-value-card__content,
.sa-value-card--vision
.sa-value-card__content
.corporate-content,
.sa-value-card--vision
.sa-value-card__content
.corporate-content p {
    color: var(--text-soft);
}

/* =========================================================
   SON ÇAĞRI
   ========================================================= */

.sa-corporate-cta {
    position: relative;
    padding: 105px 0 35px;
    background: var(--white);
}

.sa-corporate-cta__box {
    position: relative;
    overflow: hidden;
    padding: 56px 58px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(
            circle at 92% 12%,
            rgba(183, 158, 214, 0.28),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary) 62%,
            #321265
        );
    box-shadow: var(--shadow-lg);
}

.sa-corporate-cta__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sa-corporate-cta__shape--one {
    top: -130px;
    left: -115px;
    width: 320px;
    height: 320px;
    border: 55px solid rgba(255, 255, 255, 0.035);
}

.sa-corporate-cta__shape--two {
    right: -90px;
    bottom: -160px;
    width: 330px;
    height: 330px;
    background: rgba(255, 255, 255, 0.035);
}

.sa-corporate-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.sa-corporate-cta__eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
}

.sa-corporate-cta h2 {
    max-width: 760px;
    margin: 19px 0 0;
    color: var(--white);
    font-size: clamp(31px, 4vw, 49px);
    font-weight: 650;
    line-height: 1.05;
}

.sa-corporate-cta p {
    max-width: 720px;
    margin: 19px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.75;
}

.sa-corporate-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.sa-corporate-cta__link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition:
        color
        230ms
        ease;
}

.sa-corporate-cta__link:hover {
    color: var(--white);
}

/* =========================================================
   ANİMASYONLAR
   ========================================================= */

@keyframes saCorporateFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes saCorporateFadeLeft {
    from {
        opacity: 0;
        transform: translateX(34px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes saCorporateFadeRight {
    from {
        opacity: 0;
        transform: translateX(-34px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
    .sa-inner-hero {
        padding: 92px 0 98px;
    }

    .sa-corporate-intro,
    .sa-corporate-detail {
        padding: 105px 0;
    }

    .sa-corporate-principles,
    .sa-corporate-values {
        padding: 100px 0;
    }

    .sa-corporate-visual {
        min-height: 620px;
    }

    .sa-corporate-visual__main {
        min-height: 570px;
    }

    .sa-corporate-intro__content {
        padding-left: 0;
    }

    .sa-corporate-article__header,
    .sa-corporate-article__content {
        padding-right: 44px;
        padding-left: 44px;
    }

    .sa-value-card {
        padding: 39px 36px;
    }
}

@media (max-width: 991.98px) {
    .sa-inner-hero__aside {
        margin-right: 0;
        margin-left: 0;
    }

    .sa-corporate-intro {
        padding: 92px 0;
    }

    .sa-corporate-visual {
        max-width: 670px;
        margin-right: auto;
        margin-left: auto;
    }

    .sa-corporate-intro__content {
        max-width: 760px;
    }

    .sa-corporate-side {
        position: static;
    }

    .sa-corporate-side nav {
        display: flex;
        flex-wrap: wrap;
    }

    .sa-corporate-side nav a {
        width: 33.333%;
        border-right: 1px solid var(--border);
        border-bottom: 0;
    }

    .sa-corporate-side nav a:last-child {
        border-right: 0;
    }

    .sa-corporate-side__contact {
        display: none;
    }

    .sa-corporate-cta__actions {
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .sa-inner-hero {
        padding: 76px 0 80px;
    }

    .sa-inner-hero__title {
        font-size: clamp(43px, 13vw, 62px);
    }

    .sa-inner-hero__description {
        font-size: 15px;
    }

    .sa-inner-hero__shape--one {
        top: -180px;
        right: -190px;
        width: 410px;
        height: 410px;
        border-width: 68px;
    }

    .sa-corporate-intro,
    .sa-corporate-detail {
        padding: 78px 0;
    }

    .sa-corporate-principles,
    .sa-corporate-values {
        padding: 76px 0;
    }

    .sa-corporate-visual {
        min-height: 570px;
        padding: 0 38px 48px 0;
    }

    .sa-corporate-visual__main {
        min-height: 520px;
        border-radius: 25px;
    }

    .sa-corporate-visual__small {
        width: 180px;
        height: 180px;
        border-width: 7px;
    }

    .sa-corporate-visual__badge {
        bottom: 28px;
        left: -8px;
        min-width: 235px;
    }

    .sa-corporate-intro__content h2,
    .sa-corporate-heading h2 {
        font-size: clamp(32px, 9vw, 46px);
    }

    .sa-principle-card {
        min-height: 0;
    }

    .sa-corporate-side nav a {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .sa-corporate-side nav a:last-child {
        border-bottom: 0;
    }

    .sa-corporate-article {
        border-radius: 24px;
    }

    .sa-corporate-article__header,
    .sa-corporate-article__content {
        padding-right: 27px;
        padding-left: 27px;
    }

    .sa-corporate-article__header {
        padding-top: 38px;
        padding-bottom: 35px;
    }

    .sa-corporate-article__content {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .sa-corporate .corporate-content {
        font-size: 15px;
        line-height: 1.82;
    }

    .sa-corporate
    .corporate-content p.lead {
        padding: 20px 20px 20px 22px;
        font-size: 17px;
    }

    .sa-corporate
    .corporate-content h2 {
        margin-top: 40px;
        font-size: 25px;
    }

    .sa-corporate
    .corporate-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .sa-value-card {
        min-height: 0;
        padding: 34px 28px;
        border-radius: 25px;
    }

    .sa-corporate-cta {
        padding: 76px 0 20px;
    }

    .sa-corporate-cta__box {
        padding: 40px 28px;
        border-radius: 25px;
    }
}

@media (max-width: 575.98px) {
    .sa-inner-hero {
        padding: 67px 0 72px;
    }

    .sa-breadcrumb {
        margin-bottom: 21px;
    }

    .sa-inner-hero__eyebrow,
    .sa-corporate-eyebrow,
    .sa-corporate-cta__eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .sa-inner-hero__aside {
        padding: 18px;
    }

    .sa-corporate-visual {
        min-height: 475px;
        padding: 0 24px 37px 0;
    }

    .sa-corporate-visual__main {
        min-height: 440px;
    }

    .sa-corporate-visual__small {
        width: 138px;
        height: 138px;
    }

    .sa-corporate-visual__badge {
        right: 50px;
        bottom: 5px;
        left: 0;
        min-width: 0;
        padding: 14px;
    }

    .sa-corporate-visual__badge-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .sa-corporate-intro__lead {
        font-size: 15px;
    }

    .sa-corporate-intro__actions,
    .sa-corporate-button {
        width: 100%;
    }

    .sa-corporate-heading--center
    .sa-corporate-eyebrow::after {
        display: none;
    }

    .sa-corporate-article__header,
    .sa-corporate-article__content {
        padding-right: 21px;
        padding-left: 21px;
    }

    .sa-corporate-article__header::after {
        right: 10px;
        font-size: 95px;
    }

    .sa-value-card__head {
        align-items: flex-start;
    }

    .sa-value-card__icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .sa-value-card__head h3 {
        font-size: 25px;
    }

    .sa-corporate-cta__actions,
    .sa-corporate-cta__actions
    .sa-corporate-button {
        width: 100%;
        align-items: stretch;
    }

    .sa-corporate-cta__link {
        align-self: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sa-inner-hero__content,
    .sa-inner-hero__aside,
    .sa-corporate-visual,
    .sa-corporate-intro__content {
        animation: none !important;
    }
}

/* =========================================================
   BELGELER SAYFASI
   ========================================================= */

.sa-documents {
    position: relative;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
}

.sa-documents-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sa-documents-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-documents-heading h2 {
    max-width: 850px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.3vw, 55px);
    font-weight: 700;
    letter-spacing: -0.057em;
    line-height: 1.04;
}

.sa-documents-heading > p {
    max-width: 820px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.82;
}

/* =========================================================
   TANITIM
   ========================================================= */

.sa-documents-intro {
    position: relative;
    padding: 115px 0;
    background: var(--surface);
}

.sa-documents-summary {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-documents-summary__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
    transition:
        background 260ms ease,
        padding-left 260ms ease;
}

.sa-documents-summary__item:last-child {
    border-bottom: 0;
}

.sa-documents-summary__item:hover {
    padding-left: 29px;
    background: var(--primary-soft);
}

.sa-documents-summary__item > span {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 16px;
    transition:
        color 260ms ease,
        background 260ms ease,
        transform 260ms ease;
}

.sa-documents-summary__item:hover > span {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-7deg);
}

.sa-documents-summary__item strong,
.sa-documents-summary__item small {
    display: block;
}

.sa-documents-summary__item strong {
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.sa-documents-summary__item small {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   BELGE LİSTESİ
   ========================================================= */

.sa-documents-list {
    position: relative;
    overflow: hidden;
    padding: 115px 0 10px;
}

.sa-documents-list__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sa-documents-list__shape--one {
    top: -170px;
    right: -170px;
    width: 430px;
    height: 430px;
    border: 72px solid rgba(23, 6, 61, 0.025);
}

.sa-documents-list__note {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    max-width: 440px;
    margin-left: auto;
    padding: 17px 19px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.75);
}

.sa-documents-list__note > span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 13px;
}

.sa-documents-list__note p {
    margin: 2px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.65;
}

/* =========================================================
   BELGE KARTI
   ========================================================= */

.sa-document-card {
    position: relative;
    height: 100%;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    isolation: isolate;
    transition:
        border-color 320ms ease,
        box-shadow 320ms ease,
        transform 320ms ease;
}

.sa-document-card::before {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -120px;
    z-index: -1;
    width: 250px;
    height: 250px;
    border: 43px solid rgba(183, 158, 214, 0.11);
    border-radius: 50%;
    transition:
        border-color 350ms ease,
        transform 600ms ease;
}

.sa-document-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--accent)
        );
    transform: scaleX(0);
    transform-origin: left center;
    transition:
        transform 320ms ease;
}

.sa-document-card:hover {
    border-color: rgba(23, 6, 61, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.sa-document-card:hover::before {
    border-color: rgba(23, 6, 61, 0.08);
    transform: scale(1.12) rotate(24deg);
}

.sa-document-card:hover::after {
    transform: scaleX(1);
}

.sa-document-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sa-document-card__number {
    color: rgba(23, 6, 61, 0.18);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.sa-document-card__format {
    min-width: 45px;
    min-height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.sa-document-card__icon {
    width: 73px;
    height: 73px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    border-radius: 22px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 27px;
    transition:
        color 300ms ease,
        background 300ms ease,
        transform 300ms ease;
}

.sa-document-card:hover
.sa-document-card__icon {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-7deg) scale(1.04);
}

.sa-document-card__body {
    position: relative;
    z-index: 2;
    flex: 1;
    margin-top: 27px;
}

.sa-document-card__category {
    display: block;
    margin-bottom: 11px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sa-document-card__body h2 {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 750;
    letter-spacing: -0.025em;
    line-height: 1.22;
}

.sa-document-card__body p {
    margin: 17px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

.sa-document-card__footer {
    position: relative;
    z-index: 2;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 27px;
    padding-top: 21px;
    border-top: 1px solid var(--border);
}

.sa-document-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    transition:
        color 250ms ease,
        transform 250ms ease;
}

.sa-document-card__link i {
    font-size: 11px;
    transition:
        transform 250ms ease;
}

.sa-document-card__link:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.sa-document-card__link:hover i {
    transform: translate(3px, -3px);
}

.sa-document-card__badge {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 12px;
}

.sa-document-card__unavailable {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
   BOŞ VE HATA DURUMU
   ========================================================= */

.sa-documents-empty {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    padding: 70px 45px;
    border: 1px dashed rgba(23, 6, 61, 0.2);
    border-radius: var(--radius-lg);
    background: var(--white);
    text-align: center;
}

.sa-documents-empty__icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 29px;
}

.sa-documents-empty h2 {
    margin: 27px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 37px);
    font-weight: 750;
    letter-spacing: -0.035em;
}

.sa-documents-empty p {
    max-width: 570px;
    margin: 15px auto 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.sa-documents-empty--error
.sa-documents-empty__icon {
    color: #a92626;
    background: #fff0f0;
}

/* =========================================================
   BİLGİLENDİRME ALANI
   ========================================================= */

.sa-documents-information {
    position: relative;
    padding: 105px 0 35px;
    background: var(--white);
}

.sa-documents-information__box {
    position: relative;
    overflow: hidden;
    padding: 52px 55px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(183, 158, 214, 0.29),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary) 62%,
            #321265
        );
    box-shadow: var(--shadow-lg);
}

.sa-documents-information__box::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -130px;
    width: 350px;
    height: 350px;
    border: 60px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.sa-documents-information__box::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -210px;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
}

.sa-documents-information__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 23px;
}

.sa-documents-information__icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 21px;
    color: var(--primary);
    background: var(--white);
    font-size: 23px;
}

.sa-documents-information__eyebrow {
    display: block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.sa-documents-information__content h2 {
    max-width: 730px;
    margin: 15px 0 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(29px, 3.5vw, 43px);
    font-weight: 650;
    letter-spacing: -0.047em;
    line-height: 1.08;
}

.sa-documents-information__content p {
    max-width: 720px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.75;
}

.sa-documents-information__actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.sa-documents-button {
    min-height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 25px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    transition:
        color 280ms ease,
        background 280ms ease,
        box-shadow 280ms ease,
        transform 280ms ease;
}

.sa-documents-button i {
    font-size: 11px;
    transition:
        transform 250ms ease;
}

.sa-documents-button:hover {
    transform: translateY(-3px);
}

.sa-documents-button:hover i {
    transform: translateX(4px);
}

.sa-documents-button--white {
    color: var(--primary);
    background: var(--white);
    box-shadow:
        0 15px 38px
        rgba(0, 0, 0, 0.17);
}

.sa-documents-button--white:hover {
    color: var(--white);
    background: var(--primary-light);
}

.sa-documents-information__link {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 5px;
    transition:
        color 230ms ease;
}

.sa-documents-information__link:hover {
    color: var(--white);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
    .sa-documents-intro,
    .sa-documents-list {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .sa-documents-information__box {
        padding-right: 43px;
        padding-left: 43px;
    }
}

@media (max-width: 991.98px) {
    .sa-documents-list__note {
        max-width: none;
        margin-left: 0;
    }

    .sa-documents-information__actions {
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .sa-documents-intro,
    .sa-documents-list {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .sa-documents-heading h2 {
        font-size: clamp(32px, 9vw, 45px);
    }

    .sa-documents-heading > p {
        font-size: 15px;
    }

    .sa-document-card {
        min-height: 390px;
    }

    .sa-documents-empty {
        padding: 55px 27px;
        border-radius: 25px;
    }

    .sa-documents-information {
        padding-top: 78px;
        padding-bottom: 20px;
    }

    .sa-documents-information__box {
        padding: 39px 29px;
        border-radius: 25px;
    }

    .sa-documents-information__content {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .sa-documents-eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .sa-documents-summary__item {
        padding-right: 18px;
        padding-left: 18px;
    }

    .sa-document-card {
        min-height: 0;
        padding: 23px;
    }

    .sa-document-card__icon {
        width: 64px;
        height: 64px;
        font-size: 23px;
    }

    .sa-document-card__body h2 {
        font-size: 21px;
    }

    .sa-documents-information__actions,
    .sa-documents-button {
        width: 100%;
    }

    .sa-documents-information__link {
        align-self: flex-start;
    }
}

/* =========================================================
   HİZMETLER SAYFASI
   ========================================================= */

.sa-services-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
}

.sa-services-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sa-services-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-services-heading h2 {
    max-width: 880px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.3vw, 55px);
    font-weight: 700;
    letter-spacing: -0.057em;
    line-height: 1.04;
}

.sa-services-heading > p {
    max-width: 820px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.82;
}

/* =========================================================
   TANITIM
   ========================================================= */

.sa-services-intro {
    position: relative;
    padding: 115px 0;
    background: var(--white);
}

.sa-services-intro__features {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-services-intro__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 23px 25px;
    border-bottom: 1px solid var(--border);
    transition:
        padding-left 260ms ease,
        background 260ms ease;
}

.sa-services-intro__feature:last-child {
    border-bottom: 0;
}

.sa-services-intro__feature:hover {
    padding-left: 30px;
    background: var(--primary-soft);
}

.sa-services-intro__feature > span {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 16px;
    transition:
        color 260ms ease,
        background 260ms ease,
        transform 260ms ease;
}

.sa-services-intro__feature:hover > span {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-7deg);
}

.sa-services-intro__feature strong,
.sa-services-intro__feature small {
    display: block;
}

.sa-services-intro__feature strong {
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.sa-services-intro__feature small {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.62;
}

/* =========================================================
   HİZMET KATALOĞU
   ========================================================= */

.sa-services-catalog {
    position: relative;
    overflow: hidden;
    padding: 115px 0 120px;
    background: var(--surface);
}

.sa-services-catalog__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sa-services-catalog__shape--one {
    top: -175px;
    right: -170px;
    width: 450px;
    height: 450px;
    border: 75px solid rgba(23, 6, 61, 0.025);
}

.sa-services-catalog__shape--two {
    bottom: -230px;
    left: -180px;
    width: 470px;
    height: 470px;
    background: rgba(183, 158, 214, 0.09);
    filter: blur(4px);
}

.sa-services-catalog__description,
.sa-services-process__description {
    max-width: 540px;
    margin: 0 0 0 auto;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   HİZMET KARTI
   ========================================================= */

.sa-services-card {
    position: relative;
    height: 100%;
    min-height: 530px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        border-color 320ms ease,
        box-shadow 320ms ease,
        transform 320ms ease;
}

.sa-services-card:hover {
    border-color: rgba(23, 6, 61, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.sa-services-card__image {
    position: relative;
    height: 255px;
    flex: 0 0 255px;
    display: block;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(183, 158, 214, 0.35),
            transparent 38%
        ),
        var(--primary-soft);
}

.sa-services-card__image::before {
    content: "\f5a1";
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(23, 6, 61, 0.16);
    font-family: "Font Awesome 6 Free";
    font-size: 54px;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.sa-services-card__image img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform
        750ms
        cubic-bezier(0.2, 0.75, 0.25, 1);
}

.sa-services-card:hover
.sa-services-card__image img {
    transform: scale(1.075);
}

.sa-services-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(13, 2, 38, 0.06) 20%,
            rgba(13, 2, 38, 0.72) 100%
        );
}

.sa-services-card__number {
    position: absolute;
    bottom: 18px;
    left: 19px;
    z-index: 4;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.sa-services-card__image-action {
    position: absolute;
    right: 18px;
    bottom: 17px;
    z-index: 4;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.48);
    font-size: 12px;
    backdrop-filter: blur(12px);
    transition:
        color 260ms ease,
        background 260ms ease,
        border-color 260ms ease,
        transform 260ms ease;
}

.sa-services-card:hover
.sa-services-card__image-action {
    color: var(--primary);
    background: var(--white);
    border-color: var(--white);
    transform: translate(2px, -2px);
}

.sa-services-card__body {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 27px 25px 25px;
}

.sa-services-card__category {
    display: block;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.sa-services-card__body h3 {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 750;
    letter-spacing: -0.027em;
    line-height: 1.2;
}

.sa-services-card__body h3 a {
    color: inherit;
    transition:
        color
        240ms
        ease;
}

.sa-services-card__body h3 a:hover {
    color: var(--primary-light);
}

.sa-services-card__body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 16px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.72;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.sa-services-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 23px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    transition:
        color 250ms ease,
        transform 250ms ease;
}

.sa-services-card__link i {
    font-size: 11px;
    transition:
        transform
        250ms
        ease;
}

.sa-services-card__link:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.sa-services-card__link:hover i {
    transform: translateX(5px);
}

/* =========================================================
   BOŞ VE HATA DURUMU
   ========================================================= */

.sa-services-empty {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    padding: 70px 45px;
    border: 1px dashed rgba(23, 6, 61, 0.2);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.sa-services-empty__icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 29px;
}

.sa-services-empty h2 {
    margin: 27px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 37px);
    font-weight: 750;
    letter-spacing: -0.035em;
}

.sa-services-empty p {
    max-width: 580px;
    margin: 15px auto 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.sa-services-empty--error
.sa-services-empty__icon {
    color: #a92626;
    background: #fff0f0;
}

/* =========================================================
   DEĞERLENDİRME SÜRECİ

   Bu bölüm sayfanın son bölümüdür.
   Arka plan beyaz ve alt boşluk 15px'tir.
   ========================================================= */

.sa-services-process {
    position: relative;
    padding: 105px 0 15px;
    margin-bottom: 0;
    background: var(--white);
}

.sa-services-process-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    padding: 31px 29px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms ease;
}

.sa-services-process-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 165px;
    height: 165px;
    border: 31px solid rgba(183, 158, 214, 0.11);
    border-radius: 50%;
    transition:
        transform
        500ms
        ease;
}

.sa-services-process-card:hover {
    border-color: rgba(23, 6, 61, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.sa-services-process-card:hover::after {
    transform: scale(1.15) rotate(20deg);
}

.sa-services-process-card__number {
    position: absolute;
    top: 25px;
    right: 26px;
    color: rgba(23, 6, 61, 0.14);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 850;
}

.sa-services-process-card__icon {
    width: 61px;
    height: 61px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 19px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 20px;
    transition:
        color 280ms ease,
        background 280ms ease,
        transform 280ms ease;
}

.sa-services-process-card:hover
.sa-services-process-card__icon {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-7deg);
}

.sa-services-process-card h3 {
    position: relative;
    z-index: 2;
    margin: 27px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.sa-services-process-card p {
    position: relative;
    z-index: 2;
    margin: 15px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
    .sa-services-intro,
    .sa-services-catalog {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .sa-services-process {
        padding-top: 95px;
        padding-bottom: 15px;
    }

    .sa-services-card {
        min-height: 510px;
    }

    .sa-services-card__image {
        height: 245px;
        flex-basis: 245px;
    }
}

@media (max-width: 991.98px) {
    .sa-services-catalog__description,
    .sa-services-process__description {
        max-width: none;
        margin-left: 0;
    }

    .sa-services-card {
        min-height: 500px;
    }
}

@media (max-width: 767.98px) {
    .sa-services-intro,
    .sa-services-catalog {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .sa-services-heading h2 {
        font-size: clamp(32px, 9vw, 45px);
    }

    .sa-services-heading > p {
        font-size: 15px;
    }

    .sa-services-process {
        padding-top: 78px;
        padding-bottom: 15px;
    }

    .sa-services-process-card {
        min-height: 0;
    }

    .sa-services-empty {
        padding: 55px 27px;
        border-radius: 25px;
    }
}

@media (max-width: 575.98px) {
    .sa-services-eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .sa-services-intro__feature {
        padding-right: 18px;
        padding-left: 18px;
    }

    .sa-services-card {
        min-height: 0;
    }

    .sa-services-card__image {
        height: 235px;
        flex-basis: 235px;
    }

    .sa-services-card__body {
        padding: 24px 22px;
    }

    .sa-services-card__body h3 {
        font-size: 21px;
    }

    .sa-services-process-card {
        padding: 27px 24px;
    }
}


/* =========================================================
   HİZMET DETAY SAYFASI
   ========================================================= */

.sa-service-detail-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
}

.sa-service-detail-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sa-service-detail-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-service-detail-heading h2 {
    max-width: 880px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 700;
    letter-spacing: -0.057em;
    line-height: 1.04;
}

/* =========================================================
   ÜST ÖZET
   ========================================================= */

.sa-service-detail-overview {
    position: relative;
    padding: 115px 0;
    background: var(--white);
}

.sa-service-detail-visual {
    position: relative;
    max-width: 570px;
    min-height: 650px;
    padding: 0 38px 45px 0;
}

.sa-service-detail-visual::before {
    content: "";
    position: absolute;
    top: 44px;
    right: 2px;
    bottom: 6px;
    left: 46px;
    border: 1px solid rgba(23, 6, 61, 0.12);
    border-radius: 31px;
    transform: rotate(3.5deg);
}

.sa-service-detail-visual__button {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 610px;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 31px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(183, 158, 214, 0.4),
            transparent 38%
        ),
        var(--primary-soft);
    box-shadow: var(--shadow-lg);
    text-align: left;
}

.sa-service-detail-visual__button::before {
    content: "\f5a1";
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(23, 6, 61, 0.17);
    font-family: "Font Awesome 6 Free";
    font-size: 80px;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.sa-service-detail-visual__button img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform
        800ms
        cubic-bezier(0.2, 0.75, 0.25, 1);
}

button.sa-service-detail-visual__button:hover img {
    transform: scale(1.045);
}

.sa-service-detail-visual__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(13, 2, 38, 0.02) 45%,
            rgba(13, 2, 38, 0.58) 100%
        );
    pointer-events: none;
}

.sa-service-detail-visual__zoom {
    position: absolute;
    right: 21px;
    bottom: 21px;
    z-index: 4;
    width: 49px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.55);
    font-size: 15px;
    backdrop-filter: blur(12px);
    transition:
        color 260ms ease,
        background 260ms ease,
        transform 260ms ease;
}

.sa-service-detail-visual__button:hover
.sa-service-detail-visual__zoom {
    color: var(--primary);
    background: var(--white);
    transform: translateY(-3px);
}

.sa-service-detail-visual__badge {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    min-width: 255px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 19px;
    border: 8px solid var(--white);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.sa-service-detail-visual__badge > span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--white);
    background: var(--primary);
    font-size: 16px;
}

.sa-service-detail-visual__badge strong,
.sa-service-detail-visual__badge small {
    display: block;
}

.sa-service-detail-visual__badge strong {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.sa-service-detail-visual__badge small {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 11px;
}

.sa-service-detail-summary {
    max-width: 760px;
    padding-left: 22px;
}

.sa-service-detail-summary h2 {
    margin: 20px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(35px, 4.4vw, 57px);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.sa-service-detail-summary__lead {
    margin: 27px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.82;
}

.sa-service-detail-feature {
    height: 100%;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        border-color 280ms ease,
        box-shadow 280ms ease,
        transform 280ms ease;
}

.sa-service-detail-feature:hover {
    border-color: rgba(23, 6, 61, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.sa-service-detail-feature > span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 14px;
}

.sa-service-detail-feature strong {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.sa-service-detail-summary__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 27px;
}

.sa-service-detail-summary__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--text-soft);
    background: var(--surface);
    font-size: 12px;
    font-weight: 700;
}

.sa-service-detail-summary__meta i {
    color: var(--primary);
    font-size: 10px;
}

.sa-service-detail-summary__link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 29px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    transition:
        color 240ms ease,
        transform 240ms ease;
}

.sa-service-detail-summary__link i {
    font-size: 11px;
    transition: transform 240ms ease;
}

.sa-service-detail-summary__link:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.sa-service-detail-summary__link:hover i {
    transform: translateY(4px);
}

/* =========================================================
   İÇERİK
   ========================================================= */

.sa-service-detail-content-section {
    position: relative;
    overflow: hidden;
    padding: 115px 0;
    background: var(--surface);
}

.sa-service-detail-content-section__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sa-service-detail-content-section__shape--one {
    top: -180px;
    right: -180px;
    width: 460px;
    height: 460px;
    border: 76px solid rgba(23, 6, 61, 0.025);
}

.sa-service-detail-content-section__shape--two {
    bottom: -250px;
    left: -190px;
    width: 490px;
    height: 490px;
    background: rgba(183, 158, 214, 0.08);
    filter: blur(4px);
}

.sa-service-detail-article {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-service-detail-article__header {
    position: relative;
    overflow: hidden;
    padding: 48px 52px 43px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 92% 6%,
            rgba(183, 158, 214, 0.3),
            transparent 35%
        ),
        var(--primary-soft);
}

.sa-service-detail-article__header::after {
    content: "SA";
    position: absolute;
    right: 25px;
    bottom: -35px;
    color: rgba(23, 6, 61, 0.045);
    font-family: var(--font-heading);
    font-size: 135px;
    font-weight: 800;
    letter-spacing: -0.09em;
    line-height: 1;
}

.sa-service-detail-article__header > * {
    position: relative;
    z-index: 2;
}

.sa-service-detail-article__header h2 {
    max-width: 760px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(31px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.sa-service-detail-article__header p {
    max-width: 720px;
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.78;
}

.sa-service-rich-text {
    padding: 54px 52px 59px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.9;
}

.sa-service-rich-text > *:first-child,
.sa-service-rich-text .service-content > *:first-child {
    margin-top: 0;
}

.sa-service-rich-text > *:last-child,
.sa-service-rich-text .service-content > *:last-child {
    margin-bottom: 0;
}

.sa-service-rich-text p {
    margin: 0 0 22px;
}

.sa-service-rich-text p:first-child {
    margin-bottom: 34px;
    padding: 24px 25px 24px 28px;
    border-left: 3px solid var(--primary);
    border-radius: 0 17px 17px 0;
    color: var(--primary);
    background: var(--primary-soft);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.72;
}

.sa-service-rich-text h2 {
    position: relative;
    margin: 48px 0 21px;
    padding-left: 22px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1.18;
}

.sa-service-rich-text h2::before {
    content: "";
    position: absolute;
    top: 0.15em;
    bottom: 0.13em;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background: var(--accent);
}

.sa-service-rich-text h3 {
    margin: 34px 0 15px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 750;
    line-height: 1.3;
}

.sa-service-rich-text h4 {
    margin: 29px 0 13px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 750;
}

.sa-service-rich-text strong {
    color: var(--primary);
    font-weight: 800;
}

.sa-service-rich-text a {
    color: var(--primary);
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: rgba(23, 6, 61, 0.28);
    text-underline-offset: 4px;
}

.sa-service-rich-text ul,
.sa-service-rich-text ol {
    margin: 22px 0 29px;
    padding: 0;
    list-style: none;
}

.sa-service-rich-text li {
    position: relative;
    margin-top: 12px;
    padding-left: 32px;
}

.sa-service-rich-text ul li::before {
    content: "\f00c";
    position: absolute;
    top: 2px;
    left: 0;
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--primary);
    background: var(--primary-soft);
    font-family: "Font Awesome 6 Free";
    font-size: 9px;
    font-weight: 900;
}

.sa-service-rich-text ol {
    counter-reset: serviceContentCounter;
}

.sa-service-rich-text ol li {
    counter-increment: serviceContentCounter;
}

.sa-service-rich-text ol li::before {
    content: counter(serviceContentCounter, decimal-leading-zero);
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 850;
}

.sa-service-rich-text blockquote {
    margin: 32px 0;
    padding: 28px;
    border: 0;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--primary);
    box-shadow: var(--shadow-sm);
}

.sa-service-rich-text blockquote p,
.sa-service-rich-text blockquote strong {
    color: inherit;
}

.sa-service-rich-text img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 20px 0 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.sa-service-rich-text table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    color: var(--text);
    font-size: 14px;
}

.sa-service-rich-text th,
.sa-service-rich-text td {
    padding: 14px 15px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.sa-service-rich-text th {
    color: var(--white);
    background: var(--primary);
}

/* =========================================================
   SAĞ MENÜ
   ========================================================= */

.sa-service-sidebar {
    position: sticky;
    top: 105px;
}

.sa-service-sidebar__category,
.sa-service-sidebar__menu,
.sa-service-sidebar__note {
    border: 1px solid var(--border);
    border-radius: 19px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-service-sidebar__category {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
}

.sa-service-sidebar__category-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--white);
    background: var(--primary);
}

.sa-service-sidebar__category small,
.sa-service-sidebar__category strong {
    display: block;
}

.sa-service-sidebar__category small {
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sa-service-sidebar__category strong {
    margin-top: 4px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
}

.sa-service-sidebar__menu {
    overflow: hidden;
    margin-top: 19px;
}

.sa-service-sidebar__menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 19px 18px;
    color: var(--white);
    background: var(--primary);
}

.sa-service-sidebar__menu-head span {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
}

.sa-service-sidebar__menu-head a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 750;
}

.sa-service-sidebar__menu nav {
    max-height: 490px;
    overflow-y: auto;
    padding: 9px;
}

.sa-service-sidebar__link {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 13px;
    border-radius: 12px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 750;
    transition:
        color 240ms ease,
        background 240ms ease,
        padding-left 240ms ease;
}

.sa-service-sidebar__link + .sa-service-sidebar__link {
    margin-top: 3px;
}

.sa-service-sidebar__link i {
    color: var(--text-light);
    font-size: 9px;
}

.sa-service-sidebar__link:hover,
.sa-service-sidebar__link.is-active {
    padding-left: 17px;
    color: var(--primary);
    background: var(--primary-soft);
}

.sa-service-sidebar__empty {
    margin: 0;
    padding: 16px;
    color: var(--text-soft);
    font-size: 13px;
}

.sa-service-sidebar__note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 19px;
    padding: 18px;
}

.sa-service-sidebar__note > span {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--primary);
    background: var(--primary-soft);
}

.sa-service-sidebar__note p {
    margin: 1px 0 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   GALERİ
   ========================================================= */

.sa-service-gallery {
    padding: 110px 0;
    background: var(--white);
}

.sa-service-gallery__description {
    max-width: 520px;
    margin: 0 0 0 auto;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

.sa-service-gallery__item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: var(--radius-md);
    background: var(--primary-soft);
    box-shadow: var(--shadow-sm);
}

.sa-service-gallery__item img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.sa-service-gallery__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: rgba(13, 2, 38, 0.08);
    transition: background 300ms ease;
}

.sa-service-gallery__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 57px;
    height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.58);
    opacity: 0;
    transform: translate(-50%, -42%);
    transition:
        opacity 280ms ease,
        transform 280ms ease;
}

.sa-service-gallery__item:hover img {
    transform: scale(1.075);
}

.sa-service-gallery__item:hover .sa-service-gallery__overlay {
    background: rgba(13, 2, 38, 0.32);
}

.sa-service-gallery__item:hover .sa-service-gallery__zoom {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.sa-service-gallery-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.sa-service-gallery-modal .modal-header {
    padding: 20px 23px;
    border-bottom: 1px solid var(--border);
}

.sa-service-gallery-modal .modal-title {
    margin-top: 4px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}

.sa-service-gallery-modal__close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 14px;
    color: var(--primary);
    background: var(--primary-soft);
}

.sa-service-gallery-modal .modal-body {
    padding: 20px;
    background: var(--surface);
}

.sa-service-gallery-modal__image {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    background: var(--primary-dark);
}

.sa-service-gallery-modal__image img {
    width: 100%;
    max-height: 74vh;
    object-fit: contain;
}

.sa-service-gallery-modal .modal-body > p {
    margin: 15px 2px 2px;
    color: var(--text-soft);
    font-size: 13px;
    text-align: center;
}

/* =========================================================
   İLGİLİ HİZMETLER
   ========================================================= */

.sa-service-related {
    padding: 105px 0 15px;
    margin-bottom: 0;
    background: var(--white);
}

.sa-service-related__all {
    display: flex;
    justify-content: flex-end;
}

.sa-service-related__all a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.sa-service-related-card {
    height: 100%;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow 300ms ease,
        transform 300ms ease;
}

.sa-service-related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-9px);
}

.sa-service-related-card__image {
    position: relative;
    height: 240px;
    flex: 0 0 240px;
    display: block;
    overflow: hidden;
    background: var(--primary-soft);
}

.sa-service-related-card__image img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.sa-service-related-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(13, 2, 38, 0.6) 100%
        );
}

.sa-service-related-card__action {
    position: absolute;
    right: 17px;
    bottom: 16px;
    z-index: 4;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.55);
}

.sa-service-related-card:hover
.sa-service-related-card__image img {
    transform: scale(1.07);
}

.sa-service-related-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px 24px 24px;
}

.sa-service-related-card__category {
    display: block;
    margin-bottom: 9px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.sa-service-related-card h3 {
    margin: 0;
    color: var(--primary);
    font-size: 22px;
    font-weight: 750;
    line-height: 1.22;
}

.sa-service-related-card h3 a {
    color: inherit;
}

.sa-service-related-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 15px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.72;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.sa-service-related-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 21px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.sa-service-detail-ending {
    width: 100%;
    height: 15px;
    margin: 0;
    background: var(--white);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
    .sa-service-detail-overview,
    .sa-service-detail-content-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .sa-service-detail-summary {
        padding-left: 0;
    }

    .sa-service-gallery {
        padding: 95px 0;
    }

    .sa-service-related {
        padding-top: 95px;
        padding-bottom: 15px;
    }
}

@media (max-width: 991.98px) {
    .sa-service-detail-visual {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
    }

    .sa-service-sidebar {
        position: static;
    }

    .sa-service-sidebar__menu nav {
        max-height: none;
    }

    .sa-service-gallery__description {
        max-width: none;
        margin-left: 0;
    }

    .sa-service-related__all {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .sa-service-detail-overview,
    .sa-service-detail-content-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .sa-service-detail-visual {
        min-height: 550px;
        padding-right: 27px;
        padding-bottom: 40px;
    }

    .sa-service-detail-visual__button {
        min-height: 510px;
        border-radius: 25px;
    }

    .sa-service-detail-summary h2,
    .sa-service-detail-heading h2 {
        font-size: clamp(32px, 9vw, 46px);
    }

    .sa-service-detail-article__header,
    .sa-service-rich-text {
        padding-right: 27px;
        padding-left: 27px;
    }

    .sa-service-rich-text {
        font-size: 15px;
    }

    .sa-service-rich-text table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .sa-service-gallery {
        padding: 76px 0;
    }

    .sa-service-related {
        padding-top: 76px;
        padding-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .sa-service-detail-eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .sa-service-detail-visual {
        min-height: 465px;
        padding-right: 18px;
        padding-bottom: 34px;
    }

    .sa-service-detail-visual__button {
        min-height: 435px;
    }

    .sa-service-detail-visual__badge {
        right: 0;
        left: 0;
        min-width: 0;
        max-width: 285px;
        padding: 13px;
        border-width: 5px;
    }

    .sa-service-detail-feature {
        min-height: 0;
        flex-direction: row;
        align-items: center;
    }

    .sa-service-detail-summary__meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .sa-service-detail-article__header,
    .sa-service-rich-text {
        padding-right: 21px;
        padding-left: 21px;
    }

    .sa-service-sidebar__menu-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .sa-service-related-card {
        min-height: 0;
    }
}


/* =========================================================
   BLOG LİSTE SAYFASI
   ========================================================= */

.sa-blog-list-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
}

.sa-blog-list-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sa-blog-list-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-blog-list-heading h2 {
    max-width: 890px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.3vw, 55px);
    font-weight: 700;
    letter-spacing: -0.057em;
    line-height: 1.04;
}

.sa-blog-list-heading > p {
    max-width: 820px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.82;
}

/* =========================================================
   TANITIM
   ========================================================= */

.sa-blog-list-intro {
    position: relative;
    padding: 110px 0;
    background: var(--white);
}

.sa-blog-list-topics {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-blog-list-topics__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 23px 25px;
    border-bottom: 1px solid var(--border);
    transition:
        padding-left 260ms ease,
        background 260ms ease;
}

.sa-blog-list-topics__item:last-child {
    border-bottom: 0;
}

.sa-blog-list-topics__item:hover {
    padding-left: 30px;
    background: var(--primary-soft);
}

.sa-blog-list-topics__item > span {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 17px;
    transition:
        color 260ms ease,
        background 260ms ease,
        transform 260ms ease;
}

.sa-blog-list-topics__item:hover > span {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-7deg);
}

.sa-blog-list-topics__item strong,
.sa-blog-list-topics__item small {
    display: block;
}

.sa-blog-list-topics__item strong {
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.sa-blog-list-topics__item small {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.62;
}

/* =========================================================
   BLOG KATALOĞU
   ========================================================= */

.sa-blog-list-catalog {
    position: relative;
    overflow: hidden;
    padding: 110px 0 105px;
    background: var(--surface);
}

.sa-blog-list-catalog__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sa-blog-list-catalog__shape--one {
    top: -180px;
    right: -180px;
    width: 460px;
    height: 460px;
    border: 76px solid rgba(23, 6, 61, 0.025);
}

.sa-blog-list-catalog__shape--two {
    bottom: -250px;
    left: -190px;
    width: 490px;
    height: 490px;
    background: rgba(183, 158, 214, 0.08);
    filter: blur(4px);
}

.sa-blog-list-catalog__description {
    max-width: 540px;
    margin: 0 0 0 auto;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   KATEGORİ FİLTRELERİ
   ========================================================= */

.sa-blog-list-filters {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-sm);
}

.sa-blog-list-filter {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 15px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--text-soft);
    background: transparent;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    transition:
        color 250ms ease,
        background 250ms ease,
        border-color 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
}

.sa-blog-list-filter small {
    min-width: 25px;
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 7px;
    border-radius: 999px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 10px;
    font-weight: 900;
    transition:
        color 250ms ease,
        background 250ms ease;
}

.sa-blog-list-filter:hover {
    color: var(--primary);
    border-color: rgba(23, 6, 61, 0.12);
    background: var(--primary-soft);
    transform: translateY(-2px);
}

.sa-blog-list-filter.is-active {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 12px 28px rgba(23, 6, 61, 0.2);
}

.sa-blog-list-filter.is-active small {
    color: var(--primary);
    background: var(--white);
}

/* =========================================================
   SONUÇ BİLGİSİ
   ========================================================= */

.sa-blog-list-result {
    position: relative;
    z-index: 2;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 31px;
    padding: 13px 17px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.sa-blog-list-result > span,
.sa-blog-list-result > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 750;
}

.sa-blog-list-result > span {
    color: var(--text-soft);
}

.sa-blog-list-result > span i {
    color: var(--primary);
}

.sa-blog-list-result > a {
    color: var(--primary);
    transition:
        color 230ms ease,
        transform 230ms ease;
}

.sa-blog-list-result > a:hover {
    color: var(--primary-light);
    transform: translateX(-3px);
}

/* =========================================================
   BLOG KARTI LİSTE DÜZENLEMELERİ
   ========================================================= */

.sa-blog-list-card {
    min-height: 575px;
    box-shadow: var(--shadow-sm);
    transition:
        border-color 320ms ease,
        box-shadow 320ms ease,
        transform 320ms ease;
}

.sa-blog-list-card:hover {
    box-shadow: var(--shadow-md);
}

.sa-blog-list-card .sa-blog-card__body {
    min-height: 315px;
}

.sa-blog-list-card__meta {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 9px 16px;
    margin-bottom: 14px;
}

.sa-blog-list-card__meta .sa-blog-card__date {
    margin-bottom: 0;
}

.sa-blog-list-card__views {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
}

.sa-blog-list-card__views i {
    color: var(--primary);
    font-size: 11px;
}

/* =========================================================
   SAYFALAMA
   ========================================================= */

.sa-blog-pagination {
    position: relative;
    z-index: 2;
    margin-top: 52px;
}

.sa-blog-pagination__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.sa-blog-pagination__number {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--primary);
    background: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 850;
    box-shadow: var(--shadow-sm);
    transition:
        color 240ms ease,
        background 240ms ease,
        border-color 240ms ease,
        transform 240ms ease;
}

.sa-blog-pagination__number:hover,
.sa-blog-pagination__number.is-active {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-3px);
}

.sa-blog-pagination__direction {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--primary);
    background: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    transition:
        color 240ms ease,
        background 240ms ease,
        border-color 240ms ease,
        transform 240ms ease;
}

.sa-blog-pagination__direction:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-3px);
}

.sa-blog-pagination__direction.is-disabled {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.65;
}

.sa-blog-pagination__dots {
    min-width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 800;
}

/* =========================================================
   BOŞ VE HATA DURUMU
   ========================================================= */

.sa-blog-list-empty {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    padding: 70px 45px;
    border: 1px dashed rgba(23, 6, 61, 0.2);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.sa-blog-list-empty__icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 29px;
}

.sa-blog-list-empty h2 {
    margin: 27px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 37px);
    font-weight: 750;
    letter-spacing: -0.035em;
}

.sa-blog-list-empty p {
    max-width: 580px;
    margin: 15px auto 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.sa-blog-list-empty--error
.sa-blog-list-empty__icon {
    color: #a92626;
    background: #fff0f0;
}

/* =========================================================
   SAYFA SONU

   Footer öncesi arka plan beyazdır.
   Alt boşluk tam 15px'tir.
   ========================================================= */

.sa-blog-list-ending {
    width: 100%;
    height: 15px;
    margin: 0;
    background: var(--white);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
    .sa-blog-list-intro {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .sa-blog-list-catalog {
        padding-top: 100px;
        padding-bottom: 95px;
    }

    .sa-blog-list-card {
        min-height: 550px;
    }
}

@media (max-width: 991.98px) {
    .sa-blog-list-catalog__description {
        max-width: none;
        margin-left: 0;
    }

    .sa-blog-list-card {
        min-height: 540px;
    }
}

@media (max-width: 767.98px) {
    .sa-blog-list-intro {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .sa-blog-list-catalog {
        padding-top: 78px;
        padding-bottom: 72px;
    }

    .sa-blog-list-heading h2 {
        font-size: clamp(32px, 9vw, 45px);
    }

    .sa-blog-list-heading > p {
        font-size: 15px;
    }

    .sa-blog-list-result {
        align-items: flex-start;
        flex-direction: column;
    }

    .sa-blog-list-card {
        min-height: 0;
    }

    .sa-blog-list-card .sa-blog-card__body {
        min-height: auto;
    }

    .sa-blog-pagination {
        margin-top: 42px;
    }

    .sa-blog-list-empty {
        padding: 55px 27px;
        border-radius: 25px;
    }
}

@media (max-width: 575.98px) {
    .sa-blog-list-eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .sa-blog-list-topics__item {
        padding-right: 18px;
        padding-left: 18px;
    }

    .sa-blog-list-filters {
        align-items: stretch;
        flex-direction: column;
        padding: 11px;
    }

    .sa-blog-list-filter {
        width: 100%;
        justify-content: space-between;
        padding-right: 12px;
        padding-left: 15px;
    }

    .sa-blog-list-card__meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .sa-blog-pagination__list {
        gap: 6px;
    }

    .sa-blog-pagination__direction {
        width: 45px;
        padding-right: 0;
        padding-left: 0;
    }

    .sa-blog-pagination__direction span {
        display: none;
    }

    .sa-blog-pagination__number {
        width: 42px;
        height: 42px;
    }
}

/* =========================================================
   BLOG DETAY SAYFASI
   ========================================================= */

.sa-blog-detail-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
}

.sa-blog-detail-page .sa-inner-hero__title {
    max-width: 1050px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
}

.sa-blog-detail-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sa-blog-detail-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-blog-detail-heading h2 {
    max-width: 880px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 700;
    letter-spacing: -0.057em;
    line-height: 1.04;
}

/* =========================================================
   ANA GÖRSEL VE ÖZET
   ========================================================= */

.sa-blog-detail-overview {
    position: relative;
    padding: 110px 0;
    background: var(--white);
}

.sa-blog-detail-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(183, 158, 214, 0.4),
            transparent 38%
        ),
        var(--primary-soft);
    box-shadow: var(--shadow-lg);
}

.sa-blog-detail-cover::before {
    content: "\f02d";
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(23, 6, 61, 0.15);
    font-family: "Font Awesome 6 Free";
    font-size: 78px;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.sa-blog-detail-cover img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform
        800ms
        cubic-bezier(0.2, 0.75, 0.25, 1);
}

.sa-blog-detail-cover:hover img {
    transform: scale(1.035);
}

.sa-blog-detail-cover__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(13, 2, 38, 0.02) 40%,
            rgba(13, 2, 38, 0.68) 100%
        );
}

.sa-blog-detail-cover__category {
    position: absolute;
    bottom: 23px;
    left: 24px;
    z-index: 4;
    min-height: 37px;
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.72);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.sa-blog-detail-cover figcaption {
    position: absolute;
    right: 24px;
    bottom: 26px;
    z-index: 4;
    max-width: 55%;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.4;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sa-blog-detail-summary {
    max-width: 630px;
    padding-left: 18px;
}

.sa-blog-detail-summary h2 {
    margin: 20px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.058em;
    line-height: 1.03;
}

.sa-blog-detail-summary > p {
    margin: 25px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.82;
}

.sa-blog-detail-summary__items {
    overflow: hidden;
    margin-top: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-blog-detail-summary__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px 21px;
    border-bottom: 1px solid var(--border);
    transition:
        padding-left 260ms ease,
        background 260ms ease;
}

.sa-blog-detail-summary__item:last-child {
    border-bottom: 0;
}

.sa-blog-detail-summary__item:hover {
    padding-left: 26px;
    background: var(--primary-soft);
}

.sa-blog-detail-summary__item > span {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 14px;
    transition:
        color 260ms ease,
        background 260ms ease,
        transform 260ms ease;
}

.sa-blog-detail-summary__item:hover > span {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-6deg);
}

.sa-blog-detail-summary__item small,
.sa-blog-detail-summary__item strong,
.sa-blog-detail-summary__item time {
    display: block;
}

.sa-blog-detail-summary__item small {
    margin-bottom: 3px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sa-blog-detail-summary__item strong,
.sa-blog-detail-summary__item time {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
}

.sa-blog-detail-summary__link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 27px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    transition:
        color 240ms ease,
        transform 240ms ease;
}

.sa-blog-detail-summary__link i {
    font-size: 11px;
    transition: transform 240ms ease;
}

.sa-blog-detail-summary__link:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.sa-blog-detail-summary__link:hover i {
    transform: translateY(4px);
}

/* =========================================================
   BLOG İÇERİĞİ
   ========================================================= */

.sa-blog-detail-content-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: var(--surface);
}

.sa-blog-detail-content-section__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sa-blog-detail-content-section__shape--one {
    top: -190px;
    right: -185px;
    width: 470px;
    height: 470px;
    border: 78px solid rgba(23, 6, 61, 0.025);
}

.sa-blog-detail-content-section__shape--two {
    bottom: -260px;
    left: -190px;
    width: 500px;
    height: 500px;
    background: rgba(183, 158, 214, 0.08);
    filter: blur(4px);
}

.sa-blog-detail-article {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-blog-detail-article__header {
    position: relative;
    overflow: hidden;
    padding: 49px 52px 43px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 93% 5%,
            rgba(183, 158, 214, 0.3),
            transparent 34%
        ),
        var(--primary-soft);
}

.sa-blog-detail-article__header::after {
    content: "BLOG";
    position: absolute;
    right: 20px;
    bottom: -30px;
    color: rgba(23, 6, 61, 0.04);
    font-family: var(--font-heading);
    font-size: 105px;
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 1;
}

.sa-blog-detail-article__header > * {
    position: relative;
    z-index: 2;
}

.sa-blog-detail-article__header h2 {
    max-width: 760px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(31px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.06;
}

.sa-blog-detail-article__header > p {
    max-width: 740px;
    margin: 20px 0 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}

.sa-blog-detail-article__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 25px;
}

.sa-blog-detail-article__meta span {
    min-height: 35px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(23, 6, 61, 0.08);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
}

.sa-blog-detail-article__meta i {
    color: var(--primary);
    font-size: 10px;
}

/* =========================================================
   SQL'DEN GELEN BLOG HTML İÇERİĞİ
   ========================================================= */

.sa-blog-detail-rich-text {
    padding: 55px 52px 60px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.9;
}

.sa-blog-detail-rich-text > *:first-child {
    margin-top: 0;
}

.sa-blog-detail-rich-text > *:last-child {
    margin-bottom: 0;
}

.sa-blog-detail-rich-text p {
    margin: 0 0 22px;
}

.sa-blog-detail-rich-text h2 {
    position: relative;
    margin: 48px 0 21px;
    padding-left: 22px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 35px);
    font-weight: 750;
    letter-spacing: -0.04em;
    line-height: 1.18;
}

.sa-blog-detail-rich-text h2::before {
    content: "";
    position: absolute;
    top: 0.15em;
    bottom: 0.13em;
    left: 0;
    width: 4px;
    border-radius: 999px;
    background: var(--accent);
}

.sa-blog-detail-rich-text h3 {
    margin: 35px 0 16px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 750;
    line-height: 1.3;
}

.sa-blog-detail-rich-text h4 {
    margin: 29px 0 14px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 750;
}

.sa-blog-detail-rich-text strong {
    color: var(--primary);
    font-weight: 800;
}

.sa-blog-detail-rich-text p > strong:only-child {
    display: block;
    margin-top: 38px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 750;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.sa-blog-detail-rich-text a {
    color: var(--primary);
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: rgba(23, 6, 61, 0.3);
    text-underline-offset: 4px;
    transition:
        color 220ms ease,
        text-decoration-color 220ms ease;
}

.sa-blog-detail-rich-text a:hover {
    color: var(--primary-light);
    text-decoration-color: var(--primary-light);
}

.sa-blog-detail-rich-text ul,
.sa-blog-detail-rich-text ol {
    margin: 23px 0 29px;
    padding: 0;
    list-style: none;
}

.sa-blog-detail-rich-text li {
    position: relative;
    margin-top: 12px;
    padding-left: 32px;
}

.sa-blog-detail-rich-text ul li::before {
    content: "\f00c";
    position: absolute;
    top: 2px;
    left: 0;
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: var(--primary);
    background: var(--primary-soft);
    font-family: "Font Awesome 6 Free";
    font-size: 9px;
    font-weight: 900;
}

.sa-blog-detail-rich-text ol {
    counter-reset: blogContentCounter;
}

.sa-blog-detail-rich-text ol li {
    counter-increment: blogContentCounter;
}

.sa-blog-detail-rich-text ol li::before {
    content:
        counter(
            blogContentCounter,
            decimal-leading-zero
        );
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 850;
}

.sa-blog-detail-rich-text blockquote {
    margin: 33px 0;
    padding: 28px 29px;
    border: 0;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--primary);
    box-shadow: var(--shadow-sm);
}

.sa-blog-detail-rich-text blockquote p,
.sa-blog-detail-rich-text blockquote strong {
    color: inherit;
}

.sa-blog-detail-rich-text img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 20px 0 29px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.sa-blog-detail-rich-text table {
    width: 100%;
    margin: 29px 0;
    border-collapse: collapse;
    color: var(--text);
    font-size: 14px;
}

.sa-blog-detail-rich-text th,
.sa-blog-detail-rich-text td {
    padding: 14px 15px;
    border: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.sa-blog-detail-rich-text th {
    color: var(--white);
    background: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
}

.sa-blog-detail-article__footer {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 52px 52px;
    padding: 19px 21px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--surface);
}

.sa-blog-detail-article__footer > span {
    width: 37px;
    height: 37px;
    flex: 0 0 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 13px;
}

.sa-blog-detail-article__footer p {
    margin: 2px 0 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.7;
}

/* =========================================================
   SAĞ MENÜ
   ========================================================= */

.sa-blog-detail-sidebar {
    position: sticky;
    top: 105px;
}

.sa-blog-detail-author,
.sa-blog-detail-info,
.sa-blog-detail-categories,
.sa-blog-detail-back {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-blog-detail-author {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 23px;
}

.sa-blog-detail-author__icon {
    width: 53px;
    height: 53px;
    flex: 0 0 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: var(--white);
    background: var(--primary);
    font-size: 18px;
}

.sa-blog-detail-author small,
.sa-blog-detail-author strong {
    display: block;
}

.sa-blog-detail-author small {
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sa-blog-detail-author strong {
    margin-top: 4px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.sa-blog-detail-author p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.65;
}

.sa-blog-detail-author a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 13px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.sa-blog-detail-author a i {
    font-size: 9px;
    transition: transform 230ms ease;
}

.sa-blog-detail-author a:hover i {
    transform: translateX(4px);
}

.sa-blog-detail-info {
    overflow: hidden;
    margin-top: 19px;
}

.sa-blog-detail-info__head,
.sa-blog-detail-categories__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 19px;
    color: var(--white);
    background: var(--primary);
}

.sa-blog-detail-info__head span,
.sa-blog-detail-categories__head span {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
}

.sa-blog-detail-info__head i {
    color: var(--accent);
}

.sa-blog-detail-info dl {
    margin: 0;
    padding: 7px 18px;
}

.sa-blog-detail-info dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.sa-blog-detail-info dl > div:last-child {
    border-bottom: 0;
}

.sa-blog-detail-info dt {
    color: var(--text-light);
    font-size: 11px;
    font-weight: 750;
}

.sa-blog-detail-info dd {
    margin: 0;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    text-align: right;
}

.sa-blog-detail-info dd a {
    color: inherit;
}

.sa-blog-detail-categories {
    overflow: hidden;
    margin-top: 19px;
}

.sa-blog-detail-categories__head a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 750;
}

.sa-blog-detail-categories nav {
    padding: 9px;
}

.sa-blog-detail-categories__link {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    padding: 11px 13px;
    border-radius: 12px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 750;
    transition:
        color 240ms ease,
        background 240ms ease,
        padding-left 240ms ease;
}

.sa-blog-detail-categories__link +
.sa-blog-detail-categories__link {
    margin-top: 3px;
}

.sa-blog-detail-categories__link:hover,
.sa-blog-detail-categories__link.is-active {
    padding-left: 17px;
    color: var(--primary);
    background: var(--primary-soft);
}

.sa-blog-detail-categories__link small {
    min-width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 7px;
    border-radius: 999px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 10px;
    font-weight: 850;
}

.sa-blog-detail-categories__link.is-active small {
    color: var(--white);
    background: var(--primary);
}

.sa-blog-detail-categories__empty {
    margin: 0;
    padding: 16px;
    color: var(--text-soft);
    font-size: 13px;
}

.sa-blog-detail-back {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 19px;
    padding: 18px;
    transition:
        border-color 260ms ease,
        box-shadow 260ms ease,
        transform 260ms ease;
}

.sa-blog-detail-back:hover {
    border-color: rgba(23, 6, 61, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.sa-blog-detail-back > span {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 12px;
}

.sa-blog-detail-back small,
.sa-blog-detail-back strong {
    display: block;
}

.sa-blog-detail-back small {
    color: var(--text-light);
    font-size: 10px;
    font-weight: 750;
}

.sa-blog-detail-back strong {
    margin-top: 3px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

/* =========================================================
   İLGİLİ YAZILAR VE SAYFA SONU
   ========================================================= */

.sa-blog-detail-related {
    padding: 105px 0 15px;
    margin-bottom: 0;
    background: var(--white);
}

.sa-blog-detail-related__all {
    display: flex;
    justify-content: flex-end;
}

.sa-blog-detail-related__all a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
}

.sa-blog-detail-related__all i {
    font-size: 10px;
    transition: transform 240ms ease;
}

.sa-blog-detail-related__all a:hover i {
    transform: translateX(5px);
}

.sa-blog-detail-related-card {
    min-height: 560px;
}

.sa-blog-detail-ending {
    width: 100%;
    height: 15px;
    margin: 0;
    background: var(--white);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
    .sa-blog-detail-overview,
    .sa-blog-detail-content-section {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .sa-blog-detail-summary {
        padding-left: 0;
    }

    .sa-blog-detail-related {
        padding-top: 95px;
        padding-bottom: 15px;
    }
}

@media (max-width: 991.98px) {
    .sa-blog-detail-cover {
        max-width: 850px;
        margin-right: auto;
        margin-left: auto;
    }

    .sa-blog-detail-sidebar {
        position: static;
    }

    .sa-blog-detail-related__all {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .sa-blog-detail-page .sa-inner-hero__title {
        font-size: clamp(36px, 10vw, 52px);
    }

    .sa-blog-detail-overview,
    .sa-blog-detail-content-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .sa-blog-detail-cover {
        aspect-ratio: 4 / 3;
        border-radius: 25px;
    }

    .sa-blog-detail-cover figcaption {
        display: none;
    }

    .sa-blog-detail-summary h2,
    .sa-blog-detail-heading h2 {
        font-size: clamp(32px, 9vw, 45px);
    }

    .sa-blog-detail-article {
        border-radius: 25px;
    }

    .sa-blog-detail-article__header,
    .sa-blog-detail-rich-text {
        padding-right: 27px;
        padding-left: 27px;
    }

    .sa-blog-detail-rich-text {
        font-size: 15px;
        line-height: 1.84;
    }

    .sa-blog-detail-rich-text table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .sa-blog-detail-article__footer {
        margin-right: 27px;
        margin-bottom: 38px;
        margin-left: 27px;
    }

    .sa-blog-detail-related {
        padding-top: 76px;
        padding-bottom: 15px;
    }

    .sa-blog-detail-related-card {
        min-height: 0;
    }
}

@media (max-width: 575.98px) {
    .sa-blog-detail-eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .sa-blog-detail-cover {
        aspect-ratio: 1 / 1;
    }

    .sa-blog-detail-cover__category {
        bottom: 16px;
        left: 16px;
    }

    .sa-blog-detail-summary > p {
        font-size: 15px;
    }

    .sa-blog-detail-article__header,
    .sa-blog-detail-rich-text {
        padding-right: 21px;
        padding-left: 21px;
    }

    .sa-blog-detail-article__header::after {
        right: 8px;
        font-size: 75px;
    }

    .sa-blog-detail-article__meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .sa-blog-detail-article__footer {
        margin-right: 21px;
        margin-left: 21px;
    }

    .sa-blog-detail-info dl > div {
        align-items: flex-start;
    }

    .sa-blog-detail-info dd {
        max-width: 60%;
    }
}


/* =========================================================
   FOTO GALERİ SAYFASI
   ========================================================= */

.sa-photo-gallery-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
}

.sa-photo-gallery-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sa-photo-gallery-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-photo-gallery-heading h2 {
    max-width: 890px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.3vw, 55px);
    font-weight: 700;
    letter-spacing: -0.057em;
    line-height: 1.04;
}

.sa-photo-gallery-heading > p {
    max-width: 820px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.82;
}

/* =========================================================
   TANITIM
   ========================================================= */

.sa-photo-gallery-intro {
    position: relative;
    padding: 110px 0;
    background: var(--white);
}

.sa-photo-gallery-features {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-photo-gallery-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 23px 25px;
    border-bottom: 1px solid var(--border);
    transition:
        padding-left 260ms ease,
        background 260ms ease;
}

.sa-photo-gallery-feature:last-child {
    border-bottom: 0;
}

.sa-photo-gallery-feature:hover {
    padding-left: 30px;
    background: var(--primary-soft);
}

.sa-photo-gallery-feature > span {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 16px;
    transition:
        color 260ms ease,
        background 260ms ease,
        transform 260ms ease;
}

.sa-photo-gallery-feature:hover > span {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-7deg);
}

.sa-photo-gallery-feature strong,
.sa-photo-gallery-feature small {
    display: block;
}

.sa-photo-gallery-feature strong {
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.sa-photo-gallery-feature small {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.62;
}

/* =========================================================
   GALERİ KATALOĞU
   ========================================================= */

.sa-photo-gallery-catalog {
    position: relative;
    overflow: hidden;
    padding: 110px 0 105px;
    background: var(--surface);
}

.sa-photo-gallery-catalog__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sa-photo-gallery-catalog__shape--one {
    top: -180px;
    right: -180px;
    width: 460px;
    height: 460px;
    border: 76px solid rgba(23, 6, 61, 0.025);
}

.sa-photo-gallery-catalog__shape--two {
    bottom: -260px;
    left: -190px;
    width: 500px;
    height: 500px;
    background: rgba(183, 158, 214, 0.08);
    filter: blur(4px);
}

.sa-photo-gallery-catalog__description {
    max-width: 540px;
    margin: 0 0 0 auto;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   GALERİ KARTI
   ========================================================= */

.sa-photo-gallery-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--white);
    background: var(--primary-soft);
    box-shadow: var(--shadow-sm);
    text-align: left;
    cursor: pointer;
    isolation: isolate;
    transition:
        border-color 320ms ease,
        box-shadow 320ms ease,
        transform 320ms ease;
}

.sa-photo-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    border: 2px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    transition:
        border-color 300ms ease,
        inset 300ms ease;
}

.sa-photo-gallery-card:hover {
    border-color: rgba(23, 6, 61, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.sa-photo-gallery-card:hover::after {
    inset: 10px;
    border-color: rgba(255, 255, 255, 0.38);
}

.sa-photo-gallery-card:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.sa-photo-gallery-card__media {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
}

.sa-photo-gallery-card__media img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform
        750ms
        cubic-bezier(0.2, 0.75, 0.25, 1);
}

.sa-photo-gallery-card:hover
.sa-photo-gallery-card__media img {
    transform: scale(1.075);
}

.sa-photo-gallery-card__fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(23, 6, 61, 0.18);
    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(183, 158, 214, 0.4),
            transparent 42%
        ),
        var(--primary-soft);
    font-size: 56px;
}

.sa-photo-gallery-card__media.is-missing img {
    display: none;
}

.sa-photo-gallery-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(13, 2, 38, 0.02) 35%,
            rgba(13, 2, 38, 0.76) 100%
        );
    transition:
        background 320ms ease;
}

.sa-photo-gallery-card:hover
.sa-photo-gallery-card__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(13, 2, 38, 0.08) 20%,
            rgba(13, 2, 38, 0.84) 100%
        );
}

.sa-photo-gallery-card__number {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    min-width: 44px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.58);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    backdrop-filter: blur(11px);
}

.sa-photo-gallery-card__action {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.62);
    font-size: 18px;
    opacity: 0;
    backdrop-filter: blur(12px);
    transform:
        translate(-50%, -42%)
        scale(0.88);
    transition:
        opacity 300ms ease,
        transform 300ms ease,
        color 300ms ease,
        background 300ms ease;
}

.sa-photo-gallery-card:hover
.sa-photo-gallery-card__action {
    color: var(--primary);
    background: var(--white);
    opacity: 1;
    transform:
        translate(-50%, -50%)
        scale(1);
}

.sa-photo-gallery-card__caption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

/* =========================================================
   BOŞ VE HATA DURUMU
   ========================================================= */

.sa-photo-gallery-empty {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    padding: 70px 45px;
    border: 1px dashed rgba(23, 6, 61, 0.2);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.sa-photo-gallery-empty__icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 29px;
}

.sa-photo-gallery-empty h2 {
    margin: 27px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 37px);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.sa-photo-gallery-empty p {
    max-width: 580px;
    margin: 15px auto 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

/* =========================================================
   MODAL
   ========================================================= */

.sa-photo-gallery-modal {
    --bs-modal-width: 1180px;
}

.sa-photo-gallery-modal .modal-dialog {
    max-width: min(
        1180px,
        calc(100vw - 32px)
    );
}

.sa-photo-gallery-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 27px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.sa-photo-gallery-modal .modal-header {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.sa-photo-gallery-modal__heading > span {
    display: block;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sa-photo-gallery-modal .modal-title {
    margin-top: 4px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
}

.sa-photo-gallery-modal__close {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 15px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 16px;
    transition:
        color 240ms ease,
        background 240ms ease,
        transform 240ms ease;
}

.sa-photo-gallery-modal__close:hover {
    color: var(--white);
    background: var(--primary);
    transform: rotate(7deg);
}

.sa-photo-gallery-modal .modal-body {
    padding: 20px;
    background: var(--surface);
}

.sa-photo-gallery-modal__stage {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(183, 158, 214, 0.17),
            transparent 40%
        ),
        var(--primary-dark);
}

.sa-photo-gallery-modal__stage::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--white);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: saPhotoGallerySpin 800ms linear infinite;
}

.sa-photo-gallery-modal__stage.is-loading::after {
    opacity: 1;
}

.sa-photo-gallery-modal__stage img {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    opacity: 1;
    transition:
        opacity 220ms ease,
        transform 260ms ease;
}

.sa-photo-gallery-modal__stage.is-loading img {
    opacity: 0.2;
}

.sa-photo-gallery-modal__error {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 65px;
    transform: translate(-50%, -50%);
}

.sa-photo-gallery-modal__stage.is-error
.sa-photo-gallery-modal__error {
    display: inline-flex;
}

.sa-photo-gallery-modal__navigation {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 17px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.68);
    font-size: 14px;
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition:
        color 240ms ease,
        background 240ms ease,
        border-color 240ms ease,
        transform 240ms ease;
}

.sa-photo-gallery-modal__navigation:hover {
    color: var(--primary);
    border-color: var(--white);
    background: var(--white);
}

.sa-photo-gallery-modal__navigation--previous {
    left: 18px;
}

.sa-photo-gallery-modal__navigation--previous:hover {
    transform:
        translate(-3px, -50%);
}

.sa-photo-gallery-modal__navigation--next {
    right: 18px;
}

.sa-photo-gallery-modal__navigation--next:hover {
    transform:
        translate(3px, -50%);
}

.sa-photo-gallery-modal.has-single-image
.sa-photo-gallery-modal__navigation {
    display: none;
}

.sa-photo-gallery-modal__footer {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 4px 0;
}

.sa-photo-gallery-modal__footer p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.55;
}

.sa-photo-gallery-modal__counter {
    min-width: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--primary);
    background: var(--primary-soft);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 850;
}

.sa-photo-gallery-modal__counter small {
    color: var(--text-light);
}

@keyframes saPhotoGallerySpin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   SAYFA SONU
   ========================================================= */

.sa-photo-gallery-ending {
    width: 100%;
    height: 15px;
    margin: 0;
    background: var(--white);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
    .sa-photo-gallery-intro {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .sa-photo-gallery-catalog {
        padding-top: 100px;
        padding-bottom: 95px;
    }

    .sa-photo-gallery-modal__stage {
        min-height: 490px;
    }
}

@media (max-width: 991.98px) {
    .sa-photo-gallery-catalog__description {
        max-width: none;
        margin-left: 0;
    }

    .sa-photo-gallery-modal__stage {
        min-height: 440px;
    }
}

@media (max-width: 767.98px) {
    .sa-photo-gallery-intro {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .sa-photo-gallery-catalog {
        padding-top: 78px;
        padding-bottom: 72px;
    }

    .sa-photo-gallery-heading h2 {
        font-size: clamp(32px, 9vw, 45px);
    }

    .sa-photo-gallery-heading > p {
        font-size: 15px;
    }

    .sa-photo-gallery-empty {
        padding: 55px 27px;
        border-radius: 25px;
    }

    .sa-photo-gallery-modal .modal-dialog {
        max-width: calc(100vw - 20px);
        margin-right: auto;
        margin-left: auto;
    }

    .sa-photo-gallery-modal .modal-content {
        border-radius: 22px;
    }

    .sa-photo-gallery-modal .modal-body {
        padding: 12px;
    }

    .sa-photo-gallery-modal__stage {
        min-height: 390px;
        border-radius: 16px;
    }

    .sa-photo-gallery-modal__navigation {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .sa-photo-gallery-modal__navigation--previous {
        left: 11px;
    }

    .sa-photo-gallery-modal__navigation--next {
        right: 11px;
    }
}

@media (max-width: 575.98px) {
    .sa-photo-gallery-eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .sa-photo-gallery-feature {
        padding-right: 18px;
        padding-left: 18px;
    }

    .sa-photo-gallery-card__action {
        width: 53px;
        height: 53px;
        border-radius: 17px;
        opacity: 1;
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    .sa-photo-gallery-modal .modal-header {
        min-height: 74px;
        padding: 15px;
    }

    .sa-photo-gallery-modal__stage {
        min-height: 330px;
    }

    .sa-photo-gallery-modal__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .sa-photo-gallery-modal__counter {
        align-self: flex-end;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sa-photo-gallery-card,
    .sa-photo-gallery-card::after,
    .sa-photo-gallery-card__media img,
    .sa-photo-gallery-card__action,
    .sa-photo-gallery-modal__navigation,
    .sa-photo-gallery-modal__close {
        transition: none;
    }

    .sa-photo-gallery-modal__stage::after {
        animation: none;
    }
}


/* =========================================================
   VİDEO GALERİ SAYFASI
   ========================================================= */

.sa-video-gallery-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
}

.sa-video-gallery-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sa-video-gallery-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-video-gallery-heading h2 {
    max-width: 890px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.3vw, 55px);
    font-weight: 700;
    letter-spacing: -0.057em;
    line-height: 1.04;
}

.sa-video-gallery-heading > p {
    max-width: 820px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.82;
}

/* =========================================================
   TANITIM
   ========================================================= */

.sa-video-gallery-intro {
    position: relative;
    padding: 110px 0;
    background: var(--white);
}

.sa-video-gallery-features {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sa-video-gallery-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 23px 25px;
    border-bottom: 1px solid var(--border);
    transition:
        padding-left 260ms ease,
        background 260ms ease;
}

.sa-video-gallery-feature:last-child {
    border-bottom: 0;
}

.sa-video-gallery-feature:hover {
    padding-left: 30px;
    background: var(--primary-soft);
}

.sa-video-gallery-feature > span {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 16px;
    transition:
        color 260ms ease,
        background 260ms ease,
        transform 260ms ease;
}

.sa-video-gallery-feature:hover > span {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-7deg);
}

.sa-video-gallery-feature strong,
.sa-video-gallery-feature small {
    display: block;
}

.sa-video-gallery-feature strong {
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.sa-video-gallery-feature small {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.62;
}

/* =========================================================
   VİDEO KATALOĞU
   ========================================================= */

.sa-video-gallery-catalog {
    position: relative;
    overflow: hidden;
    padding: 110px 0 105px;
    background: var(--surface);
}

.sa-video-gallery-catalog__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sa-video-gallery-catalog__shape--one {
    top: -180px;
    right: -180px;
    width: 460px;
    height: 460px;
    border: 76px solid rgba(23, 6, 61, 0.025);
}

.sa-video-gallery-catalog__shape--two {
    bottom: -260px;
    left: -190px;
    width: 500px;
    height: 500px;
    background: rgba(183, 158, 214, 0.08);
    filter: blur(4px);
}

.sa-video-gallery-catalog__description {
    max-width: 540px;
    margin: 0 0 0 auto;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================================================
   VİDEO KARTI
   ========================================================= */

.sa-video-gallery-card {
    position: relative;
    height: 100%;
    min-height: 505px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        border-color 320ms ease,
        box-shadow 320ms ease,
        transform 320ms ease;
}

.sa-video-gallery-card:hover {
    border-color: rgba(23, 6, 61, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.sa-video-gallery-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 0;
    color: var(--white);
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(183, 158, 214, 0.45),
            transparent 42%
        ),
        var(--primary-soft);
    cursor: pointer;
}

.sa-video-gallery-card__media img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform
        750ms
        cubic-bezier(0.2, 0.75, 0.25, 1);
}

.sa-video-gallery-card:hover
.sa-video-gallery-card__media img {
    transform: scale(1.065);
}

.sa-video-gallery-card__fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(23, 6, 61, 0.18);
    font-size: 65px;
}

.sa-video-gallery-card__media.is-image-missing img {
    display: none;
}

.sa-video-gallery-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(13, 2, 38, 0.04) 20%,
            rgba(13, 2, 38, 0.72) 100%
        );
    transition: background 300ms ease;
}

.sa-video-gallery-card:hover
.sa-video-gallery-card__overlay {
    background:
        linear-gradient(
            180deg,
            rgba(13, 2, 38, 0.1) 12%,
            rgba(13, 2, 38, 0.8) 100%
        );
}

.sa-video-gallery-card__number {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 4;
    min-width: 43px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.6);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    backdrop-filter: blur(11px);
}

.sa-video-gallery-card__platform {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 4;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--white);
    background: rgba(13, 2, 38, 0.6);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    backdrop-filter: blur(11px);
}

.sa-video-gallery-card__platform i {
    color: #ff3434;
    font-size: 14px;
}

.sa-video-gallery-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 23px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 17px 38px rgba(13, 2, 38, 0.24);
    font-size: 19px;
    backdrop-filter: blur(12px);
    transform:
        translate(-50%, -50%)
        scale(0.93);
    transition:
        color 280ms ease,
        background 280ms ease,
        transform 280ms ease,
        box-shadow 280ms ease;
}

.sa-video-gallery-card__play i {
    margin-left: 3px;
}

.sa-video-gallery-card:hover
.sa-video-gallery-card__play {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 20px 42px rgba(23, 6, 61, 0.34);
    transform:
        translate(-50%, -50%)
        scale(1.06);
}

.sa-video-gallery-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px 25px 25px;
}

.sa-video-gallery-card__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.sa-video-gallery-card h3 {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 750;
    letter-spacing: -0.027em;
    line-height: 1.2;
}

.sa-video-gallery-card h3 button {
    display: block;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    line-height: inherit;
    text-align: left;
    cursor: pointer;
    transition: color 230ms ease;
}

.sa-video-gallery-card h3 button:hover {
    color: var(--primary-light);
}

.sa-video-gallery-card__body p {
    display: -webkit-box;
    overflow: hidden;
    margin: 16px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.72;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.sa-video-gallery-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: auto;
    padding: 22px 0 0;
    border: 0;
    color: var(--primary);
    background: transparent;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition:
        color 240ms ease,
        transform 240ms ease;
}

.sa-video-gallery-card__link i {
    font-size: 10px;
    transition: transform 240ms ease;
}

.sa-video-gallery-card__link:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.sa-video-gallery-card__link:hover i {
    transform: translateX(5px);
}

/* =========================================================
   BOŞ VE HATA DURUMU
   ========================================================= */

.sa-video-gallery-empty {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    padding: 70px 45px;
    border: 1px dashed rgba(23, 6, 61, 0.2);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.sa-video-gallery-empty__icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: var(--white);
    background: var(--primary);
    font-size: 30px;
}

.sa-video-gallery-empty h2 {
    margin: 27px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 37px);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.sa-video-gallery-empty p {
    max-width: 580px;
    margin: 15px auto 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.75;
}

.sa-video-gallery-empty--error
.sa-video-gallery-empty__icon {
    background: #a92626;
}

/* =========================================================
   VİDEO MODALI
   ========================================================= */

.sa-video-gallery-modal {
    --bs-modal-width: 1180px;
}

.sa-video-gallery-modal .modal-dialog {
    max-width: min(
        1180px,
        calc(100vw - 32px)
    );
}

.sa-video-gallery-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 27px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.sa-video-gallery-modal .modal-header {
    min-height: 91px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 19px 23px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.sa-video-gallery-modal__heading {
    min-width: 0;
}

.sa-video-gallery-modal__heading > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.sa-video-gallery-modal__heading > span i {
    color: #ff2828;
    font-size: 14px;
}

.sa-video-gallery-modal .modal-title {
    max-width: 920px;
    overflow: hidden;
    margin-top: 5px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sa-video-gallery-modal__close {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 15px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 16px;
    transition:
        color 240ms ease,
        background 240ms ease,
        transform 240ms ease;
}

.sa-video-gallery-modal__close:hover {
    color: var(--white);
    background: var(--primary);
    transform: rotate(7deg);
}

.sa-video-gallery-modal .modal-body {
    padding: 20px;
    background: var(--surface);
}

.sa-video-gallery-modal__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(183, 158, 214, 0.17),
            transparent 40%
        ),
        var(--primary-dark);
}

.sa-video-gallery-modal__player iframe {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 1;
    transition: opacity 220ms ease;
}

.sa-video-gallery-modal__player.is-loading iframe {
    opacity: 0.15;
}

.sa-video-gallery-modal__loader {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--white);
    border-radius: 50%;
    opacity: 0;
    animation: saVideoGallerySpin 800ms linear infinite;
}

.sa-video-gallery-modal__player.is-loading
.sa-video-gallery-modal__loader {
    opacity: 1;
}

.sa-video-gallery-modal__description {
    max-width: 950px;
    margin: 17px 4px 2px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
}

@keyframes saVideoGallerySpin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   SAYFA SONU
   ========================================================= */

.sa-video-gallery-ending {
    width: 100%;
    height: 15px;
    margin: 0;
    background: var(--white);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
    .sa-video-gallery-intro {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .sa-video-gallery-catalog {
        padding-top: 100px;
        padding-bottom: 95px;
    }

    .sa-video-gallery-card {
        min-height: 485px;
    }
}

@media (max-width: 991.98px) {
    .sa-video-gallery-catalog__description {
        max-width: none;
        margin-left: 0;
    }

    .sa-video-gallery-card {
        min-height: 500px;
    }
}

@media (max-width: 767.98px) {
    .sa-video-gallery-intro {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .sa-video-gallery-catalog {
        padding-top: 78px;
        padding-bottom: 72px;
    }

    .sa-video-gallery-heading h2 {
        font-size: clamp(32px, 9vw, 45px);
    }

    .sa-video-gallery-heading > p {
        font-size: 15px;
    }

    .sa-video-gallery-card {
        min-height: 0;
    }

    .sa-video-gallery-empty {
        padding: 55px 27px;
        border-radius: 25px;
    }

    .sa-video-gallery-modal .modal-dialog {
        max-width: calc(100vw - 20px);
        margin-right: auto;
        margin-left: auto;
    }

    .sa-video-gallery-modal .modal-content {
        border-radius: 22px;
    }

    .sa-video-gallery-modal .modal-header {
        min-height: 80px;
        padding: 16px;
    }

    .sa-video-gallery-modal .modal-title {
        font-size: 17px;
    }

    .sa-video-gallery-modal .modal-body {
        padding: 12px;
    }

    .sa-video-gallery-modal__player {
        border-radius: 16px;
    }
}

@media (max-width: 575.98px) {
    .sa-video-gallery-eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .sa-video-gallery-feature {
        padding-right: 18px;
        padding-left: 18px;
    }

    .sa-video-gallery-card__play {
        width: 59px;
        height: 59px;
        border-radius: 19px;
        font-size: 17px;
    }

    .sa-video-gallery-card__body {
        padding: 23px 21px;
    }

    .sa-video-gallery-card h3 {
        font-size: 21px;
    }

    .sa-video-gallery-card__platform span {
        display: none;
    }

    .sa-video-gallery-card__platform {
        width: 32px;
        justify-content: center;
        padding: 0;
    }

    .sa-video-gallery-modal .modal-title {
        max-width: calc(100vw - 115px);
    }

    .sa-video-gallery-modal__description {
        margin-right: 2px;
        margin-left: 2px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sa-video-gallery-card,
    .sa-video-gallery-card__media img,
    .sa-video-gallery-card__play,
    .sa-video-gallery-card__link,
    .sa-video-gallery-modal__close {
        transition: none;
    }

    .sa-video-gallery-modal__loader {
        animation: none;
    }
}


/* =========================================================
   İLETİŞİM SAYFASI
   ========================================================= */

.sa-contact-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
}

.sa-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sa-contact-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-contact-heading h2 {
    max-width: 890px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.3vw, 55px);
    font-weight: 700;
    letter-spacing: -0.057em;
    line-height: 1.04;
}

/* =========================================================
   İLETİŞİM KARTLARI
   ========================================================= */

.sa-contact-details {
    position: relative;
    padding: 110px 0;
    background: var(--white);
}

.sa-contact-details__description {
    max-width: 540px;
    margin: 0 0 0 auto;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

.sa-contact-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 29px 27px 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms ease;
}

.sa-contact-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 210px;
    height: 210px;
    border: 38px solid rgba(183, 158, 214, 0.1);
    border-radius: 50%;
    pointer-events: none;
    transition:
        border-color 300ms ease,
        transform 500ms ease;
}

.sa-contact-card:hover {
    border-color: rgba(23, 6, 61, 0.18);
    box-shadow: var(--shadow-md);
    transform: translateY(-9px);
}

.sa-contact-card:hover::after {
    border-color: rgba(23, 6, 61, 0.07);
    transform: scale(1.15) rotate(20deg);
}

.sa-contact-card > * {
    position: relative;
    z-index: 2;
}

.sa-contact-card__icon {
    width: 57px;
    height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 18px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 19px;
    transition:
        color 280ms ease,
        background 280ms ease,
        transform 280ms ease;
}

.sa-contact-card:hover
.sa-contact-card__icon {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-7deg);
}

.sa-contact-card__icon--whatsapp {
    color: #157a46;
    background: #e8f8ef;
}

.sa-contact-card:hover
.sa-contact-card__icon--whatsapp {
    color: var(--white);
    background: #168c50;
}

.sa-contact-card > small {
    display: block;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.sa-contact-card h3 {
    margin: 8px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 750;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.sa-contact-card p,
.sa-contact-card address {
    margin: 16px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    font-style: normal;
    line-height: 1.72;
}

.sa-contact-card__primary-text {
    color: var(--primary) !important;
    font-family: var(--font-heading);
    font-size: 16px !important;
    font-weight: 800;
}

.sa-contact-card__links {
    margin-top: 16px;
}

.sa-contact-card__links a {
    display: block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.55;
    word-break: break-word;
}

.sa-contact-card__links a + a {
    margin-top: 5px;
}

.sa-contact-card__links a:hover {
    color: var(--primary-light);
}

.sa-contact-card__action {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 22px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
}

.sa-contact-card__action i {
    font-size: 9px;
    transition: transform 230ms ease;
}

.sa-contact-card__action:hover {
    color: var(--primary-light);
}

.sa-contact-card__action:hover i {
    transform: translateX(5px);
}

.sa-contact-details-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 35px;
    border: 1px dashed rgba(23, 6, 61, 0.2);
    border-radius: var(--radius-lg);
    background: var(--surface);
    text-align: center;
}

.sa-contact-details-empty > i {
    color: var(--primary);
    font-size: 42px;
}

.sa-contact-details-empty h3 {
    margin: 22px 0 0;
    color: var(--primary);
    font-size: 29px;
    font-weight: 750;
}

.sa-contact-details-empty p {
    margin: 13px 0 0;
    color: var(--text-soft);
}

/* =========================================================
   FORM BÖLÜMÜ
   ========================================================= */

.sa-contact-form-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: var(--surface);
}

.sa-contact-form-section__shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.sa-contact-form-section__shape--one {
    top: -190px;
    right: -190px;
    width: 470px;
    height: 470px;
    border: 78px solid rgba(23, 6, 61, 0.025);
}

.sa-contact-form-section__shape--two {
    bottom: -260px;
    left: -190px;
    width: 500px;
    height: 500px;
    background: rgba(183, 158, 214, 0.08);
    filter: blur(4px);
}

.sa-contact-form-intro {
    position: sticky;
    top: 105px;
    max-width: 570px;
    padding-right: 22px;
}

.sa-contact-form-intro h2 {
    margin: 20px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(35px, 4.2vw, 46px);
    font-weight: 700;
    letter-spacing: -0.058em;
    line-height: 1.04;
}

.sa-contact-form-intro > p {
    margin: 25px 0 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.82;
}

.sa-contact-form-intro__points {
    margin-top: 31px;
}

.sa-contact-form-intro__points > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 18px;
}

.sa-contact-form-intro__points > div > span {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    font-size: 15px;
}

.sa-contact-form-intro__points strong,
.sa-contact-form-intro__points small {
    display: block;
}

.sa-contact-form-intro__points strong {
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
}

.sa-contact-form-intro__points small {
    max-width: 430px;
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.65;
}

.sa-contact-social {
    margin-top: 35px;
    padding-top: 27px;
    border-top: 1px solid var(--border);
}

.sa-contact-social > span {
    display: block;
    margin-bottom: 14px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.sa-contact-social > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.sa-contact-social a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    font-size: 15px;
    transition:
        color 240ms ease,
        background 240ms ease,
        border-color 240ms ease,
        transform 240ms ease;
}

.sa-contact-social a:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-4px);
}

/* =========================================================
   FORM KARTI
   ========================================================= */

.sa-contact-form-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.sa-contact-form-card__header {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 29px 33px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 93% 10%,
            rgba(183, 158, 214, 0.35),
            transparent 38%
        ),
        var(--primary-soft);
}

.sa-contact-form-card__header::after {
    content: "\f1d8";
    position: absolute;
    right: 28px;
    bottom: -30px;
    color: rgba(23, 6, 61, 0.045);
    font-family: "Font Awesome 6 Free";
    font-size: 105px;
    font-weight: 900;
    transform: rotate(-9deg);
}

.sa-contact-form-card__header > * {
    position: relative;
    z-index: 2;
}

.sa-contact-form-card__icon {
    width: 57px;
    height: 57px;
    flex: 0 0 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--white);
    background: var(--primary);
    font-size: 18px;
    box-shadow: 0 13px 30px rgba(23, 6, 61, 0.2);
}

.sa-contact-form-card__header small {
    display: block;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.sa-contact-form-card__header h2 {
    margin: 5px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 750;
    letter-spacing: -0.035em;
}

.sa-contact-form {
    padding: 34px 33px 36px;
}

.sa-contact-form__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.sa-contact-form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 27px 33px 0;
    padding: 17px 18px;
    border: 1px solid;
    border-radius: 16px;
}

.sa-contact-form-alert > span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.sa-contact-form-alert p {
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.sa-contact-form-alert--success {
    border-color: #b8e1c7;
    color: #155e36;
    background: #eefaf2;
}

.sa-contact-form-alert--success > span {
    color: #ffffff;
    background: #168c50;
}

.sa-contact-form-alert--error {
    border-color: #ecc4c4;
    color: #8f2828;
    background: #fff3f3;
}

.sa-contact-form-alert--error > span {
    color: #ffffff;
    background: #b43a3a;
}

/* =========================================================
   FORM ALANLARI
   ========================================================= */

.sa-contact-field label {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.sa-contact-field label span {
    color: #b63333;
}

.sa-contact-field__control {
    position: relative;
}

.sa-contact-field__control > i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 2;
    color: var(--text-light);
    font-size: 13px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color 220ms ease;
}

.sa-contact-field__control input,
.sa-contact-field__control textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 15px;
    color: var(--text);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: 0;
    transition:
        border-color 230ms ease,
        box-shadow 230ms ease,
        background 230ms ease;
}

.sa-contact-field__control input {
    height: 56px;
    padding: 0 17px 0 45px;
}

.sa-contact-field__control textarea {
    min-height: 175px;
    resize: vertical;
    padding: 17px 17px 17px 45px;
    line-height: 1.7;
}

.sa-contact-field__control input::placeholder,
.sa-contact-field__control textarea::placeholder {
    color: #9a95a2;
}

.sa-contact-field__control input:hover,
.sa-contact-field__control textarea:hover {
    border-color: rgba(23, 6, 61, 0.2);
}

.sa-contact-field__control input:focus,
.sa-contact-field__control textarea:focus {
    border-color: var(--primary);
    background: #fdfcff;
    box-shadow: 0 0 0 4px rgba(23, 6, 61, 0.08);
}

.sa-contact-field__control:focus-within > i {
    color: var(--primary);
}

.sa-contact-field__control--textarea > i {
    top: 21px;
    transform: none;
}

.sa-contact-field__help {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 10px;
    line-height: 1.5;
}

/* =========================================================
   KVKK ONAYI
   ========================================================= */

.sa-contact-consent {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.sa-contact-consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.sa-contact-consent__box {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: transparent;
    background: var(--white);
    font-size: 9px;
    transition:
        color 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.sa-contact-consent input:checked +
.sa-contact-consent__box {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
}

.sa-contact-consent input:focus-visible +
.sa-contact-consent__box {
    box-shadow: 0 0 0 4px rgba(23, 6, 61, 0.12);
}

.sa-contact-consent__text {
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.7;
}

.sa-contact-consent__text a {
    color: var(--primary);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(23, 6, 61, 0.25);
    text-underline-offset: 3px;
}

/* =========================================================
   GÖNDER BUTONU
   ========================================================= */

.sa-contact-form__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 4px;
}

.sa-contact-submit {
    min-height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 26px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 15px 33px rgba(23, 6, 61, 0.22);
    cursor: pointer;
    transition:
        background 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
}

.sa-contact-submit i {
    font-size: 10px;
    transition: transform 230ms ease;
}

.sa-contact-submit:hover {
    background: var(--primary-light);
    box-shadow: 0 18px 38px rgba(23, 6, 61, 0.28);
    transform: translateY(-3px);
}

.sa-contact-submit:hover i {
    transform: translateX(5px);
}

.sa-contact-form__submit > small {
    color: var(--text-light);
    font-size: 10px;
    line-height: 1.5;
    text-align: right;
}

.sa-contact-form__submit > small strong {
    color: #b63333;
}

/* =========================================================
   HARİTA
   Son bölüm, alt boşluk 15px
   ========================================================= */

.sa-contact-map {
    position: relative;
    padding: 105px 0 15px;
    margin-bottom: 0;
    background: var(--white);
}

.sa-contact-map__action {
    display: flex;
    justify-content: flex-end;
}

.sa-contact-map__action a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
}

.sa-contact-map__action i {
    font-size: 10px;
    transition: transform 230ms ease;
}

.sa-contact-map__action a:hover i {
    transform: translate(3px, -3px);
}

.sa-contact-map__box {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.sa-contact-map__information {
    position: relative;
    height: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 44px 38px;
    color: var(--white);
    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(201, 170, 230, 0.24),
            transparent 35%
        ),
        var(--primary);
}

.sa-contact-map__information::after {
    content: "";
    position: absolute;
    right: -115px;
    bottom: -130px;
    width: 300px;
    height: 300px;
    border: 55px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
}

.sa-contact-map__information > * {
    position: relative;
    z-index: 2;
}

.sa-contact-map__icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    color: var(--primary);
    background: var(--white);
    font-size: 20px;
}

.sa-contact-map__information > small {
    color: var(--accent);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sa-contact-map__information h3 {
    margin: 11px 0 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 29px;
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.sa-contact-map__information address {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-style: normal;
    line-height: 1.75;
}

.sa-contact-map__phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    margin-top: 20px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.sa-contact-map__phone:hover {
    color: var(--accent);
}

.sa-contact-map__route {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 30px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
}

.sa-contact-map__route i {
    font-size: 9px;
    transition: transform 230ms ease;
}

.sa-contact-map__route:hover {
    color: var(--accent);
}

.sa-contact-map__route:hover i {
    transform: translateX(5px);
}

.sa-contact-map__embed {
    position: relative;
    width: 100%;
    min-height: 520px;
    height: 100%;
    background: var(--primary-soft);
}

.sa-contact-map__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.sa-contact-map__placeholder {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 45px;
    background: var(--surface);
    text-align: center;
}

.sa-contact-map__placeholder > span {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 29px;
}

.sa-contact-map__placeholder h3 {
    margin: 24px 0 0;
    color: var(--primary);
    font-size: 27px;
    font-weight: 750;
}

.sa-contact-map__placeholder p {
    max-width: 470px;
    margin: 13px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
    .sa-contact-details,
    .sa-contact-form-section {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .sa-contact-map {
        padding-top: 95px;
        padding-bottom: 15px;
    }

    .sa-contact-card {
        min-height: 315px;
    }

    .sa-contact-form-intro {
        padding-right: 0;
    }
}

@media (max-width: 991.98px) {
    .sa-contact-details__description {
        max-width: none;
        margin-left: 0;
    }

    .sa-contact-form-intro {
        position: static;
        max-width: 760px;
    }

    .sa-contact-map__action {
        justify-content: flex-start;
    }

    .sa-contact-map__information {
        min-height: 430px;
    }

    .sa-contact-map__embed,
    .sa-contact-map__embed iframe,
    .sa-contact-map__placeholder {
        min-height: 470px;
    }
}

@media (max-width: 767.98px) {
    .sa-contact-details,
    .sa-contact-form-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .sa-contact-map {
        padding-top: 76px;
        padding-bottom: 15px;
    }

    .sa-contact-heading h2,
    .sa-contact-form-intro h2 {
        font-size: clamp(32px, 9vw, 45px);
    }

    .sa-contact-card {
        min-height: 0;
    }

    .sa-contact-form-card {
        border-radius: 25px;
    }

    .sa-contact-form-card__header,
    .sa-contact-form {
        padding-right: 25px;
        padding-left: 25px;
    }

    .sa-contact-form-alert {
        margin-right: 25px;
        margin-left: 25px;
    }

    .sa-contact-form__submit {
        align-items: flex-start;
        flex-direction: column;
    }

    .sa-contact-form__submit > small {
        text-align: left;
    }

    .sa-contact-map__information {
        min-height: 400px;
        padding: 37px 29px;
    }

    .sa-contact-map__embed,
    .sa-contact-map__embed iframe,
    .sa-contact-map__placeholder {
        min-height: 430px;
    }
}

@media (max-width: 575.98px) {
    .sa-contact-eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .sa-contact-card {
        padding: 25px 22px;
    }

    .sa-contact-form-intro__points > div {
        gap: 12px;
    }

    .sa-contact-form-card__header {
        padding: 23px 20px;
    }

    .sa-contact-form-card__header::after {
        display: none;
    }

    .sa-contact-form-card__icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 16px;
    }

    .sa-contact-form-card__header h2 {
        font-size: 23px;
    }

    .sa-contact-form {
        padding: 27px 20px 29px;
    }

    .sa-contact-form-alert {
        margin: 20px 20px 0;
    }

    .sa-contact-submit {
        width: 100%;
    }

    .sa-contact-map__information {
        min-height: 390px;
        padding: 32px 23px;
    }

    .sa-contact-map__information h3 {
        font-size: 25px;
    }

    .sa-contact-map__embed,
    .sa-contact-map__embed iframe,
    .sa-contact-map__placeholder {
        min-height: 390px;
    }
}


/* =========================================================
   RANDEVU SAYFASI
   ========================================================= */

.sa-appointment-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
}

.sa-appointment-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sa-appointment-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: currentColor;
}

.sa-appointment-heading h2 {
    max-width: 880px;
    margin: 19px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.3vw, 55px);
    font-weight: 700;
    letter-spacing: -0.057em;
    line-height: 1.04;
}

/* =========================================================
   SÜREÇ
   ========================================================= */

.sa-appointment-process {
    position: relative;
    padding: 110px 0;
    background: var(--surface);
}

.sa-appointment-process__description {
    max-width: 540px;
    margin: 0 0 0 auto;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

.sa-appointment-step {
    position: relative;
    height: 100%;
    min-height: 315px;
    overflow: hidden;
    padding: 29px 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms ease;
}

.sa-appointment-step::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 220px;
    height: 220px;
    border: 40px solid rgba(183, 158, 214, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.sa-appointment-step:hover {
    border-color: rgba(23, 6, 61, 0.18);
    box-shadow: var(--shadow-md);
    transform: translateY(-9px);
}

.sa-appointment-step > * {
    position: relative;
    z-index: 2;
}

.sa-appointment-step__number {
    position: absolute;
    top: 26px;
    right: 26px;
    color: rgba(23, 6, 61, 0.12);
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 850;
    line-height: 1;
}

.sa-appointment-step__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--primary);
    background: var(--primary-soft);
    font-size: 19px;
    transition:
        color 280ms ease,
        background 280ms ease,
        transform 280ms ease;
}

.sa-appointment-step:hover
.sa-appointment-step__icon {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-7deg);
}

.sa-appointment-step h3 {
    margin: 29px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.sa-appointment-step p {
    margin: 16px 0 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

/* =========================================================
   FORM BÖLÜMÜ
   Son bölüm beyaz ve alt boşluk 15px
   ========================================================= */

.sa-appointment-form-section {
    position: relative;
    padding: 110px 0 15px;
    margin-bottom: 0;
    background: var(--white);
}

.sa-appointment-form-intro {
    position: sticky;
    top: 105px;
    max-width: 570px;
    padding-right: 23px;
}

.sa-appointment-form-intro h2 {
    margin: 20px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(35px, 4.2vw, 49px);
    font-weight: 700;
    letter-spacing: -0.058em;
    line-height: 1.04;
}

.sa-appointment-form-intro > p {
    margin: 25px 0 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.82;
}

.sa-appointment-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #eadfbd;
    border-radius: 18px;
    background: #fff9ea;
}

.sa-appointment-warning > span {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #8a5a00;
    background: #fff0c2;
}

.sa-appointment-warning strong {
    display: block;
    color: #6f4900;
    font-size: 14px;
    font-weight: 800;
}

.sa-appointment-warning p {
    margin: 6px 0 0;
    color: #796744;
    font-size: 12px;
    line-height: 1.65;
}

.sa-appointment-contact {
    margin-top: 27px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.sa-appointment-contact > a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 0;
}

.sa-appointment-contact > a + a {
    border-top: 1px solid var(--border);
}

.sa-appointment-contact > a > span {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: var(--primary-soft);
}

.sa-appointment-contact__whatsapp {
    color: #157a46 !important;
    background: #e8f8ef !important;
}

.sa-appointment-contact small,
.sa-appointment-contact strong {
    display: block;
}

.sa-appointment-contact small {
    color: var(--text-light);
    font-size: 10px;
    font-weight: 750;
}

.sa-appointment-contact strong {
    margin-top: 3px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

/* =========================================================
   FORM KARTI
   ========================================================= */

.sa-appointment-form-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.sa-appointment-form-card__header {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 33px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 92% 7%,
            rgba(183, 158, 214, 0.35),
            transparent 38%
        ),
        var(--primary-soft);
}

.sa-appointment-form-card__header::after {
    content: "\f271";
    position: absolute;
    right: 30px;
    bottom: -34px;
    color: rgba(23, 6, 61, 0.045);
    font-family: "Font Awesome 6 Free";
    font-size: 110px;
    font-weight: 900;
    transform: rotate(-8deg);
}

.sa-appointment-form-card__header > * {
    position: relative;
    z-index: 2;
}

.sa-appointment-form-card__header > span {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--white);
    background: var(--primary);
    font-size: 19px;
    box-shadow: 0 13px 30px rgba(23, 6, 61, 0.2);
}

.sa-appointment-form-card__header small {
    display: block;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.sa-appointment-form-card__header h2 {
    margin: 5px 0 0;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 750;
    letter-spacing: -0.04em;
}

.sa-appointment-form {
    padding: 35px 33px 38px;
}

.sa-appointment-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================================
   MESAJLAR
   ========================================================= */

.sa-appointment-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 27px 33px 0;
    padding: 17px 18px;
    border: 1px solid;
    border-radius: 16px;
}

.sa-appointment-alert > span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.sa-appointment-alert p {
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.sa-appointment-alert--success {
    border-color: #b8e1c7;
    color: #155e36;
    background: #eefaf2;
}

.sa-appointment-alert--success > span {
    color: #fff;
    background: #168c50;
}

.sa-appointment-alert--error {
    border-color: #ecc4c4;
    color: #8f2828;
    background: #fff3f3;
}

.sa-appointment-alert--error > span {
    color: #fff;
    background: #b43a3a;
}

/* =========================================================
   FORM ALANLARI
   ========================================================= */

.sa-appointment-field label {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.sa-appointment-field label span {
    color: #b63333;
}

.sa-appointment-field__control {
    position: relative;
}

.sa-appointment-field__control > i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 3;
    color: var(--text-light);
    font-size: 13px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color 220ms ease;
}

.sa-appointment-field__control input,
.sa-appointment-field__control select,
.sa-appointment-field__control textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 15px;
    color: var(--text);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: 0;
    transition:
        border-color 230ms ease,
        box-shadow 230ms ease,
        background 230ms ease;
}

.sa-appointment-field__control input,
.sa-appointment-field__control select {
    height: 57px;
    padding: 0 46px;
}

.sa-appointment-field__control select {
    appearance: none;
    cursor: pointer;
}

.sa-appointment-field__control--select::after {
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 17px;
    z-index: 2;
    color: var(--text-light);
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: 900;
    pointer-events: none;
    transform: translateY(-50%);
}

.sa-appointment-field__control textarea {
    min-height: 165px;
    resize: vertical;
    padding: 17px 17px 17px 46px;
    line-height: 1.7;
}

.sa-appointment-field__control input:hover,
.sa-appointment-field__control select:hover,
.sa-appointment-field__control textarea:hover {
    border-color: rgba(23, 6, 61, 0.2);
}

.sa-appointment-field__control input:focus,
.sa-appointment-field__control select:focus,
.sa-appointment-field__control textarea:focus {
    border-color: var(--primary);
    background: #fdfcff;
    box-shadow: 0 0 0 4px rgba(23, 6, 61, 0.08);
}

.sa-appointment-field__control:focus-within > i {
    color: var(--primary);
}

.sa-appointment-field__control--textarea > i {
    top: 21px;
    transform: none;
}

.sa-appointment-field__help {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 10px;
    line-height: 1.5;
}

/* =========================================================
   KVKK
   ========================================================= */

.sa-appointment-consent {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.sa-appointment-consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.sa-appointment-consent__box {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: transparent;
    background: var(--white);
    font-size: 9px;
    transition:
        color 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.sa-appointment-consent input:checked +
.sa-appointment-consent__box {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
}

.sa-appointment-consent input:focus-visible +
.sa-appointment-consent__box {
    box-shadow: 0 0 0 4px rgba(23, 6, 61, 0.12);
}

.sa-appointment-consent__text {
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.7;
}

.sa-appointment-consent__text a {
    color: var(--primary);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(23, 6, 61, 0.25);
    text-underline-offset: 3px;
}

/* =========================================================
   GÖNDERİM
   ========================================================= */

.sa-appointment-submit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 4px;
}

.sa-appointment-submit {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 26px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--primary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 15px 33px rgba(23, 6, 61, 0.22);
    cursor: pointer;
    transition:
        background 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
}

.sa-appointment-submit i {
    font-size: 10px;
    transition: transform 230ms ease;
}

.sa-appointment-submit:hover {
    background: var(--primary-light);
    box-shadow: 0 18px 38px rgba(23, 6, 61, 0.28);
    transform: translateY(-3px);
}

.sa-appointment-submit:hover i {
    transform: translateX(5px);
}

.sa-appointment-submit-area > small {
    max-width: 240px;
    color: var(--text-light);
    font-size: 10px;
    line-height: 1.55;
    text-align: right;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {
    .sa-appointment-process {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .sa-appointment-form-section {
        padding-top: 95px;
        padding-bottom: 15px;
    }
}

@media (max-width: 991.98px) {
    .sa-appointment-process__description {
        max-width: none;
        margin-left: 0;
    }

    .sa-appointment-form-intro {
        position: static;
        max-width: 760px;
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .sa-appointment-process {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .sa-appointment-form-section {
        padding-top: 76px;
        padding-bottom: 15px;
    }

    .sa-appointment-heading h2,
    .sa-appointment-form-intro h2 {
        font-size: clamp(32px, 9vw, 45px);
    }

    .sa-appointment-step {
        min-height: 0;
    }

    .sa-appointment-form-card {
        border-radius: 25px;
    }

    .sa-appointment-form-card__header,
    .sa-appointment-form {
        padding-right: 25px;
        padding-left: 25px;
    }

    .sa-appointment-alert {
        margin-right: 25px;
        margin-left: 25px;
    }

    .sa-appointment-submit-area {
        align-items: flex-start;
        flex-direction: column;
    }

    .sa-appointment-submit-area > small {
        max-width: none;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .sa-appointment-eyebrow {
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .sa-appointment-form-card__header {
        padding: 23px 20px;
    }

    .sa-appointment-form-card__header::after {
        display: none;
    }

    .sa-appointment-form-card__header > span {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        border-radius: 16px;
    }

    .sa-appointment-form-card__header h2 {
        font-size: 23px;
    }

    .sa-appointment-form {
        padding: 27px 20px 29px;
    }

    .sa-appointment-alert {
        margin: 20px 20px 0;
    }

    .sa-appointment-submit {
        width: 100%;
    }
}

/* =========================================================
   ORTAK POLİTİKA SAYFALARI
   Çerez, KVKK, Kullanım Koşulları, Gizlilik Politikası
   ========================================================= */

.sa-policy-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.sa-policy-content-section {
    position: relative;
    padding: 90px 0 15px;
    margin: 0;
    background: #ffffff;
}

.sa-policy-content {
    width: 100%;
    color: #3d3747;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.sa-policy-content > *:first-child {
    margin-top: 0;
}

.sa-policy-content > *:last-child {
    margin-bottom: 0;
}

.sa-policy-content h1,
.sa-policy-content h2,
.sa-policy-content h3,
.sa-policy-content h4,
.sa-policy-content h5,
.sa-policy-content h6 {
    margin: 42px 0 16px;
    color: #17063D;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.3;
}

.sa-policy-content h1 {
    font-size: clamp(30px, 4vw, 42px);
}

.sa-policy-content h2 {
    position: relative;
    padding-bottom: 15px;
    font-size: clamp(24px, 3vw, 32px);
}

.sa-policy-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: #17063D;
}

.sa-policy-content h3 {
    font-size: clamp(21px, 2.5vw, 26px);
}

.sa-policy-content h4 {
    font-size: 20px;
}

.sa-policy-content p {
    margin: 0 0 20px;
}

.sa-policy-content strong,
.sa-policy-content b {
    color: #21152f;
    font-weight: 700;
}

.sa-policy-content a {
    color: #17063D;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition:
        color 0.25s ease,
        text-decoration-color 0.25s ease;
}

.sa-policy-content a:hover {
    color: #553583;
    text-decoration-color: transparent;
}

.sa-policy-content ul,
.sa-policy-content ol {
    margin: 0 0 24px;
    padding-left: 25px;
}

.sa-policy-content li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.sa-policy-content li::marker {
    color: #17063D;
    font-weight: 700;
}

.sa-policy-content blockquote {
    position: relative;
    margin: 30px 0;
    padding: 24px 26px 24px 30px;
    border: 0;
    border-left: 4px solid #17063D;
    border-radius: 0 16px 16px 0;
    background: #f7f4fb;
    color: #443b4f;
}

.sa-policy-content blockquote > *:last-child {
    margin-bottom: 0;
}

.sa-policy-content hr {
    margin: 38px 0;
    border: 0;
    border-top: 1px solid #e7e0ec;
    opacity: 1;
}

.sa-policy-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 18px;
}

.sa-policy-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    border-spacing: 0;
    background: #ffffff;
}

.sa-policy-content table th,
.sa-policy-content table td {
    padding: 15px 17px;
    border: 1px solid #e8e2ed;
    text-align: left;
    vertical-align: top;
}

.sa-policy-content table th {
    color: #ffffff;
    font-weight: 700;
    background: #17063D;
}

.sa-policy-content table tbody tr:nth-child(even) {
    background: #faf8fc;
}

.sa-policy-content code {
    padding: 3px 7px;
    border-radius: 6px;
    color: #17063D;
    background: #f1edf5;
    font-size: 0.92em;
}

.sa-policy-empty {
    width: 100%;
    padding: 56px 30px;
    border: 1px solid #e9e3ed;
    border-radius: 22px;
    text-align: center;
    background: #faf8fc;
}

.sa-policy-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 50%;
    color: #ffffff;
    background: #17063D;
    font-size: 24px;
}

.sa-policy-empty h2 {
    margin: 0 0 12px;
    padding: 0;
    color: #17063D;
    font-size: 25px;
}

.sa-policy-empty h2::after {
    display: none;
}

.sa-policy-empty p {
    max-width: 620px;
    margin: 0 auto;
    color: #6c6474;
}

@media (max-width: 991.98px) {
    .sa-policy-content-section {
        padding-top: 72px;
    }

    .sa-policy-content {
        font-size: 16px;
        line-height: 1.8;
    }

    .sa-policy-content h1,
    .sa-policy-content h2,
    .sa-policy-content h3,
    .sa-policy-content h4,
    .sa-policy-content h5,
    .sa-policy-content h6 {
        margin-top: 34px;
    }
}

@media (max-width: 767.98px) {
    .sa-policy-content-section {
        padding-top: 55px;
    }

    .sa-policy-content table {
        display: block;
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .sa-policy-content blockquote {
        padding: 20px 20px 20px 23px;
    }

    .sa-policy-empty {
        padding: 42px 20px;
        border-radius: 18px;
    }
}

@media (max-width: 575.98px) {
    .sa-policy-content-section {
        padding-top: 45px;
    }

    .sa-policy-content {
        font-size: 15.5px;
    }

    .sa-policy-content ul,
    .sa-policy-content ol {
        padding-left: 21px;
    }

    .sa-policy-content table th,
    .sa-policy-content table td {
        padding: 12px 14px;
    }
}
