:root {
    --navy: #003366;
    --navy-mid: #004080;
    --navy-light: #1a5276;
    --teal: #2471a3;
    --teal-mid: #3498db;
    --teal-light: #aed6f1;
    --teal-pale: #d6eaf8;
    --teal-box1: #2e86c1;
    --teal-box2: #1a6fa8;
    --teal-box3: #5dade2;
    --teal-box4: #85c1e9;
    --teal-box5: #d4e6f1;
    --white: #ffffff;
    --bg: #f4f6f8;
    --gray-100: #f0f2f4;
    --gray-200: #e2e6ea;
    --gray-400: #aab4be;
    --gray-600: #5d6d7e;
    --text: #1c2833;
    --text-mid: #515a6a;
    --tr: all 0.28s ease;
    --corporate-navy: #0B2046;
    --corporate-blue: #1A4B8C;
    --corporate-light-blue: #E8F0FE;
    --corporate-accent: #D4AF37;
    --corporate-gray: #F8F9FA;
    --text-main: #333333;
    --text-muted: #6C757D;
}

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
}

a {
    color: inherit;
    text-decoration: none !important;
    transition: var(--tr);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ── NAVBAR ── */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: var(--tr);
}

#mainNav.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 76px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity 0.2s ease;
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.82;
}

/* Nav list */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    height: 76px;
    gap: 0;
}

.nav-item-wrap {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
}

.nav-lnk {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 1rem;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #000000;
    letter-spacing: 0.04em;
    font-weight: 700;
    position: relative;
    white-space: nowrap;
}

.nav-lnk::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-lnk:hover {
    color: var(--teal);
}

.nav-lnk:hover::after {
    transform: scaleX(1);
}

/* ── DROPDOWN (Kurumsal tipi) ── */
.nav-drop {
    position: absolute;
    top: 100%;
    left: -1rem;
    display: flex;
    background: var(--white);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.16);
    min-width: 460px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 900;
}

.has-drop:hover .nav-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sol navy panel */
.nav-drop-label {
    background: var(--navy);
    color: var(--white);
    padding: 2rem 1.75rem;
    min-width: 150px;
    display: flex;
    align-items: flex-end;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Sağ link listesi */
.nav-drop-links {
    flex: 1;
    padding: 0.5rem 0;
}

.nav-drop-links li {
    border-bottom: 1px solid var(--gray-100);
}

.nav-drop-links li:last-child {
    border-bottom: none;
}

.nav-drop-links li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--tr);
}

.nav-drop-links li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-drop-links li a:hover {
    color: var(--teal);
    background: var(--teal-pale);
    padding-left: 2rem;
}

.nav-drop-links li a:hover::before {
    opacity: 1;
}

/* ── MEGA MENU (Yatırımlarımız tipi) ── */
.nav-mega {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 900;
}

.has-mega:hover .nav-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-mega-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: stretch;
    height: 210px;
}

/* Sol açıklama paneli */
.nav-mega-side {
    background: var(--navy);
    padding: 2rem 1.75rem;
    min-width: 240px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.nav-mega-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 0.6rem;
}

.nav-mega-heading {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.85rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.nav-mega-desc {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
}

.nav-mega-all {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-light);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: gap 0.22s ease;
}

.nav-mega-all:hover {
    color: var(--white);
    gap: 0.7rem;
}

.nav-mega-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    flex: 1;
    align-items: stretch;
}

.nav-mega-cards--5 {
    grid-template-columns: repeat(5, 1fr);
}

.nav-mega-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-mega-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.nav-mega-card:hover img {
    transform: scale(1.07);
    filter: brightness(0.35);
}

.nav-mega-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem 1.35rem;
    background: linear-gradient(0deg, rgba(0, 15, 40, 0.92) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 2;
    pointer-events: none;
}

.nav-mega-card-info i {
    font-size: 1rem;
    color: var(--teal-light);
    margin-bottom: 0.1rem;
}

.nav-mega-card-info span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
}

.nav-mega-arrow {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
}

.nav-mega-card:hover .nav-mega-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Nav right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Sosyal medya ikon butonlar */
.nav-social {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: 0.9rem;
    transition: var(--tr);
    background: transparent;
}

.nav-social-btn:hover {
    background: var(--teal-pale);
    color: var(--teal);
}

/* Ayırıcı */
.nav-divider {
    width: 1px;
    height: 22px;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* Dil seçici */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 0.3rem 0.7rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    transition: var(--tr);
    white-space: nowrap;
}

.nav-lang-btn .lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}
.nav-lang-btn .lang-flag img{
    max-width: 30px;
    border-radius: 20px;
}

.nav-lang-btn .lang-code {
}

.nav-lang-btn:hover {
    color: var(--navy);
    border-color: var(--gray-200);
    background: var(--gray-100);
}

.nav-lang-btn.active {
    color: var(--navy);
    border-color: var(--gray-200);
    background: var(--gray-100);
    font-weight: 800;
}

/* İletişim CTA — Pill */
.nav-cta-btn {
    background: var(--teal);
    color: var(--white) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    transition: var(--tr);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(36, 113, 163, 0.25);
}

.nav-cta-btn:hover {
    background: var(--teal-box1);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(36, 113, 163, 0.35);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: var(--tr);
}

/* Mobile menu */
.nav-mobile {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 0.5rem 2rem 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.nav-mobile.open {
    max-height: 1000px;
}

/* Ana liste */
.mob-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mob-item {
    border-bottom: 1px solid var(--gray-100);
}

.mob-item > a {
    display: block;
    padding: 0.85rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.mob-item > a:hover {
    color: var(--teal);
}

/* Accordion toggle butonu */
.mob-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mob-toggle i {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
    color: var(--text-mid);
}

.mob-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mob-toggle:hover {
    color: var(--teal);
}

/* Alt menü — kapalı */
.mob-sub {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mob-sub.open {
    max-height: 300px;
}

.mob-sub li {
    border-top: 1px solid var(--gray-100);
}

.mob-sub li a {
    display: block;
    padding: 0.7rem 0;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-mid);
    font-family: 'Montserrat', sans-serif;
}

.mob-sub li a:hover {
    color: var(--teal);
}

.nav-mobile-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid var(--gray-100);
    margin-top: 0.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-mobile-social {
    display: flex;
    gap: 0.75rem;
}

.nav-mobile-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: 0.9rem;
    transition: var(--tr);
}

.nav-mobile-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.nav-mobile-lang {
    display: flex;
    gap: 0.4rem;
}

.nav-mobile-lang .nav-lang-btn {
    font-size: 0.72rem;
}

/* ══════════════════════════════════════════════════
   HERO V2 — Modern cinematic slider
══════════════════════════════════════════════════ */
.hero-v2 {
    position: relative;
    height: calc(100vh - 76px);
    min-height: 580px;
    overflow: hidden;
    margin-top: 76px;
}

/* ── Slayt arka planları ── */
.hero-v2-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.hero-v2-slide.active {
    opacity: 1;
}

.hero-v2-bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 9s ease;
}

.hero-v2-slide.active .hero-v2-bg {
    transform: scale(1);
}

/* ── Gradient overlay ── */
.hero-v2-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            108deg,
            rgba(0, 18, 46, 0.82) 0%,
            rgba(0, 18, 46, 0.55) 48%,
            rgba(0, 18, 46, 0.12) 100%
    );
}

/* ── İçerik bloğu ── */
.hero-v2-content {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 50px; /* sağdaki 50px bar için */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem 5rem;
}

/* Text reveal: overflow-hidden wrapper + animated inner */
.hero-v2-tr {
    overflow: hidden;
    display: block;
}

.hero-v2-tr-i {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s);
}

/* Exit: slide up + fade */
.hero-v2-content.is-out .hero-v2-tr-i {
    opacity: 0;
    transform: translateY(-14px);
    transition-duration: 0.3s, 0.3s !important;
    transition-delay: 0s !important;
}

/* Enter init: instant reset to below */
.hero-v2-content.is-init .hero-v2-tr-i {
    opacity: 0;
    transform: translateY(22px);
    transition: none !important;
}

/* ── Eyebrow label ── */
.hero-v2-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.hero-v2-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--teal-mid);
    flex-shrink: 0;
}

.hero-v2-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal-light);
}

