/* =========================================================
   AYVALIK AYAZMASI
   Main Stylesheet
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    --primary: #15848a;
    --primary-dark: #0b666c;
    --primary-soft: #4fa2a4;

    --brown: #7b5e49;
    --brown-dark: #45352b;
    --brown-soft: #a58b77;

    --cream: #f5efe5;
    --cream-light: #fbf8f2;
    --cream-dark: #e8ded1;

    --white: #ffffff;
    --black: #16130f;

    --text: #574f48;
    --heading: #392f29;
    --border: rgba(111, 85, 63, 0.18);

    --font-heading: "Cormorant Garamond", serif;
    --font-script: "Parisienne", cursive;
    --font-body: "Montserrat", sans-serif;

    --header-height: 132px;
    --container-width: 1440px;

    --transition: 0.35s ease;
}


/* =========================================================
   2. RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

/* =========================================================
   VISIT INFORMATION BAR
========================================================= */

.visit-info-bar {
    position: relative;
    z-index: 1100;

    width: 100%;

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

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

.visit-info-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    min-height: 46px;
    padding: 8px 0;

    text-align: center;
}

.visit-info-content > i {
    flex: 0 0 auto;

    color: var(--white);

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

.visit-info-content p {
    margin: 0;

    color: var(--white);

    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
}

.visit-info-content strong {
    color: inherit;
    font-weight: 700;
}


/* =========================================================
   VISIT INFORMATION BAR RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .visit-info-content {
        gap: 10px;

        min-height: 44px;
        padding: 7px 5px;
    }

    .visit-info-content > i {
        font-size: 20px;
    }

    .visit-info-content p {
        font-size: 11.5px;
        line-height: 1.4;
    }
}


@media (max-width: 479.98px) {

    .visit-info-content {
        align-items: flex-start;

        min-height: 48px;
        padding-block: 8px;
    }

    .visit-info-content > i {
        margin-top: 2px;

        font-size: 18px;
    }

    .visit-info-content p {
        max-width: 310px;

        font-size: 10.5px;
    }
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    color: var(--text);
    background-color: var(--cream-light);

    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

::selection {
    color: var(--white);
    background-color: var(--primary);
}


/* =========================================================
   3. GENERAL LAYOUT
========================================================= */

.site-container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 48px;
}

main {
    position: relative;
}


/* =========================================================
   4. HEADER
========================================================= */

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

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

    background-color: #FFF;

    transition:
        background-color var(--transition),
        box-shadow var(--transition),
        height var(--transition);
}

.site-header::before {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;

    width: min(980px, 68vw);
    height: 122px;

    pointer-events: none;

    background-image: url("../images/logo_.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    transform: translate(-50%, -50%);
}

.site-header::after {
    display: none;
}

.site-header .navbar {
    position: relative;
    z-index: 2;

    min-height: calc(var(--header-height) - 5px);
    padding: 0;
}

.site-header .navbar > .site-container {
    min-height: inherit;
}

.navigation-wrapper {
    position: relative;

    display: grid;
    grid-template-columns: 1fr 190px 1fr;
    align-items: center;

    width: 100%;
    min-height: calc(var(--header-height) - 5px);
}

.navigation-left,
.navigation-right {
    display: flex;
    align-items: center;
    gap: 31px;
}

.navigation-left {
    justify-content: flex-end;
    padding-right: 20px;
}

.navigation-right {
    justify-content: flex-start;
    padding-left: 20px;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    position: relative;

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

    padding: 12px 0 !important;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;

    transition: color var(--transition);
}

.navbar-nav .nav-link::before {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 1px;

    width: 0;
    height: 1px;

    background-color: var(--primary);

    transform: translateX(-50%);
    transition: width var(--transition);
}

.navbar-nav .nav-link::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -4px;

    width: 4px;
    height: 4px;

    opacity: 0;
    background-color: var(--primary);

    transform: translateX(-50%) rotate(45deg);
    transition: opacity var(--transition);
}

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

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-nav .nav-link.active::after {
    opacity: 1;
}


/* =========================================================
   5. DESKTOP LOGO
========================================================= */

.desktop-brand {
    position: relative;
    z-index: 3;

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

    width: 190px;
    height: 126px;

    margin: 0 !important;
    padding: 9px 16px 5px !important;

	
	
}

.desktop-brand::before,
.desktop-brand::after {
    content: "";
	
    position: absolute;
    top: 50%;

    width: 34px;
    height: 0px;

}

..desktop-brand::before,
.desktop-brand::after {
    display: none;
}

.desktop-brand img {
    width: auto;
    max-width: 168px;
    max-height: 113px;

    object-fit: contain;
}


/* =========================================================
   6. MOBILE LOGO AND TOGGLER
========================================================= */

.mobile-brand {
    position: relative;
    z-index: 5;

    margin: 0 !important;
    padding: 8px 0 !important;
}

.mobile-brand img {
    width: auto;
    height: 72px;
    object-fit: contain;
}

.navbar-toggler {
    position: relative;
    z-index: 5;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 1px solid rgba(21, 132, 138, 0.3);
    border-radius: 0;
    box-shadow: none !important;

    background-color: transparent;
}

.navbar-toggler-icon {
    position: relative;

    width: 23px;
    height: 16px;

    background-image: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";

    position: absolute;
    left: 0;

    width: 100%;
    height: 1px;

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

    transition:
        top var(--transition),
        transform var(--transition);
}

.navbar-toggler-icon::before {
    top: 3px;
    box-shadow: 0 5px 0 var(--primary-dark);
}

.navbar-toggler-icon::after {
    top: 13px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 8px;
    box-shadow: none;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 8px;
    transform: rotate(-45deg);
}


/* =========================================================
   7. HERO SLIDER
========================================================= */

.hero-slider {
    position: relative;

    width: 100%;
    overflow: hidden;

    background-color: var(--cream);
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: relative;

    min-height: calc(100vh - var(--header-height));
    height: 760px;

    overflow: hidden;
    isolation: isolate;

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

.hero-slide::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(247, 241, 231, 1) 0%,
            rgba(247, 241, 231, 0.97) 25%,
            rgba(247, 241, 231, 0.83) 39%,
            rgba(247, 241, 231, 0.25) 54%,
            rgba(247, 241, 231, 0) 72%
        );
}

.hero-slide::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;

    height: 90px;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(247, 241, 231, 0.97),
            rgba(247, 241, 231, 0)
        );
}


/* =========================================================
   8. HERO OVERLAYS
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(48, 34, 24, 0.05),
            rgba(48, 34, 24, 0.18)
        );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 3;

    opacity: 0.25;
    pointer-events: none;

    background-image:
        radial-gradient(
            circle at 18% 83%,
            transparent 0,
            transparent 38px,
            rgba(117, 88, 65, 0.11) 39px,
            transparent 40px
        ),
        radial-gradient(
            circle at 23% 86%,
            transparent 0,
            transparent 60px,
            rgba(117, 88, 65, 0.07) 61px,
            transparent 62px
        );
}

.hero-brush-shape {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 3;

    width: 58%;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            var(--cream-light) 0%,
            rgba(251, 248, 242, 0.98) 68%,
            rgba(251, 248, 242, 0) 100%
        );

    clip-path: polygon(
        0 0,
        85% 0,
        92% 4%,
        84% 9%,
        93% 14%,
        87% 20%,
        95% 26%,
        86% 31%,
        92% 37%,
        85% 42%,
        94% 49%,
        86% 56%,
        92% 62%,
        84% 68%,
        93% 75%,
        86% 81%,
        94% 88%,
        84% 94%,
        89% 100%,
        0 100%
    );
}


/* =========================================================
   9. HERO CONTENT
========================================================= */

.hero-content-container {
    position: relative;
    z-index: 10;

    height: 100%;
}

.min-vh-hero {
    min-height: calc(100vh - var(--header-height));
    height: 760px;
}

.hero-content {
    position: relative;

    max-width: 550px;
    padding-left: 50px;
    padding-bottom: 24px;
}

.hero-content::before {
    content: "";

    position: absolute;
    left: 3px;
    top: 84px;

    width: 1px;
    height: 196px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(21, 132, 138, 0.65),
            transparent
        );
}

.hero-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--primary-dark);

    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;

    color: var(--heading);

    font-family: var(--font-heading);
    line-height: 0.86;
}

.hero-script {
    display: block;

    margin-bottom: 2px;
    margin-left: -10px;

    color: var(--primary);

    font-family: var(--font-script);
    font-size: clamp(62px, 5.3vw, 90px);
    font-weight: 400;
    line-height: 0.95;

    transform: rotate(-2deg);
    transform-origin: left center;
}

.hero-title-main {
    display: block;

    font-size: clamp(68px, 5.5vw, 92px);
    font-weight: 600;
    line-height: 0.86;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.hero-title-decoration {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 290px;
    margin-top: 31px;
    margin-bottom: 28px;
}

.hero-title-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(111, 85, 63, 0.25);
}

.hero-title-decoration i {
    color: var(--primary);
    font-size: 7px;
}

.hero-description {
    max-width: 470px;
    margin-bottom: 31px;

    color: #544b44;

    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}

.hero-button {
    position: relative;

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

    min-width: 205px;
    height: 53px;

    padding: 0 24px;

    overflow: hidden;

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

    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    transition:
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.hero-button::before {
    content: "";

    position: absolute;
    inset: 0;

    background-color: var(--brown-dark);

    transform: translateX(-102%);
    transition: transform 0.45s ease;
}

.hero-button span,
.hero-button i {
    position: relative;
    z-index: 2;
}

.hero-button i {
    font-size: 14px;
    transition: transform var(--transition);
}

.hero-button:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.hero-button:hover::before {
    transform: translateX(0);
}

.hero-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   10. HERO SIDE DECORATION
========================================================= */

/*.hero-side-decoration {
    position: absolute;
    left: 20px;
    top: 50%;
    z-index: 12;

    display: flex;
    flex-direction: column;
    gap: 10px;

    transform: translateY(-50%);
}

.hero-side-decoration span {
    display: block;

    width: 9px;
    height: 9px;

    background-color: var(--primary);

    transform: rotate(45deg);
}

.hero-side-decoration span:last-child {
    width: 6px;
    height: 6px;
    margin-left: 1.5px;

    background-color: var(--brown);
}
 */

/* =========================================================
   11. HERO BOTTOM TEXTURE
========================================================= */

.hero-bottom-texture {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 13;

    height: 34px;

    pointer-events: none;

    background-color: var(--cream-light);

    clip-path: polygon(
        0 80%,
        3% 65%,
        6% 83%,
        10% 55%,
        14% 72%,
        19% 47%,
        23% 70%,
        28% 55%,
        33% 73%,
        38% 50%,
        43% 72%,
        48% 43%,
        53% 69%,
        59% 50%,
        64% 75%,
        70% 54%,
        76% 70%,
        81% 46%,
        87% 72%,
        92% 57%,
        96% 75%,
        100% 55%,
        100% 100%,
        0 100%
    );
}


/* =========================================================
   12. SLIDER INDICATORS
========================================================= */

.hero-indicators {
    right: auto;
    bottom: 36px;
    left: 50%;
    z-index: 20;

    display: flex;
    align-items: center;
    gap: 9px;

    width: auto;
    margin: 0;

    transform: translateX(-50%);
}

.hero-indicators [data-bs-target] {
    width: 7px;
    height: 7px;

    margin: 0;

    opacity: 0.55;
    border: 1px solid var(--white);
    border-radius: 50%;

    background-color: var(--white);

    transition:
        width var(--transition),
        height var(--transition),
        opacity var(--transition),
        background-color var(--transition);
}

.hero-indicators .active {
    width: 11px;
    height: 11px;

    opacity: 1;
    border-color: var(--primary);
    background-color: var(--primary);
}


/* =========================================================
   13. SLIDER CONTROLS
========================================================= */

.hero-control {
    top: 50%;
    bottom: auto;

    width: 54px;
    height: 54px;

    opacity: 1;

    background-color: rgba(31, 31, 26, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.34);

    transform: translateY(-50%);

    transition:
        background-color var(--transition),
        border-color var(--transition);
}

.hero-control-prev {
    left: 0;
}

.hero-control-next {
    right: 0;
}

.hero-control:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.hero-control-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    font-size: 20px;
}


/* =========================================================
   14. CAROUSEL ANIMATIONS
========================================================= */

.carousel-fade .carousel-item {
    opacity: 0;

    transition-property: opacity;
    transition-duration: 1.15s;
    transition-timing-function: ease;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-item .hero-content {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.9s ease 0.25s,
        transform 0.9s ease 0.25s;
}

.carousel-item.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item .hero-slide {
    background-size: 105%;
    transition: background-size 7s ease;
}

.carousel-item.active .hero-slide {
    background-size: 100%;
}


/* =========================================================
   15. LARGE DESKTOP
========================================================= */

@media (min-width: 1600px) {

    :root {
        --container-width: 1560px;
    }

    .navigation-left,
    .navigation-right {
        gap: 38px;
		position: relative;
    z-index: 2;
    }

    .hero-content {
        max-width: 610px;
        padding-left: 70px;
    }

    .hero-description {
        font-size: 15px;
    }
}


/* =========================================================
   16. NOTEBOOK / MEDIUM DESKTOP
========================================================= */

@media (max-width: 1399.98px) {

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

    .site-container {
        padding-inline: 32px;
    }

    .navigation-wrapper {
        grid-template-columns: 1fr 160px 1fr;
        min-height: 111px;
    }

    .navigation-left,
    .navigation-right {
        gap: 21px;
    }

    .navigation-left {
        padding-right: 10px;
    }

    .navigation-right {
        padding-left: 10px;
    }

    .desktop-brand {
        width: 160px;
        height: 109px;
    }

    .desktop-brand img {
        max-width: 145px;
        max-height: 98px;
    }

    .navbar-nav .nav-link {
        font-size: 12px;
    }

    .hero-slide,
    .min-vh-hero {
        min-height: calc(100vh - var(--header-height));
        height: 680px;
    }

    .hero-content {
        max-width: 500px;
        padding-left: 46px;
    }

    .hero-script {
        font-size: clamp(54px, 5vw, 75px);
    }

    .hero-title-main {
        font-size: clamp(59px, 5.2vw, 78px);
    }

    .hero-description {
        max-width: 420px;
    }
}


/* =========================================================
   17. TABLET AND MOBILE NAVIGATION
========================================================= */

@media (max-width: 1199.98px) {

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

    .site-header {
        height: var(--header-height);
    }

    .site-header .navbar {
        min-height: calc(var(--header-height) - 5px);
    }

    .site-header .navbar > .site-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-brand img {
        height: 76px;
    }

    .navbar-collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: 89px;

        max-height: calc(100vh - 89px);
        overflow-y: auto;

        background-color: rgba(249, 245, 238, 0.99);
        border-top: 1px solid rgba(111, 85, 63, 0.15);
        border-bottom: 3px solid var(--primary);
        box-shadow: 0 22px 35px rgba(53, 39, 29, 0.12);
    }

    .navigation-wrapper {
        display: block;

        min-height: auto;
        padding: 24px 32px 32px;
    }

    .navigation-left,
    .navigation-right {
        display: block;
        padding: 0;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(111, 85, 63, 0.12);
    }

    .navbar-nav .nav-link {
        display: flex;
        justify-content: flex-start;

        width: 100%;
        padding: 15px 5px !important;

        font-family: var(--font-heading);
        font-size: 17px;
        letter-spacing: 0.05em;
    }

    .navbar-nav .nav-link::before {
        left: 5px;
        bottom: 8px;

        transform: none;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        width: 42px;
    }

    .hero-slide,
    .min-vh-hero {
        min-height: calc(100vh - var(--header-height));
        height: 660px;
    }

    .hero-slide::before {
        background:
            linear-gradient(
                90deg,
                rgba(247, 241, 231, 1) 0%,
                rgba(247, 241, 231, 0.98) 33%,
                rgba(247, 241, 231, 0.81) 52%,
                rgba(247, 241, 231, 0.12) 76%
            );
    }

    .hero-brush-shape {
        width: 68%;
    }

    .hero-content {
        max-width: 480px;
        padding-left: 42px;
    }

    .hero-title-main {
        font-size: 65px;
    }

    .hero-script {
        font-size: 65px;
    }
}


