/* ==========================================================================
   Oya Döviz — müşteri yüzü
   Palet ve düzen: açık tema, turuncu-kırmızı vurgu, köşeli hatlar.
   ========================================================================== */

:root {
    --brand: #ec430f;
    --brand-dark: #c93507;
    --crimson: #bf3654;
    --gold: #fab915;
    --ink: #252525;
    --ink-2: #333333;
    --muted: #6b7280;
    --line: #e5e5e5;
    --soft: #f5f5f5;
    --up: #16803c;
    --radius: 4px;

    --bs-body-font-family: 'Poppins', 'Segoe UI', Tahoma, Arial, sans-serif;
    --bs-body-color: var(--ink);
    --bs-link-color: var(--crimson);
    --bs-link-color-rgb: 191, 54, 84;
    --bs-link-hover-color: var(--brand);
    --bs-link-hover-color-rgb: 236, 67, 15;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--bs-body-font-family);
    color: var(--ink);
    background: #fff;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

/* ---------- Butonlar ---------- */
.btn {
    border-radius: var(--radius);
    font-weight: 500;
}

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--brand-dark);
    --bs-btn-hover-border-color: var(--brand-dark);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--brand-dark);
    --bs-btn-active-border-color: var(--brand-dark);
    --bs-btn-focus-shadow-rgb: 236, 67, 15;
}

.btn-outline-brand {
    --bs-btn-color: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--brand);
    --bs-btn-hover-border-color: var(--brand);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--brand-dark);
    --bs-btn-active-border-color: var(--brand-dark);
}

.btn-lang {
    --bs-btn-color: #d4d4d4;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(255, 255, 255, .1);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgba(255, 255, 255, .1);
    --bs-btn-active-border-color: transparent;
    --bs-btn-focus-shadow-rgb: 255, 255, 255;
}

.form-control,
.form-select {
    border-radius: var(--radius);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(236, 67, 15, .15);
}

.fi {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
}

/* ---------- Üst şerit ---------- */
.topbar {
    position: relative;
    /* .site-header sticky (z-index 1030); üst şeritteki dil menüsü onun üstünde açılsın diye daha yüksek. */
    z-index: 1031;
    background: var(--ink-2);
    color: #aaa;
    font-size: .8125rem;
    padding: .35rem 0;
}

.topbar a {
    color: #aaa;
}

.topbar a:hover {
    color: var(--gold);
}

.topbar__info span + span {
    margin-inline-start: 1.5rem;
}

.topbar__info i {
    color: var(--brand);
    margin-inline-end: .35rem;
}

.topbar__link i {
    margin-inline-end: .25rem;
}

/* ---------- Başlık ve menü ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.site-header .navbar {
    padding-block: .6rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--ink);
}

.brand-logo {
    flex: 0 0 auto;
    object-fit: contain;
}

/* Koyu zeminde lacivert halka görünsün diye beyaz daire altlığı */
.brand-logo--badge {
    padding: 3px;
    border-radius: 50%;
    background: #fff;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--ink);
}

.brand-text small {
    font-size: .68rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.main-nav .nav-link {
    position: relative;
    padding: .6rem 1rem;
    color: var(--ink-2);
    font-weight: 500;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.main-nav .nav-link:hover {
    color: var(--brand);
}

.main-nav .nav-link.active {
    color: var(--crimson);
}

@media (min-width: 992px) {
    .main-nav .nav-link::after {
        content: '';
        position: absolute;
        inset-inline: 1rem;
        bottom: .2rem;
        height: 2px;
        background: var(--brand);
        transform: scaleX(0);
        transition: transform .2s ease;
    }

    .main-nav .nav-link:hover::after,
    .main-nav .nav-link.active::after {
        transform: scaleX(1);
    }
}

.mobile-extras {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: .75rem 0 .25rem;
    border-top: 1px solid var(--line);
}

.mobile-extras .btn-lang {
    --bs-btn-color: var(--ink-2);
    --bs-btn-hover-color: var(--ink);
    --bs-btn-hover-bg: var(--soft);
    --bs-btn-active-color: var(--ink);
    --bs-btn-active-bg: var(--soft);
    border-color: var(--line);
}

/* ---------- Hero ---------- */
.hero .carousel-item {
    transition: opacity .8s ease;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    /* Slider her çözünürlükte aynı oranda: 1920×700 (görseller yüklenirken bu orana kırpılır) */
    aspect-ratio: 1920 / 700;
    min-height: 22rem;
    color: #fff;
    background: #1b1b1b center / cover no-repeat;
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .2) 60%, transparent 100%);
}

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