/* ── Başlık ── */
.hero-v2-heading {
    margin: 0 0 1.8rem;
    line-height: 0.9;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 6.5vw, 7.2rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero-v2-accent {
    color: rgba(255, 255, 255, 0.38);
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
}

@supports not (-webkit-text-stroke: 1px white) {
    .hero-v2-accent {
        color: rgba(255, 255, 255, 0.3);
    }
}

/* ── Açıklama ── */
.hero-v2-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.68);
    max-width: 460px;
    margin: 0 0 2.4rem;
    line-height: 1.65;
}

/* ── CTA butonları ── */
.hero-v2-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-v2-btn-main {
    background: var(--teal);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--tr);
    box-shadow: 0 4px 22px rgba(36, 113, 163, 0.38);
}

.hero-v2-btn-main:hover {
    background: var(--teal-box1);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(36, 113, 163, 0.48);
}

.hero-v2-btn-ghost {
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    transition: var(--tr);
}

.hero-v2-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.82);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════
   SAĞ DİKEY NAV — 20px flush sağ kenar
   Yukarı: bar (aşağıya dolar)
   Aşağı: kompakt butonlar + rakamlar (satır satır)
══════════════════════════════════════════════════ */
.hero-v2-right-nav {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 4;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Dikey bar: mavi arkaplan, beyaz dolum */
.hero-v2-vbar {
    flex: 1;
    background: var(--navy);
    overflow: hidden;
    position: relative;
}

.hero-v2-vbar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--white);
}

/* ── Kompakt alt öğeler (50px genişlik, satır satır) ── */

/* Butonlar: beyaz arkaplan, sayfa yazı rengi */
.hero-v2-rn-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--text);
    border: none;
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
    flex-shrink: 0;
}

.hero-v2-rn-btn:hover {
    background: var(--gray-100);
}

/* Rakamlar: koyu mavi arkaplan, beyaz yazı */
.hero-v2-rn-num {
    width: 50px;
    height: 50px;
    background: var(--navy-mid);
    color: var(--white);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    padding: 0;
}

/* Aktif slayt numarası: bir ton daha koyu */
.hero-v2-rn-active {
    background: var(--navy);
}

/* .hero-v2-inds kaldırıldı — sağ nav bar ile değiştirildi */

/* ── Progress animasyonları ── */
@keyframes heroVBarFill {
    from {
        height: 0%;
    }
    to {
        height: 100%;
    }
}

@keyframes heroIndFill {
    from {
        height: 0%;
    }
    to {
        height: 100%;
    }
}


/* ══════════════════════════════════════════════════
   HERO V3 — Editorial split slider
   Sol: navy panel (diagonal kenar) + Sağ: full-bleed görsel
══════════════════════════════════════════════════ */

/* Konteyner */
.hv3 {
    position: relative;
    height: 78vh;
    min-height: 520px;
    max-height: 800px;
    margin-top: 76px;
    overflow: hidden;
    background: #00112e;
}

/* ── Görseller (full bleed) ── */
.hv3-visuals {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Slayt */
.hv3-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    clip-path: inset(0 100% 0 0);
}

.hv3-slide.active {
    z-index: 1;
    clip-path: inset(0 0% 0 0);
}

/* Wipe geçişi: yeni slayt soldan sağa açılır */
.hv3-slide.entering {
    z-index: 2;
    clip-path: inset(0 100% 0 0);
    transition: none;
}

.hv3-slide.entering.go {
    clip-path: inset(0 0% 0 0);
    transition: clip-path 1.05s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Ken Burns */
.hv3-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 9s ease;
}

.hv3-slide.active .hv3-bg {
    transform: scale(1);
}

/* Üst sol köşeyi koyulaştıran gradient (metin okunabilirliği) */
.hv3-veil {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to bottom,
    rgba(0, 15, 40, 0.72) 0%,
    rgba(0, 15, 40, 0.30) 45%,
    rgba(0, 15, 40, 0.10) 100%
    ),
    linear-gradient(to right,
            rgba(0, 15, 40, 0.60) 0%,
            rgba(0, 15, 40, 0.0) 55%
    );
}

/* Progress bar */
.hv3-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.10);
    z-index: 4;
}

.hv3-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--teal-mid);
    border-radius: 0 2px 2px 0;
}

/* ── Ana içerik: üst sol, logo ile aynı sol hiza ── */
.hv3-content {
    position: absolute;
    top: 3rem;
    /* Logo navbar container ile aynı sol hiza:
       max-width 1400px centered + 2rem padding */
    left: max(2rem, calc((100vw - 1400px) / 2 + 2rem));
    z-index: 5;
    max-width: 520px;
}

/* Ghost rakam */
.hv3-ghost {
    position: absolute;
    bottom: 3rem;
    left: -0.04em;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(8rem, 14vw, 16rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 2;
    transition: opacity 0.4s;
}

/* ── Alt sol: Navigasyon kartı ── */
.hv3-card {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 6;
    background: rgba(0, 17, 46, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 25px 25px max(2rem, calc((100vw - 1400px) / 2 + 2rem));
}

.hv3-card-sector {
    margin-bottom: 0.5rem;
    opacity: 1;
}

/* Sektör etiketi */
.hv3-eyebrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hv3-eyebrow-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--teal-mid);
    flex-shrink: 0;
}

.hv3-eyebrow-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--teal-light);
}

/* Ana başlık */
.hv3-heading {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    margin: 0 0 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.9rem, 2.8vw, 3.4rem);
    line-height: 1.0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hv3-h-solid {
    display: block;
    color: #fff;
}

.hv3-h-outline,
.hv3-h-thin {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 0.03em;
}

/* Açıklama */
.hv3-desc {
    position: relative;
    z-index: 1;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.90rem;
    line-height: 1.70;
    color: rgba(255, 255, 255, 0.55);
    max-width: 380px;
    margin: 0 0 1.6rem;
}

/* CTA butonlar */
.hv3-btns {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hv3-btn-fill {
    background: var(--teal);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: var(--tr);
    box-shadow: 0 4px 24px rgba(36, 113, 163, 0.38);
}

.hv3-btn-fill:hover {
    background: var(--teal-box1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(36, 113, 163, 0.48);
}

.hv3-btn-ghost {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    transition: var(--tr);
}

.hv3-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.70);
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

/* Navigasyon satırı */
.hv3-nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hv3-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.72rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--tr);
}

.hv3-nav-btn:hover {
    border-color: var(--teal-mid);
    color: var(--teal-light);
    background: rgba(36, 113, 163, 0.16);
    transform: scale(1.08);
}

/* Counter */
.hv3-counter {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0.3rem;
}

.hv3-n-cur {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    min-width: 1.8ch;
}

.hv3-n-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
}

.hv3-n-tot {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.32);
}

/* Tick çubukları */
.hv3-ticks {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 0.5rem;
}

.hv3-tick {
    height: 3px;
    width: 22px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.20);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.35s ease, background 0.35s ease;
}

.hv3-tick.active {
    width: 44px;
    background: var(--teal-mid);
}

.hv3-tick:hover:not(.active) {
    background: rgba(255, 255, 255, 0.45);
}

/* ── Text animasyonları ── */
.hv3-a {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s);
}

.hv3-a.in {
    opacity: 1;
    transform: none;
}

.hv3-a.out {
    opacity: 0;
    transform: translateY(-12px);
    transition-duration: 0.22s, 0.22s !important;
    transition-delay: 0s !important;
}

/* ── Progress animasyonu ── */
@keyframes hv3ProgressFill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}


/* ── SEKTÖR TİLELARI (Rönesans altındaki kutular) ── */
.sector-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    height: 560px;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.sector-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sector-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0%);
    transition: transform 0.6s ease, filter 0.45s ease;
    display: block;
}

.sector-tile:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.sector-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
    transition: var(--tr);
}

.sector-tile:hover .sector-tile-overlay {
    background: linear-gradient(0deg, rgba(0, 30, 60, 0.78) 0%, rgba(0, 30, 60, 0.28) 60%, transparent 100%);
}

.sector-tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    z-index: 2;
}

.sector-tile-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 0.35rem;
}

.sector-tile-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.sector-tile-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.4rem;
    font-weight: 400;
    line-height: 1.4;
}

.sector-tile-arrow {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: var(--tr);
}

.sector-tile:hover .sector-tile-arrow {
    color: var(--white);
    transform: translate(3px, -3px);
}

