/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    vertical-align: baseline;
    background: transparent;
    font-family: "Poppins", "Roboto";
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Poppins";
    src:
        url("../fonts/Poppins-Medium.ttf") format("opentype");
}

body {
    line-height: 1;
}

blockquote,
q {
    quotes: none;
}

/* Styles */

:root {
    --color-black: #1C1C1C;
    --color-white: #EBEBEB;
    --color-blue: #004F9F;
    --blue-hover: #1a73e8;
    --box-shadow: rgb(232, 232, 232) 0px 1px 4px 0px, rgb(232, 232, 232) 0px 1px 4px 0px;
    --box-shadow-hover: rgba(60, 64, 67, 0.3) 0px 1px 4px 0px, rgba(60, 64, 67, 0.15) 0px 1px 4px 0px;
}

img {
    width: 100%;
    height: 100%;
}

main {
    min-height: 600px;
    padding-top: 100px;
    min-height: 1000px;
}

section:not(.hero-wrapper) {
    padding: 64px 80px;
}

/* General Styles */

.title {
    color: var(--color-black);
    font-weight: 500;
    font-style: Medium;
    font-size: 28px;
    line-height: 120%;
}

.underline {
    text-decoration: underline;
}

.button {
    background: #FFF;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    display: flex;
    min-height: 44px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    cursor: pointer;
}

.button:hover,
.button:focus {
    background: #e3e3e3;
}

.button-blue {
    background: var(--color-blue);
    color: #FFF;
}

.button-blue:hover,
.button-blue:focus {
    background: var(--blue-hover);
    border-color: var(--blue-hover);
}

/* Header Styles */

.header-container {
    padding: 10px 80px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: fixed;
    background: #FFF;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid #D1D1D1;
}

.logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 110px;
    height: 58px;
    animation: headerDown 0.5s ease-out forwards;
}

.nav-container {
    justify-self: end;
}

.nav-list {
    display: flex;
}

.nav-item {
    padding: 12px 8px;
    text-align: center;
    align-content: center;
    animation: headerDown 0.5s ease-out forwards;
}

.nav-item:nth-of-type(2) {
    animation-delay: 0.1s;
}

.nav-item:nth-of-type(3) {
    animation-delay: 0.15s;
}

.nav-item:nth-of-type(4) {
    animation-delay: 0.2s;
}

.nav-item:nth-of-type(5) {
    animation-delay: 0.25s;
}

.nav-item:nth-of-type(6) {
    animation-delay: 0.3s;
}

.nav-item:nth-of-type(7) {
    animation-delay: 0.35s;
}

.nav-item:nth-of-type(8) {
    animation-delay: 0.4s;
}

.nav-item:hover>a {
    color: var(--color-blue);
}

.nav-link {
    display: inline;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black);
    text-align: center;
    align-content: center;
}

.active>.nav-link {
    color: var(--color-blue);
    font-weight: 500;
}

.language-switcher {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    position: relative;
}

.language-switcher-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-switcher-container>.icon {
    width: 24px;
    height: 24px;
}

.language-switcher:hover .language-dropdown {
    display: block;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 99%;
    left: 0;
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    z-index: 1000;
    min-width: 60px;
}

.language-dropdown .dropdown-link {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
}

.language-dropdown .dropdown-link:hover {
    color: var(--blue-hover);
    background-color: #eeeeee;
}

/* Main Styles */

/* Hero Wrapper */
.hero-wrapper {
    position: relative;
    height: 700px;
    min-height: 420px;
    max-height: 900px;
    overflow: hidden;
}

/* Swiper container fills area */
.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* each slide as background cover */
.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    display: flex;
    align-items: center;
    transition: opacity .7s ease;
}

/* content box (left) */
.slide-content {
    position: absolute;
    left: 80px;
    top: 45%;
    z-index: 4;
    max-width: 542px;
    color: white;
    border-radius: 12px;
}

.slide-content.c-right {
    left: unset;
    right: 80px;
}

.slide-content .slide-title {
    color: #FFF;
    font-family: Roboto;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    align-self: stretch;
}

