/* ==========================================================================
   Ünlem Sigorta — Custom CSS
   Scope: JS-toggled states, complex pseudo-element animations, fonts.
   Everything else lives in tailwind.css (@layer components) or view .cshtml.css files.
   ========================================================================== */

/* ── Custom Cursor ── */
#cursor-wrap {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100000;
    mix-blend-mode: difference;
}
#cursor-dot {
    position: absolute;
    left: 0; top: 0;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    will-change: transform;
}
#cursor-ring {
    position: absolute;
    left: 0; top: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    opacity: 0;
    will-change: transform;
}
@media (hover: none) {
    #cursor-wrap { display: none; }
}

/* ── Stretched Link Utility ── */
.stretched-link::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    cursor: pointer;
}

/* ── Brand tokens (also consumed by JS-toggled class selectors below) ── */
:root {
    --primary-orange:       #fa6a02;
    --primary-orange-hover: #d95b02;
    --text-dark:            #121212;
    --bg-white:             #ffffff;
    --bg-section:           #f7f8fa;
    --bg-dark:              #000000;
}

::selection {
    background: var(--primary-orange);
    color: #fff;
}

/* ── Local Manrope Font ── */
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/static/Manrope-ExtraLight.ttf') format('truetype');
    font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/static/Manrope-Light.ttf') format('truetype');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/static/Manrope-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/static/Manrope-Medium.ttf') format('truetype');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/static/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/static/Manrope-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/static/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800; font-style: normal; font-display: swap;
}

/* ── SignPainter (handwriting accent) ── */
@font-face {
    font-family: 'SignPainter';
    src: url('../fonts/SignPainter-Regular.ttf') format('truetype');
    font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'SignPainter';
    src: url('../fonts/SignPainter-Semibold.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
}

.font-handwriting {
    font-family: 'SignPainter', cursive !important;
    font-style: normal;
}

/* ── Force Manrope across Canvas remnants ── */
body,
h1, h2, h3, h4, h5, h6,
p, a, span, div {
    font-family: 'Manrope', sans-serif !important;
}

strong, b {
    font-weight: 800 !important;
}

html {
    scroll-behavior: auto; /* Lenis handles smooth scroll */
    scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

/* ── Scroll progress bar (width set by JS) ── */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-orange);
    z-index: 99999;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

/* ============================================================
   Site Header — JS toggles .header-light / .header-orange
   ============================================================ */
#site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
}

#logo { margin-right: 0 !important; }

#logo a {
    position: relative;
    display: inline-block;
}

.header-logo {
    height: 36px;
    width: auto;
    display: block;
    transition: opacity 0.35s ease;
}

#site-header .logo-white { opacity: 1; }
#site-header .logo-black {
    opacity: 0;
    position: absolute; top: 0; left: 0;
    height: 36px; width: auto;
}
#site-header .logo-orange {
    opacity: 0;
    position: absolute; top: 0; left: 0;
    height: 36px; width: auto;
}

#site-header.header-light .logo-white { opacity: 0; }
#site-header.header-light .logo-black { opacity: 1; }

#site-header.header-orange .logo-white  { opacity: 0; }
#site-header.header-orange .logo-black  { opacity: 0; }
#site-header.header-orange .logo-orange { opacity: 1; }

/* ============================================================
   Hero Slider
   ============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    /* Height follows the active media's aspect ratio (set in JS) so the video
       always fits the full width with no black bars, scaling with the screen.
       16/9 is just the fallback until metadata loads. */
    aspect-ratio: 16 / 9;
    max-height: 100vh;
    overflow: hidden;
    background: #000;
    cursor: grab;
}

.hero-slider.is-dragging { cursor: grabbing; }

.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active { opacity: 1; }

.hero-slider .slide img,
.hero-slider .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0; left: 0;
}

.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 56px; height: 3px;
    border-radius: 2px;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.dot-fill {
    position: absolute;
    left: 0; top: 0;
    height: 100%; width: 0%;
    background: var(--primary-orange);
    border-radius: 2px;
    pointer-events: none;
}

.dot-fill.is-playing {
    animation: dot-progress 5s linear forwards;
}

@keyframes dot-progress {
    from { width: 0%; }
    to   { width: 100%; }
}

/* ============================================================
   Solutions Cards — complex hover with child-state + shimmer
   ============================================================ */
.solution-card {
    border: none;
    border-radius: 0;
    min-height: 500px;
    padding: 44px 40px 36px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    color: var(--text-dark);
    position: relative;
    transition: background-color 0.35s ease, color 0.35s ease,
                box-shadow 0.35s ease, transform 0.35s ease;
    cursor: pointer;
}

@media (max-width: 767px) {
    .solution-card { padding: 32px 24px 28px; min-height: 0; }
    /* Touch devices have no hover — keep the description visible */
    .card-desc { opacity: 1; }
    .card-divider { margin-top: 20px; }
}

.solution-card-wrap + .solution-card-wrap .solution-card {
    border-left: 1px solid #e0e0e0;
}

.solution-card:hover {
    background-color: var(--primary-orange);
    color: #fff;
    box-shadow: 0 2px 0 0 rgba(255,255,255,0.35) inset,
                0 12px 40px rgba(250, 106, 2, 0.28);
    transform: translateY(-4px);
    z-index: 1;
}

.card-number {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.35s;
}

.solution-card:hover .card-number { opacity: 1; }

.card-title-lg {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.solution-card:hover .card-desc { opacity: 1; }

.card-divider {
    height: 1px;
    background-color: rgba(0,0,0,0.15);
    margin-top: 32px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.35s;
}

.solution-card:hover .card-divider {
    background-color: rgba(255,255,255,0.75);
}

.solution-card:hover .card-divider::after {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
    animation: card-shine 0.55s ease forwards;
    animation-delay: 0.15s;
}

@keyframes card-shine {
    from { left: -60%; }
    to   { left: 120%; }
}

.card-link {
    color: var(--text-dark) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    transition: color 0.35s;
}

.solution-card:hover .card-link { color: #fff !important; }

/* ============================================================
   Solutions scroll-reveal (pinned section)
   ============================================================ */
.solutions-section {
    overflow: hidden;
    padding: 80px 0;
}

.solutions-cards-track {
    overflow: hidden;
}

.solution-card-wrap {
    overflow: hidden;
}

/* ============================================================
   Dark Banner with dashed rings
   ============================================================ */
.dark-banner {
    background-color: #0b0b0b;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ring-decoration {
    position: absolute;
    border: 1px dashed var(--primary-orange);
    border-radius: 50%;
    opacity: 0.3;
    will-change: transform;
}

.ring-1 { width: 300px; height: 300px; top: -100px; left: -50px; }
.ring-2 { width: 500px; height: 500px; bottom: -200px; right: -100px; }

.banner-huge-number {
    font-size: clamp(3rem, 10vw, 5rem);
    color: #fff;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.banner-huge-number span {
    border: 1px solid var(--primary-orange);
    border-radius: 50%;
    padding: 0 10px;
}

.banner-text {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 10px;
    z-index: 2;
    position: relative;
    font-weight: 300;
}

/* ============================================================
   Floating Menu Button — JS toggles .fab-light / .fab-orange / .fab-menu-open
   ============================================================ */
#menu-fab {
    position: fixed;
    bottom: 2.5rem; right: 3rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
    overflow: visible;
}

@media (max-width: 480px) {
    /* Smaller FAB + pull inward so the orbiting "Menü" text isn't clipped at the right edge */
    #menu-fab { right: 2.25rem; bottom: 1.75rem; }
    #menu-fab svg { width: 22px; }

    /* Over the Ordinary — tighten oversized type/spacing on phones */
    .section-title { font-size: 1.85rem; line-height: 1.25; }
    .bg-section.py-24 { padding-top: 3rem; padding-bottom: 3rem; }

    /* Slider indicator (mobile only) — small round dots; active = wide pill with progress */
    .slider-dots { gap: 7px; bottom: 18px; }
    .slider-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        transition: width 0.4s ease, background 0.3s ease;
    }
    .slider-dot.active {
        width: 44px;
        border-radius: 4px;
        background: rgba(255,255,255,0.3);
    }
    .dot-fill { border-radius: inherit; }
}


#menu-fab svg {
    width: 28px;
    height: auto;
    display: block;
    overflow: visible;
}

#fab-line,
#fab-dot-group circle,
#fab-text {
    transition: fill 0.35s ease;
}

#menu-fab.fab-light #fab-text { fill: var(--text-dark); }

#menu-fab.fab-orange #fab-line,
#menu-fab.fab-orange #fab-dot-group circle { fill: var(--text-dark); }

#menu-fab.fab-menu-open #fab-line,
#menu-fab.fab-menu-open #fab-dot-group circle { fill: #121212; }
#menu-fab.fab-menu-open #fab-text { fill: #fff; }

/* ============================================================
   Liquid Menu Overlay
   ============================================================ */
#menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background-color: var(--primary-orange);
    display: none;
    align-items: flex-end;
    padding: 0 0 3.5rem 4.5rem;
    will-change: clip-path;
}