.hero-slide__content {
    max-width: 560px;
    padding-block: 3rem 4rem;
    margin-inline-end: auto;
}

[dir='rtl'] .hero-slide__content {
    margin-inline-start: auto;
    margin-inline-end: 0;
}

[dir='rtl'] .hero-slide::before {
    background: linear-gradient(270deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .2) 60%, transparent 100%);
}

.hero-slide__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .25rem .75rem;
    border-inline-start: 3px solid var(--brand);
    background: rgba(255, 255, 255, .08);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-slide__title {
    font-size: clamp(1.9rem, 4.4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-slide__text {
    font-size: 1.05rem;
    color: #e5e5e5;
    margin-bottom: 1.75rem;
}

.hero .carousel-indicators [data-bs-target] {
    width: 34px;
    height: 4px;
    border: 0;
    background: #fff;
}

.hero .carousel-indicators .active {
    background: var(--brand);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 6%;
}

/* ---------- Bölümler ---------- */
.section {
    padding: 4.5rem 0;
}

.section--gray {
    background: var(--soft);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.section-head h2,
.section-title {
    position: relative;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.25rem;
    padding-bottom: .9rem;
}

.section-head h2::after,
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 56px;
    height: 3px;
    background: var(--brand);
}

.section-head h2::after {
    inset-inline-start: 50%;
    transform: translateX(-50%);
}

[dir='rtl'] .section-head h2::after {
    transform: translateX(50%);
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.lead-text {
    font-size: 1.05rem;
    color: #4b5563;
}

/* ---------- Kur tablosu ---------- */
.tcmb-notice {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    background: #fff8e8;
    border: 1px solid #f7d998;
    border-inline-start: 4px solid var(--gold);
    border-radius: var(--radius);
}

.tcmb-notice__icon {
    flex: 0 0 auto;
    margin-top: .15rem;
    font-size: 1.1rem;
    color: var(--brand);
}

.tcmb-notice__text {
    color: var(--ink);
    font-weight: 500;
    line-height: 1.5;
}

.rate-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.rate-card__bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.25rem;
    background: var(--ink);
    color: #d4d4d4;
    font-size: .85rem;
}

.rate-card__bar strong {
    color: #fff;
}

.rate-card__link {
    color: var(--gold);
    font-weight: 500;
}

.rate-card__link:hover {
    color: #fff;
}

.rate-table {
    --bs-table-bg: transparent;
    margin: 0;
}

.rate-table thead th {
    background: var(--soft);
    color: var(--ink);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 2px solid var(--brand);
    white-space: nowrap;
}

.rate-table th,
.rate-table td {
    padding: .85rem 1.1rem;
}

.rate-table tbody tr:hover {
    background: #fff7f3;
}

.rate-table .rate-value {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    white-space: nowrap;
}

/* Tıklanabilir satır: geçmiş kur grafiğini açar */
.rate-row {
    cursor: pointer;
}

.rate-row:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: -2px;
}

.rate-row__icon {
    margin-inline-start: .5rem;
    color: #c4c4c4;
    transition: color .15s ease;
}

.rate-row:hover .rate-row__icon,
.rate-row:focus-visible .rate-row__icon {
    color: var(--brand);
}

.modal-rates .rate-buy { color: var(--up); }
.modal-rates .rate-sell { color: var(--brand); }

.modal-header {
    background: var(--ink);
    color: #fff;
    border-bottom: 3px solid var(--brand);
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: .85;
}

.rate-table .rate-buy { color: var(--up); }
.rate-table .rate-sell { color: var(--brand); }

.rate-table .fi {
    width: 1.6em;
    line-height: 1.2em;
    border-radius: 2px;
}

.rate-table .rate-unit {
    color: var(--muted);
    font-size: .75rem;
}

@keyframes flash-up {
    from { background: rgba(22, 128, 60, .25); }
    to { background: transparent; }
}

@keyframes flash-down {
    from { background: rgba(236, 67, 15, .25); }
    to { background: transparent; }
}

.flash-up { animation: flash-up 1.6s ease-out; }
.flash-down { animation: flash-down 1.6s ease-out; }

.live-dot {
    display: inline-block;
    width: .55rem;
    height: .55rem;
    margin-inline-end: .3rem;
    border-radius: 50%;
    background: #34c37f;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 195, 127, .6); }
    70% { box-shadow: 0 0 0 .5rem rgba(52, 195, 127, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 195, 127, 0); }
}

/* ---------- Araç kartları (çevirici, grafik, iletişim) ---------- */
.tool-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.tool-card__head {
    padding: .95rem 1.25rem;
    background: var(--ink);
    color: #fff;
    border-bottom: 3px solid var(--brand);
}

.tool-card__head h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.tool-card__head i {
    color: var(--gold);
    margin-inline-end: .35rem;
}

.tool-card__body {
    padding: 1.5rem;
}

.tool-card .btn-outline-light {
    --bs-btn-color: #d4d4d4;
    --bs-btn-border-color: #555;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--brand);
    --bs-btn-hover-border-color: var(--brand);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--brand);
    --bs-btn-active-border-color: var(--brand);
}