/* =========================================================
   18. TABLET
========================================================= */

@media (max-width: 991.98px) {

    .site-container {
        padding-inline: 25px;
    }

    .hero-slide {
        height: 710px;
        min-height: 710px;

        background-position: 62% center;
    }

    .min-vh-hero {
        height: 710px;
        min-height: 710px;
    }

    .hero-slide::before {
        background:
            linear-gradient(
                90deg,
                rgba(247, 241, 231, 1) 0%,
                rgba(247, 241, 231, 0.98) 36%,
                rgba(247, 241, 231, 0.76) 60%,
                rgba(247, 241, 231, 0.12) 87%
            );
    }

    .hero-brush-shape {
        width: 78%;
    }

    .hero-content {
        max-width: 455px;
        padding-left: 34px;
    }

    .hero-script {
        font-size: 60px;
    }

    .hero-title-main {
        font-size: 59px;
    }

    .hero-title-decoration {
        width: 245px;
        margin-top: 26px;
        margin-bottom: 23px;
    }

    .hero-description {
        max-width: 400px;
        font-size: 13px;
    }

    .hero-side-decoration {
        left: 12px;
    }

    .hero-control {
        width: 45px;
        height: 45px;
    }
}


/* =========================================================
   19. MOBILE
========================================================= */

@media (max-width: 767.98px) {

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

    .site-container {
        padding-inline: 18px;
    }

    .site-header {
        height: var(--header-height);
        border-top-width: 4px;
    }

    .site-header .navbar {
        min-height: 78px;
    }

    .mobile-brand img {
        height: 64px;
        max-width: 190px;
    }

    .navbar-toggler {
        width: 43px;
        height: 43px;
    }

    .navbar-collapse {
        top: 78px;
        max-height: calc(100vh - 78px);
    }

    .navigation-wrapper {
        padding: 18px 22px 27px;
    }

    .hero-slide {
        display: flex;
        align-items: flex-end;

        height: 760px;
        min-height: 760px;

        background-position: 66% top;
    }

    .min-vh-hero {
        display: flex;
        align-items: flex-end !important;

        height: 760px;
        min-height: 760px;
        padding-bottom: 76px;
    }

    .hero-slide::before {
        background:
            linear-gradient(
                180deg,
                rgba(247, 241, 231, 0.03) 0%,
                rgba(247, 241, 231, 0.08) 30%,
                rgba(247, 241, 231, 0.78) 51%,
                rgba(247, 241, 231, 0.98) 68%,
                rgba(247, 241, 231, 1) 100%
            );
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(36, 25, 17, 0.06),
                rgba(36, 25, 17, 0.15) 40%,
                rgba(36, 25, 17, 0.03) 72%
            );
    }

    .hero-brush-shape {
        top: auto;
        width: 100%;
        height: 56%;

        background:
            linear-gradient(
                180deg,
                rgba(251, 248, 242, 0) 0%,
                rgba(251, 248, 242, 0.94) 24%,
                var(--cream-light) 52%,
                var(--cream-light) 100%
            );

        clip-path: polygon(
            0 17%,
            9% 11%,
            17% 15%,
            25% 8%,
            34% 14%,
            44% 7%,
            54% 13%,
            64% 6%,
            75% 14%,
            85% 8%,
            94% 14%,
            100% 9%,
            100% 100%,
            0 100%
        );
    }

    .hero-pattern {
        opacity: 0.18;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 18px 15px;
        text-align: left;
    }

    .hero-content::before {
        display: none;
    }

    .hero-eyebrow {
        margin-bottom: 8px;
        font-size: 10px;
        letter-spacing: 0.13em;
    }

    .hero-script {
        margin-left: 0;
        font-size: clamp(45px, 14vw, 58px);
    }

    .hero-title-main {
        font-size: clamp(48px, 14vw, 61px);
        line-height: 0.87;
    }

    .hero-title-decoration {
        width: 220px;
        margin-top: 22px;
        margin-bottom: 19px;
    }

    .hero-description {
        max-width: 94%;
        margin-bottom: 24px;

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

    .hero-button {
        min-width: 187px;
        height: 49px;

        font-size: 10px;
    }

    .hero-side-decoration {
        display: none;
    }

    .hero-control {
        top: 28%;

        width: 40px;
        height: 40px;
    }

    .hero-control-prev {
        left: 10px;
    }

    .hero-control-next {
        right: 10px;
    }

    .hero-indicators {
        bottom: 25px;
    }

    .carousel-item .hero-slide,
    .carousel-item.active .hero-slide {
        background-size: cover;
    }
}


/* =========================================================
   20. SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {

    .site-container {
        padding-inline: 14px;
    }

    .mobile-brand img {
        height: 58px;
        max-width: 170px;
    }

    .hero-slide,
    .min-vh-hero {
        height: 720px;
        min-height: 720px;
    }

    .min-vh-hero {
        padding-bottom: 71px;
    }

    .hero-content {
        padding-inline: 10px;
    }

    .hero-script {
        font-size: 44px;
    }

    .hero-title-main {
        font-size: 46px;
    }

    .hero-title-decoration {
        width: 190px;
        margin-top: 20px;
        margin-bottom: 17px;
    }

    .hero-description {
        max-width: 100%;
        font-size: 11.5px;
    }

    .hero-button {
        min-width: 175px;
        height: 47px;
        padding-inline: 19px;
    }

    .hero-control {
        top: 25%;

        width: 36px;
        height: 36px;
    }

    .hero-control-icon {
        font-size: 16px;
    }
}


/* =========================================================
   21. SHORT DESKTOP SCREENS
========================================================= */

@media (min-width: 1200px) and (max-height: 820px) {

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

    .site-header {
        height: var(--header-height);
    }

    .site-header .navbar,
    .navigation-wrapper {
        min-height: 100px;
    }

    .desktop-brand {
        height: 100px;
    }

    .desktop-brand img {
        max-height: 90px;
    }

    .hero-slide,
    .min-vh-hero {
        height: calc(100vh - var(--header-height));
        min-height: 620px;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .hero-script {
        font-size: 61px;
    }

    .hero-title-main {
        font-size: 66px;
    }

    .hero-title-decoration {
        margin-top: 23px;
        margin-bottom: 21px;
    }

    .hero-description {
        margin-bottom: 24px;
    }
}


/* =========================================================
   22. ACCESSIBILITY
========================================================= */

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

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

    .carousel-item .hero-slide,
    .carousel-item.active .hero-slide {
        background-size: cover;
    }
}

/* =========================================================
   23. HISTORICAL LAYERS SECTION
========================================================= */

.historical-layers {
    position: relative;
    z-index: 1;

    padding: 115px 0 105px;
    overflow: hidden;

    background-color: #f8f2e9;
    background-image:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.95),
            transparent 42%
        ),
        linear-gradient(
            90deg,
            rgba(126, 96, 70, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(126, 96, 70, 0.02) 1px,
            transparent 1px
        );

    background-size:
        auto,
        38px 38px,
        38px 38px;

    border-top: 1px solid rgba(111, 85, 63, 0.09);
    border-bottom: 1px solid rgba(111, 85, 63, 0.14);
}

.historical-layers::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    opacity: 0.35;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            transparent 0%,
            rgba(122, 94, 73, 0.035) 72%,
            rgba(122, 94, 73, 0.08) 100%
        );
}


/* =========================================================
   24. SECTION ORNAMENTS
========================================================= */

.layers-ornament {
    position: absolute;
    top: 32px;

    width: 250px;
    height: 250px;

    opacity: 0.13;
    pointer-events: none;
}

.layers-ornament::before,
.layers-ornament::after {
    content: "";

    position: absolute;

    border: 1px solid var(--brown);
    border-radius: 50%;
}

.layers-ornament::before {
    inset: 24px;

    transform: rotate(45deg);
}

.layers-ornament::after {
    inset: 63px;

    border-color: var(--primary);
}

.layers-ornament-left {
    left: -135px;

    transform: rotate(-28deg);
}

.layers-ornament-right {
    right: -135px;

    transform: rotate(28deg);
}


/* =========================================================
   25. LAYERS SECTION HEADING
========================================================= */

.layers-heading {
    position: relative;

    max-width: 1000px;
    margin: 0 auto 67px;
}

.layers-heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    width: 280px;
    margin: 0 auto 22px;
}

.layers-heading-decoration span {
    display: block;
    width: 92px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.65)
        );
}

.layers-heading-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.65),
            transparent
        );
}

.layers-heading-decoration i {
    color: var(--primary);
    font-size: 10px;
}

.layers-heading-decoration-bottom {
    width: 380px;
    margin: 20px auto 25px;
}

.layers-heading-decoration-bottom i {
    font-size: 18px;
}

.layers-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.layers-title {
    margin-bottom: 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(48px, 4.3vw, 72px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.layers-intro {
    max-width: 930px;
    margin: 0 auto;

    color: #655a50;

    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
}

.layers-intro strong {
    color: var(--primary-dark);
    font-weight: 600;
}


/* =========================================================
   26. LAYER CARDS
========================================================= */

.layers-row {
    position: relative;
    z-index: 2;
}

.layer-card {
    position: relative;

    height: 100%;
    min-height: 565px;

    padding-bottom: 42px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.48),
            rgba(255, 255, 255, 0.75)
        );

    border: 1px solid rgba(111, 85, 63, 0.17);

    box-shadow:
        0 25px 55px rgba(75, 53, 37, 0.045),
        inset 0 0 45px rgba(255, 255, 255, 0.45);

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

.layer-card::before {
    content: "";

    position: absolute;
    inset: 12px;
    z-index: 0;

    pointer-events: none;

    border: 1px solid rgba(111, 85, 63, 0.08);
}

.layer-card:hover {
    border-color: rgba(21, 132, 138, 0.42);

    box-shadow:
        0 30px 70px rgba(68, 47, 32, 0.12),
        inset 0 0 45px rgba(255, 255, 255, 0.55);

    transform: translateY(-10px);
}


/* =========================================================
   27. LAYER CARD IMAGE
========================================================= */

.layer-image-wrapper {
    position: relative;

    height: 235px;

    margin: 0;
    overflow: hidden;

    background-color: var(--brown-dark);
}

.layer-image-wrapper::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 4;

    height: 36px;

    background-color: rgba(248, 242, 233, 0.98);

    clip-path: polygon(
        0 88%,
        7% 74%,
        13% 86%,
        21% 65%,
        28% 82%,
        37% 70%,
        46% 87%,
        56% 66%,
        64% 83%,
        73% 69%,
        82% 85%,
        91% 70%,
        100% 82%,
        100% 100%,
        0 100%
    );
}

.layer-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        sepia(0.28)
        saturate(0.78)
        contrast(1.02);

    transition:
        transform 1s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.7s ease;
}

.layer-card:hover .layer-image {
    filter:
        sepia(0.08)
        saturate(0.95)
        contrast(1.04);

    transform: scale(1.07);
}

.layer-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(43, 31, 22, 0.05),
            rgba(43, 31, 22, 0.18)
        );

    transition: opacity var(--transition);
}

.layer-card:hover .layer-image-overlay {
    opacity: 0.4;
}

.layer-number {
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 5;

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

    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.08em;

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


/* =========================================================
   28. LAYER ICON
========================================================= */

.layer-icon-wrapper {
    position: relative;
    z-index: 6;

    width: 118px;
    height: 118px;

    margin: -65px auto 16px;
}

.layer-icon-ring {
    position: relative;

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

    width: 118px;
    height: 118px;

    padding: 9px;

    border: 1px solid rgba(21, 132, 138, 0.48);
    border-radius: 50%;

    background-color: rgba(248, 242, 233, 0.98);

    box-shadow:
        0 12px 35px rgba(65, 46, 32, 0.09),
        inset 0 0 0 5px rgba(255, 255, 255, 0.65);
}

.layer-icon-ring::before {
    content: "";

    position: absolute;
    inset: 6px;

    border: 1px dashed rgba(111, 85, 63, 0.3);
    border-radius: 50%;
}

.layer-icon {
    position: relative;
    z-index: 3;

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

    width: 79px;
    height: 79px;

    color: var(--primary);
    background-color: #fbf7f0;

    border: 1px solid rgba(111, 85, 63, 0.12);
    border-radius: 50%;

    font-size: 35px;

    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.layer-card:hover .layer-icon {
    color: var(--white);
    background-color: var(--primary);

    transform: rotate(-5deg);
}

.layer-icon-diamond {
    position: absolute;
    left: 50%;
    bottom: -4px;
    z-index: 7;

    width: 9px;
    height: 9px;

    background-color: var(--primary);

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


/* =========================================================
   29. LAYER CARD CONTENT
========================================================= */

.layer-card-content {
    position: relative;
    z-index: 3;

    padding: 0 37px;
    text-align: center;
}

.layer-card-title {
    margin-bottom: 13px;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.layer-card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 145px;
    margin: 0 auto 19px;
}

.layer-card-divider span {
    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(21, 132, 138, 0.38);
}

.layer-card-divider i {
    color: var(--primary);
    font-size: 12px;
}

.layer-card-content p {
    margin-bottom: 0;

    color: #655a50;

    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.85;
}

.layer-card-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}


/* =========================================================
   30. CARD CORNER ORNAMENTS
========================================================= */

.layer-card-corner {
    position: absolute;
    bottom: 17px;
    z-index: 2;

    width: 58px;
    height: 58px;

    opacity: 0.28;
    pointer-events: none;

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

.layer-card-corner::before {
    content: "";

    position: absolute;
    bottom: 0;

    width: 38px;
    height: 38px;

    border-bottom: 1px solid var(--brown-soft);
    border-radius: 50%;
}

.layer-card-corner-left {
    left: 18px;

    border-left: 1px solid var(--brown-soft);
}

.layer-card-corner-left::before {
    left: 0;

    border-left: 1px solid var(--brown-soft);
}

.layer-card-corner-right {
    right: 18px;

    border-right: 1px solid var(--brown-soft);
}

.layer-card-corner-right::before {
    right: 0;

    border-right: 1px solid var(--brown-soft);
}


/* =========================================================
   31. BOTTOM DECORATION
========================================================= */

.layers-bottom-decoration {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 25px;

    max-width: 660px;
    margin: 65px auto 0;

    color: rgba(111, 85, 63, 0.25);
}

.layers-bottom-decoration > span {
    display: block;
    flex: 1;

    height: 1px;
    margin-bottom: 12px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.35)
        );
}

.layers-bottom-decoration > span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.35),
            transparent
        );
}

.layers-building-line {
    position: relative;

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

    width: 76px;
    height: 55px;

    color: rgba(21, 132, 138, 0.48);

    font-size: 48px;
}

.layers-building-line::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -8px;

    width: 7px;
    height: 7px;

    background-color: var(--primary);

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


/* =========================================================
   32. HISTORICAL LAYERS RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .historical-layers {
        padding: 95px 0 90px;
    }

    .layers-heading {
        margin-bottom: 55px;
    }

    .layer-card {
        min-height: 535px;
    }

    .layer-image-wrapper {
        height: 215px;
    }

    .layer-card-content {
        padding-inline: 24px;
    }

    .layer-card-title {
        font-size: 27px;
    }

    .layer-card-content p {
        font-size: 12.5px;
    }
}


@media (max-width: 991.98px) {

    .historical-layers {
        padding: 85px 0 80px;
    }

    .layers-row {
        max-width: 680px;
        margin-inline: auto;
    }

    .layer-card {
        min-height: auto;
    }

    .layer-image-wrapper {
        height: 300px;
    }

    .layer-card-content {
        padding: 0 55px 20px;
    }

    .layer-card-title {
        font-size: 34px;
    }

    .layer-card-content p {
        font-size: 14px;
    }

    .layers-ornament {
        width: 180px;
        height: 180px;
    }
}


@media (max-width: 767.98px) {

    .historical-layers {
        padding: 68px 0 65px;
    }

    .layers-heading {
        margin-bottom: 43px;
    }

    .layers-heading-decoration {
        width: 220px;
        margin-bottom: 17px;
    }

    .layers-heading-decoration-bottom {
        width: 275px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .layers-heading-decoration span {
        width: 68px;
    }

    .layers-eyebrow {
        font-size: 9px;
        letter-spacing: 0.18em;
    }

    .layers-title {
        font-size: clamp(39px, 11vw, 53px);
        line-height: 1;
    }

    .layers-intro {
        font-size: 12.5px;
        line-height: 1.8;
    }

    .layer-image-wrapper {
        height: 235px;
    }

    .layer-icon-wrapper,
    .layer-icon-ring {
        width: 103px;
        height: 103px;
    }

    .layer-icon-wrapper {
        margin-top: -57px;
    }

    .layer-icon {
        width: 68px;
        height: 68px;

        font-size: 30px;
    }

    .layer-card-content {
        padding: 0 27px 15px;
    }

    .layer-card-title {
        font-size: 29px;
    }

    .layer-card-content p {
        font-size: 12.5px;
    }

    .layers-bottom-decoration {
        margin-top: 43px;
    }
}


@media (max-width: 479.98px) {

    .layers-heading-decoration {
        width: 185px;
    }

    .layers-heading-decoration-bottom {
        width: 225px;
    }

    .layers-title {
        font-size: 37px;
    }

    .layer-image-wrapper {
        height: 210px;
    }

    .layer-card-title {
        font-size: 26px;
    }

    .layer-card-content {
        padding-inline: 20px;
    }

    .layers-bottom-decoration {
        gap: 13px;
    }
}

/* =========================================================
   33. STORY SECTION
========================================================= */