/* ── MOSAİC İSTATİSTİK GRID (Rönesans'ın en önemli özelliği) ── */
.mosaic-section {
    background: var(--white);
    padding: 5rem 0 4rem;
}

.mosaic-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mosaic-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.mosaic-section-title strong {
    font-weight: 700;
}

.mosaic-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border-bottom: 1px solid var(--teal);
    padding-bottom: 1px;
    transition: var(--tr);
}

.mosaic-link:hover {
    color: var(--navy);
    border-color: var(--navy);
}

/* THE MOSAIC GRID */
.mosaic-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 0;
    background: var(--gray-200);
}

.mc { /* mosaic cell */
    background: var(--white);
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 110px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: default;
}

/* Cell backgrounds */
.mc.bg-navy {
    background: var(--navy);
}

.mc.bg-teal1 {
    background: var(--teal-box1);
}

.mc.bg-teal2 {
    background: var(--teal-box2);
}

.mc.bg-teal3 {
    background: var(--teal-box3);
}

.mc.bg-teal4 {
    background: var(--teal-box4);
}

.mc.bg-pale {
    background: var(--teal-pale);
}

.mc.bg-gray {
    background: var(--gray-100);
}

/* Pastel renkler */
.mc.bg-sage {
    background: #27ae60;
}

.mc.bg-amber {
    background: #e67e22;
}

.mc.bg-rose {
    background: #e74c3c;
}

.mc.bg-lavender {
    background: #8e44ad;
}

.mc-num.sage {
    color: #fff;
}

.mc-num.amber {
    color: #fff;
}

.mc-num.rose {
    color: #fff;
}

.mc-num.lavender {
    color: #fff;
}

.mc-label.sage {
    color: rgba(255, 255, 255, 0.85);
}

.mc-label.amber {
    color: rgba(255, 255, 255, 0.85);
}

.mc-label.rose {
    color: rgba(255, 255, 255, 0.85);
}

.mc-label.lavender {
    color: rgba(255, 255, 255, 0.85);
}

/* Füme / slate tonları */
.mc.bg-slate1 {
    background: #78909c;
}

/* açık füme */
.mc.bg-slate2 {
    background: #546e7a;
}

/* orta füme */
.mc.bg-slate3 {
    background: #37474f;
}

/* koyu füme */
.mc-num.slate {
    color: #fff;
}

.mc-label.slate {
    color: rgba(255, 255, 255, 0.85);
}

/* Grid placements */
.mc-r1-label-calisma {
    grid-column: 1/3;
    grid-row: 1;
}

.mc-r1-label-ulke {
    grid-column: 3/5;
    grid-row: 1;
}

.mc-r1-label-sektor {
    grid-column: 5/7;
    grid-row: 1;
}

.mc-r1-label-proje {
    grid-column: 7/9;
    grid-row: 1;
}

.mc-r2-calisma {
    grid-column: 1/3;
    grid-row: 2/4;
}

/* BÜYÜK: 2 satır yüksek */
.mc-r2-ulke {
    grid-column: 3/4;
    grid-row: 2;
}

.mc-r2-deneyim {
    grid-column: 4/5;
    grid-row: 2;
}

.mc-r2-sektor-val {
    grid-column: 5/6;
    grid-row: 2;
}

.mc-r2-proje-val {
    grid-column: 6/9;
    grid-row: 2;
}

/* GENIŞ */

.mc-r3-yatirim {
    grid-column: 3/5;
    grid-row: 3;
}

.mc-r3-tamamlanan {
    grid-column: 5/7;
    grid-row: 3;
}

.mc-r3-devam {
    grid-column: 7/9;
    grid-row: 3;
}

.mc-r4-londra {
    grid-column: 1/3;
    grid-row: 4;
}

.mc-r4-altyapi {
    grid-column: 3/5;
    grid-row: 4;
}

.mc-r4-enerji {
    grid-column: 5/7;
    grid-row: 4;
}

.mc-r4-saglik {
    grid-column: 7/9;
    grid-row: 4;
}

/* Cell number typography */
.mc-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.4rem;
}

.mc-num.xl {
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.mc-num.lg {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.mc-num.md {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.mc-num.sm {
    font-size: 1.25rem;
}

.mc-num.light {
    color: var(--white);
}

.mc-num.dark {
    color: var(--navy);
}

.mc-num.teal {
    color: var(--teal);
}

.mc-num.blue {
    color: var(--teal-box1);
}

.mc-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
}

.mc-label.light {
    color: rgba(255, 255, 255, 0.6);
}

.mc-label.dark {
    color: var(--gray-600);
}

.mc-label.teal-l {
    color: var(--teal);
}

.mc-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
    margin-top: 0.25rem;
}

/* Unit badge */
.mc-unit {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55em;
    font-weight: 600;
    vertical-align: super;
    margin-left: 0.1em;
}

/* ── LİDERLİK SECTION (CEO/YK split) ── */
.leadership-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 400px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.leadership-img {
    position: relative;
    overflow: hidden;
}

.leadership-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.leadership-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(0, 18, 48, 0.15) 100%);
}

.leadership-text {
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
    overflow: hidden;
}

.leadership-quote-mark {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    color: var(--teal-box3);
    line-height: 0.6;
    margin-bottom: 1.25rem;
    display: block;
    opacity: 0.45;
}

.leadership-quote {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.75rem;
}

.leadership-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teal-light);
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}

.leadership-title {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
    margin-bottom: 1.75rem;
}

.btn-leadership {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--teal);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    transition: var(--tr);
    width: fit-content;
    box-shadow: 0 4px 16px rgba(36, 113, 163, 0.3);
}

.btn-leadership:hover {
    background: var(--teal-box1);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(36, 113, 163, 0.4);
    gap: 0.85rem;
}

/* ── HABERLER (Rönesans tarzı - filtrelenebilir) ── */
.news-section {
    padding: 5rem 0;
    background: var(--bg);
}

.news-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.news-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.news-section-title strong {
    font-weight: 700;
}

/* Filter tabs */
.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid var(--gray-200);
    margin: 0 2rem 2rem;
    max-width: calc(1400px - 4rem);
    margin-left: auto;
    margin-right: auto;
}

.news-filter-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gray-600);
    padding: 0.85rem 1.25rem;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.news-filter-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.news-filter-btn.active {
    color: var(--teal);
}

.news-filter-btn.active::after {
    transform: scaleX(1);
}

.news-filter-btn:hover {
    color: var(--teal);
}

/* News grid */
.news-grid-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Rönesans tarzı news card */
.news-card-v4 {
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-card-v4:hover {
    box-shadow: 0 16px 40px rgba(0, 51, 102, 0.12);
}

.news-card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-v4:hover .news-card-img-wrap img {
    transform: scale(1.05);
}

/* Rönesans'taki yuvarlak tarih badge */
.news-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--white);
    background: var(--teal);
    flex-shrink: 0;
}

.news-date-badge .day {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.news-date-badge .mon {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

.news-card-body {
    padding: 1.25rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.6rem;
}

.news-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 0.75rem;
    flex: 1;
}

.news-card-excerpt {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.news-card-read {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
}

.news-card-read:hover {
    gap: 0.7rem;
    color: var(--navy);
}

/* News prev/next arrows */
.news-nav {
    display: flex;
    gap: 0.5rem;
}

.news-nav-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--navy);
    transition: var(--tr);
}

.news-nav-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* ── FAALİYET ALANLARI ── */
.activities-section {
    padding: 0 0 5rem;
    background: var(--white);
}

.activities-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.activities-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.activities-left h2 strong {
    font-weight: 700;
}

.activities-left p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.activities-right p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    max-width: 680px;
}

/* ── SÜRDÜRÜLEBİLİRLİK BANNER ── */
.sustainability-banner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 3.5rem;
    padding: 0 2rem;
    height: 260px;
    overflow: hidden;
    border-radius: 12px;
}

.sustainability-banner img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: brightness(0.72);
    position: absolute;
    top: -20%;
    left: 0;
    will-change: transform;
}

.sustainability-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.sustainability-banner-overlay span {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.45rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.04em;
    text-align: center;
    max-width: 860px;
    line-height: 1.6;
}

/* ── İŞTİRAK/SEKTÖR KARTLARI ── */
.subsidiary-section {
    padding: 4rem 0 5rem;
    background: var(--bg);
    overflow: hidden;
}