.slide-content .slide-desc {
    color: #FFF;
    align-self: stretch;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.slide-button {
    width: fit-content;
    margin-top: 24px;
}

/* custom nav arrows (top-left area like sample) */

.custom-nav {
    position: absolute;
    width: 32px !important;
    height: 32px !important;
    left: calc(50% - 36px) !important;
    transform: translateX(-50%) !important;
    top: unset !important;
    bottom: 60px !important;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.20);
    place-items: center;
    color: #fff;
    cursor: pointer;
    transition: transform .12s ease;
    padding: 20px;
}

.custom-nav>img {
    width: 24px;
    height: 24px;
}

.swiper-button-next.custom-nav {
    left: calc(50% + 36px) !important;
    transform: translateX(-50%) !important;
}

/* ikinci buton biraz sağda */
.custom-nav:hover {
    transform: scale(1.03);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none !important;
}

/* kicker-row (pagination) */
.kicker-row {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    display: flex;
    gap: 16px;
    align-items: center;
    background: rgba(0, 0, 0, 0.20);
    padding: 20px;
    border-radius: 8px;
}

.kicker-dash {
    display: inline-block;
    width: 20px;
    height: 6px;
    border-radius: 2px;
    background: var(--color-white);
    cursor: pointer;
    transition: transform .14s ease, background .14s ease, box-shadow .14s ease, opacity .14s ease;
    border: none;
}

.kicker-dash.active {
    background: var(--color-blue);
}

.kicker-dash:focus {
    outline: 2px solid rgba(30, 115, 190, 0.18);
}

.slide-content {
    background-color: rgba(0, 0, 0, 0.20);
    padding: 20px;
}

/* Links */