.story-section {
    position: relative;
    z-index: 1;

    padding: 115px 0 100px;
    overflow: hidden;

    background-color: #f7f0e6;
    background-image:
        radial-gradient(
            circle at 20% 35%,
            rgba(255, 255, 255, 0.75),
            transparent 33%
        ),
        radial-gradient(
            circle at 76% 22%,
            rgba(255, 255, 255, 0.6),
            transparent 31%
        ),
        linear-gradient(
            90deg,
            rgba(121, 91, 67, 0.025) 1px,
            transparent 1px
        );

    background-size:
        auto,
        auto,
        42px 42px;

    border-top: 1px solid rgba(111, 85, 63, 0.12);
}

.story-section::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: -1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.24),
            transparent 38%,
            rgba(255, 255, 255, 0.18)
        );
}

.story-row {
    position: relative;
    z-index: 3;
}


/* =========================================================
   34. STORY BACKGROUND COLUMN
========================================================= */

.story-bg-column {
    position: absolute;
    top: 60px;
    right: 2%;
    z-index: 0;

    color: rgba(111, 85, 63, 0.065);

    font-size: 340px;
    line-height: 1;

    transform: rotate(90deg);
    pointer-events: none;
}


/* =========================================================
   35. STORY VISUAL
========================================================= */

.story-visual {
    position: relative;

    min-height: 700px;
    padding: 45px 35px 80px;
}

.story-watercolor {
    position: absolute;
    inset: 0;
    z-index: 0;

    opacity: 0.72;

    background:
        radial-gradient(
            ellipse at 45% 45%,
            rgba(90, 165, 178, 0.28) 0%,
            rgba(90, 165, 178, 0.18) 34%,
            transparent 67%
        ),
        radial-gradient(
            ellipse at 34% 60%,
            rgba(137, 102, 75, 0.22),
            transparent 62%
        );

    clip-path: polygon(
        7% 7%,
        21% 4%,
        31% 10%,
        45% 4%,
        57% 9%,
        70% 3%,
        85% 11%,
        94% 23%,
        88% 35%,
        96% 48%,
        91% 63%,
        96% 78%,
        85% 92%,
        68% 96%,
        53% 91%,
        37% 97%,
        23% 91%,
        9% 84%,
        3% 70%,
        8% 55%,
        2% 39%,
        8% 25%
    );
}

.story-image-frame {
    position: relative;
    z-index: 2;

    width: 88%;
    height: 610px;

    margin-left: auto;
    overflow: hidden;

    clip-path: polygon(
        5% 3%,
        95% 0,
        100% 9%,
        97% 23%,
        100% 40%,
        96% 57%,
        100% 75%,
        94% 93%,
        79% 100%,
        62% 96%,
        47% 100%,
        31% 96%,
        15% 100%,
        3% 91%,
        0 74%,
        4% 59%,
        0 42%,
        4% 24%,
        0 10%
    );

    box-shadow: 0 30px 65px rgba(70, 48, 32, 0.18);
}

.story-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(72, 47, 29, 0.02),
            rgba(72, 47, 29, 0.14)
        );

    pointer-events: none;
}

.story-image {
    width: 100%;
    height: 100%;

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

    filter:
        sepia(0.18)
        saturate(0.9)
        contrast(1.03);

    transition:
        transform 1.2s cubic-bezier(0.2, 0.75, 0.25, 1),
        filter 0.7s ease;
}

.story-visual:hover .story-image {
    transform: scale(1.045);

    filter:
        sepia(0.04)
        saturate(1)
        contrast(1.04);
}


/* =========================================================
   36. MEDALLION
========================================================= */

.story-medallion {
    position: absolute;
    top: -7px;
    left: -8px;
    z-index: 5;

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

    width: 185px;
    height: 185px;

    color: rgba(111, 85, 63, 0.72);
    background:
        radial-gradient(
            circle,
            rgba(248, 242, 233, 0.95) 0%,
            rgba(225, 211, 192, 0.92) 68%,
            rgba(145, 110, 82, 0.5) 69%,
            rgba(248, 242, 233, 0.9) 72%
        );

    border: 1px solid rgba(111, 85, 63, 0.25);
    border-radius: 50%;

    box-shadow:
        0 15px 30px rgba(69, 48, 32, 0.12),
        inset 0 0 0 9px rgba(255, 255, 255, 0.4);

    font-size: 87px;

    transform: rotate(-8deg);
}

.story-medallion::before,
.story-medallion::after {
    content: "";

    position: absolute;

    border-radius: 50%;
}

.story-medallion::before {
    inset: 12px;

    border: 1px dashed rgba(21, 132, 138, 0.3);
}

.story-medallion::after {
    inset: 25px;

    border: 1px solid rgba(111, 85, 63, 0.18);
}


/* =========================================================
   37. STORY STAMP
========================================================= */

.story-stamp {
    position: absolute;
    left: 43px;
    bottom: 44px;
    z-index: 6;

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

    width: 138px;
    height: 138px;

    color: var(--primary-dark);
    background-color: rgba(247, 240, 230, 0.86);

    border: 2px solid rgba(21, 132, 138, 0.68);
    border-radius: 50%;

    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.11em;
    text-align: center;
    text-transform: uppercase;

    transform: rotate(-9deg);
}

.story-stamp::before {
    content: "";

    position: absolute;
    inset: 7px;

    border: 1px dashed rgba(21, 132, 138, 0.6);
    border-radius: 50%;
}

.story-stamp i {
    margin: 6px 0;

    font-size: 33px;
}

.story-stamp-title {
    font-size: 14px;
}


/* =========================================================
   38. YEAR LINE
========================================================= */

.story-year-line {
    position: absolute;
    right: 15px;
    bottom: 13px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 13px;

    width: 64%;
}

.story-year-line span {
    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(111, 85, 63, 0.42);
}

.story-year-line strong {
    color: var(--brown);

    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.14em;
}

.story-year-line i {
    color: var(--primary);
    font-size: 7px;
}


/* =========================================================
   39. STORY CONTENT
========================================================= */

.story-content {
    position: relative;

    max-width: 660px;
    margin-left: auto;
    padding: 15px 10px 0 45px;
}

.story-heading-decoration {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 360px;
    margin-bottom: 23px;
}

.story-heading-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.5)
        );
}

.story-heading-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.5),
            transparent
        );
}

.story-heading-decoration i {
    color: var(--primary);
    font-size: 19px;
}

.story-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.story-title {
    margin-bottom: 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(67px, 6vw, 98px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.story-title small {
    display: block;

    margin-bottom: 8px;

    font-size: 29px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.09em;
}

.story-title-line {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 260px;
    margin: 28px 0 34px;
}

.story-title-line span {
    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(21, 132, 138, 0.43);
}

.story-title-line i {
    color: var(--primary);
    font-size: 7px;
}

.story-lead {
    max-width: 620px;
    margin-bottom: 34px;

    color: #50473f;

    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
}

.story-lead strong,
.story-item-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}


/* =========================================================
   40. STORY TIMELINE
========================================================= */

.story-timeline {
    position: relative;

    padding-left: 3px;
}

.story-timeline::before {
    content: "";

    position: absolute;
    top: 14px;
    bottom: 20px;
    left: 23px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(21, 132, 138, 0.65),
            rgba(21, 132, 138, 0.2)
        );
}

.story-item {
    position: relative;

    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;

    padding-bottom: 29px;
}

.story-item:last-child {
    padding-bottom: 0;
}

.story-item-icon {
    position: relative;
    z-index: 2;

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

    width: 48px;
    min-height: 52px;

    color: var(--primary);

    font-size: 30px;
}

.story-item-icon::before {
    content: "";

    position: absolute;
    top: 10px;
    left: 50%;

    width: 11px;
    height: 11px;

    background-color: #f7f0e6;
    border: 1px solid var(--primary);
    border-radius: 50%;

    transform: translateX(-50%);
}

.story-item-icon i {
    position: relative;
    z-index: 3;

    margin-top: 18px;
}

.story-item-content {
    padding: 0 0 4px 12px;

    border-left: 1px solid rgba(111, 85, 63, 0.15);
}

.story-item-content p {
    margin-bottom: 0;

    color: #574e46;

    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.82;
}


/* =========================================================
   41. BOTTOM ORNAMENT
========================================================= */

.story-bottom-ornament {
    position: relative;
    z-index: 3;

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

    max-width: 620px;
    margin: 80px auto 0;
}

.story-bottom-ornament > span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.42)
        );
}

.story-bottom-ornament > span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.42),
            transparent
        );
}

.story-bottom-ornament > div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(111, 85, 63, 0.62);

    font-size: 22px;
}

.story-bottom-ornament > div i:nth-child(2) {
    color: var(--primary);
    font-size: 30px;
}


/* =========================================================
   42. STORY RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

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

    .story-visual {
        min-height: 620px;
        padding-inline: 10px;
    }

    .story-image-frame {
        width: 94%;
        height: 545px;
    }

    .story-medallion {
        width: 155px;
        height: 155px;

        font-size: 70px;
    }

    .story-stamp {
        left: 15px;

        width: 120px;
        height: 120px;

        font-size: 11px;
    }

    .story-content {
        padding-left: 25px;
    }

    .story-title {
        font-size: 72px;
    }

    .story-title small {
        font-size: 24px;
    }

    .story-item-content p {
        font-size: 12.5px;
    }
}


@media (max-width: 991.98px) {

    .story-section {
        padding: 85px 0 75px;
    }

    .story-row {
        max-width: 760px;
        margin-inline: auto;
    }

    .story-visual {
        min-height: 680px;
        margin-bottom: 35px;
    }

    .story-image-frame {
        width: 90%;
        height: 610px;

        margin-inline: auto;
    }

    .story-content {
        max-width: 100%;
        padding: 0 18px;
    }

    .story-heading-decoration {
        margin-inline: auto;
    }

    .story-eyebrow,
    .story-title {
        text-align: center;
    }

    .story-title-line {
        margin-inline: auto;
    }

    .story-lead {
        max-width: 100%;
    }

    .story-bg-column {
        display: none;
    }
}


@media (max-width: 767.98px) {

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

    .story-visual {
        min-height: 530px;
        padding: 30px 0 60px;
    }

    .story-image-frame {
        width: 100%;
        height: 465px;
    }

    .story-medallion {
        top: 0;
        left: -12px;

        width: 115px;
        height: 115px;

        font-size: 52px;
    }

    .story-stamp {
        left: 4px;
        bottom: 20px;

        width: 100px;
        height: 100px;

        font-size: 9px;
    }

    .story-stamp i {
        margin-block: 4px;

        font-size: 25px;
    }

    .story-year-line {
        right: 0;
        bottom: 4px;

        width: 63%;
        gap: 8px;
    }

    .story-year-line strong {
        font-size: 15px;
    }

    .story-heading-decoration {
        width: 260px;
    }

    .story-title {
        font-size: clamp(50px, 14vw, 67px);
    }

    .story-title small {
        font-size: 19px;
    }

    .story-lead {
        font-size: 12.5px;
        line-height: 1.8;
    }

    .story-item {
        grid-template-columns: 45px 1fr;
        gap: 12px;
    }

    .story-timeline::before {
        left: 18px;
    }

    .story-item-icon {
        width: 38px;

        font-size: 25px;
    }

    .story-item-content {
        padding-left: 12px;
    }

    .story-item-content p {
        font-size: 12px;
        line-height: 1.75;
    }

    .story-bottom-ornament {
        margin-top: 55px;
    }
}


@media (max-width: 479.98px) {

    .story-visual {
        min-height: 455px;
    }

    .story-image-frame {
        height: 390px;
    }

    .story-medallion {
        width: 92px;
        height: 92px;

        font-size: 41px;
    }

    .story-stamp {
        width: 85px;
        height: 85px;

        font-size: 7.5px;
    }

    .story-stamp-title {
        font-size: 9px;
    }

    .story-stamp i {
        font-size: 20px;
    }

    .story-year-line {
        width: 66%;
    }

    .story-title {
        font-size: 47px;
    }

    .story-title small {
        font-size: 16px;
    }

    .story-heading-decoration {
        width: 215px;
    }

    .story-content {
        padding-inline: 7px;
    }

    .story-lead {
        font-size: 12px;
    }

    .story-item-content p {
        font-size: 11.5px;
    }
}

/* =========================================================
   STORY TIMELINE FIX
   İkon, çizgi ve metin hizalama düzeltmesi
========================================================= */

.story-timeline {
    position: relative;
    padding-left: 0;
}

/* Ana dikey çizgi */
.story-timeline::before {
    content: "";

    position: absolute;
    top: 31px;
    bottom: 31px;
    left: 34px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(21, 132, 138, 0.45) 7%,
            rgba(21, 132, 138, 0.45) 93%,
            transparent 100%
        );
}

/* Her timeline satırı */
.story-item {
    position: relative;

    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: start;
    gap: 25px;

    padding-bottom: 34px;
}

.story-item:last-child {
    padding-bottom: 0;
}


/* =========================================================
   TIMELINE ICON MEDALLION
========================================================= */

.story-item-icon {
    position: relative;
    z-index: 3;

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

    width: 68px;
    height: 68px;
    min-height: 68px;

    margin: 0;

    color: var(--primary);
    background-color: #f7f0e6;

    border: 1px solid rgba(21, 132, 138, 0.48);
    border-radius: 50%;

    box-shadow:
        0 7px 18px rgba(70, 48, 32, 0.07),
        inset 0 0 0 5px rgba(255, 255, 255, 0.42);

    font-size: 27px;

    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

/* İç kesik çember */
.story-item-icon::after {
    content: "";

    position: absolute;
    inset: 6px;

    border: 1px dashed rgba(21, 132, 138, 0.27);
    border-radius: 50%;

    pointer-events: none;
}

/* Eski küçük noktayı tamamen kaldır */
.story-item-icon::before {
    display: none;
}

/* İkonu eski margin-top etkisinden kurtar */
.story-item-icon i {
    position: relative;
    z-index: 2;

    margin: 0;
    line-height: 1;
}

/* Hover */
.story-item:hover .story-item-icon {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);

    transform: translateY(-3px);
}

.story-item:hover .story-item-icon::after {
    border-color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   TIMELINE CONTENT
========================================================= */

.story-item-content {
    min-width: 0;

    padding: 5px 0 0;

    /* Önceki ikinci dikey çizgiyi kaldır */
    border-left: 0;
}

.story-item-content p {
    margin: 0;

    color: #574e46;

    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.82;
}


/* =========================================================
   TIMELINE RESPONSIVE FIX
========================================================= */

@media (max-width: 1199.98px) {

    .story-item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 21px;
    }

    .story-timeline::before {
        left: 31px;
    }

    .story-item-icon {
        width: 62px;
        height: 62px;
        min-height: 62px;

        font-size: 25px;
    }
}