.converter-result {
    padding: 1rem 1.25rem;
    border-inline-start: 4px solid var(--brand);
    background: #fff4ef;
}

.converter-result__value {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--ink);
    word-break: break-word;
}

.chart-select {
    width: auto;
    min-width: 8rem;
}

.chart-box {
    position: relative;
    height: 22.5rem;
}

/* ---------- Özellikler ---------- */
.feature {
    display: flex;
    gap: 1rem;
    height: 100%;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 12px 28px rgba(236, 67, 15, .12);
}

.feature__icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 1.5rem;
}

.feature__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .35rem;
}

.feature__text {
    color: var(--muted);
    font-size: .92rem;
}

.about-art {
    border-radius: var(--radius);
}

.about-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    padding: 3rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.about-logo {
    width: 100%;
    height: auto;
}

/* ---------- Çağrı bandı ---------- */
.cta {
    background: linear-gradient(90deg, var(--brand), var(--crimson));
    color: #fff;
    padding: 2.75rem 0;
}

.cta__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.cta__phone {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    white-space: nowrap;
}

.cta__phone:hover {
    color: var(--gold);
}

.cta .btn-light {
    color: var(--brand);
    font-weight: 600;
}

/* ---------- Sayfa başlığı ---------- */
.page-banner {
    background: linear-gradient(135deg, #1b1b1b, #3a2a25);
    color: #fff;
    padding: 2.75rem 0;
    border-bottom: 4px solid var(--brand);
}

.page-banner__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.page-banner__crumbs {
    --bs-breadcrumb-divider-color: #9ca3af;
    --bs-breadcrumb-item-active-color: var(--gold);
    font-size: .875rem;
}

.page-banner__crumbs a {
    color: #d4d4d4;
}

.page-banner__crumbs a:hover {
    color: #fff;
}

/* ---------- Kurumsal metinler ---------- */
.prose p {
    font-size: 1.02rem;
    color: #374151;
    margin-bottom: 1.1rem;
}

.prose__closing {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: .25rem !important;
}

.prose__signature {
    color: var(--crimson);
    font-weight: 600;
    font-style: italic;
}

.vision-quote {
    position: relative;
    margin: 0;
    padding: 2rem 2rem 2rem 4.5rem;
    background: var(--soft);
    border-inline-start: 5px solid var(--brand);
    border-radius: var(--radius);
}

[dir='rtl'] .vision-quote {
    padding: 2rem 4.5rem 2rem 2rem;
}

.vision-quote p {
    margin: 0;
    font-size: 1.12rem;
    color: #374151;
}

.vision-quote__mark {
    position: absolute;
    top: .6rem;
    inset-inline-start: 1rem;
    font-size: 3rem;
    color: var(--brand);
    line-height: 1;
}

.value-chip {
    height: 100%;
    padding: .8rem 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 500;
}

.value-chip i {
    color: var(--brand);
    margin-inline-end: .4rem;
}

/* ---------- İletişim ---------- */
.contact-list li {
    display: flex;
    gap: 1rem;
    padding-block: .9rem;
}

.contact-list li + li {
    border-top: 1px dashed var(--line);
}

.contact-list__icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff4ef;
    color: var(--brand);
    font-size: 1.15rem;
}

.map-wrap {
    position: relative;
    background: var(--soft);
}

.map-frame {
    display: block;
    width: 100%;
    height: 26rem;
    border: 0;
}