.links {
    display: flex;
    padding: 32px 80px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.link-list {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.select-content {
    display: none;
}

.select-content.active-switch {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.link-item {
    display: flex;
    padding: 20px;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 8px;
    background: #FFF;
    box-shadow: rgb(229, 229, 229) 0px 1px 4px 0px, rgb(229, 229, 229) 0px 1px 4px 0px;
}

.link-item:hover,
.link-item:focus {
    box-shadow: var(--box-shadow-hover);
}

.link-item>a {
    display: flex;
    gap: 8px;
    width: 100%;
    height: 100%;
}

.link-item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1 0 0;
    align-self: stretch;
    min-height: 90px;
}

.content-icon {
    width: 40px;
    height: 40px;
}

.content-title {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.link-icon {
    width: 32px;
    height: 32px;
    align-self: flex-end;
}

/* About */

.about {
    display: flex;
    width: 100%;
    padding: 32px 80px 64px 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    background: #FFF;
}

.title {
    color: var(--color-black);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

/* Timeline */

.timeline-container {
    margin: 0 auto;
    background: white;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 14px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 99px;
    background: var(--color-blue);
    animation: width cubic-bezier(0.250, 0.460, 0.450, 0.940) forwards;
    animation-timeline: view(block);
    animation-range: entry 40% cover 55%;

}

.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    animation: opacity cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-timeline: view(block);
    animation-range: entry 40% cover 50%;
}

.timeline-item {
    position: relative;
    display: flex;
    min-height: 200px;
    padding: 12px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    flex: 1 0 0;
}

.timeline-dot {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #1e5a8e;
    border: 6px solid white;
    border-radius: 50%;
    z-index: 2;
}

.timeline-year {
    font-size: 24px;
    font-style: normal;
    text-align: center;
    font-weight: 600;
    line-height: 140%;
    color: var(--color-blue);
}

.timeline-description {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-align: center;
    color: var(--color-black);
}

/* Information Cards */

.info-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.info-card {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    min-width: 200px;
    height: 200px;
}

.info-card-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.info-card-content {
    display: flex;
    flex-direction: column;
}

.info-card-title {
    color: var(--color-blue);
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    text-align: center;
}

.info-card-description {
    color: var(--color-blue);
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
}

/* Graphs */

.graphs {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 64px;
    width: 100%;
}

/* Genel Satış Raporu Grafiği */

.GSRG {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.GSRG-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.GSRG-content {
    display: flex;
    flex-direction: column;
}

.GSRG-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    color: var(--color-black);
}

.GSRG-description {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    color: var(--color-black);
}

.GSRG-graph-container {
    display: flex;
    gap: 20px;
}

.GSRG-graph {
    display: flex;
    flex: 10 1 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.GSRG-graph-infoCard-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: auto;
}

.GSRG-graph-infoCard {
    display: flex;
    flex: 1 0 auto;
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-width: 240px;
    align-self: stretch;
    border-radius: 8px;
    background: #FFF;
    box-shadow: var(--box-shadow);
}

.GSRG-graph-infoCard-title {
    color: var(--color-blue);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.GSRG-graph-infoCard-desc {
    display: flex;
    align-items: center;
    gap: 16px;
}

.GSRG-graph-infoCard-desc-number {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-align: center;
    color: var(--color-blue);
}

.GSRG-graph-infoCard-desc-unit {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: var(--color-blue);
}

.with-info {
    color: var(--color-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.extra-info {
    color: var(--color-blue);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

/* Hisse Senedi Grafiği */

.HSG {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 100%;
}

.HSG-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.HSG-content {
    flex: 1 1 auto;
}

.HSG-title {
    color: var(--color-black);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.HSG-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: end;
    flex: 1 1 auto;
}

.HSG-select {
    padding: 8px 16px;
    font-style: normal;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    cursor: pointer;
    line-height: 20px;
    letter-spacing: 0.042px;
    border: 1px solid #D1D1D1;
    border-radius: 8px;
    background: #FFF;
    display: flex;
    align-items: center;
    flex: 1 1;
}

select {
    right: 10px;
    border: none;
}

.HSG-graph-container {
    display: flex;
    gap: 20px;
}

.HSG-graph-container>div {
    flex: 10 1 auto;
}

.HSG-graph {
    min-height: 400px;
}

.HSG-graph-infoCard-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: auto;
    align-self: stretch;
}

.HSG-graph-infoCard {
    display: flex;
    flex: 1 0 auto;
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-width: 240px;
    align-self: stretch;
    border-radius: 8px;
    background: #FFF;
    box-shadow: var(--box-shadow);
}


.HSG-graph-infoCard-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-blue);
}

.HSG-graph-infoCard-desc-number {
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-blue);
}

.HSG-graph-infoCard-desc-change {
    font-size: 14px;
    margin-left: 8px;
}


.HSG-graph-infoCard-date {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    color: var(--color-blue);
}

.HSG-graph-infoCard-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #004F9F;
    text-decoration: none;
    padding: 16px;
}

.HSG-content-title {
    color: var(--color-blue);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.HSG-table {
    margin-top: 24px;
    border-radius: 8px;
    border: 1px solid #D1D1D1;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.HSG-table table {
    width: 100%;
    border-collapse: collapse;
    flex: 1;
}

.HSG-table th,
.HSG-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.HSG-table-note {
    flex: 1;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    color: var(--color-black);
    padding: 12px;
    display: flex;
    align-items: center;
}

/* Yatırımcı Bülteni */

.mail-list-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    align-self: stretch;
    background: linear-gradient(90deg, #004F9F 0%, #0069D3 100%);
    position: relative;
}

.mail-list-bar::before {
    content: '';
    background: url(/public/images/vector.svg);
    width: 217px;
    height: 180px;
    position: absolute;
    left: 26px;
    top: 26px;
}

.mail-list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    flex: 1 0 0;
    align-self: stretch;
}

.mail-list-title {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.mail-list-desc {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

/* Özel Durum Açıklamaları ve Kredi Derecelendirme Notları */

.special-statements {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    justify-content: space-evenly;
}

.special-statements-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 0 1 64%;
}

.special-statements-head {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.special-statements-head-title {
    color: var(--color-black);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.special-statements-head-button {
    padding: 4px 8px;
}

.bar-link-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.bar-link {
    display: flex;
    padding-right: 24px;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-radius: 8px;
    background: #FFF;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    min-height: 80px;
}


.homapage .investor-calender-content .bar-link {
    transform: translateX(30px);
    will-change: transform, opacity;
}

.homapage .investor-calender-content .bar-link.in-view {
    animation: barLinkSlideIn 1200ms cubic-bezier(0.22, 0.9, 0.32, 1) both;
    animation-delay: var(--delay, 0ms);
    will-change: transform, opacity;
}

.homapage .investor-calender-content .bar-link:nth-child(1) {
    --delay: 0s;
}

.homapage .investor-calender-content .bar-link:nth-child(2) {
    --delay: 0.06s;
}

.homapage .investor-calender-content .bar-link:nth-child(3) {
    --delay: 0.12s;
}

.homapage .investor-calender-content .bar-link:nth-child(4) {
    --delay: 0.18s;
}

.homapage .investor-calender-content .bar-link:nth-child(5) {
    --delay: 0.24s;
}

.bar-link:hover,
.bar-link:focus {
    box-shadow: var(--box-shadow-hover);
}

.bar-link-left {
    align-self: stretch;
    justify-self: stretch;
    border-right: 1px solid #D1D1D1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-link-left-icon {
    display: flex;
    width: 88px;
    padding: 8px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: var(--color-blue);
    height: auto;
}

.bar-link-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 88px;
    padding: 8px 24px;
    background: var(--color-blue);
    height: 100%;
    min-height: 90px;
}

.date-day {
    color: white;
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
}

.date-month {
    color: white;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
}

.bar-link-content {
    display: flex;
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}

.link-content-title {
    color: var(--color-black);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}

.link-content-date {
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    position: relative;
}

.link-content-date::after {
    content: 'İndirilebilir PDF Ek';
    margin-left: 12px;
    height: 20px;
    padding: 0 6px;
    justify-content: center;
    text-align: center;
    gap: 10px;
    border-radius: 16px;
    background: rgba(0, 79, 159, 0.20);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-blue);
}

.link-content-desc {
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.bar-link-icon {
    width: 36px;
    height: 36px;
}

.icon-wrapper {
    position: relative;
}

.icon-wrapper::after {
    content: '2';
    color: #FFF;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    text-align: center;
    align-content: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 140%;
    border-radius: 99px;
    background-color: var(--color-blue);
}

.credit-notes-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 0 1 32%;
}

.credit-notes-title {
    color: var(--color-black);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.credit-notes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--box-shadow);
    border-radius: 8px;
    background: #F6F6F6;
    width: 100%;
}

.credit-note-container {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
}

.credit-note-headtitle {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-black);
}

.credit-note-row {
    display: flex;
    height: 64px;
    align-items: center;
    gap: 25px;
    align-self: stretch;
}

.credit-note {
    display: flex;
    padding: 16px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 auto;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #D5D5D5;
    background: #FFF;
}

.credit-note-title {
    color: #727272;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

.credit-note-value {
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

/* Yatırımcı Takvimi */

.investor-calender {
    flex-direction: column;
    display: flex;
    gap: 20px;
}

.investor-calender-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.investor-calender-title {
    color: var(--color-black);
    font-weight: 500;
    font-style: Medium;
    font-size: 28px;
    line-height: 140%;
    letter-spacing: 0%;
}

.investor-calender-content {
    display: flex;
    gap: 20px;
}

/* Takvim Stilleri */

.calendar-container {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--box-shadow);
    max-width: 400px;
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.month-year {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    text-align: center;
    color: var(--color-black);
}

.nav-buttons {
    display: flex;
    gap: 24px;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--color-black);
    padding: 5px 10px;
    transition: color 0.2s;
}

.nav-btn:hover {
    color: #1a73e8;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-black);
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    min-height: 300px;
}

.day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    color: var(--color-black);
}

.day>span:hover {
    background: #f0f0f0;
}

.day.empty {
    cursor: default;
}

.day.empty>span:hover {
    background: none;
}

.day.other-month {
    color: #ccc;
}

.day.other-month>span:hover {
    background: #f8f8f8;
}

.day.today>span {
    background: var(--color-blue);
    color: white;
    font-weight: 600;
}

.day.today>span:hover {
    background: #1a73e8;
}

.dots {
    display: flex;
    gap: 4px;
    position: absolute;
    bottom: -2px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend {
    margin-top: 30px;
    padding-top: 20px;
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.legend-item>span {
    color: var(--color-black);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.day>span {
    border-radius: 50%;
    padding: 4px;
    aspect-ratio: 1/1;
}

/* Footer Designs */

footer {
    background: linear-gradient(90deg, #004F9F 0%, #0069D3 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/public/images/Vector2.png');
    background-position: right center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.footer-container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    gap: 30px 60px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: auto;
    height: auto;
}

.footer-links {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.column-wrapper {
    display: flex;
    gap: 32px;
    flex-direction: column;
    flex: 1;
    min-width: 180px;
}

.footer-column {
    min-width: 180px;
}

.footer-column.contact {
    flex: 2 0;
    min-width: 180px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #FFF;
    font-weight: 300;
    font-style: Regular;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;

}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
    overflow-wrap: anywhere;
}

.contact-item a:hover {
    color: var(--blue-hover);
}

.footer-container .contact-item a:hover {
    color: white;
    padding-left: 5px;
}

.iletisim-card .contact-item {
    color: var(--color-black);
}

.iletisim-card a {
    color: var(--color-black);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.sunumlar .content-title {
    color: var(--color-black);
    font-weight: 300;
    font-style: Light;
    font-size: 24px;
    line-height: 140%;
}

.sunumlar .link-item {
    min-height: 180px;
}

.rapor-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.select {
    border-radius: 8px;
    padding: 12px;
    border-width: 1px;
    background: #FFFFFF;
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
}

.breadcrumb {
    position: relative;
}

.breadcrumb-wrapper {
    position: absolute;
    top: -36px;
}

.breadcrumb-link {
    cursor: pointer;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    color: var(--color-blue);
}

.breadcrumb-link:hover,
.breadcrumb-link:focus {
    color: var(--blue-hover);
}

.breadcrumb-passive {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    color: #556B82;
}

.gayrimenkul-degerleme .bar-link-left-icon {
    background: #fff;
    align-self: center;
    width: auto;
    height: auto;
}

.gayrimenkul-degerleme .bar-link {
    padding-right: 0;
}

.download-link .bar-link-left-icon {
    background: #fff;
    align-self: center;
    width: auto;
    height: auto;
}

.bar-link.download-link {
    padding-right: 0;
}

.download {
    align-self: stretch;
    justify-self: stretch;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-items: center;
    padding-right: 24px;
    padding-left: 24px;
}

.download:hover,
.download:focus {
    background-color: #f1f1f1;
}

.download>span {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 120%;
    color: var(--color-blue);
}

.download>img {
    width: 15px;
    height: 15px;
}

.analyst-table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid #D1D1D1;
    border-radius: 8px;
    background: #fff;
}

.analyst-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
    text-align: center;
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    color: #222;
}

.analyst-table-head-row {
    background: linear-gradient(90deg, #004F9F 0%, #0069D3 100%);
    color: #fff;
}

.analyst-table-head-row th {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.analyst-table-row td {
    padding: 14px 18px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.analyst-table-row:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.analyst-table-head-row th:first-child {
    border-top-left-radius: 8px;
}

.analyst-table-head-row th:last-child {
    border-top-right-radius: 8px;
}

.iletisim .content-title {
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 140%;
    color: var(--color-black);
}

.iletisim-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    align-self: stretch;
    justify-self: stretch;
    flex: 1 0;
}

.iletisim-content-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.kurumsal-yonetim .link-item {
    flex: 0 1 23.56%;
}

.corporate {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.corporate-img {
    flex: 1 1;
}

.corporate-info {
    flex: 1 0 auto;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.info-wrapper {
    display: flex;
    gap: 32px;
    flex-direction: column;
}

.info-row-wrapper {
    display: flex;
    gap: 4px;
    flex-direction: column;
}

.info-title {
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-blue);
}

.info-text {
    display: inline-block;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-black);
    margin-top: 4px;
}

.yonetim-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.yonetim-card {
    padding-top: 12px;
    display: flex;
    gap: 20px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    align-items: center;
    flex: 1 1 48%;
    min-width: fit-content;
}

.yonetim-img {
    max-width: 200px;
    max-height: 200px;
    aspect-ratio: 1/1;
}

.yonetim-info {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.yonetim-role {
    margin-top: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: var(--color-blue);
}

.genel-kurul .content-title {
    font-weight: 500;
}

.genel-kurul .link-item {
    flex: 1 0 22%;
    min-width: 300px;
}

.content-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--color-black);
}


/* Tab and Select display */

.tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #D1D1D1;
    margin: 32px 0;
}

.tab {
    padding: 8px;
    color: var(--color-black);
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.3px;
    vertical-align: middle;
}

.tab:hover {
    color: var(--blue-hover);
}

.tab-content,
.select-content {
    display: none;
}

.tab-content.active-switch,
.select-content.active-switch {
    display: flex;
}

.active {
    border-bottom: 2px solid var(--color-blue);
    color: var(--color-blue);
}

.tab.active {
    font-weight: 500;
}

.tab-content {
    flex-direction: column;
}

.tab-content-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.tab-content-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.tab-content-wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.komite-table {
    border-radius: 8px;
    box-shadow: var(--box-shadow-hover);
}

.komite-table th {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    padding: 12px;
    color: var(--color-black);
}

.komite-table td {
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    padding: 12px;
    color: var(--color-black);
}

.komite-table thead tr {
    background: #F6F6F6;
}


/* Hamburger Menu */

#hamburgerBtn {
    display: none;
}

.hamburger-icon,
.close-icon {
    padding: 12px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: none;
}

.opened .close-icon {
    display: block;
}

.opened .hamburger-icon {
    display: none;
}

.mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 100px;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: white;
    border-left: 1px solid #D1D1D1;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu-overlay.nav-active {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    gap: 4px;
    border-left-width: 1px;
    align-items: flex-end;
}

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.mobile-nav-link:hover {
    background-color: #f5f5f5;
}

.mobile-nav-item.active .mobile-nav-link {
    color: var(--color-blue);
    font-weight: 500;
}

.mobile-nav-item.active {
    border: none;
}

.mobile-nav-item .mobile-nav-link {
    border-radius: 8px;
}

.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

section:not(.hero-wrapper, .mail-list-bar) {
    max-width: 1440px;
    margin: auto;
}

.social {
    padding-block: 30px;
}

.social p {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
}

.social .link-icon-wrapper {
    margin-top: 16px;
}

.social .link-icon {
    margin-right: 16px;
}

.social .link-icon:hover img {
    transform: scale(1.1);
}

.social .link-icon img {
    width: 32px;
    height: 32px;
}

.subtitle {
    font-weight: 600;
    font-style: Medium;
    font-size: 24px;
    line-height: 120%;
    color: var(--color-black);
}

.detail-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    margin: auto;
    overflow: hidden;
    padding: 64px 8px;

    p {
        line-height: 140%;
    }
}

.detail-wrapper:first-of-type {
    padding: 32px 8px;
}

.detail-content-wrapper {
    flex: 1 0 40%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-image {
    flex: 0 1 40%;
    width: auto;
    height: 270px;
}

.gayrimenkul-card {
    display: flex;
    flex: 1 1 48%;
    flex-direction: row;
    padding: 32px 48px;
    overflow: hidden;
    align-self: stretch;
    justify-self: stretch;
    gap: 32px;
    color: white;
    align-items: center;
    justify-content: flex-start;
}

.gayrimenkul-card-detail {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 24px;

    .subtitle {
        color: white;
        margin-bottom: 8px;
        font-size: 24px;
        font-weight: 500;
    }

    :not(:first-child) {
        font-size: 16px;
        font-weight: 300;
    }
}

.goto {
    position: relative;
    width: max-content;
}

.goto::after {
    content: "";
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url(/public/images/chevron-right.svg);
    transition: transform 400ms ease-in-out;
}

.gayrimenkul-card:hover {
    .goto::after {
        transform: translate(10px, -50%);
    }
}

.gayrimenkul-card.damlakent {
    background: linear-gradient(90deg, #5D4C2E 0%, #1A150D 100%);

    img {
        height: 120px;
        width: 90px;
    }
}

.gayrimenkul-card.gayrimenkul-sertifikasi {
    background: linear-gradient(90deg, #A2D8FF 0%, #00458C 100%);

    img {
        height: 120px;
        width: 140px;
    }
}

.info-container {
    flex: 1 1 48%;

    .card-subtitle {
        font-family: Poppins;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 20px;
        line-height: 140%;
    }
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cards-wrapper {
    display: flex;
    gap: 20px;
}

.infocard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);

    .number {
        display: flex;
        flex: 0 0 40px;
        align-items: center;
        justify-content: center;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 100%;
        background: var(--color-blue);
        font-weight: 600;
        font-size: 16px;
    }
}

.infocard:hover {
    box-shadow: var(--box-shadow-hover);
}

.infocard span {
    display: block;
}

.process-container>p {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 120%;
}

.process-container {
    .cards-wrapper {
        flex-wrap: wrap;
    }

    .infocard {
        flex: 1 0 32%;
        padding: 40px;
        gap: 24px;
        min-height: 232px;

        .subtitle {
            font-weight: 600;
            font-size: 20px;
            line-height: 140%;
        }
    }
}

.heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.links-wrapper {
    .bar-link-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .bar-link {
        flex: 0 1 49%;
        padding-right: 0;
    }

    .bar-link-left-icon {
        background: #fff;
        align-self: center;
        width: auto;
        height: auto;
    }
}

@keyframes headerDown {
    from {
        transform: translateY(-200px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(-600px);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(600px);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes barLinkSlideIn {
    from {
        transform: translateX(600px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes height {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

@keyframes width {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}


/* Responsive Designs */

@media (max-width: 1200px) {
    .header-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        gap: 20px;
    }

    .investor-calender-content {
        flex-wrap: wrap;
    }

    .calendar-container {
        margin: auto;
    }

    .calender-page .investor-calender-content {
        flex-direction: column-reverse;
    }

    .GSRG-graph-container {
        flex-direction: column;
    }

    .GSRG-graph-infoCard-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .HSG-graph-container {
        flex-direction: column;
    }

    .HSG-graph-infoCard-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .kurumsal-yonetim .link-item {
        flex: 0 1 23%;
    }

    .credit-notes-title {
        font-size: 24px;
    }
}

@media (max-width: 950px) {

    .header-wide {
        display: none;
    }

    .about {
        align-items: center;
    }

    #hamburgerBtn {
        display: block;
    }

    .hamburger-icon {
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .menu-backdrop.nav-active {
        display: block;
    }

    section:not(.hero-wrapper) {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .special-statements {
        flex-wrap: wrap;
    }

    .special-statements-section {
        flex: unset;
    }

    .credit-notes-section {
        flex: unset;
    }

    .special-statements>* {
        margin: auto;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .about-title {
        width: 100%;
        text-align: center;
    }

    .slide-content {
        max-width: 70%;
    }

    .timeline {
        flex-direction: column;
        align-items: stretch;
        padding-top: 0;
    }

    .timeline::before {
        display: block;
        top: 0;
        left: 30px;
        right: auto;
        width: 4px;
        height: 100%;
        border-radius: 99px;
        animation: none;
    }

    .timeline-item {
        flex: none;
        text-align: left;
        padding: 35px 0 35px 80px;
        height: 100%;
    }

    .timeline-dot {
        top: 80px;
        left: 16px;
        transform: translateY(-50%);
        animation: slideLeft cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation-timeline: view(block);
        animation-range: entry 5% cover 30%;
    }

    .timeline-year {
        font-size: 19px;
    }

    .timeline-content {
        font-size: 13px;
    }

    .kurumsal-yonetim .link-item {
        flex: 0 1 31%;
    }

    .detail-wrapper {
        flex-wrap: wrap;
    }

    .links-wrapper {

        .bar-link {
            flex: 1 1 100%;
            padding-right: 0;
        }
    }
}

@media (max-width: 768px) {

    .analyst-table-head-row th,
    .analyst-table-row td {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width:600px) {

    .HSG-head {
        flex-direction: column;
        gap: 16px;
    }

    .graphs {
        gap: 64px;
    }

    .kurumsal-yonetim .link-item {
        flex: 0 1 47%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .swiper-slide,
    .custom-nav,
    .kicker-dash,
    .slide-content * {
        transition: none !important;
        animation: none !important;
    }
}