@media (max-width: 767.98px) {

    .story-item {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 16px;

        padding-bottom: 27px;
    }

    .story-timeline::before {
        top: 26px;
        bottom: 26px;
        left: 26px;
    }

    .story-item-icon {
        width: 52px;
        height: 52px;
        min-height: 52px;

        font-size: 21px;
    }

    .story-item-icon::after {
        inset: 5px;
    }

    .story-item-content {
        padding-top: 2px;
    }

    .story-item-content p {
        font-size: 12px;
        line-height: 1.75;
    }
}


@media (max-width: 479.98px) {

    .story-item {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 13px;
    }

    .story-timeline::before {
        left: 23px;
    }

    .story-item-icon {
        width: 46px;
        height: 46px;
        min-height: 46px;

        font-size: 19px;
    }

    .story-item-content p {
        font-size: 11.5px;
    }
}

/* =========================================================
   RESTORATION JOURNEY SECTION
========================================================= */

.restoration-journey {
    position: relative;
    z-index: 1;

    min-height: 820px;
    padding: 90px 0 120px;
    overflow: hidden;

    background-image: url("../images/banner_bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    border-top: 1px solid rgba(111, 85, 63, 0.14);
    border-bottom: 1px solid rgba(111, 85, 63, 0.14);
}

.restoration-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            180deg,
            rgba(250, 245, 236, 0.2) 0%,
            rgba(250, 245, 236, 0.1) 48%,
            rgba(238, 221, 198, 0.18) 100%
        );
}

.restoration-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   RESTORATION HEADING
========================================================= */

.restoration-heading {
    max-width: 1000px;
    margin: 0 auto 70px;
}

.restoration-top-ornament,
.restoration-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    margin-inline: auto;
}

.restoration-top-ornament {
    width: 220px;
    margin-bottom: 13px;
}

.restoration-title-divider {
    width: 255px;
    margin-top: 23px;
    margin-bottom: 24px;
}

.restoration-top-ornament span,
.restoration-title-divider span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.58)
        );
}

.restoration-top-ornament span:last-child,
.restoration-title-divider span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.58),
            transparent
        );
}

.restoration-top-ornament i {
    color: var(--brown);
    font-size: 18px;
}

.restoration-title-divider i {
    color: var(--primary);
    font-size: 7px;
}

.restoration-eyebrow {
    display: block;

    margin-bottom: 13px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.restoration-title {
    margin-bottom: 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(48px, 4.1vw, 70px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: 0.015em;
}

.restoration-intro {
    max-width: 720px;
    margin: 0 auto;

    color: #5d5248;

    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
}

.restoration-intro strong {
    color: var(--brown-dark);
    font-weight: 600;
}


/* =========================================================
   RESTORATION CARDS
========================================================= */

.restoration-row {
    max-width: 1280px;
    margin-inline: auto;
}

.restoration-card {
    position: relative;

    height: 100%;
    min-height: 405px;

    padding-top: 67px;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.restoration-card-body {
    position: relative;

    height: 100%;
    min-height: 345px;

    padding: 94px 34px 40px;

    background:
        linear-gradient(
            180deg,
            rgba(252, 248, 241, 0.95),
            rgba(246, 237, 224, 0.93)
        );

    border: 1px solid rgba(120, 91, 68, 0.45);

    clip-path: polygon(
        10% 0,
        90% 0,
        100% 8%,
        100% 92%,
        92% 100%,
        8% 100%,
        0 92%,
        0 8%
    );

    box-shadow:
        0 16px 35px rgba(79, 54, 35, 0.1),
        inset 0 0 0 7px rgba(255, 255, 255, 0.25);

    text-align: center;
}

.restoration-card-body::before {
    content: "";

    position: absolute;
    inset: 10px;

    border: 1px solid rgba(111, 85, 63, 0.13);

    clip-path: polygon(
        9% 0,
        91% 0,
        100% 9%,
        100% 91%,
        91% 100%,
        9% 100%,
        0 91%,
        0 9%
    );

    pointer-events: none;
}


/* =========================================================
   RESTORATION ICONS
========================================================= */

.restoration-icon-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;

    width: 132px;
    height: 132px;

    padding: 8px;

    background-color: rgba(247, 239, 226, 0.97);

    border: 1px solid rgba(111, 85, 63, 0.48);
    border-radius: 50%;

    box-shadow:
        0 15px 30px rgba(73, 49, 31, 0.12),
        inset 0 0 0 5px rgba(255, 255, 255, 0.48);

    transform: translateX(-50%);
}

.restoration-icon-wrap::before {
    content: "";

    position: absolute;
    inset: 7px;

    border: 1px dashed rgba(111, 85, 63, 0.32);
    border-radius: 50%;
}

.restoration-icon-ring {
    position: relative;
    z-index: 2;

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

    width: 100%;
    height: 100%;

    color: var(--primary);
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.9),
            rgba(237, 222, 202, 0.55)
        );

    border-radius: 50%;

    font-size: 44px;

    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.restoration-card:hover {
    transform: translateY(-10px);
}

.restoration-card:hover .restoration-icon-ring {
    color: var(--white);
    background: var(--primary);

    transform: rotate(-4deg);
}


/* =========================================================
   RESTORATION CARD CONTENT
========================================================= */

.restoration-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 12px;
}

.restoration-step span {
    display: block;
    width: 35px;
    height: 1px;

    background-color: rgba(111, 85, 63, 0.38);
}

.restoration-step strong {
    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
}

.restoration-card h3 {
    margin-bottom: 10px;

    color: var(--primary-dark);

    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.restoration-small-ornament {
    margin-bottom: 15px;

    color: rgba(111, 85, 63, 0.62);

    font-size: 13px;
}

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

    margin-bottom: 0;

    color: #62564c;

    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   RESTORATION RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .restoration-journey {
        padding: 85px 0 105px;
    }

    .restoration-row {
        max-width: 900px;
    }

    .restoration-card {
        min-height: 400px;
    }
}


@media (max-width: 991.98px) {

    .restoration-heading {
        margin-bottom: 55px;
    }

    .restoration-card-body {
        min-height: 335px;
    }
}


@media (max-width: 767.98px) {

    .restoration-journey {
        padding: 68px 0 80px;

        background-position: center bottom;
    }

    .restoration-heading {
        margin-bottom: 44px;
    }

    .restoration-top-ornament {
        width: 175px;
    }

    .restoration-title-divider {
        width: 210px;
    }

    .restoration-eyebrow {
        font-size: 9px;
        letter-spacing: 0.2em;
    }

    .restoration-title {
        font-size: clamp(39px, 10vw, 52px);
    }

    .restoration-intro {
        font-size: 12.5px;
        line-height: 1.8;
    }

    .restoration-card {
        max-width: 390px;
        margin-inline: auto;

        padding-top: 58px;
    }

    .restoration-card-body {
        min-height: 315px;
        padding: 80px 28px 34px;
    }

    .restoration-icon-wrap {
        width: 116px;
        height: 116px;
    }

    .restoration-icon-ring {
        font-size: 38px;
    }

    .restoration-step strong {
        font-size: 33px;
    }

    .restoration-card h3 {
        font-size: 22px;
    }

    .restoration-card p {
        font-size: 12px;
    }
}


@media (max-width: 479.98px) {

    .restoration-card {
        padding-top: 52px;
    }

    .restoration-card-body {
        padding-inline: 21px;
    }

    .restoration-icon-wrap {
        width: 105px;
        height: 105px;
    }

    .restoration-icon-ring {
        font-size: 34px;
    }

    .restoration-card h3 {
        font-size: 20px;
    }
}

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

.site-footer {
    position: relative;

    overflow: hidden;

    color: #f6ead8;
    background:
        radial-gradient(
            circle at 18% 22%,
            rgba(255, 255, 255, 0.045),
            transparent 30%
        ),
        radial-gradient(
            circle at 82% 68%,
            rgba(0, 0, 0, 0.1),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #0d6870 0%,
            #095c64 48%,
            #084f57 100%
        );

    border-top: 1px solid rgba(246, 234, 216, 0.22);
}

.site-footer::before {
    content: "";

    position: absolute;
    right: -90px;
    bottom: 70px;

    width: 480px;
    height: 360px;

    opacity: 0.045;
    pointer-events: none;

    background-image: url("../images/logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    filter: grayscale(1) brightness(4);
}

.footer-main {
    position: relative;
    z-index: 2;

    padding-top: 88px;
    padding-bottom: 75px;
}


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

.footer-about {
    max-width: 390px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 18px;
}

.footer-logo img {
    width: auto;
    max-width: 245px;
    max-height: 190px;

    object-fit: contain;

    filter:
        brightness(0)
        invert(91%)
        sepia(20%)
        saturate(480%)
        hue-rotate(338deg)
        brightness(105%)
        contrast(92%);
}

.footer-about p {
    max-width: 360px;
    margin-bottom: 0;

    color: rgba(246, 234, 216, 0.86);

    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.95;
}

.footer-ornament {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 235px;
    margin-bottom: 25px;
}

.footer-ornament span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(240, 211, 169, 0.62)
        );
}

.footer-ornament span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(240, 211, 169, 0.62),
            transparent
        );
}

.footer-ornament i {
    color: #e8c792;
    font-size: 16px;
}


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

.footer-column {
    position: relative;
}

.footer-title {
    margin-bottom: 12px;

    color: #f2d7aa;

    font-family: var(--font-heading);
    font-size: 31px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.footer-title-decoration {
    display: flex;
    align-items: center;
    gap: 9px;

    width: 245px;
    margin-bottom: 30px;
}

.footer-title-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(240, 211, 169, 0.55)
        );
}

.footer-title-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(240, 211, 169, 0.55),
            transparent
        );
}

.footer-title-decoration i {
    color: #e8c792;
    font-size: 13px;
}


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

.footer-menu {
    display: grid;
    gap: 12px;
}

.footer-menu li {
    line-height: 1;
}

.footer-menu a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: rgba(246, 234, 216, 0.9);

    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;

    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-menu a i {
    color: #e6bd7f;
    font-size: 18px;

    transition: transform var(--transition);
}

.footer-menu a:hover {
    color: #ffffff;

    transform: translateX(4px);
}

.footer-menu a:hover i {
    transform: translateX(3px);
}


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

.footer-contact-list {
    display: grid;
    gap: 20px;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 12px;

    color: rgba(246, 234, 216, 0.9);

    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

.footer-contact-list li > i {
    color: #e8c792;
    font-size: 23px;
}

.footer-contact-list a {
    color: inherit;

    transition: color var(--transition);
}

.footer-contact-list a:hover {
    color: #ffffff;
}


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

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 32px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 47px;
    height: 47px;

    color: #f2d7aa;
    background-color: transparent;

    border: 1px solid rgba(242, 215, 170, 0.68);
    border-radius: 50%;

    font-size: 20px;

    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.footer-socials a:hover {
    color: var(--primary-dark);
    background-color: #f2d7aa;
    border-color: #f2d7aa;

    transform: translateY(-4px);
}


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

.footer-bottom {
    position: relative;
    z-index: 3;

    border-top: 1px solid rgba(246, 234, 216, 0.28);
    background-color: rgba(3, 45, 50, 0.23);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;

    min-height: 94px;

    text-align: center;
}

.footer-bottom-inner p {
    margin: 0;

    color: rgba(246, 234, 216, 0.9);

    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-bottom-decoration {
    position: relative;

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

    width: 100px;

    color: #e8c792;
    font-size: 19px;
}

.footer-bottom-decoration::before,
.footer-bottom-decoration::after {
    content: "";

    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(232, 199, 146, 0.42);
}

.footer-bottom-decoration::before {
    margin-right: 9px;
}

.footer-bottom-decoration::after {
    margin-left: 9px;
}


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

@media (max-width: 1199.98px) {

    .footer-main {
        padding-top: 75px;
        padding-bottom: 65px;
    }

    .footer-logo img {
        max-width: 215px;
        max-height: 170px;
    }

    .footer-menu a,
    .footer-contact-list li {
        font-size: 16px;
    }
}


@media (max-width: 991.98px) {

    .footer-main {
        padding-top: 65px;
        padding-bottom: 55px;
    }

    .footer-about {
        max-width: 520px;
    }

    .footer-about p {
        max-width: 500px;
    }

    .footer-column {
        padding-top: 7px;
    }

    .footer-title-decoration {
        width: 210px;
    }

    .footer-bottom-inner {
        min-height: 82px;
    }
}


@media (max-width: 767.98px) {

    .footer-main {
        padding-top: 55px;
        padding-bottom: 45px;
    }

    .footer-logo img {
        max-width: 185px;
        max-height: 145px;
    }

    .footer-about p {
        font-size: 12.5px;
        line-height: 1.85;
    }

    .footer-title {
        font-size: 27px;
    }

    .footer-title-decoration {
        width: 190px;
        margin-bottom: 23px;
    }

    .footer-menu {
        gap: 10px;
    }

    .footer-menu a,
    .footer-contact-list li {
        font-size: 15px;
    }

    .footer-contact-list {
        gap: 16px;
    }

    .footer-contact-list li {
        grid-template-columns: 28px minmax(0, 1fr);
    }

    .footer-contact-list li > i {
        font-size: 20px;
    }

    .footer-socials a {
        width: 43px;
        height: 43px;

        font-size: 18px;
    }

    .footer-bottom-inner {
        gap: 17px;
        min-height: 76px;
    }

    .footer-bottom-inner p {
        font-size: 14px;
    }

    .footer-bottom-decoration {
        width: 58px;
    }
}


@media (max-width: 479.98px) {

    .footer-main {
        padding-top: 48px;
        padding-bottom: 38px;
    }

    .footer-logo img {
        max-width: 165px;
        max-height: 130px;
    }

    .footer-ornament {
        width: 195px;
    }

    .footer-title {
        font-size: 25px;
    }

    .footer-menu a,
    .footer-contact-list li {
        font-size: 14px;
    }

    .footer-contact-list li {
        gap: 8px;
    }

    .footer-bottom-inner {
        gap: 10px;
    }

    .footer-bottom-inner p {
        font-size: 12.5px;
    }

    .footer-bottom-decoration {
        width: 35px;
    }

    .footer-bottom-decoration::before,
    .footer-bottom-decoration::after {
        display: none;
    }
}

/* =========================================================
   HAKKIMIZDA SAYFASI
========================================================= */

.about-page {
    background-color: var(--cream-light);
}


/* =========================================================
   HAKKIMIZDA İNCE BANNER
========================================================= */

.about-banner {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 275px;
    overflow: hidden;

    background-image: url("../images/slider/banner.jpg");
    background-position: center 47%;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 1px solid rgba(111, 85, 63, 0.18);
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(53, 38, 27, 0.78),
            rgba(78, 56, 40, 0.57) 50%,
            rgba(53, 38, 27, 0.74)
        );
}

.about-banner-container {
    position: relative;
    z-index: 2;
}

.about-banner-content {
    color: var(--white);
    text-align: center;
}

.about-banner-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #efd4a8;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.about-banner-content h1 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: clamp(58px, 5vw, 83px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.about-banner-decoration {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 270px;
    margin: 22px auto 0;
}

.about-banner-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239, 212, 168, 0.8)
        );
}

.about-banner-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(239, 212, 168, 0.8),
            transparent
        );
}

.about-banner-decoration i {
    color: #efd4a8;
    font-size: 16px;
}


/* =========================================================
   HAKKIMIZDA TANITIM
========================================================= */

.about-intro-section {
    position: relative;

    padding: 105px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 84% 25%,
            rgba(21, 132, 138, 0.055),
            transparent 31%
        ),
        var(--cream-light);
}

.about-intro-content {
    max-width: 590px;
}

.about-section-eyebrow {
    display: block;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.about-intro-content h2,
.about-activities-content h2 {
    margin: 14px 0 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(48px, 4.1vw, 68px);
    font-weight: 500;
    line-height: 1.02;
}

.about-title-decoration {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 235px;
    margin: 26px 0 30px;
}

.about-title-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(21, 132, 138, 0.4);
}

.about-title-decoration i {
    color: var(--primary);
    font-size: 7px;
}

.about-intro-content > p,
.about-activities-content > p {
    margin-bottom: 17px;

    color: #62584f;

    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.9;
}

.about-intro-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.about-quote {
    position: relative;

    margin: 32px 0 0;
    padding: 22px 27px 22px 43px;

    background-color: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(111, 85, 63, 0.18);
}

.about-quote > i {
    position: absolute;
    top: 16px;
    left: 14px;

    color: var(--primary);
    font-size: 24px;
}