.subsidiary-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.subsidiary-scroll-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sub-card {
    background: var(--white);
    padding: 2rem;
    border-top: 3px solid var(--teal);
    transition: box-shadow 0.25s ease;
}

.sub-card:hover {
    box-shadow: 0 12px 32px rgba(0, 51, 102, 0.1);
}

.sub-card-sector {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sub-card-sector i {
    font-size: 0.75rem;
}

.sub-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.sub-card-list {
    margin-bottom: 1.25rem;
}

.sub-card-list li {
    font-size: 0.82rem;
    color: var(--text-mid);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sub-card-list li:last-child {
    border-bottom: none;
}

.sub-card-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal-box3);
    flex-shrink: 0;
}

/* Ülke renk noktaları */
.sub-card-countries {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.country-dot {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    color: var(--gray-600);
}

.country-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.country-dot.tr::before {
    background: #e74c3c;
}

.country-dot.uk::before {
    background: #2e86c1;
}

.country-dot.de::before {
    background: #f39c12;
}

.country-dot.ae::before {
    background: #27ae60;
}

.country-dot.qa::before {
    background: #8e44ad;
}


/* ── KARİYER BÖLÜMÜ ── */
.career-page-section {
    padding: 7rem 0;
    background: var(--white);
}

.career-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.kariyer-team-photo {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
}

.kariyer-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.career-intro-heading {
    margin-bottom: 1.25rem;
}

.career-intro-text {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.career-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.career-feature-item {
    border-top: 2px solid var(--gray-200);
    padding-top: 1rem;
}

.career-feature-icon {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.career-feature-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.career-feature-desc {
    font-size: 0.78rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.65;
}

.kariyer-rocket-wrap {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
}

.kariyer-ladder-svg {
    width: 100%;
    height: 100%;
    max-width: 260px;
}

/* Çöp adam yukarı tırmanıyor: 390→30 arası (y offset) */
@keyframes climbUp {
    0% {
        transform: translateY(390px);
    }
    80% {
        transform: translateY(30px);
    }
    88% {
        transform: translateY(24px);
    }
    100% {
        transform: translateY(30px);
    }
}

.stick-climber {
    animation: climbUp 3.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Kollar sıraya vuruyor gibi sallanıyor */
@keyframes armSwingL {
    0%, 100% {
        transform-origin: 130px 26px;
        transform: rotate(0deg);
    }
    50% {
        transform-origin: 130px 26px;
        transform: rotate(30deg);
    }
}

@keyframes armSwingR {
    0%, 100% {
        transform-origin: 130px 26px;
        transform: rotate(0deg);
    }
    50% {
        transform-origin: 130px 26px;
        transform: rotate(-30deg);
    }
}

.arm-left {
    animation: armSwingL 0.7s ease-in-out infinite;
}

.arm-right {
    animation: armSwingR 0.7s ease-in-out infinite;
}

/* Bacaklar ters fazda sallanıyor */
@keyframes legSwingL {
    0%, 100% {
        transform-origin: 130px 52px;
        transform: rotate(0deg);
    }
    50% {
        transform-origin: 130px 52px;
        transform: rotate(-20deg);
    }
}

@keyframes legSwingR {
    0%, 100% {
        transform-origin: 130px 52px;
        transform: rotate(0deg);
    }
    50% {
        transform-origin: 130px 52px;
        transform: rotate(20deg);
    }
}

.leg-left {
    animation: legSwingL 0.7s ease-in-out infinite;
}

.leg-right {
    animation: legSwingR 0.7s ease-in-out infinite;
}

/* Bayrak zirveye ulaşınca beliriyor */
@keyframes flagShow {
    0%, 78% {
        opacity: 0;
        transform: translateY(30px);
    }
    85%, 95% {
        opacity: 1;
        transform: translateY(30px);
    }
    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

.top-flag {
    animation: flagShow 3.6s ease-in-out infinite;
}

.kariyer-rocket-svg {
    width: 100%;
    height: 100%;
    max-width: 420px;
}

/* Roket çapraz uçuş: alt-soldan üst-sağa, sonra tekrar */
@keyframes rocketFly {
    0% {
        transform: rotate(45deg) translate(0px, 0px);
        opacity: 0;
    }
    6% {
        opacity: 1;
    }
    80% {
        transform: rotate(45deg) translate(220px, -300px);
        opacity: 1;
    }
    95% {
        transform: rotate(45deg) translate(260px, -360px);
        opacity: 0;
    }
    100% {
        transform: rotate(45deg) translate(0px, 0px);
        opacity: 0;
    }
}

.rocket-fly {
    transform-origin: 210px 300px;
    animation: rocketFly 3.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Alev titremesi */
@keyframes flameFlicker {
    0%, 100% {
        transform: scaleY(1) scaleX(1);
        opacity: 0.9;
    }
    33% {
        transform: scaleY(1.15) scaleX(0.88);
        opacity: 1;
    }
    66% {
        transform: scaleY(0.88) scaleX(1.12);
        opacity: 0.8;
    }
}

.rocket-flame {
    animation: flameFlicker 0.2s ease-in-out infinite;
    transform-origin: 210px 372px;
}

/* Yıldızlar yanıp sönme */
@keyframes starBlink {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.9;
    }
}

.star {
    animation: starBlink 2.5s ease-in-out infinite;
}

.s1 {
    animation-delay: 0s;
}

.s2 {
    animation-delay: 0.5s;
}

.s3 {
    animation-delay: 1s;
}

.s4 {
    animation-delay: 1.4s;
}

.s5 {
    animation-delay: 1.9s;
}

.s6 {
    animation-delay: 2.3s;
}

/* ── KARİYER EKİP BANNER ── */
.kariyer-team-banner {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-top: 5rem;
}

.kariyer-team-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: brightness(0.65);
    transition: transform 0.8s ease;
}

.kariyer-team-banner:hover img {
    transform: scale(1.03);
}

.kariyer-team-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    background: linear-gradient(to right, rgba(0, 20, 60, 0.55) 0%, transparent 70%);
}

.kariyer-team-banner-overlay span {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.02em;
    max-width: 600px;
    line-height: 1.5;
}

.career-positions-section {
    margin-top: 5rem;
}

.career-news-grid {
    padding: 0;
}

.career-location-badge {
    background: var(--navy);
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 0.3rem 0.65rem;
    flex-direction: row;
    gap: 0.3rem;
}

.career-location-icon {
    font-size: 0.6rem;
}

.career-open-apply-text {
    color: var(--text-mid);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.career-open-apply-link {
    display: inline-flex;
    justify-content: center;
}

.career-cv-note {
    color: var(--text-mid);
    font-weight: 400;
}

/* ── HABER FEATURED CARD ── */
.haber-featured {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    min-height: 340px;
    margin-bottom: 0;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.25s ease;
}

.haber-featured:hover {
    box-shadow: 0 16px 40px rgba(0, 51, 102, 0.1);
}

.haber-featured-img {
    overflow: hidden;
}

.haber-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.haber-featured:hover .haber-featured-img img {
    transform: scale(1.04);
}

.haber-featured-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 3px solid var(--teal);
}

.haber-featured-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin: 0.6rem 0 1rem;
    flex: 1;
}

.haber-featured-basin {
    width: 260px;
    background: var(--navy);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}


/* ── JOB MODAL ── */
.job-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 20, 50, 0.65);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.job-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.job-modal {
    background: var(--white);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.job-modal-overlay.active .job-modal {
    transform: translateY(0);
}

.job-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.job-modal-close:hover {
    color: var(--navy);
}

.job-modal-logo {
    margin-bottom: 1.75rem;
}

.job-modal-logo img {
    height: 36px;
    width: auto;
}

.job-modal-birim {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.4rem;
}

.job-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.job-modal-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.78rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.job-modal-meta i {
    margin-right: 0.3rem;
}

.job-modal-nitelikler {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.job-modal-nitelikler h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.85rem;
}

.job-modal-nitelikler ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-modal-nitelikler ul li {
    font-size: 0.875rem;
    color: var(--text-mid);
    padding: 0.4rem 0 0.4rem 1.25rem;
    position: relative;
    line-height: 1.55;
}

.job-modal-nitelikler ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

.job-modal-form .jmf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.jmf-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.jmf-group label {
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    letter-spacing: 0.04em;
}

.jmf-group input[type="text"],
.jmf-group input[type="email"],
.jmf-group input[type="tel"] {
    border: 1px solid var(--gray-200);
    padding: 0.65rem 0.9rem;
    font-size: 0.875rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Open Sans', sans-serif;
}

.jmf-group input:focus {
    border-color: var(--teal);
}

.jmf-file-wrap {
    position: relative;
}

.jmf-file-wrap input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.jmf-file-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px dashed var(--gray-400);
    padding: 0.65rem 0.9rem;
    font-size: 0.8rem;
    color: var(--text-mid);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jmf-file-wrap:hover .jmf-file-label {
    border-color: var(--teal);
    color: var(--teal);
}

.jmf-submit {
    margin-top: 1.25rem;
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.25s ease;
}

.jmf-submit:hover {
    background: var(--teal);
}


/* ── CTA BAND ── */
.cta-band {
    background: var(--navy);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 113, 163, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-band-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.cta-band-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white-solid {
    background: var(--white);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    transition: var(--tr);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white-solid:hover {
    background: var(--teal-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: var(--tr);
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ── FOOTER ── */
#mainFooter {
    background: var(--navy);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    /* Logo koyu navy — beyaz footer'da görünür olmak için renk tersine çevir */
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 1;
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    transition: var(--tr);
}

.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--tr);
}

.footer-links a:hover {
    color: var(--teal-light);
}

.footer-address {
    font-style: normal;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.45);
}

.footer-address a:hover {
    color: var(--teal-light);
}

.footer-bottom-row {
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-row p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.footer-bottom-links a {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    transition: var(--tr);
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}


/* ── SCROLL TOP ── */
#scrollTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: var(--teal);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--tr);
    z-index: 999;
}

#scrollTop.visible {
    opacity: 1;
    transform: translateY(0);
}

#scrollTop:hover {
    background: var(--navy);
}