@media (max-width: 576px) {
    #menu-overlay { padding: 0 0 7rem 1.75rem; }
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.menu-items li { margin-bottom: 0.4rem; }

.menu-item-link {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 800;
    font-size: clamp(1.25rem, 2.8vw, 2.6rem);
    text-decoration: none;
    display: inline-block;
    letter-spacing: -0.02em;
    position: relative;
}

.menu-item-link:hover { text-decoration: none; }

.menu-link-wrap {
    display: block;
    overflow: hidden;
    line-height: 1.15;
    position: relative;
}

.char-row {
    display: flex;
    flex-wrap: nowrap;
}

.char-row-bot {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.char-row-top .char { color: #fff; }
.char-row-bot .char { color: #121212; }

.menu-item-link .char { display: inline-block; }

.menu-footer-bar {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.menu-divider-line {
    width: 2.5rem; height: 1.5px;
    background-color: rgba(255,255,255,0.6);
}

.menu-social-row {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.menu-social-link {
    color: #fff !important;
    font-size: 1.05rem;
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.menu-social-link:hover { opacity: 1; color: #fff !important; }

/* ============================================================
   About Page — complex typography values
   ============================================================ */
.about-header { background-color: #fff; }

.about-header-label {
    display: block;
    color: var(--primary-orange);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0;
    padding: 0;
}

.about-header-title-wrap {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
}

.about-header-title {
    font-size: clamp(3rem, 7.5vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin: 0; padding-left: 0;
    white-space: nowrap;
}

.about-title-square {
    display: inline-block;
    width: 18px; height: 18px;
    background-color: var(--primary-orange);
    flex-shrink: 0;
    margin-bottom: 0.15em;
}

.about-header-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Timeline */
.about-timeline { background-color: #fff; }

.tl-entry { border-bottom: 1px solid #f0f0f0; }
.tl-entry:last-child { border-bottom: none; }

.tl-border-start { border-left: 1px solid #e8e8e8 !important; }

.tl-arrow-circle {
    position: absolute;
    left: -24px; top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    z-index: 2;
    flex-shrink: 0;
}

.tl-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tl-badge {
    display: flex;
    align-items: stretch;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--primary-orange);
}

.tl-badge-val {
    background-color: rgba(0,0,0,0.2);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    padding: 8px 14px;
    display: flex; align-items: center;
}

.tl-badge-lbl {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 14px;
    display: flex; align-items: center;
}

/* Milestone */
.about-milestone-section {
    background: linear-gradient(120deg, #ff8c2a 0%, #fa6a02 40%, #e05500 100%);
}

.milestone-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

.milestone-headline {
    font-size: clamp(3rem, 7.5vw, 7rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
}

.milestone-stat-val {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.milestone-stat-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.milestone-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

.about-milestone-section * { color: #fff !important; }

/* Today section */
.about-today { background-color: #fff; }

/* ── About — mobile responsive ── */
@media (max-width: 639px) {
    .tl-entry .container-brand > .grid { grid-template-columns: 1fr !important; }
    .tl-year-col { order: -1; justify-content: flex-start !important; padding: 1.5rem 1.25rem 0 !important; }
    .tl-content-col { order: 0; padding: 0.5rem 1.25rem 2.5rem !important; }
    .tl-year { font-size: clamp(3rem, 18vw, 4.5rem) !important; padding: 0 !important; text-align: left !important; }
    .tl-border-start { border-left: none !important; }
    .tl-arrow-circle { display: none; }
    .about-today .container-brand > .grid { grid-template-columns: 1fr !important; }
    .about-today-big { font-size: clamp(2.5rem, 18vw, 4rem) !important; text-align: center; padding: 1.5rem 1.25rem 0.5rem !important; }
    .about-today .tl-border-start { border-left: none !important; padding: 0.5rem 1.25rem 2.5rem !important; }
}

/* ── Branches page — Leaflet JS-generated elements (must be global, not scoped) ── */
.branch-map-pin {
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(250, 106, 2, 0.45);
}

.branch-map-pin .bi {
    transform: rotate(45deg);
    color: #fff;
    font-size: 0.6rem;
}

#branch-map-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.62);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    pointer-events: none;
    z-index: 1000;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.22s;
}

#branch-map-hint.is-visible {
    opacity: 1;
}

.branch-cluster-pin {
    width: 36px;
    height: 36px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(250, 106, 2, 0.5);
    border: 2px solid #fff;
}

.branch-map-popup {
    font-family: 'Manrope', sans-serif;
    min-width: 200px;
}

.popup-city {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 6px;
}

.popup-address,
.popup-phone {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.55;
    margin: 0 0 4px;
}

.popup-btn {
    display: inline-block;
    margin-top: 8px;
    background: var(--primary-orange);
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.popup-btn:hover {
    background: #e05e00;
}

/* ============================================================
   Scroll Indicator — reusable mouse animation component
   Used on any page with a full-width banner intro.
   Parent section must have position:relative.
   ============================================================ */
.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    opacity: 0.45;
    transition: opacity 0.25s ease, transform 0.25s ease;
    user-select: none;
}

.scroll-indicator:hover {
    opacity: 0.75;
    transform: translateX(-50%) translateY(-2px);
}

.scroll-indicator-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #fff;
    text-transform: uppercase;
}

.scroll-mouse-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

/* Dual expanding pulse rings */
.scroll-mouse-wrap::before,
.scroll-mouse-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: scroll-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

.scroll-mouse-wrap::after {
    animation-delay: 1.1s;
}

.scroll-mouse {
    width: 18px;
    height: 29px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 9px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    transition: border-color 0.25s ease;
}

.scroll-indicator:hover .scroll-mouse {
    border-color: #fff;
}

.scroll-mouse-wheel {
    width: 2px;
    height: 5px;
    background: #fff;
    border-radius: 1px;
    animation: scroll-wheel 1.7s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%   { opacity: 1; transform: translateY(0);    }
    75%  { opacity: 0; transform: translateY(12px); }
    100% { opacity: 0; transform: translateY(0);    }
}

@keyframes scroll-pulse {
    0%   { transform: scale(0.7); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0;   }
}

/* Sits above slider dots on the hero slider */
.scroll-indicator--above-dots {
    bottom: 72px;
}

/* Banners/sliders don't fill the screen on phones — hide scroll cue there */
@media (max-width: 767px) {
    .scroll-indicator { display: none; }
}

/* ── Over the Ordinary — office photo ── */
.oor-photo-wrap {
    overflow: hidden;
}

.oor-photo {
    filter: grayscale(100%);
    transform: scale(1);
    transition: filter 0.6s ease, transform 0.6s ease;
    height: 420px;
}

@media (max-width: 767px) {
    .oor-photo { height: 280px; }
}

.oor-photo:hover {
    filter: grayscale(0%);
    transform: scale(1.07);
}

/* ── News card links (mirrors News.cshtml.css — ensures styles load without CSS bundle) ── */
.news-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    transition: opacity 0.2s;
}
.news-read-more:hover { opacity: 0.75; color: var(--primary-orange); }

.news-card-more {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
}
.news-card-more:hover { opacity: 0.72; color: var(--primary-orange); }

/* ── Home subsidiaries CTA button (mirrors Index.cshtml.css) ── */
.home-subs-cta-btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary-orange) !important;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    transition: background 0.2s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.home-subs-cta-btn:hover {
    background: #fff8f4;
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.22);
}

/* ── Language Switcher ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}
.lang-btn {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #fff;
    opacity: 0.6;
    transition: opacity 0.2s;
    cursor: pointer;
}
.lang-btn:hover { opacity: 1; color: #fff; text-decoration: none; }
.lang-btn--active { opacity: 1; color: #fff; }
.lang-sep {
    font-size: 0.65rem;
    color: #fff;
    opacity: 0.4;
}
/* Light header state */
#site-header.header-light .lang-btn { color: var(--text-dark); }
#site-header.header-light .lang-btn:hover { color: var(--text-dark); }
#site-header.header-light .lang-btn--active { color: var(--text-dark); }
#site-header.header-light .lang-sep { color: var(--text-dark); }
/* Orange header state */
#site-header.header-orange .lang-btn { color: #fff; }
#site-header.header-orange .lang-btn:hover { color: #fff; }
#site-header.header-orange .lang-btn--active { color: #fff; }
#site-header.header-orange .lang-sep { color: #fff; }

/* ── Error Pages (404 / 500) ── */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 140px 0 100px;
}
.error-page-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.error-code {
    font-size: clamp(6rem, 18vw, 12rem);
    line-height: 1;
    color: var(--text-dark);
    margin: 1rem 0 1.5rem;
}
.error-code-bang { color: var(--primary-orange); }
.error-title { margin-bottom: 1.25rem; }
.error-desc {
    color: #6c757d;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ============================================================
   CSS Isolation Mirror — all .cshtml.css styles duplicated here
   (unscoped) so they load regardless of build state.
   ============================================================ */

/* ── Products shared header (Products, BES, Hayat, Saglik, Diger, Kaza) ── */
.products-header { background: #fff; padding-top: 140px; padding-bottom: 0; }
.products-header-inner { padding-bottom: 40px; }
.products-superlabel {
    display: block; font-size: 0.72rem; font-weight: 700;
    color: var(--primary-orange); letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 10px;
}
.products-page-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900;
    color: var(--text-dark); margin-bottom: 16px;
}
.products-header-divider { width: 36px; height: 3px; background: var(--primary-orange); border-radius: 2px; }

/* Products listing grid */
.products-grid-section { background: #fff; padding-top: 40px; padding-bottom: 80px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
    background: #f9f9f9; border-radius: 16px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease; position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.product-card-image { height: 200px; overflow: hidden; flex-shrink: 0; background: #e8e4de; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-body { padding: 24px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card-title { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); line-height: 1.3; margin-bottom: 10px; }
.product-card-desc { font-size: 0.82rem; color: #666; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.product-card-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.product-action-detail {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 700; color: var(--primary-orange);
    text-decoration: none; transition: opacity 0.2s;
}
.product-action-detail:hover { opacity: 0.72; color: var(--primary-orange); }
.product-action-arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border: 1.5px solid #ddd; border-radius: 50%;
    font-size: 0.75rem; color: var(--text-dark);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.product-action-detail:hover .product-action-arrow { border-color: var(--primary-orange); background: var(--primary-orange); color: #fff; }
.product-cta-card {
    background: var(--primary-orange); border-radius: 16px; padding: 40px 28px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-cta-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.product-cta-icon { font-size: 2.4rem; color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.product-cta-title { font-size: 1.2rem; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 12px; }
.product-cta-desc { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 28px; }
.product-cta-btn {
    display: inline-block; padding: 13px 32px; background: #fff; color: var(--primary-orange);
    font-size: 0.82rem; font-weight: 800; border-radius: 8px; text-decoration: none;
    letter-spacing: 0.04em; transition: opacity 0.2s;
}
.product-cta-btn:hover { opacity: 0.9; color: var(--primary-orange); }
@media (max-width: 991px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

/* ── WhatWeDo page ── */
.wwd-hero { background: #f5f5f3; padding-top: 130px; padding-bottom: 80px; }
.wwd-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.wwd-hero-badge {
    display: inline-block; background: var(--primary-orange); color: #fff;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
    padding: 7px 16px; border-radius: 4px; margin-bottom: 24px;
}
.wwd-hero-title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; color: var(--text-dark); line-height: 1.1; margin-bottom: 36px; }
.wwd-hero-script { display: block; font-size: clamp(2.8rem, 6vw, 4.4rem); color: var(--text-dark); line-height: 1; }
.wwd-hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.wwd-btn-primary {
    display: inline-block; background: var(--primary-orange); color: #fff;
    font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em;
    padding: 14px 28px; border-radius: 6px; text-decoration: none; transition: opacity 0.2s;
}
.wwd-btn-primary:hover { opacity: 0.85; color: #fff; }
.wwd-btn-text {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.82rem; font-weight: 800; color: var(--text-dark);
    text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s;
}
.wwd-btn-text:hover { color: var(--primary-orange); }
.wwd-arrow { font-size: 1.1rem; }
.wwd-hero-image { border-radius: 24px; overflow: hidden; background: #e8e4de; }
.wwd-hero-image img { width: 100%; height: 420px; object-fit: cover; display: block; border-radius: 24px; }
.wwd-hero-video { width: 100%; height: 420px; object-fit: cover; display: block; border-radius: 24px; -webkit-mask-image: -webkit-radial-gradient(white, black); }
.wwd-offer { background: #fff; padding-top: 80px; padding-bottom: 100px; }
.wwd-superlabel {
    display: block; font-size: 0.72rem; font-weight: 700; color: var(--primary-orange);
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}
.wwd-offer-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 50px; }
.wwd-offer-title { font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 900; color: var(--text-dark); line-height: 1.15; margin: 0; }
.wwd-offer-intro { font-size: 0.9rem; color: #888; line-height: 1.8; margin: 0; }
.wwd-feature-image { border-radius: 20px; overflow: hidden; margin-bottom: 44px; background: #e8e4de; }
.wwd-feature-image img { width: 100%; height: 380px; object-fit: cover; display: block; }
.wwd-body-text { margin-bottom: 60px; }
.wwd-body-text p { font-size: 0.88rem; color: var(--text-dark); line-height: 1.85; margin-bottom: 14px; }
.wwd-body-text p:last-child { margin-bottom: 0; }
.wwd-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.wwd-card { background: #fff; border: 1px solid #ebebeb; border-radius: 18px; padding: 36px 32px; }
.wwd-card-title { font-size: 1.1rem; font-weight: 900; color: var(--primary-orange); margin-bottom: 14px; line-height: 1.3; }
.wwd-card-desc { font-size: 0.85rem; color: #555; line-height: 1.8; margin-bottom: 24px; }
.wwd-card-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.wwd-card-list li { font-size: 0.84rem; color: var(--text-dark); padding-left: 18px; position: relative; line-height: 1.6; }
.wwd-card-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 60%; background: var(--primary-orange); border-radius: 2px; }
.wwd-card-footer-text { font-size: 0.84rem; color: #666; line-height: 1.75; margin: 0; }
@media (max-width: 991px) { .wwd-hero-inner { grid-template-columns: 1fr; gap: 40px; } .wwd-hero-image img, .wwd-hero-video { height: 300px; } .wwd-offer-header { grid-template-columns: 1fr; gap: 24px; } .wwd-cards-row { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .wwd-hero { padding-top: 100px; padding-bottom: 60px; } .wwd-feature-image img { height: 240px; } }

/* ── Shared detail-page breadcrumb pattern (bes, kaza, hayat, saglik, diger) ── */
.bes-breadcrumb, .kaza-breadcrumb, .hayat-breadcrumb, .saglik-breadcrumb, .diger-breadcrumb {
    display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: #999;
    padding: 20px 0 36px; border-top: 1px solid #eee;
}
.bes-breadcrumb-link, .kaza-breadcrumb-link, .hayat-breadcrumb-link,
.saglik-breadcrumb-link, .diger-breadcrumb-link {
    color: #999; text-decoration: none; font-weight: 600; transition: color 0.2s;
}
.bes-breadcrumb-link:hover, .kaza-breadcrumb-link:hover, .hayat-breadcrumb-link:hover,
.saglik-breadcrumb-link:hover, .diger-breadcrumb-link:hover { color: var(--primary-orange); }
.bes-breadcrumb-sep, .kaza-breadcrumb-sep, .hayat-breadcrumb-sep,
.saglik-breadcrumb-sep, .diger-breadcrumb-sep { color: #ccc; }
.bes-breadcrumb-current, .kaza-breadcrumb-current, .hayat-breadcrumb-current,
.saglik-breadcrumb-current, .diger-breadcrumb-current { color: var(--text-dark); font-weight: 700; }

/* ── Shared tab nav pattern ── */
.bes-tab-nav, .kaza-tab-nav, .hayat-tab-nav, .saglik-tab-nav {
    display: flex; gap: 0; margin-bottom: 40px; border-bottom: 2px solid #eee; flex-wrap: wrap;
}
.bes-tab-btn, .kaza-tab-btn, .hayat-tab-btn, .saglik-tab-btn {
    background: none; border: none; padding: 14px 24px; font-size: 0.9rem; font-weight: 700;
    color: #999; cursor: pointer; position: relative; margin-bottom: -2px;
    transition: color 0.2s; font-family: inherit;
}
.bes-tab-btn::after, .kaza-tab-btn::after, .hayat-tab-btn::after, .saglik-tab-btn::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--primary-orange); transform: scaleX(0); transition: transform 0.25s ease;
}
.bes-tab-btn.active, .kaza-tab-btn.active, .hayat-tab-btn.active, .saglik-tab-btn.active { color: var(--primary-orange); }
.bes-tab-btn.active::after, .kaza-tab-btn.active::after,
.hayat-tab-btn.active::after, .saglik-tab-btn.active::after { transform: scaleX(1); }
.bes-tab-btn:hover:not(.active), .kaza-tab-btn:hover:not(.active),
.hayat-tab-btn:hover:not(.active), .saglik-tab-btn:hover:not(.active) { color: var(--text-dark); }
.bes-tab-panel, .kaza-tab-panel, .hayat-tab-panel, .saglik-tab-panel { display: none; }
.bes-tab-panel.active, .kaza-tab-panel.active, .hayat-tab-panel.active, .saglik-tab-panel.active { display: block; }

/* ── Shared content sections ── */
.bes-content-section, .kaza-content-section, .hayat-content-section,
.saglik-content-section, .diger-content-section { background: #fff; padding-top: 0; padding-bottom: 120px; }
.bes-article, .kaza-article, .hayat-article, .saglik-article, .diger-article { max-width: 760px; }
.bes-body, .kaza-body, .hayat-body, .saglik-body, .diger-body {
    font-size: 0.9rem; color: #444; line-height: 1.85; margin-bottom: 16px;
}

/* ── Shared accordion pattern ── */
.bes-accordion, .kaza-accordion, .hayat-accordion { margin-top: 32px; }
.saglik-accordion, .diger-accordion { margin-top: 0; }
.bes-acc-item, .kaza-acc-item, .hayat-acc-item, .saglik-acc-item, .diger-acc-item { border-bottom: 1px solid #eee; }
.bes-acc-item:first-child, .kaza-acc-item:first-child, .hayat-acc-item:first-child,
.saglik-acc-item:first-child, .diger-acc-item:first-child { border-top: 1px solid #eee; }
.bes-acc-summary, .kaza-acc-summary, .hayat-acc-summary, .saglik-acc-summary, .diger-acc-summary {
    list-style: none; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 18px 0; font-size: 0.92rem; font-weight: 700;
    color: var(--text-dark); cursor: pointer; user-select: none;
}
.bes-acc-summary::-webkit-details-marker, .kaza-acc-summary::-webkit-details-marker,
.hayat-acc-summary::-webkit-details-marker, .saglik-acc-summary::-webkit-details-marker,
.diger-acc-summary::-webkit-details-marker { display: none; }
.bes-acc-summary::after, .kaza-acc-summary::after, .hayat-acc-summary::after,
.saglik-acc-summary::after, .diger-acc-summary::after {
    content: ''; flex-shrink: 0; width: 20px; height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23121212'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: center; background-size: 14px;
    transition: transform 0.25s ease;
}
.bes-acc-item[open] > .bes-acc-summary, .kaza-acc-item[open] > .kaza-acc-summary,
.hayat-acc-item[open] > .hayat-acc-summary, .saglik-acc-item[open] > .saglik-acc-summary,
.diger-acc-item[open] > .diger-acc-summary { color: var(--primary-orange); }
.bes-acc-item[open] > .bes-acc-summary::after, .kaza-acc-item[open] > .kaza-acc-summary::after,
.hayat-acc-item[open] > .hayat-acc-summary::after, .saglik-acc-item[open] > .saglik-acc-summary::after,
.diger-acc-item[open] > .diger-acc-summary::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fa6a02'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.bes-acc-body, .kaza-acc-body, .hayat-acc-body, .saglik-acc-body, .diger-acc-body { padding: 4px 0 20px; color: #444; }

/* ── Shared CTA row ── */
.bes-cta-row, .kaza-cta-row, .hayat-cta-row, .saglik-cta-row, .diger-cta-row {
    display: flex; align-items: center; gap: 24px; margin-top: 48px; flex-wrap: wrap;
}
.bes-cta-btn, .kaza-cta-btn, .hayat-cta-btn, .saglik-cta-btn, .diger-cta-btn {
    display: inline-block; padding: 13px 32px; background: var(--primary-orange); color: #fff;
    font-size: 0.9rem; font-weight: 700; border-radius: 8px; text-decoration: none; transition: background 0.2s;
}
.bes-cta-btn:hover, .kaza-cta-btn:hover, .hayat-cta-btn:hover,
.saglik-cta-btn:hover, .diger-cta-btn:hover { background: #e05a00; color: #fff; }
.bes-back-link, .kaza-back-link, .hayat-back-link, .saglik-back-link, .diger-back-link {
    font-size: 0.82rem; font-weight: 700; color: #999; text-decoration: none; transition: color 0.2s;
}
.bes-back-link:hover, .kaza-back-link:hover, .hayat-back-link:hover,
.saglik-back-link:hover, .diger-back-link:hover { color: var(--text-dark); }

/* ── BES list & table ── */
.bes-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bes-list li { font-size: 0.9rem; color: #444; line-height: 1.8; padding-left: 16px; position: relative; }
.bes-list li::before { content: "•"; position: absolute; left: 0; color: var(--primary-orange); font-weight: 900; }
.bes-dk-table-wrap { overflow-x: auto; margin-bottom: 4px; border-radius: 10px; border: 1px solid #eee; }
.bes-dk-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; min-width: 400px; }
.bes-dk-table thead th { background: var(--primary-orange); color: #fff; font-weight: 700; padding: 13px 18px; text-align: left; }
.bes-dk-table thead th:last-child { text-align: right; min-width: 80px; }
.bes-dk-table tbody td { padding: 12px 18px; color: #444; border-bottom: 1px solid #f0f0f0; background: #fff; }
.bes-dk-table tbody tr:nth-child(even) td { background: #fdf7f3; }
.bes-dk-table tbody tr:last-child td { border-bottom: none; }
.bes-dk-highlight td { background: #fff3eb !important; font-weight: 700; color: var(--text-dark); }
.bes-dk-rate { font-weight: 700; color: var(--primary-orange); white-space: nowrap; text-align: right; }

/* ── Kaza teminat list ── */
.kaza-teminat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.kaza-teminat-list li { font-size: 0.9rem; color: #444; line-height: 1.8; padding-left: 16px; position: relative; }
.kaza-teminat-list li::before { content: "•"; position: absolute; left: 0; color: var(--primary-orange); font-weight: 900; }
.kaza-item-label { font-weight: 700; color: var(--primary-orange); }
.kaza-term-group { font-size: 0.78rem; font-weight: 800; color: var(--primary-orange); letter-spacing: 0.08em; text-transform: uppercase; margin: 20px 0 12px; }
.kaza-term-group:first-child { margin-top: 0; }
.kaza-term-title { font-size: 0.9rem; font-weight: 700; color: var(--primary-orange); margin-bottom: 6px; }
.kaza-link { color: var(--primary-orange); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; transition: opacity 0.2s; }
.kaza-link:hover { opacity: 0.75; color: var(--primary-orange); }
.kaza-group-divider { display: flex; align-items: center; gap: 16px; margin: 48px 0 0; }
.kaza-group-divider::before, .kaza-group-divider::after { content: ''; flex: 1; height: 1px; background: #eee; }
.kaza-group-label { font-size: 0.72rem; font-weight: 800; color: var(--primary-orange); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.kaza-teminat-sections { margin-top: 8px; display: flex; flex-direction: column; }
.kaza-teminat-block { padding: 24px 0; border-bottom: 1px solid #eee; }
.kaza-teminat-block:first-child { border-top: 1px solid #eee; }
.kaza-teminat-heading { font-size: 1.05rem; font-weight: 800; color: var(--primary-orange); margin-bottom: 10px; line-height: 1.3; }
.kaza-simple-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.kaza-simple-list li { font-size: 0.9rem; color: #444; line-height: 1.7; padding-left: 16px; position: relative; }
.kaza-simple-list li::before { content: "•"; position: absolute; left: 0; color: var(--primary-orange); font-weight: 900; }

/* ── Hayat extras ── */
.hayat-teminat-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 12px; }
.hayat-teminat-list li { font-size: 0.9rem; color: #444; line-height: 1.8; padding-left: 16px; position: relative; }
.hayat-teminat-list li::before { content: "•"; position: absolute; left: 0; color: var(--primary-orange); font-weight: 900; }
.hayat-item-label { font-weight: 700; color: var(--primary-orange); }
.hayat-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.hayat-list li { font-size: 0.9rem; color: #444; line-height: 1.8; padding-left: 16px; position: relative; }
.hayat-list li::before { content: "•"; position: absolute; left: 0; color: var(--primary-orange); font-weight: 900; }
.hayat-footnote { font-size: 0.78rem; color: #888; line-height: 1.7; font-style: italic; margin-bottom: 8px; }
.hayat-subhead { font-size: 0.9rem; font-weight: 700; color: var(--primary-orange); margin-bottom: 10px; }
.hayat-link { color: var(--primary-orange); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; transition: opacity 0.2s; }
.hayat-link:hover { opacity: 0.75; color: var(--primary-orange); }
.hayat-vergi-table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid #eee; margin-bottom: 4px; }
.hayat-vergi-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; min-width: 400px; }
.hayat-vergi-table thead th { background: var(--text-dark); color: #fff; font-weight: 700; padding: 13px 18px; text-align: left; }
.hayat-vergi-table tbody td { padding: 12px 18px; color: #444; border-bottom: 1px solid #f0f0f0; background: #fff; }
.hayat-vergi-table tbody tr:nth-child(even) td { background: #fdf7f3; color: var(--primary-orange); font-weight: 600; }
.hayat-vergi-table tbody tr:last-child td { border-bottom: none; }
.hayat-vergi-val { white-space: nowrap; font-weight: 600; text-align: right; min-width: 180px; }
.hayat-group-divider { display: flex; align-items: center; gap: 16px; margin: 48px 0 0; }
.hayat-group-divider::before, .hayat-group-divider::after { content: ''; flex: 1; height: 1px; background: #eee; }
.hayat-group-label { font-size: 0.72rem; font-weight: 800; color: var(--primary-orange); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.hayat-term-group { font-size: 0.78rem; font-weight: 800; color: var(--primary-orange); letter-spacing: 0.08em; text-transform: uppercase; margin: 20px 0 12px; }
.hayat-term-group:first-child { margin-top: 0; }
.hayat-term-title { font-size: 0.9rem; font-weight: 700; color: var(--primary-orange); margin-bottom: 6px; }
.hayat-teminat-sections { margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.hayat-teminat-block { padding: 24px 0; border-bottom: 1px solid #eee; }
.hayat-teminat-block:first-child { border-top: 1px solid #eee; }
.hayat-teminat-heading { font-size: 1.05rem; font-weight: 800; color: var(--primary-orange); margin-bottom: 10px; line-height: 1.3; }
.hayat-disease-list { padding-left: 20px; margin: 0 0 16px; display: flex; flex-direction: column; gap: 6px; }
.hayat-disease-list li { font-size: 0.9rem; color: var(--primary-orange); font-weight: 600; line-height: 1.7; padding-left: 4px; }

/* ── Saglik extras ── */
.saglik-teminat-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 14px; }
.saglik-teminat-list li { font-size: 0.9rem; color: #444; line-height: 1.8; padding-left: 16px; position: relative; }
.saglik-teminat-list li::before { content: "•"; position: absolute; left: 0; color: var(--primary-orange); font-weight: 900; }
.saglik-item-label { font-weight: 700; color: var(--primary-orange); }
.saglik-highlight { color: var(--primary-orange); font-weight: 700; }

/* ── Contact page ── */
.contact-hero { position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: 100vh; overflow: hidden; background: #000; }
.contact-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top: 0; left: 0; }
/* Scrims so the white header (logo, lang) and scroll indicator stay legible over the bright video */
.contact-hero::before,
.contact-hero::after { content: ''; position: absolute; left: 0; right: 0; z-index: 5; pointer-events: none; }
.contact-hero::before { top: 0; height: 240px; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0)); }
.contact-hero::after { bottom: 0; height: 200px; background: linear-gradient(to top, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0)); }
.contact-content-section { background: #f5f0e8; padding-top: 64px; padding-bottom: 80px; }
.contact-content-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-title { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin-bottom: 32px; }
.contact-info-title-bar { display: inline-block; width: 4px; height: 20px; background: var(--primary-orange); border-radius: 2px; flex-shrink: 0; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon { width: 40px; height: 40px; border-radius: 50%; background: #fff6f0; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--primary-orange); flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: 0.72rem; font-weight: 700; color: #999; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 3px; }
.contact-info-value { font-size: 0.88rem; color: var(--text-dark); line-height: 1.6; }
.contact-hours { margin-top: 36px; }
.contact-hours-title { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.contact-hours-row { display: flex; align-items: center; justify-content: space-between; background: #fff; border-radius: 8px; padding: 10px 16px; margin-bottom: 8px; font-size: 0.82rem; }
.contact-hours-day { color: #555; font-weight: 500; }
.contact-hours-time { font-weight: 800; color: var(--primary-orange); }
.contact-hours-closed { font-weight: 800; color: #999; letter-spacing: 0.04em; }
.contact-form-card { background: #fff; border-radius: 20px; padding: 40px 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.contact-form-title { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.contact-form-subtitle { font-size: 0.82rem; color: #888; margin-bottom: 28px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-field-wrap { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.contact-form-row .contact-field-wrap { margin-bottom: 0; }
.contact-field-label { font-size: 0.78rem; font-weight: 600; color: #555; }
.contact-field { width: 100%; border: 1.5px solid #e5e5e5; border-radius: 8px; padding: 11px 14px; font-size: 0.85rem; color: var(--text-dark); outline: none; transition: border-color 0.18s; font-family: 'Manrope', sans-serif; background: #fff; }
.contact-field::placeholder { color: #bbb; }
.contact-field:focus { border-color: var(--primary-orange); }
.contact-textarea { resize: vertical; min-height: 120px; }
.contact-submit-btn { display: inline-block; padding: 13px 36px; background: var(--primary-orange); color: #fff; font-size: 0.9rem; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; transition: background 0.2s; font-family: 'Manrope', sans-serif; }
.contact-submit-btn:hover { background: var(--primary-orange-hover); }
@media (max-width: 991px) { .contact-content-inner { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 600px) { .contact-form-row { grid-template-columns: 1fr; } .contact-form-card { padding: 28px 20px; } }

/* ── Career page ── */
.career-header { position: relative; min-height: 240px; background: url('/images/career-hero.webp') center/cover no-repeat; display: flex; align-items: flex-end; padding-top: 120px; padding-bottom: 0; overflow: hidden; }
.career-header-overlay { position: absolute; inset: 0; background: rgba(18,18,18,0.52); }
.career-header-inner { position: relative; z-index: 1; padding-bottom: 48px; }
.career-page-title { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 900; color: #fff; letter-spacing: -0.5px; line-height: 1; margin-bottom: 14px; }
.career-header-divider { width: 36px; height: 3px; background: var(--primary-orange); border-radius: 2px; margin-bottom: 16px; }
.career-page-subtitle { font-size: 0.9rem; color: rgba(255,255,255,0.88); line-height: 1.7; margin: 0; }
.career-advantages-section { background: #f5f0e8; padding-top: 72px; padding-bottom: 80px; }
.career-advantages-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.career-advantages-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text-dark); line-height: 1.25; margin-bottom: 20px; }
.career-advantages-desc { font-size: 0.88rem; color: #555; line-height: 1.8; margin-bottom: 32px; }
.career-apply-btn { display: inline-block; padding: 14px 32px; background: var(--primary-orange); color: #fff; font-size: 0.9rem; font-weight: 700; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
.career-apply-btn:hover { background: var(--primary-orange-hover); color: #fff; }
.career-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.career-benefit-card { background: #fff; border-radius: 14px; padding: 24px 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.career-benefit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.career-benefit-card--wide { grid-column: 1 / -1; }
.career-benefit-icon { width: 44px; height: 44px; border-radius: 50%; background: #fff6f0; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 1.2rem; color: var(--primary-orange); }
.career-benefit-title { font-size: 0.95rem; font-weight: 800; color: var(--text-dark); line-height: 1.3; margin-bottom: 8px; }
.career-benefit-desc { font-size: 0.8rem; color: #666; line-height: 1.65; margin: 0; }
@media (max-width: 991px) { .career-advantages-inner { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 600px) { .career-benefits-grid { grid-template-columns: 1fr; } .career-benefit-card--wide { grid-column: 1; } }

/* ── Awards page ── */
.awards-header { background: #f5f0e8; padding-top: 140px; padding-bottom: 0; }
.awards-header-inner { padding-bottom: 56px; text-align: center; }
.awards-badge { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid #e8e0d4; border-radius: 20px; padding: 6px 16px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; color: var(--primary-orange); text-transform: uppercase; margin-bottom: 22px; }
.awards-page-title { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; color: var(--text-dark); letter-spacing: -1px; line-height: 1; margin-bottom: 20px; }
.awards-page-title .dot { color: var(--primary-orange); }
.awards-page-subtitle { font-size: 0.95rem; color: #555; line-height: 1.75; margin-bottom: 24px; }
.awards-page-divider { width: 36px; height: 3px; background: var(--primary-orange); border-radius: 2px; margin: 0 auto; }
.awards-grid-section { background: #f5f0e8; padding-top: 56px; padding-bottom: 80px; }
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.award-card { background: #fff; border-radius: 16px; padding: 28px 24px 56px; position: relative; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; min-height: 260px; }
.award-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.11); }
.award-icon-wrap { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--primary-orange); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: #fff6f0; }
.award-icon { font-size: 1.3rem; color: var(--primary-orange); }
.award-year { font-size: 0.72rem; font-weight: 800; color: var(--primary-orange); letter-spacing: 0.05em; margin-bottom: 8px; }
.award-title { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); line-height: 1.3; margin-bottom: 12px; }
.award-desc { font-size: 0.82rem; color: #666; line-height: 1.7; margin-bottom: 0; }
.award-tag { position: absolute; bottom: 20px; left: 24px; display: flex; align-items: center; gap: 5px; font-size: 0.68rem; font-weight: 700; color: #aaa; letter-spacing: 0.05em; text-transform: uppercase; }
.awards-stats-section { background: #f5f0e8; }
.awards-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #eee7da; padding: 52px 0; }
.awards-stat-item { text-align: center; padding: 0 20px; border-right: 1px solid #d9d0c2; }
.awards-stat-item:last-child { border-right: none; }
.awards-stat-number { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; color: var(--primary-orange); line-height: 1; margin-bottom: 8px; }
.awards-stat-label { font-size: 0.72rem; font-weight: 700; color: var(--text-dark); letter-spacing: 0.08em; text-transform: uppercase; }
.awards-cta-section { background: #f5f0e8; padding-top: 72px; padding-bottom: 80px; }
.awards-cta-inner { background: #2a1a0e; border-radius: 20px; padding: 64px 40px; text-align: center; }
.awards-cta-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.awards-cta-subtitle { font-size: 0.9rem; color: #b0a090; line-height: 1.75; margin-bottom: 32px; }
.awards-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.awards-cta-btn-outline { display: inline-block; padding: 14px 32px; border: 2px solid rgba(255,255,255,0.35); border-radius: 8px; color: #fff; font-size: 0.88rem; font-weight: 700; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.awards-cta-btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); color: #fff; }
@media (max-width: 991px) { .awards-grid { grid-template-columns: repeat(2, 1fr); } .awards-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .awards-grid { grid-template-columns: 1fr; } .awards-cta-inner { padding: 44px 24px; } }

/* ── CEO Message page ── */
.ceo-page { background-color: #fff; min-height: 100vh; }
.ceo-breadcrumb { font-size: 0.82rem; color: #888; padding-top: 120px; padding-bottom: 0; }
.ceo-breadcrumb a { color: #888; text-decoration: none; }
.ceo-breadcrumb a:hover { color: var(--primary-orange); }
.ceo-breadcrumb .separator { margin: 0 6px; }
.ceo-breadcrumb .current { color: #333; }
.ceo-page-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #121212; line-height: 1.1; margin-bottom: 6px; }
.ceo-page-title span { color: var(--primary-orange); }
.ceo-page-underline { width: 48px; height: 3px; background: var(--primary-orange); margin: 10px 0 14px; border-radius: 2px; }
.ceo-page-subtitle { font-size: 1rem; color: #555; margin-bottom: 0; }
.ceo-photo-wrap { border-radius: 4px; overflow: hidden; border: 1px solid #e8e2d9; background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.07); max-width: 280px; }
.ceo-photo-wrap img { width: 100%; display: block; object-fit: cover; }
.ceo-name { font-size: 1.15rem; font-weight: 800; color: #121212; margin-bottom: 2px; margin-top: 16px; }
.ceo-title { font-size: 0.72rem; font-weight: 700; color: var(--primary-orange); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }
.ceo-company { font-size: 0.82rem; color: #888; margin-bottom: 14px; }
.ceo-social a { color: #555; margin-right: 10px; font-size: 1.1rem; transition: color 0.2s; }
.ceo-social a:hover { color: var(--primary-orange); }
.ceo-letter-paper { background: #fdf8ec; border-radius: 2px; padding: 0 44px 44px; transform: rotate(-0.4deg); transform-origin: center top; box-shadow: 0 1px 2px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.09), 0 16px 36px rgba(0,0,0,0.07), 6px 8px 0 0 #f0ebd8, 6px 8px 14px rgba(0,0,0,0.06), 12px 16px 0 0 #e6e0ca, 12px 16px 20px rgba(0,0,0,0.04); }
.ceo-letter-header-strip { height: 4px; background: linear-gradient(90deg, var(--primary-orange) 0%, #ffaa55 100%); border-radius: 2px 2px 0 0; margin: 0 -44px 36px; }
.ceo-letter-greeting { font-size: 1.25rem; font-weight: 800; color: #121212; margin-bottom: 18px; }
.ceo-letter p { font-size: 0.95rem; line-height: 1.85; color: #2a2a2a; margin-bottom: 16px; }
.ceo-blockquote { border-left: 4px solid var(--primary-orange); padding: 12px 20px; margin: 24px 0; background: rgba(250,106,2,0.05); border-radius: 0 3px 3px 0; }
.ceo-blockquote p { font-size: 0.95rem; font-style: italic; color: #222; margin-bottom: 0 !important; line-height: 1.7; }
.ceo-signature-section { border-top: 1px solid #ddd6c4; margin-top: 36px; padding-top: 28px; display: flex; flex-direction: column; align-items: flex-start; }
.ceo-signature-label { font-size: 0.88rem; color: #555; margin-bottom: 14px; }
.ceo-sig-wrap { display: flex; flex-direction: column; align-items: flex-start; }
.ceo-sig-photo { width: 64px; height: 64px; border-radius: 6px; object-fit: cover; object-position: top; border: 1px solid #e0dbd2; margin-bottom: 10px; }
.ceo-sig-name { font-size: 1rem; font-weight: 800; color: #121212; margin-bottom: 2px; }
.ceo-sig-role { font-size: 0.82rem; font-weight: 700; color: var(--primary-orange); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Organization Chart page ── */
.org-page { background: #fff; min-height: 100vh; }
.org-page-inner { padding-bottom: 100px; }
.org-breadcrumb { font-size: 0.82rem; color: #888; padding-top: 120px; padding-bottom: 0; padding-left: max(5vw, 20px); text-align: left; margin-bottom: 40px; }
.org-breadcrumb a { color: #888; text-decoration: none; transition: color 0.2s; }
.org-breadcrumb a:hover { color: var(--primary-orange); }
.org-breadcrumb .separator { margin: 0 8px; }
.org-breadcrumb .current { color: #333; }
.org-header { text-align: center; padding: 110px 20px 48px; }
.org-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; color: var(--primary-orange); text-transform: uppercase; margin-bottom: 12px; }
.org-title { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; color: #121212; line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.3px; }
.org-title span { color: var(--primary-orange); }
.org-title-underline { width: 48px; height: 3px; background: var(--primary-orange); margin: 0 auto 18px; border-radius: 2px; }
.org-subtitle { font-size: 0.95rem; color: #666; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.org-chart-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; gap: 0; }
.org-lines { display: none; }
.org-level { display: flex; justify-content: center; gap: 24px; width: 100%; flex-wrap: wrap; }
.org-connector-trunk { width: 2px; height: 52px; background: linear-gradient(to bottom, rgba(250,106,2,0.55), rgba(250,106,2,0.15)); flex-shrink: 0; border-radius: 2px; }
.org-branch { display: flex; flex-direction: column; align-items: center; }
.org-branch-line-up { width: 2px; height: 52px; background: linear-gradient(to bottom, rgba(250,106,2,0.15), rgba(250,106,2,0.55)); border-radius: 2px; }
.org-card { position: relative; background: #fff; border: 1px solid #e8e8e8; border-radius: 16px; padding: 28px 22px 22px; width: 220px; height: 240px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; overflow: hidden; }
.org-card:hover { transform: translateY(-5px); border-color: rgba(250,106,2,0.3); box-shadow: 0 8px 32px rgba(250,106,2,0.1), 0 2px 12px rgba(0,0,0,0.06); }
.org-card-ceo { width: 260px; height: 270px; padding: 0 26px; border-color: rgba(250,106,2,0.25); box-shadow: 0 4px 24px rgba(250,106,2,0.08), 0 2px 8px rgba(0,0,0,0.06); }
.org-card-glow, .org-card-accent-line { display: none; }
.org-avatar-ring { width: 110px; height: 110px; border-radius: 50%; border: 2px solid var(--primary-orange); padding: 3px; margin-bottom: 14px; flex-shrink: 0; background: #fff; }
.org-card-ceo .org-avatar-ring { width: 124px; height: 124px; }
.org-avatar { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: #f0ece5; display: flex; align-items: center; justify-content: center; }
.org-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.org-avatar-fallback { font-size: 1rem; font-weight: 800; color: var(--primary-orange); letter-spacing: 0.5px; line-height: 1; }
.org-avatar-ring-sm { width: 90px; height: 90px; margin-bottom: 12px; }
.org-card-body { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.org-card-name { font-size: 0.88rem; font-weight: 800; color: #121212; margin: 0; line-height: 1.3; }
.org-card-ceo .org-card-name { font-size: 1rem; }
.org-card-role { font-size: 0.68rem; font-weight: 600; color: var(--primary-orange); letter-spacing: 0.03em; line-height: 1.5; text-transform: uppercase; }
.org-card-sm { width: 220px; height: 240px; padding: 0 18px; border-radius: 14px; }
.org-card-sm .org-card-name { font-size: 0.8rem; }
.org-card-sm .org-card-role { font-size: 0.62rem; }

/* ── News page (full) ── */
.news-header-section { background: #fff; padding-top: 140px; padding-bottom: 40px; }
.news-header-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; }
.news-superlabel { display: block; font-size: 0.72rem; font-weight: 700; color: var(--primary-orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.news-page-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--text-dark); line-height: 1.1; margin-bottom: 12px; }
.news-page-subtitle { font-size: 0.88rem; color: #666; line-height: 1.7; margin: 0; }
.news-filter-wrap { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; align-self: flex-start; padding-top: 8px; max-width: 260px; }
.news-filter-btn { padding: 7px 16px; border-radius: 999px; border: 1.5px solid #ddd; background: transparent; font-size: 0.78rem; font-weight: 600; color: #555; cursor: pointer; transition: background 0.18s, color 0.18s, border-color 0.18s; white-space: nowrap; }
.news-filter-btn:hover { border-color: var(--primary-orange); color: var(--primary-orange); }
.news-filter-btn.active { background: var(--primary-orange); border-color: var(--primary-orange); color: #fff; }
/* Language fallback notice (shown when content is served in the default language) */
.news-lang-notice-bar { background: #fff; padding-top: 4px; padding-bottom: 8px; }
.news-lang-notice { display: inline-flex; align-items: center; gap: 8px; margin: 0; padding: 10px 16px; border-radius: 10px; background: #fff6f0; border: 1px solid #ffd9bf; color: #9a4a00; font-size: 0.82rem; font-weight: 600; line-height: 1.4; }
.news-lang-notice i { font-size: 1rem; color: var(--primary-orange); }
.nd-article .news-lang-notice { display: flex; margin-bottom: 20px; }
.home-news-section .news-lang-notice { margin-bottom: 24px; }

.news-featured-section { background: #fff; padding-top: 8px; padding-bottom: 48px; }
.news-featured-slider { position: relative; }
.news-featured-viewport { overflow: hidden; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.09); }
.news-featured-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.news-featured-slide { min-width: 100%; }
.news-featured-slider .news-featured-card { box-shadow: none; border-radius: 0; }
.news-featured-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.news-featured-dot { width: 9px; height: 9px; padding: 0; border-radius: 999px; border: none; background: #d9cfc2; cursor: pointer; transition: background 0.2s ease, width 0.2s ease; }
.news-featured-dot.active { background: var(--primary-orange); width: 26px; }
.news-featured-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.09); background: #fff; position: relative; }
.news-featured-image { overflow: hidden; }
.news-featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-featured-body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.news-featured-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.news-badge-featured { background: #fff7f0; border: 1.5px solid #ffd9bc; color: var(--primary-orange); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; }
.news-date { font-size: 0.78rem; color: #999; }
.news-featured-title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--text-dark); line-height: 1.25; margin-bottom: 16px; }
.news-featured-excerpt { font-size: 0.85rem; color: #666; line-height: 1.75; margin-bottom: 24px; }
.news-grid-section { background: #f5f0e8; padding-top: 48px; padding-bottom: 80px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: transform 0.25s ease, box-shadow 0.25s ease; display: flex; flex-direction: column; position: relative; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.11); }
.news-card-image { position: relative; height: 200px; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.news-card:hover .news-card-image img { transform: scale(1.04); }
.news-card-badge { position: absolute; top: 14px; left: 14px; background: rgba(18,18,18,0.78); color: #fff; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; }
.news-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.news-card-date { font-size: 0.72rem; color: #999; margin-bottom: 8px; display: block; }
.news-card-title { font-size: 0.95rem; font-weight: 800; color: var(--text-dark); line-height: 1.35; margin-bottom: 8px; }
.news-card-excerpt { font-size: 0.8rem; color: #777; line-height: 1.65; flex: 1; margin-bottom: 14px; }
@media (max-width: 991px) { .news-header-inner { flex-direction: column; gap: 24px; } .news-filter-wrap { max-width: 100%; justify-content: flex-start; } .news-featured-card { grid-template-columns: 1fr; } .news-featured-image { height: 260px; } .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } .news-featured-body { padding: 28px 20px; } }

/* ── News Detail page ── */
.nd-hero { position: relative; height: 70vh; min-height: 480px; max-height: 680px; overflow: hidden; display: flex; align-items: flex-end; }
.nd-hero-image { position: absolute; inset: 0; }
.nd-hero-image img { width: 100%; height: 116%; top: -8%; position: relative; object-fit: cover; display: block; }
.nd-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.05) 100%); }
.nd-hero-content { position: relative; z-index: 2; padding-bottom: 56px; }
.nd-hero-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.nd-hero-badge { background: var(--primary-orange); color: #fff; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.07em; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; }
.nd-hero-date, .nd-hero-read { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.nd-hero-read::before { content: '·'; margin-right: 14px; }
.nd-hero-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 28px; max-width: 800px; }
.nd-hero-author { display: flex; align-items: center; gap: 12px; }
.nd-author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-orange); color: #fff; font-size: 0.72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nd-author-name { display: block; font-size: 0.85rem; font-weight: 700; color: #fff; line-height: 1.2; }
.nd-author-role { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.nd-breadcrumb-bar { background: #fff; border-bottom: 1px solid #eee; }
.nd-breadcrumb-inner { padding-top: 14px; padding-bottom: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nd-bc-link { font-size: 0.75rem; color: #888; text-decoration: none; transition: color 0.18s; }
.nd-bc-link:hover { color: var(--primary-orange); }
.nd-bc-sep { font-size: 0.75rem; color: #ccc; }
.nd-bc-current { font-size: 0.75rem; color: var(--text-dark); font-weight: 600; }
.nd-body-section { background: #f5f0e8; padding-top: 56px; padding-bottom: 80px; }
.nd-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.nd-article { background: #fff; border-radius: 16px; padding: 48px 52px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nd-lead { font-size: 1.05rem; color: #444; line-height: 1.85; margin-bottom: 36px; border-left: 3px solid var(--primary-orange); padding-left: 20px; }
.nd-article h2 { font-size: 1.3rem; font-weight: 800; color: var(--text-dark); margin-top: 40px; margin-bottom: 14px; line-height: 1.25; }
.nd-article p { font-size: 0.9rem; color: #555; line-height: 1.85; margin-bottom: 18px; }
.nd-quote-block { background: #faf6f0; border-left: 4px solid var(--primary-orange); border-radius: 0 10px 10px 0; padding: 24px 28px; margin: 32px 0; }
.nd-quote-block blockquote { font-size: 1rem; font-style: italic; color: var(--text-dark); line-height: 1.7; margin: 0 0 10px; padding: 0; border: none; }
.nd-quote-block cite { font-size: 0.78rem; color: var(--primary-orange); font-weight: 700; font-style: normal; }
.nd-highlight-box { background: #fff6f0; border: 1.5px solid #ffd9bc; border-radius: 12px; padding: 20px 24px; margin: 28px 0; display: flex; gap: 18px; align-items: flex-start; }
.nd-highlight-icon { color: var(--primary-orange); font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.nd-highlight-box strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.nd-highlight-box p { font-size: 0.82rem; color: #666; line-height: 1.65; margin: 0; }
.nd-tags-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; margin-bottom: 28px; }
.nd-tag { padding: 5px 14px; border-radius: 999px; border: 1.5px solid #e0d8ce; background: transparent; font-size: 0.75rem; font-weight: 600; color: #666; }
.nd-share-row { display: flex; align-items: center; gap: 10px; padding-top: 24px; padding-bottom: 32px; border-top: 1px solid #f0ece6; border-bottom: 1px solid #f0ece6; margin-bottom: 28px; }
.nd-share-label { font-size: 0.78rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.05em; margin-right: 4px; }
.nd-share-btn { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #e0d8ce; color: #666; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; text-decoration: none; transition: border-color 0.18s, color 0.18s, background 0.18s; }
.nd-share-btn:hover { border-color: var(--primary-orange); color: var(--primary-orange); background: #fff6f0; }
.nd-back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700; color: var(--text-dark); text-decoration: none; transition: color 0.18s; }
.nd-back-link:hover { color: var(--primary-orange); }
.nd-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.nd-sidebar-card { background: #fff; border-radius: 16px; padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nd-sidebar-title { font-size: 0.88rem; font-weight: 800; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid #f0ece6; }
.nd-related-list { display: flex; flex-direction: column; gap: 18px; }
.nd-related-item { display: flex; gap: 14px; text-decoration: none; align-items: flex-start; transition: opacity 0.2s; }
.nd-related-item:hover { opacity: 0.75; }
.nd-related-img { width: 70px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.nd-related-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nd-related-date { display: block; font-size: 0.68rem; color: #aaa; margin-bottom: 4px; }
.nd-related-title { font-size: 0.8rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin: 0; }
@media (max-width: 860px) { .nd-layout { grid-template-columns: 1fr; } .nd-sidebar { position: static; } .nd-article { padding: 32px 28px; } .nd-hero { height: 55vh; } }
@media (max-width: 600px) { .nd-article { padding: 24px 18px; } .nd-hero-title { font-size: clamp(1.4rem, 7vw, 2rem); } .nd-hero-content { padding-bottom: 36px; } }

/* ── Branches page (full, beyond map pins already in custom.css) ── */
.branches-header { background: #fff; padding-top: 140px; padding-bottom: 0; }
.branches-header-inner { padding-bottom: 40px; }
.branches-title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; color: var(--text-dark); line-height: 1.15; margin: 0; letter-spacing: -0.5px; }
.branches-title em { font-style: normal; color: var(--primary-orange); }
.branches-map-section { position: relative; height: 420px; overflow: hidden; }
.branches-list-section { background: #fff; padding-top: 72px; padding-bottom: 100px; }
.branches-list-header { margin-bottom: 32px; }
.branches-section-title { font-size: 1.75rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.branches-section-sub { font-size: 0.9rem; color: var(--primary-orange); font-weight: 500; margin: 0; }
.branches-search-wrap { margin-bottom: 48px; }
.branches-search-box { position: relative; display: inline-flex; align-items: center; width: 320px; max-width: 100%; border: 1.5px solid #d0d0d0; border-radius: 10px; background: #fff; overflow: hidden; transition: border-color 0.2s; }
.branches-search-box:focus-within { border-color: var(--primary-orange); }
.branches-search-icon { position: absolute; left: 14px; color: #aaa; font-size: 0.9rem; pointer-events: none; }
.branches-search-input { width: 100%; border: none; outline: none; padding: 12px 14px 12px 38px; font-size: 0.88rem; color: var(--text-dark); background: transparent; font-family: inherit; }
.branches-search-input::placeholder { color: #b0b0b0; }
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.branch-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: transform 0.35s ease, box-shadow 0.35s ease; display: flex; flex-direction: column; }
.branch-card:hover { transform: translateY(-6px); box-shadow: 0 10px 36px rgba(0,0,0,0.12); }
.branch-card-img-wrap { position: relative; height: 240px; overflow: hidden; }
.branch-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; background: #e8e8e8; }
.branch-card:hover .branch-card-img { transform: scale(1.04); }
.branch-badge { position: absolute; top: 14px; left: 14px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.branch-badge-hq { background: var(--primary-orange); color: #fff; }
.branch-badge-sales { background: rgba(255,255,255,0.85); color: #555; backdrop-filter: blur(4px); }
.branch-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.branch-city { font-size: 0.82rem; font-weight: 800; color: var(--primary-orange); letter-spacing: 0.08em; margin: 0 0 12px; }
.branch-address, .branch-phone { font-size: 0.8rem; color: #555; line-height: 1.65; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 7px; }
.branch-phone { margin-bottom: 18px; align-items: center; }
.branch-icon { color: var(--primary-orange); font-size: 0.78rem; flex-shrink: 0; margin-top: 3px; }
.branch-phone .branch-icon { margin-top: 0; }
.branch-btn { background: var(--primary-orange); color: #fff !important; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 8px; padding: 10px 0; width: 100%; text-align: center; text-decoration: none; margin-top: auto; transition: background 0.2s, transform 0.15s; border: none; }
.branch-btn:hover { background: #e05e00; transform: translateY(-1px); }
.branches-no-results { text-align: center; color: #999; font-size: 0.9rem; margin-top: 40px; }
@media (max-width: 991px) { .branches-grid { grid-template-columns: repeat(2, 1fr); } .branches-map-section { height: 340px; } }
@media (max-width: 600px) { .branches-grid { grid-template-columns: 1fr; } .branches-map-section { height: 260px; } .branches-search-box { width: 100%; } }

/* ── Subsidiaries page ── */
.si-hero { background: #f7f8fa; padding: 160px 0 80px; text-align: center; }
.si-hero-badge { display: inline-block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary-orange); margin-bottom: 20px; }
.si-hero-title { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; color: var(--text-dark); line-height: 1.05; letter-spacing: -1px; margin: 0 0 24px; }
.si-hero-sub { font-size: 1rem; color: #555; line-height: 1.75; max-width: 540px; margin: 0 auto; }
.si-block { padding: 100px 0; }
.si-block--gray { background: #f7f8fa; }
.si-block--white { background: #fff; }
.si-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.si-row--reverse .si-text { order: 2; }
.si-row--reverse .si-mosaic { order: 1; }
.si-tag { display: inline-block; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary-orange); background: #fff3eb; padding: 4px 10px; border-radius: 4px; margin-bottom: 20px; }
.si-block-title { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--text-dark); line-height: 1.1; margin: 0 0 20px; letter-spacing: -0.5px; }
.si-block-desc { font-size: 0.92rem; color: #555; line-height: 1.85; margin: 0; }
.si-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; height: 440px; overflow: hidden; }
.si-mosaic-tall { border-radius: 16px; overflow: hidden; min-height: 0; }
.si-mosaic-tall img { width: 100%; height: 100%; object-fit: cover; display: block; }
.si-mosaic-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; min-height: 0; }
.si-mosaic-img { border-radius: 12px; overflow: hidden; min-height: 0; }
.si-mosaic-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 991px) { .si-row { grid-template-columns: 1fr; gap: 40px; } .si-row--reverse .si-text, .si-row--reverse .si-mosaic { order: unset; } .si-mosaic { height: 300px; } .si-block { padding: 64px 0; } .si-hero { padding: 130px 0 60px; } }
@media (max-width: 600px) { .si-mosaic { height: 240px; gap: 8px; } }

/* ── Home page (full Index sections) ── */
.home-subs-section { background: #fff; padding: 80px 0; }
.home-subs-header { display: flex; align-items: flex-end; gap: 24px; margin-bottom: 48px; padding-bottom: 16px; flex-wrap: nowrap; }
.home-subs-header > .shrink-0:first-child { max-width: 480px; flex-shrink: 1; }
.home-subs-divider { flex: 1; min-width: 20px; height: 1px; background: #ccc; opacity: 0.6; margin-bottom: 4px; }
@media (max-width: 767px) { .home-subs-header { flex-wrap: wrap; gap: 12px; margin-bottom: 32px; } .home-subs-header > .shrink-0:first-child { max-width: 100%; flex-shrink: 0; } .home-subs-divider { display: none !important; } }

/* Long TR titles ("Premium Çözümlerimiz") overflow text-4xl on phone widths */
@media (max-width: 767px) {
    .home-subs-header h3,
    .solutions-header h3 { font-size: 1.75rem; line-height: 1.2; }
    .home-subs-header p,
    .solutions-header p { font-size: 1.05rem; }
}
.home-subs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; isolation: isolate; align-items: stretch; }
.home-subs-card { background: #f7f8fa; border-radius: 16px; padding: 40px 32px 36px; display: flex; flex-direction: column; min-height: 280px; border: 1px solid rgba(0,0,0,0.05); transition: box-shadow 0.3s ease; position: relative; z-index: 1; }
.home-subs-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-4px); transition: box-shadow 0.3s ease, transform 0.3s ease; }
.home-subs-card-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: #fff3eb; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; flex-shrink: 0; }
.home-subs-card-icon { font-size: 1.2rem; color: var(--primary-orange); }
.home-subs-card-title { font-size: 1.05rem; font-weight: 800; color: var(--primary-orange); margin: 0 0 10px; line-height: 1.25; }
.home-subs-card-body { font-size: 0.85rem; color: #666; line-height: 1.7; flex: 1; margin: 0 0 20px; }
.home-subs-card-link { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s, gap 0.2s; margin-top: auto; }
.home-subs-card-link:hover { color: var(--primary-orange); gap: 10px; }
.home-subs-cta-card { grid-column: 2 / span 2; grid-row: 2; background: linear-gradient(135deg, #fa6a02 0%, #c84e00 100%); border-radius: 20px; padding: 52px 44px; display: flex; align-items: center; gap: 40px; position: relative; overflow: hidden; min-height: 280px; }
.home-subs-cta-card::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.home-subs-cta-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%); pointer-events: none; }
.home-subs-cta-content { flex: 1; position: relative; z-index: 2; }
.home-subs-cta-title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; color: #fff; line-height: 1.18; margin: 0 0 12px; }
.home-subs-cta-body { font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.75; margin: 0; max-width: 420px; }
.home-news-section { background: #f7f8fa; padding: 80px 0; }
.home-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.home-news-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; position: relative; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.home-news-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-4px); }
.home-news-card-img { height: 196px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%); position: relative; flex-shrink: 0; }
.home-news-card-img--2 { background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }
.home-news-card-img--3 { background: linear-gradient(135deg, #1c1c1c 0%, #3a1a00 60%, #fa6a02 100%); }
.home-news-card-cat { position: absolute; bottom: 16px; left: 16px; background: var(--primary-orange); color: #fff; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; }
.home-news-card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.home-news-card-date { font-size: 0.72rem; font-weight: 600; color: #999; letter-spacing: 0.04em; margin-bottom: 10px; display: block; }
.home-news-card-title { font-size: 1rem; font-weight: 800; color: var(--text-dark); line-height: 1.35; margin: 0 0 12px; }
.home-news-card-excerpt { font-size: 0.84rem; color: #777; line-height: 1.7; flex: 1; margin: 0 0 20px; }
.home-news-card-link { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s, gap 0.2s; margin-top: auto; }
.home-news-card-link:hover { color: var(--primary-orange); gap: 10px; }
@media (max-width: 991px) { .home-subs-grid { grid-template-columns: repeat(2, 1fr); } .home-subs-cta-card { grid-column: 1 / span 2; grid-row: auto; } .home-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .home-subs-grid { grid-template-columns: 1fr; } .home-news-grid { grid-template-columns: 1fr; } .home-subs-cta-card { grid-column: 1; grid-row: auto; flex-direction: column; align-items: flex-start; gap: 20px; } }

/* CSS Isolation Mirror — Index.cshtml (Awards Ticker) */
.awards-ticker-section { background: #fff; padding: 80px 0; }
.awards-ticker-outer { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%); padding: 8px 0 20px; margin: 0 clamp(1.5rem, calc((100vw - 1320px) / 2 + 2.5rem), 50vw); }
.awards-ticker-track { display: flex; gap: 20px; width: max-content; animation: awards-ticker-scroll 40s linear infinite; }
.awards-ticker-track:hover { animation-play-state: paused; }
@keyframes awards-ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.award-ticker-card { width: 300px; flex-shrink: 0; background: #fff; border-radius: 16px; padding: 28px 24px 52px; position: relative; box-shadow: 0 2px 12px rgba(0,0,0,0.06); min-height: 240px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.award-ticker-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.11); }
.award-ticker-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.award-icon-wrap { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--primary-orange); display: flex; align-items: center; justify-content: center; background: #fff6f0; }
.award-icon { font-size: 1.3rem; color: var(--primary-orange); }
.award-year { font-size: 0.72rem; font-weight: 800; color: var(--primary-orange); letter-spacing: 0.05em; }
.award-title { font-size: 1rem; font-weight: 800; color: var(--text-dark); line-height: 1.3; margin-bottom: 10px; }
.award-desc { font-size: 0.82rem; color: #666; line-height: 1.7; margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.award-tag { position: absolute; bottom: 20px; left: 24px; display: flex; align-items: center; gap: 5px; font-size: 0.68rem; font-weight: 700; color: #aaa; letter-spacing: 0.05em; text-transform: uppercase; }
.award-tag i { font-size: 0.72rem; color: #bbb; }

/* ── Over the Ordinary — handwriting emphasis inside the localized title ── */
.oor-script { font-size: 1.2em; }

/* ── GSAP will-change hints ── */
.over-ordinary-section .badge-outline-orange,
.section-title,
.stat-item,
.solution-card-wrap,
.solution-card,
.banner-huge-number,
.banner-text,
.about-header .col-lg-6,
.tl-year-col,
.tl-content-col,
.milestone-label,
.milestone-headline,
.milestone-stat,
.milestone-body,
.about-today-big,
.about-today .tl-border-start,
.about-quote,
[data-animate] {
    will-change: transform, opacity;
}

/* ── Footer social icons — compact size to fit 6 in one row ── */
.social-icon-btn {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.8rem !important;
}