.about-quote p {
    margin: 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    line-height: 1.45;
}


/* =========================================================
   HAKKIMIZDA GÖRSEL
========================================================= */

.about-visual {
    position: relative;

    min-height: 610px;
    padding: 25px 24px 55px 42px;
}

.about-visual-wash {
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        radial-gradient(
            ellipse at 48% 48%,
            rgba(21, 132, 138, 0.15),
            transparent 62%
        ),
        radial-gradient(
            ellipse at 68% 62%,
            rgba(123, 94, 73, 0.12),
            transparent 58%
        );

    clip-path: polygon(
        4% 12%,
        20% 4%,
        36% 9%,
        53% 2%,
        72% 8%,
        96% 5%,
        92% 23%,
        98% 42%,
        92% 62%,
        97% 82%,
        81% 97%,
        61% 92%,
        43% 98%,
        23% 91%,
        4% 96%,
        9% 76%,
        2% 57%,
        8% 36%
    );
}

.about-image-frame {
    position: relative;
    z-index: 2;

    width: 91%;

    margin-left: auto;
    overflow: hidden;

    border: 10px solid rgba(255, 255, 255, 0.8);

    box-shadow:
        0 28px 65px rgba(65, 44, 29, 0.16);
}

.about-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    border: 1px solid rgba(111, 85, 63, 0.23);

    pointer-events: none;
}

.about-image-frame img {
    width: 100%;
    height: 100%;

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

    transition: transform 0.9s ease;
}

.about-visual:hover .about-image-frame img {
    transform: scale(1.04);
}

.about-year-seal {
    position: absolute;
    right: 0;
    bottom: 23px;
    z-index: 4;

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

    width: 132px;
    height: 132px;

    color: var(--primary-dark);
    background-color: rgba(248, 242, 233, 0.97);

    border: 2px solid rgba(21, 132, 138, 0.55);
    border-radius: 50%;

    font-family: var(--font-heading);
    text-align: center;
}

.about-year-seal::before {
    content: "";

    position: absolute;
    inset: 7px;

    border: 1px dashed rgba(21, 132, 138, 0.45);
    border-radius: 50%;
}

.about-year-seal span,
.about-year-seal strong,
.about-year-seal small {
    position: relative;
    z-index: 2;
}

.about-year-seal span,
.about-year-seal small {
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.about-year-seal strong {
    color: var(--brown-dark);

    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}


/* =========================================================
   TEMEL YAKLAŞIM KARTLARI
========================================================= */

.about-values-section {
    padding: 100px 0 105px;

    background:
        linear-gradient(
            rgba(248, 242, 233, 0.95),
            rgba(248, 242, 233, 0.95)
        ),
        url("../images/banner_bg.jpg");

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

    border-top: 1px solid rgba(111, 85, 63, 0.12);
    border-bottom: 1px solid rgba(111, 85, 63, 0.12);
}

.about-section-heading {
    max-width: 830px;
    margin: 0 auto 58px;
}

.about-section-heading h2 {
    margin: 10px 0 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(45px, 4vw, 64px);
    font-weight: 500;
    line-height: 1;
}

.about-heading-decoration {
    display: flex;
    align-items: center;
    gap: 11px;

    width: 285px;
    margin: 21px auto;
}

.about-heading-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.48)
        );
}

.about-heading-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.48),
            transparent
        );
}

.about-heading-decoration i {
    color: var(--primary);
    font-size: 14px;
}

.about-section-heading > p {
    max-width: 680px;
    margin: 0 auto;

    color: #655a50;

    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.85;
}

.about-values-row {
    padding-top: 42px;
}

.about-value-card {
    position: relative;

    height: 100%;
    min-height: auto;

    padding: 67px 34px 35px;

    background-color: rgba(253, 249, 243, 0.88);
    border: 1px solid rgba(111, 85, 63, 0.18);

    text-align: center;

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

.about-value-card::before {
    content: "";

    position: absolute;
    inset: 10px;

    border: 1px solid rgba(111, 85, 63, 0.08);

    pointer-events: none;
}

.about-value-card:hover {
    border-color: rgba(21, 132, 138, 0.38);

    box-shadow:
        0 22px 48px rgba(68, 47, 32, 0.1);

    transform: translateY(-7px);
}

.about-value-icon {
    position: absolute;
    top: -43px;
    left: 50%;
    z-index: 2;

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

    width: 86px;
    height: 86px;

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

    border: 1px solid rgba(21, 132, 138, 0.4);
    border-radius: 50%;

    box-shadow:
        0 10px 25px rgba(67, 46, 31, 0.1);

    font-size: 32px;

    transform: translateX(-50%);
}

.about-value-number {
    display: block;

    margin-bottom: 12px;

    color: var(--brown);

    font-family: var(--font-heading);
    font-size: 18px;
}

.about-value-card h3 {
    margin-bottom: 17px;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-value-card p {
    margin: 0;

    color: #655a50;

    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.85;
}


/* =========================================================
   DERNEK ÇALIŞMALARI
========================================================= */

.about-activities-section {
    padding: 105px 0;

    background-color: var(--cream-light);
}

.about-activities-content {
    max-width: 520px;
}

.about-project-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    min-height: 51px;
    margin-top: 8px;
    padding: 0 23px;

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

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.about-project-button:hover {
    color: var(--white);
    background-color: var(--brown-dark);

    transform: translateY(-2px);
}

.about-activity-list {
    border-top: 1px solid rgba(111, 85, 63, 0.18);
}

.about-activity-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 18px;

    padding: 25px 12px;

    border-bottom: 1px solid rgba(111, 85, 63, 0.18);

    transition:
        padding var(--transition),
        background-color var(--transition);
}

.about-activity-item:hover {
    color: inherit;
    padding-left: 23px;

    background-color: rgba(21, 132, 138, 0.045);
}

.about-activity-number {
    color: var(--primary);

    font-family: var(--font-heading);
    font-size: 29px;
}

.about-activity-item h3 {
    margin-bottom: 3px;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
}

.about-activity-item p {
    margin: 0;

    color: #71665d;

    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.65;
}

.about-activity-item > i {
    color: var(--primary);
    font-size: 18px;
}


/* =========================================================
   ÜYELİK VE DESTEK
========================================================= */

.about-support-section {
    position: relative;

    padding: 85px 0;
    overflow: hidden;

    color: var(--white);

    background-image: url("../images/hakkimizda-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-support-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 91, 99, 0.97),
            rgba(6, 91, 99, 0.92) 57%,
            rgba(7, 68, 74, 0.95)
        );
}

.about-support-container {
    position: relative;
    z-index: 2;
}

.about-support-eyebrow,
.about-bank-eyebrow {
    display: block;

    color: #efd4a8;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

.about-support-content h2 {
    margin: 9px 0 0;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: clamp(43px, 4vw, 60px);
    font-weight: 500;
    line-height: 1;
}

.about-support-decoration {
    display: flex;
    align-items: center;
    gap: 11px;

    width: 245px;
    margin: 22px 0;
}

.about-support-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239, 212, 168, 0.72)
        );
}

.about-support-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(239, 212, 168, 0.72),
            transparent
        );
}

.about-support-decoration i {
    color: #efd4a8;
}

.about-support-content p {
    max-width: 500px;
    margin: 0;

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

    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.85;
}

.about-download-card {
    display: flex;
    align-items: center;
    gap: 15px;

    min-height: 112px;
    padding: 18px 20px;

    color: var(--brown-dark);
    background-color: #f7ead5;

    border: 1px solid rgba(239, 212, 168, 0.72);

    transition:
        transform var(--transition),
        background-color var(--transition);
}

.about-download-card:hover {
    color: var(--brown-dark);
    background-color: var(--white);

    transform: translateY(-4px);
}

.about-download-card > i:first-child {
    color: var(--primary);
    font-size: 29px;
}

.about-download-card > i:last-child {
    margin-left: auto;

    color: var(--primary);
    font-size: 18px;
}

.about-download-card span {
    display: flex;
    flex-direction: column;

    font-family: var(--font-heading);
    font-size: 19px;
}

.about-download-card small {
    margin-bottom: 2px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-bank-card {
    position: relative;

    padding: 31px 34px;

    color: var(--brown-dark);
    background-color: rgba(250, 244, 234, 0.97);

    border: 1px solid rgba(239, 212, 168, 0.75);
}

.about-bank-card::before {
    content: "";

    position: absolute;
    inset: 8px;

    border: 1px solid rgba(111, 85, 63, 0.13);

    pointer-events: none;
}

.about-bank-card > * {
    position: relative;
    z-index: 2;
}

.about-bank-card h3 {
    margin: 4px 0 15px;

    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
}

.about-bank-divider {
    width: 58px;
    height: 1px;
    margin-bottom: 18px;

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

.about-bank-card dl {
    margin: 0;
}

.about-bank-card dl > div {
    padding: 10px 0;

    border-bottom: 1px solid rgba(111, 85, 63, 0.14);
}

.about-bank-card dt {
    margin-bottom: 2px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 8px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-bank-card dd {
    margin: 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   HAKKIMIZDA RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .about-banner {
        min-height: 240px;
    }

    .about-intro-section,
    .about-activities-section {
        padding-block: 88px;
    }

    .about-visual {
        min-height: 555px;
    }

    .about-image-frame {
        height: 480px;
    }
}


@media (max-width: 991.98px) {

    .about-intro-content {
        max-width: 100%;
    }

    .about-visual {
        max-width: 760px;
        margin-inline: auto;
    }

    .about-values-row,
    .about-activities-section .row {
        max-width: 760px;
        margin-inline: auto;
    }

    .about-value-card {
        min-height: auto;
        margin-top: 42px;
    }
}


@media (max-width: 767.98px) {

    .about-banner {
        min-height: 205px;
        background-position: 60% center;
    }

    .about-banner-content h1 {
        font-size: 49px;
    }

    .about-intro-section,
    .about-values-section,
    .about-activities-section,
    .about-support-section {
        padding-block: 65px;
    }

    .about-intro-content h2,
    .about-activities-content h2 {
        font-size: 43px;
    }

    .about-intro-content > p,
    .about-activities-content > p {
        font-size: 12px;
    }

    .about-visual {
        min-height: 455px;
        padding: 18px 0 48px;
    }

    .about-image-frame {
        width: 100%;
        height: 405px;

        border-width: 7px;
    }

    .about-year-seal {
        right: -2px;

        width: 103px;
        height: 103px;
    }

    .about-year-seal strong {
        font-size: 27px;
    }

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

    .about-activity-item {
        grid-template-columns: 45px minmax(0, 1fr) 24px;
        gap: 12px;
    }

    .about-support-content h2 {
        font-size: 42px;
    }
}


@media (max-width: 479.98px) {

    .about-banner {
        min-height: 180px;
    }

    .about-banner-content h1 {
        font-size: 42px;
    }

    .about-banner-decoration {
        width: 205px;
    }

    .about-intro-content h2,
    .about-activities-content h2 {
        font-size: 37px;
    }

    .about-quote p {
        font-size: 19px;
    }

    .about-visual {
        min-height: 390px;
    }

    .about-image-frame {
        height: auto;
    }

    .about-year-seal {
        width: 88px;
        height: 88px;
    }

    .about-year-seal span,
    .about-year-seal small {
        font-size: 7px;
    }

    .about-year-seal strong {
        font-size: 23px;
    }

    .about-section-heading h2 {
        font-size: 35px;
    }

    .about-activity-item h3 {
        font-size: 20px;
    }

    .about-bank-card {
        padding-inline: 24px;
    }

    .about-bank-card dd {
        overflow-wrap: anywhere;
        font-size: 13px;
    }
}

/* =========================================================
   HAKKIMIZDA DESTEK ALANI - AÇIK TEMA DÜZELTMESİ
========================================================= */

.about-support-section {
    position: relative;

    padding: 90px 0;
    overflow: hidden;

    color: var(--brown-dark);
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(21, 132, 138, 0.055),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(123, 94, 73, 0.05),
            transparent 30%
        ),
        var(--cream-light);

    border-top: 1px solid rgba(111, 85, 63, 0.13);
    border-bottom: 1px solid rgba(111, 85, 63, 0.13);
}

/* Eski turkuaz kaplamayı kapat */
.about-support-overlay {
    display: none;
}

.about-support-container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SOL METİN
========================================================= */

.about-support-eyebrow {
    color: var(--primary-dark);
}

.about-support-content h2 {
    color: var(--brown-dark);
}

.about-support-decoration span {
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.46)
        );
}

.about-support-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.46),
            transparent
        );
}

.about-support-decoration i {
    color: var(--primary);
}

.about-support-content p {
    color: #62584f;
}


/* =========================================================
   ÜYELİK FORMU KARTI
========================================================= */

.about-download-card {
    position: relative;

    min-height: 125px;

    color: var(--brown-dark);
    background-color: rgba(255, 255, 255, 0.72);

    border: 1px solid rgba(111, 85, 63, 0.19);

    box-shadow:
        0 18px 42px rgba(68, 47, 32, 0.07);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.about-download-card::before {
    content: "";

    position: absolute;
    inset: 8px;

    border: 1px solid rgba(111, 85, 63, 0.1);

    pointer-events: none;
}

.about-download-card:hover {
    color: var(--brown-dark);
    background-color: var(--white);
    border-color: rgba(21, 132, 138, 0.42);

    box-shadow:
        0 24px 52px rgba(68, 47, 32, 0.12);

    transform: translateY(-4px);
}

.about-download-card > * {
    position: relative;
    z-index: 2;
}

.about-download-card > i:first-child,
.about-download-card > i:last-child {
    color: var(--primary);
}

.about-download-card small {
    color: var(--primary-dark);
}


/* =========================================================
   BANKA KARTI
========================================================= */

.about-bank-card {
    color: var(--brown-dark);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.82),
            rgba(248, 242, 233, 0.93)
        );

    border: 1px solid rgba(111, 85, 63, 0.2);

    box-shadow:
        0 18px 42px rgba(68, 47, 32, 0.07);
}

.about-bank-eyebrow {
    color: var(--primary-dark);
}

.about-bank-card h3 {
    color: var(--brown-dark);
}

.about-bank-card dt {
    color: var(--primary-dark);
}

.about-bank-card dd {
    color: var(--brown-dark);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

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

    .about-download-card {
        min-height: 110px;
    }
}


@media (max-width: 767.98px) {

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

    .about-support-content {
        margin-bottom: 8px;
    }

    .about-download-card {
        min-height: 100px;
    }
}


/* =========================================================
   TARİHÇE SAYFASI
========================================================= */

.history-page {
    background-color: var(--cream-light);
}


/* =========================================================
   TARİHÇE İNCE BANNER
========================================================= */

.history-banner {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 275px;
    overflow: hidden;

    background-image: url("../images/slider/banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 1px solid rgba(111, 85, 63, 0.18);
}

.history-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(53, 38, 27, 0.71),
            rgba(76, 55, 40, 0.47) 50%,
            rgba(53, 38, 27, 0.67)
        );
}

.history-banner-container {
    position: relative;
    z-index: 2;
}

.history-banner-content {
    color: var(--white);
    text-align: center;
}

.history-banner-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #efd4a8;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.history-banner-content h1 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: clamp(58px, 5vw, 83px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.history-banner-decoration {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 270px;
    margin: 22px auto 0;
}

.history-banner-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239, 212, 168, 0.8)
        );
}

.history-banner-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(239, 212, 168, 0.8),
            transparent
        );
}

.history-banner-decoration i {
    color: #efd4a8;
    font-size: 16px;
}


/* =========================================================
   TARİHÇE İÇERİĞİ
========================================================= */

.history-content-section {
    position: relative;

    padding: 100px 0 110px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(21, 132, 138, 0.045),
            transparent 28%
        ),
        radial-gradient(
            circle at 8% 58%,
            rgba(123, 94, 73, 0.04),
            transparent 26%
        ),
        var(--cream-light);
}

.history-block {
    position: relative;
}

.history-block-first {
    padding-top: 0;
}

.history-block-last {
    padding-bottom: 0;
}


/* =========================================================
   TARİHÇE METİNLERİ
========================================================= */

.history-text {
    max-width: 760px;
}