/* Bal tuzağı: ekranın dışında, insanlara görünmez */
.hp-field {
    position: absolute;
    inset-inline-start: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- Alt bilgi ---------- */
.site-footer {
    background: #1b1b1b;
    color: #b5b5b5;
    padding-top: 3.5rem;
    font-size: .92rem;
}

.site-footer a {
    color: #b5b5b5;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: #fff !important;
    font-size: 1.3rem;
}

.footer-title {
    position: relative;
    margin-bottom: 1.25rem;
    padding-bottom: .7rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 40px;
    height: 2px;
    background: var(--brand);
}

.footer-links li,
.footer-contact li {
    margin-bottom: .6rem;
}

.footer-links i {
    font-size: .7rem;
    color: var(--brand);
}

[dir='rtl'] .footer-links .bi-chevron-right::before {
    content: '\f284';
}

.footer-contact li {
    display: flex;
    gap: .75rem;
}

.footer-contact i {
    color: var(--brand);
    margin-top: .3rem;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1rem 0;
    background: #141414;
    font-size: .82rem;
}

.scroll-top {
    position: fixed;
    inset-block-end: 1.25rem;
    inset-inline-end: 1.25rem;
    z-index: 1040;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: var(--radius);
    background: var(--brand);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}

.scroll-top:hover {
    background: var(--brand-dark);
}

.scroll-top[hidden] {
    display: none;
}

/* ---------- Duyarlı düzen ---------- */
@media (max-width: 991.98px) {
    .section {
        padding: 3.25rem 0;
    }

    .hero-slide {
        aspect-ratio: auto;
        min-height: 30rem;
    }

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-slide {
        aspect-ratio: auto;
        min-height: 28rem;
    }

    .hero-slide__content {
        padding-block: 2rem 3.5rem;
    }

    .section-head h2,
    .section-title {
        font-size: 1.5rem;
    }

    .chart-box {
        height: 18rem;
    }

    .tool-card__body {
        padding: 1.1rem;
    }

    .rate-table th,
    .rate-table td {
        padding: .7rem .75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .flash-up,
    .flash-down,
    .live-dot {
        animation: none;
    }

    .feature,
    .main-nav .nav-link::after {
        transition: none;
    }
}

/* ---------- Çerez izni bildirimi (yalnızca izleme kodu tanımlıysa) ---------- */
.cookie-banner {
    position: fixed;
    inset-inline: 1rem;
    inset-block-end: 1rem;
    z-index: 1060;
    max-width: 44rem;
    margin-inline: auto;
    padding: 1rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem 1.25rem;
    background: var(--ink);
    color: #e5e5e5;
    border-top: 3px solid var(--brand);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    font-size: .9rem;
}

.cookie-banner__text {
    flex: 1 1 18rem;
    margin: 0;
}

.cookie-banner__text a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: .5rem;
}

/* ---------- Yasal metinler (KVKK, çerez politikası) ---------- */
.legal__meta {
    color: #6b7280;
    font-size: .9rem;
    margin-bottom: 1.5rem;
}

.legal {
    color: #374151;
    line-height: 1.75;
}

.legal p,
.legal ul {
    margin-bottom: 1.1rem;
}

.legal ul {
    padding-inline-start: 1.4rem;
}

.legal li {
    margin-bottom: .4rem;
}

.legal__heading {
    margin: 2.25rem 0 .9rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
}

.legal__table {
    font-size: .92rem;
}

.legal__table thead {
    background: var(--soft);
}

.legal__note {
    font-size: .9rem;
    color: #6b7280;
}

/* Alt bilgi: yasal bağlantılar */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1.5rem;
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-legal a,
.footer-legal__btn {
    padding: 0;
    border: 0;
    background: none;
    color: #d4d4d4;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.footer-legal a:hover,
.footer-legal__btn:hover {
    color: #fff;
}

/* Harita: Google'a yalnızca ziyaretçi isterse bağlanılır */
.map-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 16rem;
    padding: 2rem 1.25rem;
    text-align: center;
    color: #4b5563;
}

.map-consent > i {
    font-size: 2.5rem;
    color: var(--brand);
}

.map-consent p {
    max-width: 38rem;
    margin: 0;
}

/* Hero video: görselle aynı şekilde kaplar */
.hero-slide__video {
    background: #1b1b1b;
}