/* ── SAYFA BANNER (İç sayfalar) ── */
.page-banner {
    height: 320px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 2rem 3rem;
    margin-top: 76px;
    overflow: hidden;
}

/* Fotoğraf tam genişlikte arkada */
.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

/* Sol navy panel — diyagonal kesik kenar, yarı saydam → fotoğraf arkadan görünür */
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 18, 48, 0.88);
    clip-path: polygon(0 0, 42% 0, 38% 100%, 0 100%);
    pointer-events: none;
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.page-banner h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-top: 0.5rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
}

.breadcrumb-item a:hover {
    color: var(--teal-light);
}

.breadcrumb-item.active {
    font-size: 0.72rem;
    color: var(--teal-light);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* ── PAGE HEADER ── */
.page-header {
    margin-top: 76px;
    padding: 0;
    background: #001233;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: url('../img/breadcrump/2.jpg') center/cover no-repeat;
    opacity: 0.48;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to right,
            rgba(0, 18, 51, 0.96) 0%,
            rgba(0, 18, 51, 0.82) 28%,
            rgba(0, 18, 51, 0.45) 55%,
            rgba(0, 18, 51, 0.12) 78%,
            transparent 100%
    );
}

.page-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.page-header-breadcrumb {
    padding: 5rem 0 0;
}

.page-header-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.page-header-breadcrumb .breadcrumb-item a {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    font-weight: 500;
}

.page-header-breadcrumb .breadcrumb-item a:hover {
    color: var(--gold-light);
}

.page-header-breadcrumb .breadcrumb-item.active {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.page-header-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.page-header-title {
    padding: 1.25rem 0 6rem;
}

.page-header-title h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.15;
}

.page-header-title h1 strong {
    font-weight: 800;
    display: block;
}

/* Page header dekor */
.page-header-decor {
    display: none;
}

/* Geometrik üçgenler */
.page-header-stripes {
    display: none;
}

.page-header-triangles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.page-header-triangles svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Üçgen animasyonları — yüzme hissi */
@keyframes triFloat1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(10px, -8px);
    }
    66% {
        transform: translate(5px, 5px);
    }
}

@keyframes triFloat2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    40% {
        transform: translate(-8px, 7px);
    }
    70% {
        transform: translate(6px, -4px);
    }
}

@keyframes triFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(7px, 6px) scale(1.03);
    }
}

@keyframes triFloat4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-5px, -8px);
    }
}

@keyframes triFade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.55;
    }
}

.tri-g1 {
    animation: triFloat1 9s ease-in-out infinite;
}

.tri-g2 {
    animation: triFloat2 12s ease-in-out infinite;
}

.tri-g3 {
    animation: triFloat3 14s ease-in-out infinite;
}

.tri-g4 {
    animation: triFloat4 10s ease-in-out infinite 1.5s;
}

.tri-g5 {
    animation: triFade 7s ease-in-out infinite 0.5s;
}

.eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--teal);
    flex-shrink: 0;
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-heading strong {
    font-weight: 700;
    display: block;
}


/* ── GENEL BUTONLAR — Pill sistemi ── */
.btn-teal {
    background: var(--teal);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--tr);
    box-shadow: 0 3px 14px rgba(36, 113, 163, 0.25);
}

.btn-teal:hover {
    background: var(--teal-box1);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 113, 163, 0.35);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--tr);
    box-shadow: 0 3px 14px rgba(0, 51, 102, 0.2);
}

.btn-navy:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 113, 163, 0.3);
}

.btn-pdf {
    background: transparent;
    color: #dc2626;
    border: 1.5px solid #dc2626;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--tr);
    text-decoration: none;
}

.btn-pdf:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
    text-decoration: none;
}

.link-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--teal);
    padding-bottom: 1px;
    transition: var(--tr);
}

.link-more:hover {
    color: var(--navy);
    border-color: var(--navy);
    gap: 0.8rem;
}

/* Sub-card buton pill */
.btn-sub-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal-pale);
    color: var(--teal);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    transition: var(--tr);
    margin-top: 1rem;
}

.btn-sub-pill:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-1px);
}


/* ── PROJELERİMİZ SAYFASI ── */
.projects-page-section {
    padding: 7rem 0;
    background: var(--white);
}

.projects-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects-page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.projects-page-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.projects-page-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    line-height: 1.2;
}

.projects-page-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    max-width: 420px;
    line-height: 1.8;
    margin: 0;
}

.prj-filter-bar {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.prj-filter-btn {
    background: transparent;
    color: var(--text-mid);
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    padding: 0.55rem 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--tr);
}

.prj-filter-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-pale);
}

.prj-filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* Proje Kartı */
.prj-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.prj-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.prj-card {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.prj-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.75);
}

.prj-card:hover .prj-card-img {
    transform: scale(1.07);
    filter: brightness(0.45);
}

.prj-card-top {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.prj-sector-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
}

.prj-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin-top: 0.3rem;
}

.prj-status-tamamlandi,
.pd-status-tamamlandi {
    background-color: #4ade80;
    stroke: #4ade80;
}

.prj-status-devam,
.pd-status-devam {
    background-color: #fbbf24;
    stroke: #fbbf24;
}

.prj-status-planlandi,
.pd-status-planlandi {
    background-color: #818cf8;
    stroke: #818cf8;
}

.prj-status-uluslararasi,
.pd-status-uluslararasi {
    background-color: #38bdf8;
    stroke: #38bdf8;
}

.prj-card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.5rem 1.75rem;
    background: linear-gradient(0deg, rgba(0, 15, 40, 0.95) 0%, rgba(0, 15, 40, 0.6) 60%, transparent 100%);
    z-index: 2;
    transition: var(--tr);
}

.prj-card-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--teal-light);
    margin-bottom: 0.4rem;
}

.prj-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.prj-card-location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.prj-card-location-icon {
    font-size: 0.65rem;
}

.prj-card-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-top: 0.75rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.prj-card:hover .prj-card-desc {
    max-height: 100px;
    opacity: 1;
}

.prj-card-arrow {
    position: absolute;
    bottom: 1.75rem;
    right: 1.5rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    z-index: 2;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.prj-card:hover .prj-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Proje grid */
.prj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}


/* ════════════════════════════════════════════════
   PROJE DETAY SAYFASI — v2 (9/3 layout)
════════════════════════════════════════════════ */

/* ── ANA LAYOUT: 9/3 ── */
.pd-section {
    background: var(--white);
    padding: 0;
}

.pd-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: start;
    min-height: 80vh;
    background: linear-gradient(to right, var(--white) calc(100% - 420px), #f5f6f8 calc(100% - 420px));
}