.history-section-label {
    display: block;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.history-text h2 {
    margin: 11px 0 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(40px, 3.4vw, 56px);
    font-weight: 500;
    line-height: 1.05;
}

.history-title-decoration {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 225px;
    margin: 23px 0 27px;
}

.history-title-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(21, 132, 138, 0.4);
}

.history-title-decoration i {
    color: var(--primary);
    font-size: 7px;
}

.history-text p {
    margin-bottom: 18px;

    color: #62584f;

    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.9;
    text-align: justify;
}

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


/* =========================================================
   TARİHÇE GÖRSELLERİ
========================================================= */

.history-image-card {
    position: relative;

    max-width: 530px;
    margin: 0;
}

.history-image-card-tall {
    max-width: 510px;
}

.history-image-frame {
    position: relative;

    padding: 9px;

    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(111, 85, 63, 0.2);

    box-shadow:
        0 24px 55px rgba(68, 47, 32, 0.09);
}

.history-image-frame::before {
    content: "";

    position: absolute;
    inset: 15px;
    z-index: 2;

    border: 1px solid rgba(255, 255, 255, 0.75);

    pointer-events: none;
}

.history-image-frame img {
    width: 100%;
    max-height: 690px;

    object-fit: cover;

    filter:
        sepia(0.06)
        saturate(0.94)
        contrast(1.02);

    transition:
        transform 0.9s ease,
        filter 0.6s ease;
}

.history-image-card:hover img {
    filter:
        sepia(0)
        saturate(1)
        contrast(1.03);

    transform: scale(1.018);
}

.history-image-frame {
    overflow: hidden;
}

.history-image-card figcaption {
    margin-top: 13px;

    color: var(--brown);

    font-family: var(--font-heading);
    font-size: 14px;
    font-style: italic;
    text-align: center;
}


/* =========================================================
   TARİHÇE BÖLÜM AYIRICISI
========================================================= */

.history-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    width: 100%;
    margin: 75px 0;
}

.history-section-divider span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.34)
        );
}

.history-section-divider span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.34),
            transparent
        );
}

.history-section-divider i {
    color: var(--primary);
    font-size: 7px;
}


/* =========================================================
   TARİHÇE RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .history-banner {
        min-height: 240px;
    }

    .history-content-section {
        padding: 85px 0 95px;
    }

    .history-text p {
        font-size: 12.5px;
    }
}


@media (max-width: 991.98px) {

    .history-block {
        max-width: 780px;
        margin-inline: auto;
    }

    .history-image-card {
        max-width: 650px;
        margin: 0 auto 20px;
    }

    .history-text {
        max-width: 100%;
    }

    .history-section-divider {
        margin: 60px 0;
    }
}


@media (max-width: 767.98px) {

    .history-banner {
        min-height: 205px;
        background-position: 58% center;
    }

    .history-banner-content h1 {
        font-size: 49px;
    }

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

    .history-text h2 {
        font-size: 39px;
    }

    .history-text p {
        font-size: 12px;
        line-height: 1.82;
        text-align: left;
    }

    .history-section-divider {
        margin: 47px 0;
    }

    .history-image-frame {
        padding: 6px;
    }

    .history-image-card figcaption {
        font-size: 12px;
    }
}


@media (max-width: 479.98px) {

    .history-banner {
        min-height: 180px;
    }

    .history-banner-content h1 {
        font-size: 42px;
    }

    .history-banner-decoration {
        width: 205px;
    }

    .history-text h2 {
        font-size: 34px;
    }

    .history-title-decoration {
        width: 180px;
    }

    .history-text p {
        font-size: 11.5px;
    }
}


/* =========================================================
   PROJELER SAYFASI
========================================================= */

.projects-page {
    background-color: var(--cream-light);
}


/* =========================================================
   PROJELER BANNER
========================================================= */

.projects-banner {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 275px;
    overflow: hidden;

    background-image: url("../images/slider/banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 1px solid rgba(111, 85, 63, 0.18);
}

.projects-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(53, 38, 27, 0.72),
            rgba(76, 55, 40, 0.48) 50%,
            rgba(53, 38, 27, 0.68)
        );
}

.projects-banner-container {
    position: relative;
    z-index: 2;
}

.projects-banner-content {
    color: var(--white);
    text-align: center;
}

.projects-banner-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #efd4a8;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.projects-banner-content h1 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: clamp(58px, 5vw, 83px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.projects-banner-decoration {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 270px;
    margin: 22px auto 0;
}

.projects-banner-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239, 212, 168, 0.8)
        );
}

.projects-banner-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(239, 212, 168, 0.8),
            transparent
        );
}

.projects-banner-decoration i {
    color: #efd4a8;
    font-size: 16px;
}


/* =========================================================
   PROJE İÇERİK ALANI
========================================================= */

.projects-content-section {
    position: relative;

    padding: 100px 0 110px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(21, 132, 138, 0.045),
            transparent 28%
        ),
        radial-gradient(
            circle at 8% 52%,
            rgba(123, 94, 73, 0.04),
            transparent 26%
        ),
        var(--cream-light);
}

.project-feature,
.project-person {
    position: relative;
}

.project-feature-first {
    padding-top: 0;
}

.project-person-last {
    padding-bottom: 0;
}


/* =========================================================
   PROJE BAŞLIKLARI VE METİNLER
========================================================= */

.project-feature-content,
.project-person-content {
    max-width: 820px;
}

.project-feature-content,
.project-person-content2 {
    max-width: 100%;
}

.project-section-label {
    display: block;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.project-feature-content h2,
.project-person-content h2 {
    margin: 11px 0 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(39px, 3.35vw, 55px);
    font-weight: 500;
    line-height: 1.05;
}

.project-person-content h2 {
    font-size: clamp(36px, 3vw, 49px);
}

.project-title-decoration {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 225px;
    margin: 23px 0 27px;
}

.project-title-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(21, 132, 138, 0.4);
}

.project-title-decoration i {
    color: var(--primary);
    font-size: 7px;
}

.project-feature-content p,
.project-person-content p {
    margin-bottom: 17px;

    color: #62584f;

    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.9;
}

.project-feature-content strong,
.project-person-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}


/* =========================================================
   PROJE GÖRSELLERİ
========================================================= */

.project-image-card,
.project-person-image {
    position: relative;

    max-width: 545px;
    margin: 0;
}

.project-image-card-wide {
    max-width: 650px;
}

.project-image-frame {
    position: relative;

    padding: 9px;
    overflow: hidden;

    background-color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(111, 85, 63, 0.2);

    box-shadow:
        0 24px 55px rgba(68, 47, 32, 0.09);
}

.project-image-frame::before {
    content: "";

    position: absolute;
    inset: 15px;
    z-index: 2;

    border: 1px solid rgba(255, 255, 255, 0.72);

    pointer-events: none;
}

.project-image-frame img {
    width: 100%;
    height: auto;
    max-height: 680px;

    object-fit: cover;

    filter:
        sepia(0.04)
        saturate(0.96)
        contrast(1.02);

    transition:
        transform 0.9s ease,
        filter 0.6s ease;
}

.project-image-card:hover img,
.project-person-image:hover img {
    filter:
        sepia(0)
        saturate(1)
        contrast(1.03);

    transform: scale(1.018);
}

.project-image-card figcaption {
    margin-top: 13px;

    color: var(--brown);

    font-family: var(--font-heading);
    font-size: 14px;
    font-style: italic;
    text-align: center;
}


/* =========================================================
   PROJE KATKIDA BULUNANLAR LİSTESİ
========================================================= */

.project-contributors-list {
    display: grid;
    gap: 14px;

    margin-top: 28px;
}

.project-contributors-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;

    color: #5f554c;

    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.7;
}

.project-contributors-list i {
    color: var(--primary);
    font-size: 13px;
}


/* =========================================================
   SERGİ BAĞLANTISI
========================================================= */

.project-external-link {
    padding: 12px 15px;

    background-color: rgba(21, 132, 138, 0.05);
    border-left: 2px solid var(--primary);
}

.project-external-link a {
    color: var(--primary-dark);
    font-weight: 600;

    transition: color var(--transition);
}

.project-external-link a:hover {
    color: var(--brown-dark);
}


/* =========================================================
   KİŞİ BÖLÜMLERİ
========================================================= */

.project-person-image {
    max-width: 390px;
}

.project-person-signature {
    display: flex;
    flex-direction: column;

    margin-top: 28px;
    padding-top: 18px;

    border-top: 1px solid rgba(111, 85, 63, 0.18);
}

.project-person-signature strong {
    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
}

.project-person-signature span {
    color: #756a61;

    font-family: var(--font-body);
    font-size: 11px;
}


/* =========================================================
   PROJELER AYIRICI
========================================================= */

.projects-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    width: 100%;
    margin: 75px 0;
}

.projects-divider span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.34)
        );
}

.projects-divider span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.34),
            transparent
        );
}

.projects-divider i {
    color: var(--primary);
    font-size: 7px;
}


/* =========================================================
   PROJELER RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .projects-banner {
        min-height: 240px;
    }

    .projects-content-section {
        padding: 85px 0 95px;
    }

    .project-feature-content p,
    .project-person-content p {
        font-size: 12.5px;
    }
}


@media (max-width: 991.98px) {

    .project-feature,
    .project-person {
        max-width: 780px;
        margin-inline: auto;
    }

    .project-image-card,
    .project-person-image {
        max-width: 650px;
        margin: 0 auto 20px;
    }

    .project-feature-content,
    .project-person-content {
        max-width: 100%;
    }

    .projects-divider {
        margin: 60px 0;
    }
}


@media (max-width: 767.98px) {

    .projects-banner {
        min-height: 205px;
        background-position: 58% center;
    }

    .projects-banner-content h1 {
        font-size: 49px;
    }

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

    .project-feature-content h2,
    .project-person-content h2 {
        font-size: 38px;
    }

    .project-feature-content p,
    .project-person-content p {
        font-size: 12px;
        line-height: 1.82;
    }

    .projects-divider {
        margin: 47px 0;
    }

    .project-image-frame {
        padding: 6px;
    }

    .project-image-card figcaption {
        font-size: 12px;
    }

    .project-contributors-list li {
        font-size: 11.5px;
    }
}


@media (max-width: 479.98px) {

    .projects-banner {
        min-height: 180px;
    }

    .projects-banner-content h1 {
        font-size: 42px;
    }

    .projects-banner-decoration {
        width: 205px;
    }

    .project-feature-content h2,
    .project-person-content h2 {
        font-size: 33px;
    }

    .project-title-decoration {
        width: 180px;
    }

    .project-feature-content p,
    .project-person-content p {
        font-size: 11.5px;
    }

    .project-person-signature strong {
        font-size: 20px;
    }
}

/* =========================================================
   HABERLER SAYFASI
========================================================= */

.news-page {
    background-color: var(--cream-light);
}


/* =========================================================
   HABERLER BANNER
========================================================= */

.news-banner {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 275px;
    overflow: hidden;

    background-image: url("../images/slider/banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 1px solid rgba(111, 85, 63, 0.18);
}

.news-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(53, 38, 27, 0.62),
            rgba(76, 55, 40, 0.35) 50%,
            rgba(53, 38, 27, 0.58)
        );
}

.news-banner-container {
    position: relative;
    z-index: 2;
}

.news-banner-content {
    color: var(--white);
    text-align: center;
}

.news-banner-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #efd4a8;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.news-banner-content h1 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: clamp(58px, 5vw, 83px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.news-banner-decoration {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 270px;
    margin: 22px auto 0;
}

.news-banner-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239, 212, 168, 0.8)
        );
}

.news-banner-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(239, 212, 168, 0.8),
            transparent
        );
}

.news-banner-decoration i {
    color: #efd4a8;
    font-size: 16px;
}


/* =========================================================
   BÜLTEN ARŞİVİ
========================================================= */

.bulletin-section {
    position: relative;

    padding: 100px 0 110px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 16%,
            rgba(21, 132, 138, 0.045),
            transparent 27%
        ),
        radial-gradient(
            circle at 10% 70%,
            rgba(123, 94, 73, 0.04),
            transparent 28%
        ),
        var(--cream-light);
}

.bulletin-heading {
    max-width: 850px;
    margin: 0 auto 43px;
}

.bulletin-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.bulletin-heading h2 {
    margin-bottom: 15px;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(48px, 4.4vw, 69px);
    font-weight: 500;
    line-height: 1;
}

.bulletin-heading p {
    max-width: 680px;
    margin: 0 auto;

    color: #655a50;

    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.85;
}

.bulletin-heading-decoration {
    display: flex;
    align-items: center;
    gap: 11px;

    width: 230px;
    margin: 25px auto 0;
}

.bulletin-heading-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.45)
        );
}

.bulletin-heading-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.45),
            transparent
        );
}

.bulletin-heading-decoration i {
    color: var(--primary);
    font-size: 15px;
}


/* =========================================================
   YIL SEKMELERİ
========================================================= */

.bulletin-tabs-wrapper {
    display: flex;
    justify-content: center;

    margin-bottom: 55px;
}

.bulletin-tabs {
    display: flex;
    justify-content: center;
    gap: 22px;

    border: 0;
}

.bulletin-tab {
    position: relative;

    min-width: 108px;
    height: 49px;
    padding: 0 20px;

    color: var(--primary-dark);
    background-color: transparent;

    border: 1px solid rgba(21, 132, 138, 0.55);

    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;

    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition);
}

.bulletin-tab::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -8px;

    width: 14px;
    height: 14px;

    opacity: 0;
    background-color: var(--primary);

    transform:
        translateX(-50%)
        rotate(45deg);

    transition: opacity var(--transition);
}

.bulletin-tab:hover,
.bulletin-tab.active {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.bulletin-tab.active::after {
    opacity: 1;
}


/* =========================================================
   BÜLTEN PANELİ
========================================================= */

.bulletin-tab-content {
    position: relative;
}

.bulletin-panel {
    max-width: 1320px;
    margin-inline: auto;
}

.tab-pane.fade {
    transition: opacity 0.35s ease;
}


/* =========================================================
   BÜLTEN GÖRSELİ
========================================================= */

.bulletin-preview {
    margin: 0;
}

.bulletin-image-frame {
    position: relative;

    padding: 10px;
    overflow: hidden;

    background-color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(111, 85, 63, 0.2);

    box-shadow:
        0 25px 58px rgba(68, 47, 32, 0.1);
}

.bulletin-image-frame::before {
    content: "";

    position: absolute;
    inset: 16px;
    z-index: 2;

    border: 1px solid rgba(111, 85, 63, 0.12);

    pointer-events: none;
}

.bulletin-image-frame a {
    display: block;
    overflow: hidden;
}

.bulletin-image-frame img {
    width: 100%;
    height: auto;

    object-fit: contain;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.bulletin-image-frame:hover img {
    filter: brightness(1.015);
    transform: scale(1.01);
}

.bulletin-preview figcaption {
    margin-top: 12px;

    color: #776c63;

    font-family: var(--font-body);
    font-size: 10.5px;
}


/* =========================================================
   BÜLTEN BİLGİLERİ
========================================================= */

.bulletin-info {
    max-width: 520px;
    padding: 36px 15px 0 25px;
}

.bulletin-year-label {
    display: block;

    margin-bottom: 8px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.bulletin-info h3 {
    margin: 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(42px, 3.7vw, 58px);
    font-weight: 500;
    line-height: 1;
}

.bulletin-title-line {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 205px;
    margin: 25px 0 28px;
}

.bulletin-title-line span {
    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(21, 132, 138, 0.45);
}

.bulletin-title-line i {
    color: var(--primary);
    font-size: 7px;
}

.bulletin-info p {
    margin-bottom: 19px;

    color: #62584f;

    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.9;
}


/* =========================================================
   BÜLTEN BUTONLARI
========================================================= */

.bulletin-actions {
    display: grid;
    gap: 15px;

    margin-top: 38px;
}

.bulletin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    width: 100%;
    min-height: 54px;
    padding: 0 22px;

    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.bulletin-button i {
    font-size: 18px;
}

.bulletin-button-primary {
    color: var(--white);
    background-color: var(--primary);

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

.bulletin-button-primary:hover {
    color: var(--white);
    background-color: var(--brown-dark);
    border-color: var(--brown-dark);

    transform: translateY(-2px);
}

.bulletin-button-outline {
    color: var(--primary-dark);
    background-color: transparent;

    border: 1px solid rgba(21, 132, 138, 0.65);
}

.bulletin-button-outline:hover {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);

    transform: translateY(-2px);
}


/* =========================================================
   HABERLER RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .news-banner {
        min-height: 240px;
    }

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

    .bulletin-tabs {
        gap: 14px;
    }

    .bulletin-tab {
        min-width: 95px;
    }

    .bulletin-info {
        padding-left: 10px;
    }
}


@media (max-width: 991.98px) {

    .bulletin-panel {
        max-width: 760px;
    }

    .bulletin-tabs-wrapper {
        overflow-x: auto;
        justify-content: flex-start;

        margin-inline: -25px;
        padding: 0 25px 12px;
    }

    .bulletin-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;

        margin-inline: auto;
    }

    .bulletin-tab {
        flex: 0 0 auto;
    }

    .bulletin-info {
        max-width: 100%;
        padding: 20px 0 0;
    }

    .bulletin-actions {
        max-width: 420px;
    }
}


@media (max-width: 767.98px) {

    .news-banner {
        min-height: 205px;
        background-position: 58% center;
    }

    .news-banner-content h1 {
        font-size: 49px;
    }

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

    .bulletin-heading {
        margin-bottom: 35px;
    }

    .bulletin-heading h2 {
        font-size: 42px;
    }

    .bulletin-heading p {
        font-size: 12px;
    }

    .bulletin-tabs-wrapper {
        margin-inline: -18px;
        padding-inline: 18px;
    }

    .bulletin-tabs {
        gap: 10px;
    }

    .bulletin-tab {
        min-width: 82px;
        height: 44px;

        font-size: 17px;
    }

    .bulletin-info h3 {
        font-size: 42px;
    }

    .bulletin-info p {
        font-size: 12px;
        line-height: 1.8;
    }
}


@media (max-width: 479.98px) {

    .news-banner {
        min-height: 180px;
    }

    .news-banner-content h1 {
        font-size: 42px;
    }

    .news-banner-decoration {
        width: 205px;
    }

    .bulletin-heading h2 {
        font-size: 36px;
    }

    .bulletin-tabs-wrapper {
        margin-inline: -14px;
        padding-inline: 14px;
    }

    .bulletin-info h3 {
        font-size: 37px;
    }

    .bulletin-title-line {
        width: 175px;
    }

    .bulletin-button {
        min-height: 50px;
        font-size: 10px;
    }
}

/* =========================================================
   GALERİ SAYFASI
========================================================= */

.gallery-page {
    background-color: var(--cream-light);
}


/* =========================================================
   GALERİ BANNER
========================================================= */

.gallery-banner {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 275px;
    overflow: hidden;

    background-image: url("../images/slider/banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 1px solid rgba(111, 85, 63, 0.18);
}

.gallery-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(53, 38, 27, 0.62),
            rgba(76, 55, 40, 0.32) 50%,
            rgba(53, 38, 27, 0.58)
        );
}

.gallery-banner-container {
    position: relative;
    z-index: 2;
}

.gallery-banner-content {
    color: var(--white);
    text-align: center;
}

.gallery-banner-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #efd4a8;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.gallery-banner-content h1 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: clamp(58px, 5vw, 83px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.gallery-banner-decoration {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 270px;
    margin: 22px auto 0;
}

.gallery-banner-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239, 212, 168, 0.8)
        );
}

.gallery-banner-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(239, 212, 168, 0.8),
            transparent
        );
}

.gallery-banner-decoration i {
    color: #efd4a8;
    font-size: 16px;
}


/* =========================================================
   GALERİ İÇERİĞİ
========================================================= */

.gallery-content-section {
    position: relative;

    padding: 95px 0 110px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(21, 132, 138, 0.045),
            transparent 27%
        ),
        radial-gradient(
            circle at 9% 67%,
            rgba(123, 94, 73, 0.04),
            transparent 28%
        ),
        var(--cream-light);
}


/* =========================================================
   GALERİ GİRİŞİ
========================================================= */

.gallery-intro {
    max-width: 870px;
    margin: 0 auto 43px;
}

.gallery-intro-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.gallery-intro h2 {
    margin-bottom: 15px;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(47px, 4.3vw, 67px);
    font-weight: 500;
    line-height: 1;
}

.gallery-intro p {
    max-width: 690px;
    margin: 0 auto;

    color: #655a50;

    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.85;
}

.gallery-intro-decoration {
    display: flex;
    align-items: center;
    gap: 11px;

    width: 230px;
    margin: 25px auto 0;
}

.gallery-intro-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.45)
        );
}

.gallery-intro-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.45),
            transparent
        );
}

.gallery-intro-decoration i {
    color: var(--primary);
    font-size: 15px;
}


/* =========================================================
   GALERİ KATEGORİLERİ
========================================================= */

.gallery-category-nav {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 15px;

    margin-bottom: 72px;
}

.gallery-category-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 10px 24px;

    color: var(--primary-dark);
    background-color: transparent;

    border: 1px solid rgba(21, 132, 138, 0.55);

    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    text-align: center;

    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition);
}

.gallery-category-button span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 27px;
    height: 27px;
    padding-inline: 5px;

    border: 1px solid currentColor;
    border-radius: 50%;

    font-family: var(--font-body);
    font-size: 9px;
}

.gallery-category-button:hover,
.gallery-category-button.active {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}


/* =========================================================
   GALERİ BÖLÜM BAŞLIKLARI
========================================================= */

.gallery-group {
    scroll-margin-top: 40px;
}

.gallery-group-heading {
    max-width: 850px;
    margin: 0 auto 42px;
}

.gallery-group-number {
    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-family: var(--font-heading);
    font-size: 18px;
}

.gallery-group-heading h2 {
    margin-bottom: 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(39px, 3.5vw, 55px);
    font-weight: 500;
    line-height: 1.05;
}

.gallery-group-decoration {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 215px;
    margin: 20px auto;
}

.gallery-group-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(21, 132, 138, 0.4);
}

.gallery-group-decoration i {
    color: var(--primary);
    font-size: 7px;
}

.gallery-group-heading p {
    max-width: 650px;
    margin: 0 auto;

    color: #71665d;

    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.8;
}


/* =========================================================
   GALERİ GRID
========================================================= */

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

.gallery-item {
    position: relative;

    display: block;

    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;

    cursor: pointer;

    background-color: var(--cream-dark);
    border: 1px solid rgba(111, 85, 63, 0.14);
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        sepia(0.06)
        saturate(0.94);

    transition:
        transform 0.65s ease,
        filter 0.45s ease;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;

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

    opacity: 0;

    color: var(--white);
    background-color: rgba(7, 100, 107, 0.72);

    transition: opacity var(--transition);
}

.gallery-item-overlay i {
    font-size: 25px;

    transform: scale(0.8);
    transition: transform var(--transition);
}

.gallery-item-overlay small {
    position: absolute;
    right: 9px;
    bottom: 7px;

    font-family: var(--font-heading);
    font-size: 13px;
}

.gallery-item:hover img {
    filter:
        sepia(0)
        saturate(1.04);

    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}


/* =========================================================
   GALERİ AYIRICI
========================================================= */

.gallery-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    margin: 85px 0 75px;
}

.gallery-section-divider span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.32)
        );
}

.gallery-section-divider span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.32),
            transparent
        );
}

.gallery-section-divider i {
    color: var(--primary);
    font-size: 15px;
}


/* =========================================================
   GALERİ MODAL
========================================================= */

.gallery-modal {
    --bs-modal-bg: transparent;
}

.gallery-modal .modal-dialog {
    max-width: min(1200px, calc(100vw - 40px));
}

.gallery-modal .modal-content {
    overflow: hidden;

    background-color: #f8f2e9;
    border: 1px solid rgba(239, 212, 168, 0.45);
    border-radius: 0;

    box-shadow:
        0 35px 90px rgba(22, 16, 12, 0.4);
}

.gallery-modal .modal-header {
    align-items: center;

    padding: 17px 24px;

    border-bottom: 1px solid rgba(111, 85, 63, 0.15);
}

.gallery-modal-eyebrow {
    display: block;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gallery-modal .modal-title {
    margin-top: 2px;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 600;
}

.gallery-modal .btn-close {
    box-shadow: none;
}

.gallery-modal .modal-body {
    position: relative;

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

    min-height: 580px;
    padding: 20px 75px;

    background-color: #181614;
}

.gallery-modal-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 540px;
}

.gallery-modal-image-wrap img {
    display: block;

    max-width: 100%;
    max-height: 75vh;

    object-fit: contain;
}

.gallery-modal-control {
    position: absolute;
    top: 50%;
    z-index: 4;

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

    width: 46px;
    height: 58px;
    padding: 0;

    color: var(--white);
    background-color: rgba(21, 132, 138, 0.75);

    font-size: 20px;

    transform: translateY(-50%);
    transition: background-color var(--transition);
}

.gallery-modal-control:hover {
    background-color: var(--primary);
}

.gallery-modal-prev {
    left: 13px;
}

.gallery-modal-next {
    right: 13px;
}

.gallery-modal .modal-footer {
    justify-content: center;

    padding: 11px 20px;

    color: var(--brown);
    background-color: var(--cream);

    border-top: 1px solid rgba(111, 85, 63, 0.15);

    font-family: var(--font-heading);
    font-size: 16px;
}


/* =========================================================
   GALERİ RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .gallery-banner {
        min-height: 240px;
    }

    .gallery-content-section {
        padding: 85px 0 95px;
    }

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


@media (max-width: 991.98px) {

    .gallery-category-nav {
        margin-bottom: 60px;
    }

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

    .gallery-modal .modal-body {
        min-height: 500px;
    }

    .gallery-modal-image-wrap {
        min-height: 460px;
    }
}


@media (max-width: 767.98px) {

    .gallery-banner {
        min-height: 205px;
        background-position: 58% center;
    }

    .gallery-banner-content h1 {
        font-size: 49px;
    }

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

    .gallery-intro h2 {
        font-size: 41px;
    }

    .gallery-intro p {
        font-size: 12px;
    }

    .gallery-category-nav {
        flex-direction: column;

        max-width: 430px;
        margin: 0 auto 55px;
    }

    .gallery-category-button {
        width: 100%;
    }

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

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

    .gallery-section-divider {
        margin: 60px 0 55px;
    }

    .gallery-modal .modal-dialog {
        max-width: calc(100vw - 20px);
        margin-inline: auto;
    }

    .gallery-modal .modal-body {
        min-height: 430px;
        padding: 15px 48px;
    }

    .gallery-modal-image-wrap {
        min-height: 400px;
    }

    .gallery-modal-control {
        width: 38px;
        height: 52px;
    }

    .gallery-modal-prev {
        left: 5px;
    }

    .gallery-modal-next {
        right: 5px;
    }
}


@media (max-width: 479.98px) {

    .gallery-banner {
        min-height: 180px;
    }

    .gallery-banner-content h1 {
        font-size: 42px;
    }

    .gallery-banner-decoration {
        width: 205px;
    }

    .gallery-intro h2 {
        font-size: 35px;
    }

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

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

    .gallery-modal .modal-header {
        padding-inline: 15px;
    }

    .gallery-modal .modal-title {
        font-size: 20px;
    }

    .gallery-modal .modal-body {
        min-height: 360px;
        padding: 10px 42px;
    }

    .gallery-modal-image-wrap {
        min-height: 340px;
    }
}

/* =========================================================
   DESTEKÇİLERİMİZ SAYFASI
========================================================= */

.supporters-page {
    background-color: var(--cream-light);
}


/* =========================================================
   DESTEKÇİLERİMİZ BANNER
========================================================= */

.supporters-banner {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 275px;
    overflow: hidden;

    background-image: url("../images/slider/banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 1px solid rgba(111, 85, 63, 0.18);
}

.supporters-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(53, 38, 27, 0.61),
            rgba(76, 55, 40, 0.3) 50%,
            rgba(53, 38, 27, 0.57)
        );
}

.supporters-banner-container {
    position: relative;
    z-index: 2;
}

.supporters-banner-content {
    color: var(--white);
    text-align: center;
}

.supporters-banner-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #efd4a8;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.supporters-banner-content h1 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: clamp(54px, 5vw, 81px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.supporters-banner-decoration {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 270px;
    margin: 22px auto 0;
}

.supporters-banner-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239, 212, 168, 0.8)
        );
}

.supporters-banner-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(239, 212, 168, 0.8),
            transparent
        );
}

.supporters-banner-decoration i {
    color: #efd4a8;
    font-size: 16px;
}


/* =========================================================
   DESTEKÇİLER İÇERİK
========================================================= */

.supporters-content-section {
    position: relative;

    padding: 95px 0 110px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(21, 132, 138, 0.045),
            transparent 27%
        ),
        radial-gradient(
            circle at 8% 72%,
            rgba(123, 94, 73, 0.04),
            transparent 29%
        ),
        var(--cream-light);
}


/* =========================================================
   DESTEKÇİLER GİRİŞİ
========================================================= */

.supporters-intro {
    max-width: 960px;
    margin: 0 auto 65px;
}

.supporters-intro-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.supporters-intro h2 {
    margin-bottom: 18px;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(47px, 4.2vw, 67px);
    font-weight: 500;
    line-height: 1;
}

.supporters-intro p {
    max-width: 820px;
    margin: 0 auto 7px;

    color: #655a50;

    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.85;
}

.supporters-intro-decoration {
    display: flex;
    align-items: center;
    gap: 11px;

    width: 230px;
    margin: 25px auto 0;
}

.supporters-intro-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.45)
        );
}

.supporters-intro-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.45),
            transparent
        );
}

.supporters-intro-decoration i {
    color: var(--primary);
    font-size: 15px;
}


/* =========================================================
   DESTEKÇİ KADEMELERİ
========================================================= */

.supporter-tier {
    position: relative;

    margin-bottom: 38px;

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

    border: 1px solid rgba(111, 85, 63, 0.16);

    box-shadow:
        0 15px 38px rgba(70, 48, 32, 0.045);
}

.supporter-tier:last-child {
    margin-bottom: 0;
}

.supporter-tier::before {
    content: "";

    position: absolute;
    inset: 8px;

    border: 1px solid rgba(111, 85, 63, 0.055);

    pointer-events: none;
}


/* =========================================================
   KADEME BAŞLIKLARI
========================================================= */

.supporter-tier-heading {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    min-height: 53px;
    padding: 0 28px 0 76px;

    color: var(--white);
}