/* ══ SOL SÜTUN ══ */
.pd-main {
    min-width: 0;
}

/* Hero fotoğraf */
.pd-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: #d0d8e4;
}

.pd-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pd-hero:hover img {
    transform: scale(1.03);
}

.pd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 20, 50, 0.72) 0%, rgba(5, 20, 50, 0.15) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem 3rem;
}

.pd-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pd-hero-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.pd-badge-sector {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.3em 0.8em;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.pd-badge-status {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    border: 1px solid;
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    backdrop-filter: blur(4px);
}

.pd-badge-status.pd-status-tamamlandi {
    background: rgba(74, 222, 128, 0.13);
    border-color: rgba(74, 222, 128, 0.34);
    color: #4ade80;
}

.pd-badge-status.pd-status-devam {
    background: rgba(251, 191, 36, 0.13);
    border-color: rgba(251, 191, 36, 0.34);
    color: #fbbf24;
}

.pd-badge-status.pd-status-planlandi {
    background: rgba(129, 140, 248, 0.13);
    border-color: rgba(129, 140, 248, 0.34);
    color: #818cf8;
}

.pd-badge-status.pd-status-uluslararasi {
    background: rgba(56, 189, 248, 0.13);
    border-color: rgba(56, 189, 248, 0.34);
    color: #38bdf8;
}

.pd-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pd-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* İçerik pad */
.pd-content-pad {
    padding: 2.5rem 3rem 4rem;
}

/* Meta şerit (tarih + konum) */
.pd-meta-strip {
    display: flex;
    gap: 0;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
    padding-bottom: 2rem;
}

.pd-meta-strip-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0 2rem 0 0;
    margin-right: 2rem;
    border-right: 1px solid rgba(0, 51, 102, 0.1);
}

.pd-meta-strip-item:last-of-type {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

/* Proje logosu — meta strip sağ ucu */
.pd-meta-logo {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding-left: 2rem;
}

.pd-meta-logo img {
    height: 96px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(20%);
    transition: opacity 0.2s, filter 0.2s;
}

.pd-meta-logo img:hover {
    opacity: 1;
    filter: none;
}

.pd-meta-strip-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 51, 102, 0.06);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.pd-meta-strip-text {
    display: flex;
    flex-direction: column;
}

.pd-meta-strip-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.1rem;
}

.pd-meta-strip-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

/* Detay metin */
.pd-detail-text {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 0;
}

.pd-detail-text p {
    margin-bottom: 1rem;
}

.pd-detail-text p:last-child {
    margin-bottom: 0;
}

/* Separator */
.pd-sep {
    border: none;
    border-top: 1px solid rgba(0, 51, 102, 0.08);
    margin: 2.5rem 0;
}

/* ── TEKNİK ÖZELLİKLER + İLERLEME ROW ── */
.pd-specs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.pd-specs-col {
    padding-right: 3rem;
    border-right: 1px solid rgba(0, 51, 102, 0.08);
}

.pd-chart-col {
    padding-left: 3rem;
}

.pd-section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 1.75rem;
}

/* Özellik grid 2x2 */
.pd-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
    column-gap: 1.5rem;
}

.pd-spec-item {
}

.pd-spec-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
}

.pd-spec-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

/* CTA */
.pd-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.pd-back-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.pd-back-link:hover {
    color: var(--navy);
    text-decoration: none;
}

/* ── DONUT CHART (yeni tasarım) ── */
.pd-donut-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.pd-donut-svg-wrap {
    position: relative;
    width: 140px;
    height: 140px;
}

.pd-donut {
    width: 140px;
    height: 140px;
    transform: rotate(-90deg);
    overflow: visible;
}

.pd-donut-track {
    fill: none;
    stroke: rgba(0, 51, 102, 0.1);
    stroke-width: 12;
}

.pd-donut-fill {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 395.84; /* 2π × 63 */
    stroke-dashoffset: 395.84;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-donut-fill.animate {
    stroke-dashoffset: var(--target-offset);
}

.pd-donut-legend {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.pd-donut-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--text-mid);
    font-family: 'Montserrat', sans-serif;
}

.pd-donut-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

.pd-donut-legend-dot-remaining {
    background: rgba(0, 51, 102, 0.15);
}

.pd-donut-pct-row {
    text-align: center;
    line-height: 1;
}

.pd-donut-pct {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
    line-height: 1;
}

.pd-donut-pct-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mid);
    display: block;
    margin-top: 0.3rem;
}

/* ── GALERİ BÖLÜMÜ ── */
.pd-progress-note {
    font-size: 0.78rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.6;
}

.pd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.pd-gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #e0e5ed;
}

.pd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.3s;
    filter: brightness(0.95);
}

.pd-gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.75);
}

.pd-sidebar-col {
    background: transparent;
    align-self: stretch;
    padding: 0;
}

.pd-sidebar-sticky {
    position: sticky;
    top: 76px;
    padding: 2rem 1.5rem;
}

.pd-sidebar-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 51, 102, 0.1);
}

.pd-sidebar-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 0.4rem;
}

.pd-sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
}

.pd-sidebar-list {
    display: flex;
    flex-direction: column;
}

.pd-sidebar-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
    padding: 0.9rem 0;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    position: relative;
}

.pd-sidebar-card:first-child {
    border-top: 1px solid rgba(0, 51, 102, 0.1);
}

.pd-sidebar-card:hover {
    background: rgba(0, 51, 102, 0.04);
    transform: translateX(-3px);
    text-decoration: none;
    border-bottom-color: var(--teal);
}

.pd-sidebar-img-wrap {
    width: 62px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.pd-sidebar-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.pd-sidebar-card:hover .pd-sidebar-img-wrap img {
    transform: scale(1.08);
}

.pd-sidebar-sector {
    position: absolute;
    bottom: 3px;
    left: 3px;
    font-size: 0.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    background: rgba(0, 51, 102, 0.75);
    color: #fff;
    padding: 0.12em 0.4em;
    border-radius: 3px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pd-sidebar-info {
    flex: 1;
    min-width: 0;
}

.pd-sidebar-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.pd-sidebar-card-loc {
    font-size: 0.68rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pd-sidebar-card-loc i {
    font-size: 0.58rem;
    color: var(--teal);
}

.pd-sidebar-card-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--teal);
    margin-top: 0.2rem;
    letter-spacing: 0.08em;
}

.pd-sidebar-arrow {
    color: rgba(0, 51, 102, 0.25);
    font-size: 0.68rem;
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.pd-sidebar-card:hover .pd-sidebar-arrow {
    color: var(--teal);
    transform: translateX(2px);
}

.pd-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 20, 0.94);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.pd-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.pd-lb-inner {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pd-lb-inner img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.18s ease;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.pd-lb-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.75rem;
    letter-spacing: 0.1em;
}

.pd-lb-close, .pd-lb-prev, .pd-lb-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.pd-lb-close {
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    font-size: 1rem;
}

.pd-lb-prev {
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
}

.pd-lb-next {
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
}

.pd-lb-close:hover, .pd-lb-prev:hover, .pd-lb-next:hover {
    background: var(--teal);
    border-color: var(--teal);
}

/* Hakkımızda Sayfası */
.about-intro-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-intro-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.about-intro-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.about-title-line {
    width: 48px;
    height: 3px;
    background: var(--teal);
    margin-bottom: 1.5rem;
}

.about-copy {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.about-copy-last {
    margin-bottom: 2rem;
}

.about-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-vm-card {
    border-top: 3px solid var(--about-accent);
    padding-top: 1.25rem;
}

.about-vm-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--about-accent);
    margin-bottom: 0.6rem;
}

.about-vm-card p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin: 0;
}

.about-values-section {
    padding: 5rem 0;
    background: var(--bg);
}

.about-values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-values-heading {
    margin-bottom: 3rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-bottom: 3px solid var(--about-accent);
}

.about-value-icon {
    font-size: 1.5rem;
    color: var(--about-accent);
    margin-bottom: 1.25rem;
}

.about-value-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.about-value-card p {
    font-size: 0.82rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.75;
}


/* Anasayfa Inline CSS extracted */
.mc-r1-label-calisma {
    background: var(--teal-pale);
    min-height: 50px;
    padding: 0.75rem 2rem;
    justify-content: flex-start;
}