.supporter-tier-heading h2 {
    margin: 0;

    color: inherit;

    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.supporter-tier-icon {
    position: absolute;
    top: 50%;
    left: -17px;

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

    width: 62px;
    height: 62px;

    background-color: var(--cream-light);
    border: 1px solid rgba(111, 85, 63, 0.23);
    border-radius: 50%;

    box-shadow:
        0 8px 22px rgba(67, 46, 31, 0.1);

    font-size: 25px;

    transform: translateY(-50%);
}

.supporter-tier-icon::before {
    content: "";

    position: absolute;
    inset: 6px;

    border: 1px dashed currentColor;
    border-radius: 50%;

    opacity: 0.3;
}


/* Platin */
.supporter-tier-platinum .supporter-tier-heading {
    background:
        linear-gradient(
            90deg,
            #4b264e,
            #6b3a69 60%,
            #432141
        );
}

.supporter-tier-platinum .supporter-tier-icon {
    color: #5e3160;
}


/* Altın */
.supporter-tier-gold .supporter-tier-heading {
    background:
        linear-gradient(
            90deg,
            #9c0808,
            #bf1717 60%,
            #8e0505
        );
}

.supporter-tier-gold .supporter-tier-icon {
    color: #a71212;
}


/* Gümüş */
.supporter-tier-silver .supporter-tier-heading {
    background:
        linear-gradient(
            90deg,
            #107329,
            #1b9639 60%,
            #0c6822
        );
}

.supporter-tier-silver .supporter-tier-icon {
    color: #188238;
}


/* Bronz */
.supporter-tier-bronze .supporter-tier-heading {
    background:
        linear-gradient(
            90deg,
            #b47b00,
            #d49a08 60%,
            #a86f00
        );
}

.supporter-tier-bronze .supporter-tier-icon {
    color: #bd8307;
}


/* =========================================================
   DESTEKÇİ İSİMLERİ
========================================================= */

.supporter-names {
    position: relative;
    z-index: 2;

    display: grid;

    padding: 12px 18px 15px;
}

.supporter-names-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.supporter-name {
    position: relative;

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

    min-height: 57px;
    padding: 12px 18px;

    color: #51483f;

    border-right: 1px solid rgba(111, 85, 63, 0.12);
    border-bottom: 1px solid rgba(111, 85, 63, 0.12);

    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
}

.supporter-name:nth-child(3n) {
    border-right: 0;
}

.supporter-name::before {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -1px;

    width: 0;
    height: 1px;

    background-color: var(--primary);

    transform: translateX(-50%);

    transition: width var(--transition);
}

.supporter-name:hover {
    color: var(--primary-dark);
}

.supporter-name:hover::before {
    width: 55%;
}


/* Son satırdaki gereksiz alt çizgileri kaldır */
.supporter-tier-platinum .supporter-name,
.supporter-tier-gold .supporter-name:nth-last-child(-n + 2),
.supporter-tier-silver .supporter-name:nth-last-child(-n + 1),
.supporter-tier-bronze .supporter-name:nth-last-child(-n + 3) {
    border-bottom-color: transparent;
}


/* =========================================================
   DESTEKÇİLER RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .supporters-banner {
        min-height: 240px;
    }

    .supporters-content-section {
        padding: 85px 0 95px;
    }
}


@media (max-width: 991.98px) {

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

    .supporter-name:nth-child(3n) {
        border-right: 1px solid rgba(111, 85, 63, 0.12);
    }

    .supporter-name:nth-child(2n) {
        border-right: 0;
    }

    .supporter-tier-heading {
        padding-left: 70px;
    }
}


@media (max-width: 767.98px) {

    .supporters-banner {
        min-height: 205px;
        background-position: 58% center;
    }

    .supporters-banner-content h1 {
        font-size: 44px;
    }

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

    .supporters-intro {
        margin-bottom: 52px;
    }

    .supporters-intro h2 {
        font-size: 40px;
    }

    .supporters-intro p {
        font-size: 12px;
    }

    .supporter-tier {
        margin-bottom: 30px;
    }

    .supporter-tier-heading {
        min-height: 49px;
        padding-left: 63px;
    }

    .supporter-tier-heading h2 {
        font-size: 21px;
    }

    .supporter-tier-icon {
        left: -10px;

        width: 54px;
        height: 54px;

        font-size: 21px;
    }

    .supporter-name {
        min-height: 53px;

        font-size: 12px;
    }
}


@media (max-width: 575.98px) {

    .supporter-names-three {
        grid-template-columns: 1fr;
    }

    .supporter-name,
    .supporter-name:nth-child(2n),
    .supporter-name:nth-child(3n) {
        border-right: 0;
        border-bottom: 1px solid rgba(111, 85, 63, 0.12);
    }

    .supporter-name:last-child {
        border-bottom-color: transparent;
    }
}


@media (max-width: 479.98px) {

    .supporters-banner {
        min-height: 180px;
    }

    .supporters-banner-content h1 {
        font-size: 36px;
    }

    .supporters-banner-decoration {
        width: 205px;
    }

    .supporters-intro h2 {
        font-size: 34px;
    }

    .supporter-tier-heading {
        padding-left: 57px;
        padding-right: 12px;
    }

    .supporter-tier-heading h2 {
        font-size: 18px;
    }

    .supporter-tier-icon {
        width: 49px;
        height: 49px;

        font-size: 19px;
    }

    .supporter-names {
        padding-inline: 11px;
    }

    .supporter-name {
        font-size: 11.5px;
    }
}

/* =========================================================
   İLETİŞİM SAYFASI
========================================================= */

.contact-page {
    background-color: var(--cream-light);
}


/* =========================================================
   İLETİŞİM BANNER
========================================================= */

.contact-banner {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 275px;
    overflow: hidden;

    background-image: url("../images/slider/banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-bottom: 1px solid rgba(111, 85, 63, 0.18);
}

.contact-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(53, 38, 27, 0.61),
            rgba(76, 55, 40, 0.3) 50%,
            rgba(53, 38, 27, 0.57)
        );
}

.contact-banner-container {
    position: relative;
    z-index: 2;
}

.contact-banner-content {
    color: var(--white);
    text-align: center;
}

.contact-banner-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #efd4a8;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.contact-banner-content h1 {
    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);
    font-size: clamp(58px, 5vw, 83px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.contact-banner-decoration {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 270px;
    margin: 22px auto 0;
}

.contact-banner-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(239, 212, 168, 0.8)
        );
}

.contact-banner-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(239, 212, 168, 0.8),
            transparent
        );
}

.contact-banner-decoration i {
    color: #efd4a8;
    font-size: 16px;
}


/* =========================================================
   İLETİŞİM BİLGİLERİ
========================================================= */

.contact-info-section {
    position: relative;

    padding: 95px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 86% 15%,
            rgba(21, 132, 138, 0.045),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 75%,
            rgba(123, 94, 73, 0.04),
            transparent 28%
        ),
        var(--cream-light);
}

.contact-heading {
    max-width: 850px;
    margin: 0 auto 57px;
}

.contact-heading-eyebrow {
    display: block;

    margin-bottom: 9px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.contact-heading h2,
.contact-map-heading h2 {
    margin-bottom: 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(48px, 4.3vw, 68px);
    font-weight: 500;
    line-height: 1;
}

.contact-heading > p {
    max-width: 700px;
    margin: 0 auto;

    color: #655a50;

    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.85;
}

.contact-heading-decoration {
    display: flex;
    align-items: center;
    gap: 11px;

    width: 235px;
    margin: 23px auto;
}

.contact-heading-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.45)
        );
}

.contact-heading-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.45),
            transparent
        );
}

.contact-heading-decoration i {
    color: var(--primary);
    font-size: 15px;
}


/* =========================================================
   İLETİŞİM KARTLARI
========================================================= */

.contact-cards-row {
    padding-top: 42px;
    margin-bottom: 80px;
}

.contact-card {
    position: relative;

    height: 100%;
    min-height: 340px;

    padding: 69px 32px 35px;

    background-color: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(111, 85, 63, 0.17);

    text-align: center;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.contact-card::before {
    content: "";

    position: absolute;
    inset: 10px;

    border: 1px solid rgba(111, 85, 63, 0.07);

    pointer-events: none;
}

.contact-card:hover {
    border-color: rgba(21, 132, 138, 0.38);

    box-shadow:
        0 22px 48px rgba(68, 47, 32, 0.09);

    transform: translateY(-7px);
}

.contact-card-icon {
    position: absolute;
    top: -43px;
    left: 50%;
    z-index: 2;

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

    width: 86px;
    height: 86px;

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

    border: 1px solid rgba(21, 132, 138, 0.4);
    border-radius: 50%;

    box-shadow:
        0 10px 25px rgba(67, 46, 31, 0.1);

    font-size: 31px;

    transform: translateX(-50%);
}

.contact-card-number {
    display: block;

    margin-bottom: 10px;

    color: var(--brown);

    font-family: var(--font-heading);
    font-size: 18px;
}

.contact-card h3 {
    margin-bottom: 15px;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-card-divider {
    width: 54px;
    height: 1px;
    margin: 0 auto 19px;

    background-color: rgba(21, 132, 138, 0.5);
}

.contact-card p {
    margin-bottom: 18px;

    color: #655a50;

    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.85;
}

.contact-card strong {
    display: block;

    margin-top: 8px;

    color: var(--primary-dark);

    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 600;
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition: color var(--transition);
}

.contact-card a:hover {
    color: var(--brown-dark);
}


/* =========================================================
   İLETİŞİM VE BANKA PANELİ
========================================================= */

.contact-details-panel {
    overflow: hidden;

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

    border: 1px solid rgba(111, 85, 63, 0.17);

    box-shadow:
        0 22px 55px rgba(68, 47, 32, 0.06);
}

.contact-details-column,
.contact-bank-column {
    position: relative;

    min-height: 470px;
    padding: 55px 58px;
}

.contact-details-column {
    border-right: 1px solid rgba(111, 85, 63, 0.16);
}

.contact-bank-column {
    background:
        linear-gradient(
            180deg,
            rgba(248, 242, 233, 0.6),
            rgba(255, 255, 255, 0.45)
        );
}

.contact-section-label {
    display: block;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.21em;
    text-transform: uppercase;
}

.contact-details-column h2,
.contact-bank-column h2 {
    margin: 10px 0 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: clamp(40px, 3.4vw, 52px);
    font-weight: 500;
    line-height: 1;
}

.contact-title-decoration {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 205px;
    margin: 22px 0 26px;
}

.contact-title-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background-color: rgba(21, 132, 138, 0.4);
}

.contact-title-decoration i {
    color: var(--primary);
    font-size: 7px;
}

.contact-details-column > p {
    max-width: 500px;
    margin-bottom: 28px;

    color: #655a50;

    font-family: var(--font-body);
    font-size: 12.5px;
    line-height: 1.8;
}

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

.contact-details-list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 15px;
}

.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

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

    border: 1px solid rgba(21, 132, 138, 0.3);
    border-radius: 50%;

    font-size: 18px;
}

.contact-details-list li > div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-details-list span {
    margin-bottom: 2px;

    color: #85796e;

    font-family: var(--font-body);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-details-list a {
    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 18px;

    transition: color var(--transition);
}

.contact-details-list a:hover {
    color: var(--primary-dark);
}


/* Banka bilgileri */
.contact-bank-list {
    margin: 0;
}

.contact-bank-list > div {
    padding: 15px 0;

    border-bottom: 1px solid rgba(111, 85, 63, 0.14);
}

.contact-bank-list dt {
    margin-bottom: 4px;

    color: var(--primary-dark);

    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-bank-list dd {
    margin: 0;

    color: var(--brown-dark);

    font-family: var(--font-heading);
    font-size: 17px;
    line-height: 1.55;
}


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

.contact-map-section {
    padding: 95px 0 100px;

    background-color: #f5eee4;

    border-top: 1px solid rgba(111, 85, 63, 0.12);
}

.contact-map-heading {
    max-width: 820px;
    margin: 0 auto 48px;
}

.contact-map-frame {
    position: relative;

    overflow: hidden;

    padding: 10px;

    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(111, 85, 63, 0.18);

    box-shadow:
        0 28px 65px rgba(67, 46, 31, 0.1);
}

.contact-map-frame::before {
    content: "";

    position: absolute;
    inset: 17px;
    z-index: 2;

    border: 1px solid rgba(255, 255, 255, 0.62);

    pointer-events: none;
}

.contact-map-frame iframe {
    display: block;

    width: 100%;
    min-height: 520px;

    filter:
        sepia(0.08)
        saturate(0.9)
        contrast(0.98);
}

.contact-map-actions {
    display: flex;
    justify-content: center;

    margin-top: 29px;
}

.contact-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-height: 53px;
    padding: 0 25px;

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

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        background-color var(--transition),
        transform var(--transition);
}

.contact-map-button:hover {
    color: var(--white);
    background-color: var(--brown-dark);

    transform: translateY(-2px);
}


/* =========================================================
   ALT SÖZ ALANI
========================================================= */

.contact-closing-section {
    padding: 68px 0 72px;

    background:
        radial-gradient(
            circle at center,
            rgba(21, 132, 138, 0.04),
            transparent 45%
        ),
        var(--cream-light);

    border-top: 1px solid rgba(111, 85, 63, 0.11);
}

.contact-closing-content {
    max-width: 700px;
    margin-inline: auto;

    text-align: center;
}

.contact-closing-icon {
    margin-bottom: 11px;

    color: rgba(111, 85, 63, 0.28);

    font-size: 65px;
}

.contact-closing-decoration {
    display: flex;
    align-items: center;
    gap: 11px;

    width: 270px;
    margin: 0 auto 20px;
}

.contact-closing-decoration span {
    display: block;
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(111, 85, 63, 0.37)
        );
}

.contact-closing-decoration span:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(111, 85, 63, 0.37),
            transparent
        );
}

.contact-closing-decoration i {
    color: var(--primary);
    font-size: 15px;
}

.contact-closing-content p {
    margin: 0;

    color: var(--brown);

    font-family: var(--font-heading);
    font-size: 29px;
    font-style: italic;
    line-height: 1.45;
}


/* =========================================================
   İLETİŞİM RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .contact-banner {
        min-height: 240px;
    }

    .contact-info-section,
    .contact-map-section {
        padding-block: 85px;
    }

    .contact-details-column,
    .contact-bank-column {
        padding: 48px 42px;
    }
}


@media (max-width: 991.98px) {

    .contact-cards-row {
        max-width: 760px;
        margin-inline: auto;
        margin-bottom: 65px;
    }

    .contact-card {
        min-height: 300px;
        margin-top: 42px;
    }

    .contact-details-column {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid rgba(111, 85, 63, 0.16);
    }

    .contact-bank-column {
        min-height: auto;
    }
}


@media (max-width: 767.98px) {

    .contact-banner {
        min-height: 205px;
        background-position: 58% center;
    }

    .contact-banner-content h1 {
        font-size: 49px;
    }

    .contact-info-section,
    .contact-map-section {
        padding-block: 65px;
    }

    .contact-heading h2,
    .contact-map-heading h2 {
        font-size: 41px;
    }

    .contact-heading > p {
        font-size: 12px;
    }

    .contact-card {
        min-height: 285px;

        padding-inline: 25px;
    }

    .contact-details-column,
    .contact-bank-column {
        padding: 38px 28px;
    }

    .contact-details-column h2,
    .contact-bank-column h2 {
        font-size: 38px;
    }

    .contact-map-frame iframe {
        min-height: 430px;
    }

    .contact-closing-content p {
        font-size: 25px;
    }
}


@media (max-width: 479.98px) {

    .contact-banner {
        min-height: 180px;
    }

    .contact-banner-content h1 {
        font-size: 42px;
    }

    .contact-banner-decoration {
        width: 205px;
    }

    .contact-heading h2,
    .contact-map-heading h2 {
        font-size: 35px;
    }

    .contact-details-column,
    .contact-bank-column {
        padding-inline: 21px;
    }

    .contact-details-list {
        gap: 15px;
    }

    .contact-details-list li {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 11px;
    }

    .contact-detail-icon {
        width: 40px;
        height: 40px;

        font-size: 16px;
    }

    .contact-details-list a {
        overflow-wrap: anywhere;

        font-size: 15px;
    }

    .contact-bank-list dd {
        overflow-wrap: anywhere;

        font-size: 14px;
    }

    .contact-map-frame {
        padding: 6px;
    }

    .contact-map-frame iframe {
        min-height: 360px;
    }

    .contact-map-button {
        width: 100%;
    }

    .contact-closing-decoration {
        width: 215px;
    }

    .contact-closing-content p {
        font-size: 22px;
    }
}

/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;

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

    width: 48px;
    height: 48px;

    padding: 0;

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

    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(57, 47, 41, 0.18);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

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

.back-to-top i {
    font-size: 18px;
    line-height: 1;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Mobile */
@media (max-width: 767.98px) {

    .back-to-top {
        right: 18px;
        bottom: 18px;

        width: 44px;
        height: 44px;
    }

    .back-to-top i {
        font-size: 16px;
    }
}

/* =========================================================
   LANGUAGE SWITCHER
========================================================= */

.language-switcher {
    position: absolute;
    top: 58px;
    right: 22px;
    z-index: 1200;

    display: flex;
    align-items: center;
    gap: 7px;
}

.language-flag {
    position: relative;

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

    width: 34px;
    height: 24px;

    overflow: hidden;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);

    opacity: 0.72;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.language-flag img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
}

.language-flag:hover {
    opacity: 1;
    transform: translateY(-2px);

    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.13);
}

/* Aktif dil */
.language-flag.active {
    opacity: 1;
    border-color: var(--primary);
}


/* TABLET + MOBILE */
@media (max-width: 1199.98px) {

    .language-switcher {
        top: 69px;
        right: 88px;
        gap: 6px;
    }

    .language-flag {
        width: 31px;
        height: 22px;
    }
}


/* SMALL MOBILE */
@media (max-width: 575.98px) {

    .language-switcher {
        top: 67px;
        right: 72px;
    }

    .language-flag {
        width: 28px;
        height: 20px;
    }
}