.mc-r1-label-ulke {
    background: var(--teal-pale);
    min-height: 50px;
    padding: 0.75rem 1.5rem;
    justify-content: flex-start;
}

.mc-r1-label-sektor {
    background: var(--gray-100);
    min-height: 50px;
    padding: 0.75rem 1.5rem;
    justify-content: flex-start;
}

.mc-r1-label-proje {
    background: var(--gray-100);
    min-height: 50px;
    padding: 0.75rem 1.5rem;
    justify-content: flex-start;
}

.mc-unit-light {
    color: rgba(255, 255, 255, 0.6);
}

.mc-unit-mw {
    font-size: 0.45em;
    font-weight: 600;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.7);
}

.mc-r4-enerji-bg {
    background: #cfd8dc;
}

.news-more-wrap {
    text-align: center;
    margin-top: 3rem;
}

.sustainability-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.sustainability-line {
    width: 48px;
    height: 3px;
    background: var(--teal);
    margin: 1.5rem 0;
}

.mt-05 {
    margin-top: 0.5rem;
}

.sustainability-strong {
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}

.mt-1 {
    margin-top: 1rem;
}

/* Iletisim Inline CSS extracted */
.contact-section-wrap {
    padding: 7rem 0;
    background: var(--bg);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-card {
    background: var(--white);
    padding: 3.5rem;
}

.contact-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-asterisk {
    color: var(--teal);
}

.contact-input {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid var(--gray-200);
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.contact-input:focus {
    border-bottom-color: var(--teal);
}

.contact-input-alt {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--gray-200);
    background: transparent;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.contact-input-alt:focus {
    border-bottom-color: var(--teal);
}

.contact-select {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--gray-200);
    background: transparent;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text-mid);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.contact-textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--gray-200);
    background: transparent;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    resize: vertical;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s;
}

.contact-textarea:focus {
    border-bottom-color: var(--teal);
}

.contact-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-mid);
}

.contact-checkbox {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--navy);
}

.contact-kvkk-link {
    color: var(--teal);
}

.contact-submit {
    width: 100%;
    justify-content: center;
    padding: 1.1rem;
}

.office-card-navy {
    background: var(--navy);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.office-card-title-teal {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1.25rem;
}

.office-detail-row {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.office-icon-teal {
    color: var(--teal-light);
    width: 14px;
    flex-shrink: 0;
    margin-top: 3px;
}

.office-text-light {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
    line-height: 1.55;
}

.office-card-white {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.office-card-title-dark-teal {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.25rem;
}

.office-detail-row-alt {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 1rem;
}

.office-icon-dark-teal {
    color: var(--teal);
    width: 14px;
    flex-shrink: 0;
}

.office-text-mid {
    color: var(--text-mid);
    font-size: 0.875rem;
}

.social-card {
    background: var(--gray-100);
    padding: 2rem;
}

.social-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 1rem;
}

.social-links-row {
    display: flex;
    gap: 0.5rem;
}

.social-link-item {
    width: 38px;
    height: 38px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 0.85rem;
    transition: var(--tr);
}

.social-link-item:hover {
    background: var(--navy);
    color: var(--teal-light);
    border-color: var(--navy);
}

/* Footer Inline CSS extracted */
.footer-london-title {
    margin-top: 1.5rem;
}

/* --- HABERLER PAGE & DETAILS CSS --- */

/* Haberler List Page */
.news-page-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.news-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.news-card-excerpt.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.haber-featured-basin .eyebrow {
    --teal: rgba(255, 255, 255, 0.5);
}

.haber-featured-basin h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0 0.75rem;
}

.haber-featured-basin p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.haber-featured-basin .news-card-read {
    color: rgba(255, 255, 255, 0.75);
}

.news-grid-wrap.no-padding-mt-2 {
    padding: 0;
    margin-top: 2rem;
}

.news-date-badge.navy-bg {
    background: var(--navy);
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.custom-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.custom-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background-color: #fff;
    color: var(--navy, #003366);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.custom-pagination .page-item .page-link:hover {
    background-color: var(--navy, #003366);
    color: #fff;
    border-color: var(--navy, #003366);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 51, 102, 0.2);
}

.custom-pagination .page-item.active .page-link {
    background-color: var(--navy, #003366);
    color: #fff;
    border-color: var(--navy, #003366);
    cursor: default;
    pointer-events: none;
}

.custom-pagination .page-item .page-link span {
    line-height: 1;
}

/* Haberler Detail Page */
.news-detail-section {
    padding: 6rem 0;
    background: var(--off-white);
}

.news-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.news-detail-content {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-meta {
    color: var(--gray);
    font-size: 0.9rem;
}

.news-meta .category {
    color: var(--navy);
}

.news-main-img img {
    border-radius: 8px;
    max-height: 600px;
    object-fit: cover;
    width: 100%;
}

.news-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
}

.news-gallery, .news-files {
    border-top: 1px solid #eee;
}

.news-gallery img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}


.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.custom-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.custom-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background-color: #fff;
    color: var(--navy, #003366);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.custom-pagination .page-item .page-link:hover {
    background-color: var(--navy, #003366);
    color: #fff;
    border-color: var(--navy, #003366);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 51, 102, 0.2);
}

.custom-pagination .page-item.active .page-link {
    background-color: var(--navy, #003366);
    color: #fff;
    border-color: var(--navy, #003366);
    cursor: default;
    pointer-events: none;
}

.custom-pagination .page-item .page-link span {
    line-height: 1;
}

.news-page-section {
    padding: 6rem 0;
    background: var(--white);
}

.news-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clamp-3 {
    -webkit-line-clamp: 3;
}

.news-page-section .eyebrow {
    --teal: rgba(255, 255, 255, 0.5);
}

.news-page-section .haber-featured-basin h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0 0.75rem;
}

.news-page-section .haber-featured-basin p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.news-page-section .haber-featured-basin .news-card-read {
    color: rgba(255, 255, 255, 0.75);
}

.no-padding-mt-2 {
    padding: 0;
    margin-top: 2rem;
}

.navy-bg {
    background: var(--navy);
}

.news-detail-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    margin-bottom: -5rem; /* Overlap effect for the content box */
    z-index: 1;
}

.news-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11,32,70,0.95) 0%, rgba(26,75,140,0.8) 100%);
    z-index: -1;
}

.breadcrumb-premium {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.breadcrumb-premium a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.breadcrumb-premium a:hover {
    color: var(--corporate-accent);
}

.breadcrumb-premium .separator {
    margin: 0 10px;
    color: rgba(255,255,255,0.5);
}

.breadcrumb-premium .current {
    color: var(--corporate-accent);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-meta .category {
    background: var(--corporate-accent);
    color: var(--corporate-navy);
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.hero-meta .date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
}

.content-overlap {
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(11,32,70,0.08);
    padding: 3rem;
    margin-top: 2rem;
}

.content-overlap .img {
    position: relative;
    z-index: 1;
    margin-bottom: 1em;
    border-radius: 10px;
}

.content-overlap .img::after {
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
}

.article-body {
    font-size: 1em;
    line-height: 1.8;
    color: var(--text-main);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body p:first-of-type::first-letter {
    font-size: 4rem;
    float: left;
    margin-right: 15px;
    line-height: 1;
    color: var(--corporate-blue);
    font-weight: 800;
    text-shadow: 2px 2px 0px var(--corporate-light-blue);
}

.article-body h2, .article-body h3 {
    color: var(--corporate-navy);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.premium-blockquote {
    position: relative;
    padding: 2.5rem 3rem;
    background: var(--corporate-gray);
    border-left: 5px solid var(--corporate-accent);
    border-radius: 0 8px 8px 0;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--corporate-navy);
    line-height: 1.6;
    z-index: 1;
}

.premium-blockquote::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 8rem;
    color: rgba(26,75,140,0.05);
    z-index: -1;
    font-family: serif;
    line-height: 1;
}

.gallery-section-title {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    gap: 15px;
    color: var(--corporate-navy);
    font-weight: 800;
    margin: 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--corporate-light-blue);
}

.gallery-section-title i {
    color: var(--corporate-accent);
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 2fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,32,70,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Video Gallery Grid */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-item:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--corporate-navy);
    font-size: 1.8rem;
    padding-left: 5px; /* Visual balance for play icon */
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
    transition: all 0.3s ease;
}

.video-item:hover .play-button {
    background: var(--corporate-accent);
    color: #fff;
    animation: none;
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Sidebar Styles */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(11,32,70,0.05);
    margin-bottom: 2rem;
    border-top: 4px solid var(--corporate-blue);
    margin-top: 2rem;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: var(--corporate-accent);
}

.doc-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: var(--corporate-gray);
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    border: 1px solid transparent;
}

.doc-link:hover {
    background: #fff;
    border-color: var(--corporate-blue);
    box-shadow: 0 5px 15px rgba(26,75,140,0.1);
    transform: translateY(-2px);
}

.doc-icon {
    font-size: 2rem;
    color: #E2574C; /* PDF red */
}

.doc-info strong {
    display: block;
    font-size: 1rem;
    color: var(--corporate-navy);
    margin-bottom: 3px;
}

.doc-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
}

.share-linkedin { background: #0077b5; }
.share-twitter { background: #1da1f2; }
.share-facebook { background: #1877f2; }
.share-whatsapp { background: #25d366; }

.recent-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-news-item {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-news-item a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
}

.recent-news-item a:hover {
    color: var(--corporate-blue);
}

.recent-news-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.tl-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tl-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
    transform: translateX(-50%);
}

.tl-fill {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    background: var(--teal);
    transform: translateX(-50%);
    height: 0;
    transition: height 0.1s linear;
}

.tl-item {
    display: grid;
    grid-template-columns:1fr 60px 1fr;
    align-items: start;
    margin-bottom: 0;
}

.tl-card-wrap {
    padding: 2.5rem 0;
}

.tl-left .tl-card-wrap {
    padding-right: 2.5rem;
}

.tl-right .tl-card-wrap {
    padding-left: 2.5rem;
}

.tl-card {
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--teal);
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}

.tl-right .tl-card {
    transform: translateX(40px);
    border-left: none;
    border-right: 3px solid var(--teal);
}

.tl-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.tl-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.tl-year-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tl-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.tl-card p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0;
}

.tl-center-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--teal);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--teal);
    margin-top: 2.75rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tl-dot.visible {
    animation: dotPulse 0.6s ease;
}

@keyframes dotPulse {
    0% {
        transform: scale(0)
    }
    60% {
        transform: scale(1.4)
    }
    100% {
        transform: scale(1)
    }
}

.tl-year-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--teal);
    background: var(--teal-pale);
    padding: 0.2rem 0.5rem;
    margin-top: 0.5rem;
}

.tl-empty {
    padding: 2.5rem 0;
}

/* History & Documents Pages */
.front-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.history-timeline-section {
    padding: 7rem 0;
    background: var(--bg);
}

.history-timeline-head {
    margin-bottom: 4rem;
}

.tl-left.tl-card-wrap {
    padding-right: 2.5rem;
}

.tl-right.tl-card-wrap {
    padding-left: 2.5rem;
}

.documents-intro-section {
    padding: 6rem 0 3rem;
    background: var(--bg);
}

.documents-intro-text {
    max-width: 580px;
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.85;
}

.documents-grid-section {
    padding: 2rem 0 6rem;
    background: var(--bg);
}

.belge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.belge-card {
    background: var(--white);
    border-top: 4px solid var(--teal);
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.belge-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 51, 102, 0.12);
}

.belge-icon-wrap {
    background: var(--navy);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.belge-icon-wrap i {
    color: #fff;
    font-size: 1.3rem;
}

.belge-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.belge-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.belge-description {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0 0 1.5rem;
}

.belge-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.belge-validity {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--teal-pale);
    color: var(--teal);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
}

.belge-validity-icon {
    font-size: 0.65rem;
}

.belge-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}

.belge-action:hover {
    color: var(--navy);
}

.documents-cta-section {
    padding: 5rem 0;
    background: var(--navy);
}

.documents-cta-text {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 0 2rem;
    line-height: 1.75;
}

.documents-cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.documents-cta-button:hover {
    background: var(--teal-light);
    color: var(--navy);
}

.sector-detail-section {
    padding: 7rem 0;
    background: var(--white);
}

.sector-detail-section-alt {
    background: var(--bg);
}

.sector-detail-image-wrap {
    position: relative;
}

.sector-detail-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.sector-detail-number {
    position: absolute;
    top: 2rem;
    background: var(--navy);
    color: var(--teal-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    padding: 1rem 1.5rem;
    letter-spacing: -0.04em;
}

.sector-detail-number-left {
    left: -1.5rem;
}

.sector-detail-number-right {
    right: -1.5rem;
}

.sector-detail-heading {
    margin-bottom: 1.25rem;
}

.sector-detail-text {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.sector-stats-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.sector-stat-item {
    text-align: center;
}

.sector-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sector-stat-label {
    font-size: 0.7rem;
    color: var(--text-mid);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
}

.policy-text-container {
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #4a5568;
    line-height: 1.85;
    font-size: 1.05rem;
    border-top: 5px solid #2471A3;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.policy-text-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2471A3, #AED6F1, #003366);
}

.policy-text-container h1,
.policy-text-container h2,
.policy-text-container h3,
.policy-text-container h4,
.policy-text-container h5,
.policy-text-container h6 {
    color: #1a365d;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.policy-text-container h1 { font-size: 2.2rem; border-bottom: 2px solid #edf2f7; padding-bottom: 15px; }
.policy-text-container h2 { font-size: 1.2rem; }
.policy-text-container h3 { font-size: 1.2rem; }

.policy-text-container p {
    margin-bottom: 1em;
    letter-spacing: 0.01em;
}

.policy-text-container p:last-child {
    margin-bottom: 0;
}

.policy-text-container ul,
.policy-text-container ol {
    margin-bottom: 1.8em;
    padding-left: 20px;
}

.policy-text-container li {
    margin-bottom: 0.6em;
}

.policy-text-container ul {
    list-style-type: none;
}

.policy-text-container ul li {
    position: relative;
    padding-left: 22px;
}

.policy-text-container ul li::before {
    content: "\2022"; /* Bullet point */
    color: #2471A3;
    font-weight: bold;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -4px;
}

.policy-text-container a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.policy-text-container a:hover {
    color: #2c5282;
    border-bottom: 1px solid #2c5282;
}

.policy-text-container strong,
.policy-text-container b {
    color: #2d3748;
    font-weight: 700;
}

.policy-text-container blockquote {
    background-color: #f7fafc;
    border-left: 5px solid #3182ce;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #4a5568;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.policy-text-container table {
    width: 100%;
    margin-bottom: 2em;
    border-collapse: collapse;
}

.policy-text-container table th,
.policy-text-container table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.policy-text-container table th {
    background-color: #f7fafc;
    color: #2d3748;
    font-weight: 600;
}

.filigran-img {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.filigran-img img {
    display: block;
    width: 100%;
}

.filigran-img .filigran {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 18 50 / 38%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
}


/* ==================================================
   404 ERROR PAGE
================================================== */
.error-404-section { padding: 6rem 0; background-color: var(--white); position: relative; overflow: hidden; }
.error-404-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 4rem; }
.error-404-content { flex: 1; max-width: 550px; }
.error-404-title { font-family: 'Montserrat', sans-serif; font-size: 10rem; font-weight: 900; line-height: 1; color: var(--navy); margin-bottom: 1rem; position: relative; text-shadow: 4px 4px 0px rgba(36, 113, 163, 0.1); }
.error-404-subtitle { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 700; color: var(--teal); margin-bottom: 1.5rem; line-height: 1.2; }
.error-404-text { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 2.5rem; }
.error-404-actions { display: flex; gap: 1rem; }
.error-404-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--navy); color: var(--white) !important; font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 600; padding: 1rem 2rem; border-radius: 50px; transition: var(--tr); box-shadow: 0 10px 20px rgba(0, 51, 102, 0.15); }
.error-404-btn:hover { background: var(--teal); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(36, 113, 163, 0.25); }
.error-404-visual { flex: 1; position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.error-circle-1 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-pale) 0%, rgba(255,255,255,0) 100%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; animation: pulse 4s infinite alternate ease-in-out; }
.error-circle-2 { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-light) 0%, rgba(255,255,255,0) 100%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; animation: pulse 3s infinite alternate-reverse ease-in-out; }
.error-icon { position: relative; z-index: 3; font-size: 6rem; color: var(--navy); animation: float 6s infinite ease-in-out; }

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}
