/* ==========================================================================
   Bodrum Marin - Main Stylesheet
   Based on Prestige Yachts design reference
   ========================================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: color .3s, opacity .3s; }
a:hover { opacity: .85; }

img { max-width: 100%; height: auto; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; padding: 0; }
.col { flex: 1 0 0%; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    transition: all .3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.btn-primary:hover { background: #333; border-color: #333; opacity: 1; }

.btn-primary.btn-inversed {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-primary.btn-inversed:hover { background: #fff; color: #1a1a1a; }

.btn-tertiary {
    background: transparent;
    color: #fff;
    border-color: #fff;
    font-size: 10px;
    padding: 10px 25px;
}
.btn-tertiary:hover { background: rgba(255,255,255,.15); opacity: 1; }

.btn-model {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    transition: all .3s;
}
.btn-model:hover { border-color: #fff; background: rgba(255,255,255,.15); opacity: 1; }

.btn-model.is-new { border-color: #b08449; color: #b08449; }

.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- HEADER / NAVBAR ---------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .4s, box-shadow .4s;
}

#header.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.navbar-prestige {
    position: relative;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 90px;
}

.icons-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    position: relative;
    min-width: 180px;
    height: 45px;
}

.brand .logo-img {
    height: 45px;
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity .4s;
}

.brand .logo-img.logo-sticky {
    opacity: 0;
}

.brand .logo-img.logo-default {
    opacity: 1;
}

#header.scrolled .brand .logo-img.logo-sticky {
    opacity: 1;
}

#header.scrolled .brand .logo-img.logo-default {
    opacity: 0;
}

#header.scrolled #items-container-submenu .menu a {
    color: #1a1a1a;
}

#header.scrolled #items-container-submenu .menu a:hover {
    color: #b08449;
}

#header.scrolled .navbar-toggle {
    color: #1a1a1a;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle.hide { display: none !important; }

#items-container-submenu {
    display: flex;
    align-items: center;
    flex: 1;
}

#items-container-submenu .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0;
}

#items-container-submenu .menu a {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 30px 28px;
    transition: color .3s;
    white-space: nowrap;
}

#items-container-submenu .menu a:hover {
    color: #b08449;
    opacity: 1;
}

/* Sub-navbar for categories */
.sub-navbar-prestige {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(20,20,20,.97);
    padding: 40px;
    display: none;
    z-index: 999;
    animation: fadeIn .3s ease;
}

.sub-navbar-prestige.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.backToMenu {
    display: none;
    color: #fff;
    cursor: pointer;
    margin-bottom: 20px;
    font-size: 14px;
}
.backToMenu i { margin-right: 8px; }

.model-lines .lines {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.model-lines .line {
    text-align: center;
}

.model-lines .line > a {
    display: block;
    color: #fff;
    margin-bottom: 20px;
}

.model-lines .line > a > div {
    width: 200px;
    height: 80px;
    margin: 0 auto 10px;
}

.model-lines .line > a span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    letter-spacing: 2px;
}

.model-lines .models div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.model-lines .models a {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.3);
    transition: all .3s;
}

.model-lines .models a:hover {
    border-color: #fff;
    opacity: 1;
}

.model-lines .models a.is-new { border-color: #b08449; color: #b08449; }
.model-lines .models a .new {
    display: inline-block;
    font-size: 8px;
    text-transform: uppercase;
    color: #b08449;
    vertical-align: super;
    margin-left: 3px;
}

/* ---------- SLIDER (Vögel-style) ---------- */
#simulator-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0b1620;
}

#simulator-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

#simulator-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

#simulator-slider .default-slide {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Mobile/Web slider visibility */
#simulator-slider .slider-mobile { display: none; }
@media (max-width: 767px) {
    #simulator-slider .slider-mobile { display: block; }
    #simulator-slider.has-mobile .slider-web { display: none; }
}

.slider-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

/* Vögel-style left text panel */
.text-header-container {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 5;
    padding: 0 60px;
    max-width: 720px;
    width: 100%;
}

.text-header-inner {
    position: relative;
    padding-left: 28px;
    border-left: 4px solid #d3501f; /* turuncu çubuk */
}

.text-header-inner .title {
    color: #fff;
    font-family: 'Exo', 'Inter', sans-serif;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin: 0 0 22px;
    text-shadow: 0 2px 24px rgba(0,0,0,.45);
}

.text-header-inner .subtitle {
    color: rgba(255,255,255,.92);
    font-family: 'Exo', 'Inter', sans-serif;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: .2px;
    margin: 0 0 28px;
    max-width: 540px;
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

.text-header-inner .btn-tertiary,
.text-header-inner .btn {
    display: inline-block;
    background: #d3501f;
    color: #fff;
    font-family: 'Exo', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: background .25s, transform .25s;
}

.text-header-inner .btn-tertiary:hover,
.text-header-inner .btn:hover {
    background: #b9421a;
    transform: translateY(-1px);
}

/* Slider Controls (sağ-orta dikey gibi görünen oklar) */
.slider-controls {
    position: absolute;
    bottom: 32px;
    right: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 14px;
}

.slider-controls button.slider-prev,
.slider-controls button.slider-next {
    background: rgba(255,255,255,.95);
    border: none;
    color: #1a8754;
    width: 56px; height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    font-size: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
}

.slider-controls button.slider-prev:hover,
.slider-controls button.slider-next:hover {
    background: #d3501f;
    color: #fff;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.slider-dots .dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* ---------- CATEGORIES SECTION ---------- */
.categories-section {
    padding: 60px 0 80px;
    text-align: center;
}

.categories-section .mainTitle {
    margin-bottom: 0;
}

.categories-section .mainTitle a {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: #545759;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.categories-section .baseline {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 6px;
    line-height: 22px;
    color: #b08449;
    text-transform: uppercase;
    margin: 0;
}

.categories-section hr {
    width: 40px;
    border: none;
    border-top: 2px solid #1a1a1a;
    margin: 20px auto 40px;
}

/* Categories Track (carousel wrapper) */
.categories-track-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 30px;
}

.categories-track {
    display: flex;
    gap: 20px;
    transition: transform .5s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.categories-track:active { cursor: grabbing; }

.categories-track[data-count="1"] .categories-slide { flex: 0 0 100%; }
.categories-track[data-count="2"] .categories-slide { flex: 0 0 calc(50% - 10px); }
.categories-track[data-count="3"] .categories-slide { flex: 0 0 calc(33.333% - 14px); }
.categories-track:not([data-count="1"]):not([data-count="2"]):not([data-count="3"]) .categories-slide {
    flex: 0 0 calc(33.333% - 14px);
}

.categories-slide {
    min-width: 0;
}

/* Carousel nav buttons */
.cat-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}
.cat-nav:hover { background: rgba(0,0,0,.8); }
.cat-prev { left: 5px; }
.cat-next { right: 5px; }

/* Line Item Card */
.line-item {
    position: relative;
    overflow: hidden;
}

.line-item .img-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.line-item .img-container::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100%;
    background: linear-gradient(0deg, #000 5%, transparent 50%);
    pointer-events: none;
}

.line-item .img-container img {
    display: none;
}

.line-item .img-container .image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.line-item .img-container .placeholder-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.line-item:hover .img-container .image {
    transform: scale(1.05);
}

/* Boat Box Overlay */
.boat-box {
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    z-index: 5;
}

.boat-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Default state - category name at bottom */
.mask-reverse {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    transition: opacity .4s;
    z-index: 2;
}

.mask-reverse .title {
    color: #fff;
    font-size: 22px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}

/* Hover state - full overlay with details */
.mask {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,.7);
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.line-item:hover .mask {
    display: flex;
}

.line-item:hover .mask-reverse {
    opacity: 0;
}

.line-item:hover .img-container::after {
    background: none;
}

.mask .title {
    color: #fff;
    font-size: 26px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 30px;
}

.mask .links {
    flex: 1;
    display: flex;
    align-items: center;
}

.mask .links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.mask .links ul li {
    display: inline-block;
}

.btn-model {
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    margin: 5px 10px;
    text-decoration: none;
    transition: all .3s ease;
    background: transparent;
    position: relative;
}
.btn-model:hover {
    background-color: #b08449;
    border-color: #b08449;
    color: #fff;
}
.btn-model.is-new {
    padding-right: 30px;
}

.btn-model .new {
    position: absolute;
    right: 4px;
    top: 4px;
    font-size: 8px;
    text-transform: uppercase;
    color: #b08449;
}

.mask .btn-primary.btn-inversed {
    background-color: #b08449;
    border-color: #b08449;
    color: #fff;
    display: block;
    width: 100%;
    padding: 14px 30px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease;
}
.mask .btn-primary.btn-inversed:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

@media (max-width: 991px) {
    .categories-track[data-count="3"] .categories-slide,
    .categories-track:not([data-count="1"]):not([data-count="2"]):not([data-count="3"]) .categories-slide {
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .line-item .img-container { height: 320px; }
    .categories-section { padding: 40px 0 50px; }
    .categories-track .categories-slide { flex: 0 0 100% !important; }
    .categories-track { gap: 10px; }
    .mask .title { font-size: 20px; margin-top: 15px; }
    .mask .btn-primary.btn-inversed { padding: 10px 20px; }
}

/* ---------- LIFESTYLE SECTION ---------- */
.section-lifestyle {
    padding: 80px 0;
    background: #f5f5f3;
}

.section-lifestyle .container > .baseline {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #b08449;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.section-lifestyle .container > h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.sub-block-lifestyle {
    display: grid;
    grid-template-columns: 55fr 45fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 0;
    column-gap: 30px;
    margin-bottom: 40px;
}

.sub-block-lifestyle .block-1-img {
    grid-column: 1;
    grid-row: 1 / 5;
}

.sub-block-lifestyle .block-1-txt {
    grid-column: 1;
    grid-row: 5 / 6;
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    background: #f5f5f3;
}

.sub-block-lifestyle .block-2-img {
    grid-column: 2;
    grid-row: 1 / 2;
}

.sub-block-lifestyle .block-2-txt {
    grid-column: 2;
    grid-row: 2 / 3;
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    background: #f5f5f3;
}

.sub-block-lifestyle .block-3-img {
    grid-column: 2;
    grid-row: 3 / 4;
}

.sub-block-lifestyle .block-3-txt {
    grid-column: 2;
    grid-row: 4 / 5;
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    background: #f5f5f3;
}

.sub-block-lifestyle a {
    display: block;
    overflow: hidden;
}

.sub-block-lifestyle .img-container {
    width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 250px;
    transition: transform .6s;
}

.sub-block-lifestyle .img-container.height-100 { min-height: 500px; height: 100%; }
.sub-block-lifestyle .img-container.height-50 { min-height: 250px; }

.sub-block-lifestyle a:hover .img-container { transform: scale(1.03); }

.sub-block-lifestyle .title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b08449;
    margin-bottom: 15px;
}

.sub-block-lifestyle p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.section-lifestyle .container > div:last-child {
    text-align: center;
}

/* ---------- BANNER SECTIONS ---------- */
.banner {
    padding: 100px 0;
    text-align: center;
}

.banner.backgroundImage {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.banner.backgroundImage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
}

.banner.backgroundImage .container {
    position: relative;
    z-index: 1;
}

.banner.backgroundImage h2 {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.banner.backgroundImage p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.8;
    opacity: .9;
}

.banner.backgroundImage .btn {
    display: inline-block;
    margin-top: 10px;
}

.banner.backgroundWhite {
    background: #fff;
    color: #1a1a1a;
}

.banner.backgroundWhite .baseline {
    font-size: 11px;
    letter-spacing: 4px;
    color: #b08449;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.banner.backgroundWhite h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.banner.backgroundWhite hr {
    width: 40px;
    border: none;
    border-top: 2px solid #1a1a1a;
    margin: 0 auto 30px;
}

.banner.backgroundWhite p, .banner.backgroundWhite div > p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ---------- ACTIONS SECTION ---------- */
#actions {
    padding: 0 40px;
    margin-bottom: 80px;
}

#actions .row {
    margin: 0;
    gap: 30px;
    display: flex;
}

#actions .col-md-6 {
    padding: 0;
    flex: 1;
}

.action {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.action a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.action .img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.action .img-container .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.action:hover .img-container .image {
    transform: scale(1.05);
}

.action .mask {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 40px 40px 35px;
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
}

.action .mask .title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.action .mask p {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
}

.action .mask,
.action .mask * {
    color: #fff !important;
}

/* ---------- BRAND LOGOS CAROUSEL ---------- */
.section-brands {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.section-brands-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.section-brands .brands-baseline {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #b08449;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-brands .brands-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.section-brands .brands-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #545759;
    margin: 0;
}

.brands-carousel {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: brandsScroll 30s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brands-slide {
    flex-shrink: 0;
}

.brands-slide a,
.brands-slide span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.brands-slide img {
    max-height: 55px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform .3s ease, opacity .3s ease;
}

.brands-slide a:hover img {
    filter: none;
    opacity: .85;
    transform: scale(1.04);
}

@keyframes brandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .section-brands { padding: 50px 0; }
    .brands-track { gap: 40px; animation-duration: 20s; }
    .brands-slide img { max-height: 40px; max-width: 120px; }
    .brands-slide a,
    .brands-slide span { height: 45px; }
}

/* ---------- NEWSLETTER / PRE-FOOTER ---------- */
.footer-prestige {
    color: #545759;
}

.footer-prestige .pre-footer {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem 4rem;
    width: 85%;
    margin: 0 auto;
}

.footer-prestige .pre-footer h2 {
    color: #b08449;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    letter-spacing: 6.4px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-prestige .pre-footer .baseline {
    color: #545759;
    font-size: 22px;
    line-height: 28px;
    text-transform: uppercase;
}

.newsletter-form { width: 100%; }
.newsletter-form form { border-bottom: 1px solid #545759; width: 100%; }

.newsletter-form .input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newsletter-form .emailInput { width: 80%; }

.newsletter-form .form-control {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    color: #545759;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 27px;
    outline: none;
}

.newsletter-form .form-control::placeholder { color: #545759; }
.newsletter-form .form-control:focus { outline: none; }

.newsletter-form .submitInput { width: 20%; }

.newsletter-form .submitInput button {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #545759;
    width: 100%;
    padding: 14px 0;
    cursor: pointer;
    font-size: 30px;
    transition: color .3s;
}

.newsletter-form .submitInput button:hover { color: #b08449; }

/* ---------- FOOTER BODY ---------- */
.footer-prestige .body-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 80px;
    padding: 0 0 60px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    color: #545759;
}

.prestige-logo-footer {
    width: 25%;
}

.prestige-logo-footer > a {
    display: block;
    width: 75%;
}

.prestige-logo-footer img {
    width: 100%;
    height: auto;
}

.footer-subtitle {
    color: #737373;
    font-size: 13px;
    letter-spacing: 1px;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
}

.main-menu-foot {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 75%;
}

.main-menu-foot .panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: transparent;
    border: none;
    box-shadow: none;
}

.main-menu-foot .panel .h4 {
    margin: 0 0 10px;
    cursor: default;
}

.main-menu-foot .panel .h4 span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #545759;
    text-transform: uppercase;
}

.main-menu-foot .panel .h4 i { display: none; }

.main-menu-foot .panel ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.main-menu-foot .panel ul li {
    margin-bottom: 2px;
    text-align: start;
}

.main-menu-foot .panel ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 28px;
    color: #545759;
    transition: color .3s;
}

.main-menu-foot .panel ul li a:hover { color: #b08449; opacity: 1; }

.main-menu-foot .panel ul li a .new {
    font-size: 10px;
    text-transform: uppercase;
    color: #b08449;
    vertical-align: super;
    margin-left: 3px;
    font-weight: 700;
}

/* ---------- END FOOTER ---------- */
.footer-prestige .end-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #e3e3e3;
    padding: 40px 0;
    width: 100%;
}

.end-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 91%;
}

.end-footer-link {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.end-footer-link li:not(:last-of-type) { margin-right: 30px; }

.end-footer-link li a,
.end-footer-link li button {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 28px;
    color: #545759;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .3s;
}

.end-footer-link li a:hover,
.end-footer-link li button:hover { color: #b08449; opacity: 1; }

.social-links {
    display: flex;
    align-items: center;
}

.social-links ul {
    list-style: none;
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
}

.social-links ul li { display: inline-block; }

.social-links ul li a {
    display: inline-block;
    color: #545759;
    font-size: 18px;
    margin: 0 10px;
    transition: color .3s;
}

.social-links ul li a:hover {
    color: #b08449;
    opacity: 1;
}

/* ---------- FOOTER DISCLAIMER / BOTTOM TEXT ---------- */
.footer-bottom-text {
    text-align: center;
    padding: 20px 0;
    margin: 0 auto;
    width: 85%;
}

.footer-bottom-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #545759;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-bottom-text p {
    color: #737373;
    font-size: 12px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.footer-bottom-text a {
    color: #b08449;
}

.footer-bottom-text a:hover { text-decoration: underline; }

/* ---------- BACK TO TOP ---------- */
.return-on-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px; height: 45px;
    background: rgba(0,0,0,.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.return-on-top.visible { opacity: 1; visibility: visible; }
.return-on-top:hover { background: #b08449; opacity: 1; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .main-menu { padding: 0 20px; }

    .icons-container {
        width: 100%;
        justify-content: space-between;
        position: relative;
        z-index: 1001;
    }

    .navbar-toggle { display: flex; align-items: center; justify-content: center; }

    #header.menu-open {
        background: #000;
    }
    #header.menu-open .brand img { filter: brightness(0) invert(1); }

    #items-container-submenu {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,.97);
        flex-direction: column;
        padding: 100px 30px 30px;
        overflow-y: auto;
        z-index: 999;
    }

    #items-container-submenu.open { display: flex; }

    #items-container-submenu .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    #items-container-submenu .menu a {
        padding: 15px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,.1);
        width: 100%;
    }

    .sub-navbar-prestige {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        padding: 20px;
        overflow-y: auto;
    }

    .backToMenu { display: block; }

    .model-lines .lines {
        flex-direction: column;
        gap: 30px;
    }

    .sub-block-lifestyle {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .sub-block-lifestyle > * {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .pre-footer {
        flex-direction: column;
        text-align: center;
        padding: 26px 21px;
        width: 87%;
    }

    .newsletter-form .form-control { font-size: 14px; line-height: 19px; }

    .footer-prestige .body-footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
        width: 85%;
    }

    .prestige-logo-footer { width: 100%; text-align: center; }
    .prestige-logo-footer > a { margin: 20px auto; max-width: 210px; }

    .main-menu-foot {
        flex-direction: column;
        width: 100%;
    }

    .main-menu-foot .panel {
        border-bottom: 1px solid #e3e3e3;
        padding: 15px 0;
        width: 100%;
    }

    .main-menu-foot .panel .h4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        cursor: pointer;
        width: 100%;
    }

    .main-menu-foot .panel .h4 i { display: block; transform: rotate(-90deg); transition: all .3s ease-in-out; }
    .main-menu-foot .panel .h4.active-toogle i { transform: rotate(0); }

    .main-menu-foot .panel ul { display: none; padding-top: 15px; }
    .main-menu-foot .panel.open ul { display: block; }

    .footer-prestige .end-footer { padding: 30px 0; }
    .end-footer-inner { flex-direction: column; width: 85%; }
    .social-links { order: 1; margin-bottom: 20px; }
    .end-footer-link { order: 2; justify-content: center; flex-wrap: wrap; }

    .text-header-container { padding: 0 30px 60px; }
    .slider-controls { right: 30px; bottom: 20px; }

    .action { height: 350px; }
}

@media (max-width: 767px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #simulator-slider { min-height: 500px; }

    .categories-section { padding: 50px 15px; }
    .banner { padding: 60px 0; }

    .section-lifestyle { padding: 50px 0; }
    .sub-block-lifestyle .img-container.height-100 { min-height: 300px; }
}

/* ============================================================
   SECTION SPACING — Gaps between consecutive sections
   ============================================================ */
.le-section-wrap + .le-section-wrap { margin-top: 60px; }

/* Remove spacing before/after full-bleed sections (hero, video, image-only) */
.le-section-wrap[data-section-type="hero_banner"] + .le-section-wrap,
.le-section-wrap + .le-section-wrap[data-section-type="hero_banner"],
.le-section-wrap[data-section-type="video_banner"] + .le-section-wrap,
.le-section-wrap + .le-section-wrap[data-section-type="video_banner"],
.le-section-wrap[data-section-type="image_only"] + .le-section-wrap,
.le-section-wrap + .le-section-wrap[data-section-type="image_only"] {
    margin-top: 0;
}

/* No spacing between builtin model blocks (hero, specs, description) */
.le-section-wrap.le-builtin-wrap + .le-section-wrap.le-builtin-wrap {
    margin-top: 0;
}

/* ============================================================
   NEW DYNAMIC SECTION TYPES
   ============================================================ */

/* --- Breadcrumb Banner Section (Vögel-style) --- */
.section-breadcrumb-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    background: #2c3e50;
}
.breadcrumb-banner__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.breadcrumb-banner__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.breadcrumb-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.30);
}
.vogel-bc__content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #fff;
    padding: 0 0 60px 8%;
    max-width: 1400px;
    width: 100%;
    margin: 0;
}
.vogel-bc__title {
    font-family: 'Exo','Inter',sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 7vw, 80px);
    line-height: 1;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 0 #000;
    margin: 0 0 17px;
}
.vogel-bc__pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 38px;
    font-family: 'Exo','Inter',sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.vogel-bc__pill a {
    color: #007E9F;
    text-decoration: none;
    transition: color .2s;
}
.vogel-bc__pill a:hover { color: var(--myg-red, #d3501f); }
.vogel-bc__sep {
    color: var(--myg-red, #d3501f);
    font-weight: 400;
}
.vogel-bc__current {
    color: var(--myg-red, #d3501f);
}
.breadcrumb-banner__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 18px 0 0;
    opacity: 0.92;
    color: #fff;
}
@media (max-width: 768px) {
    .section-breadcrumb-banner { min-height: 320px; }
    .vogel-bc__content { padding: 0 0 36px 5%; }
    .vogel-bc__title { font-size: clamp(34px, 10vw, 56px); letter-spacing: -1.5px; }
    .vogel-bc__pill { padding: 10px 22px; font-size: 12px; gap: 8px; }
}

/* --- Hero Banner --- */
.section-hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    text-align: center;
    padding: 80px 40px;
}
.hero-banner-content { position: relative; z-index: 2; max-width: 800px; display: flex; flex-direction: column; align-items: center; }
.hero-banner-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-banner-subtitle {
    color: rgba(255,255,255,.85);
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* --- Title + Text --- */
.section-title-text {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}
.section-title-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.section-title-text .baseline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b08449;
    margin-bottom: 8px;
}
.section-title-text hr {
    width: 60px; border: 0; border-top: 1px solid #b08449;
    margin: 20px auto 30px;
}
.section-title-text .section-content {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #545759;
}
.section-title-text .section-content--wide {
    max-width: 100%;
}

/* Link colors in all sections */
.section-title-text a:not(.btn),
.section-image-text a:not(.btn),
.section-hero-banner a:not(.btn),
.section-heritage a:not(.btn),
.section-experience a:not(.btn),
.article-section a:not(.btn) {
    color: #0e2044;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s;
}
.section-title-text a:not(.btn):hover,
.section-image-text a:not(.btn):hover,
.section-hero-banner a:not(.btn):hover,
.section-heritage a:not(.btn):hover,
.section-experience a:not(.btn):hover,
.article-section a:not(.btn):hover {
    color: #b08449;
}

/* --- Title Only --- */
.section-title-only {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}
.section-title-only h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
}

/* --- Image Only --- */
.section-image-only {
    width: 100%;
    overflow: hidden;
}
.section-image-only img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Video Banner --- */
.section-video-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.section-video-banner.video-banner--short { min-height: 400px; max-height: 500px; }
.section-video-banner.video-banner--medium { min-height: 550px; max-height: 700px; }
.section-video-banner.video-banner--full { min-height: 100vh; }
.vb-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}
.vb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.55));
    z-index: 1;
}
.vb-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vb-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.vb-subtitle {
    color: rgba(255,255,255,.85);
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .section-video-banner.video-banner--short { min-height: 300px; }
    .section-video-banner.video-banner--medium { min-height: 400px; }
    .vb-content { padding: 40px 20px; }
}

/* --- Image + Text (left/right) — REDESIGNED: boxed, breathing space --- */
.section-image-text {
    display: flex;
    align-items: stretch;
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 24px;
    gap: 48px;
    min-height: auto;
    background: transparent;
}
.section-image-text.reverse { flex-direction: row-reverse; }
.sit-image {
    flex: 0 0 50%;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 18px 50px -20px rgba(14, 32, 68, .25);
    align-self: stretch;
    min-height: 420px;
    position: relative;
}
.sit-image img,
.sit-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* default centered; .focal-* classes override */
    object-position: center center;
}
.sit-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 8px;
}
.sit-content h2 {
    font-family: 'Playfair Display', 'Inter', sans-serif;
    font-size: clamp(26px, 2.4vw, 38px);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    color: #0e2044;
    margin-bottom: 18px;
    line-height: 1.2;
}
.sit-content .baseline {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b08449;
    margin-bottom: 12px;
}
.sit-content p, .sit-content div {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a5060;
}
.sit-content .btn { margin-top: 28px; align-self: flex-start; }

/* Image size variants */
.section-image-text.img-large .sit-image { flex: 0 0 50%; }
.section-image-text.img-medium .sit-image { flex: 0 0 42%; }
.section-image-text.img-small .sit-image { flex: 0 0 34%; }

/* Focal point (image crop position) */
.focal-top-left img, .focal-top-left video       { object-position: 0% 0%; }
.focal-top img, .focal-top video                 { object-position: 50% 0%; }
.focal-top-right img, .focal-top-right video     { object-position: 100% 0%; }
.focal-left img, .focal-left video               { object-position: 0% 50%; }
.focal-center img, .focal-center video           { object-position: 50% 50%; }
.focal-right img, .focal-right video             { object-position: 100% 50%; }
.focal-bottom-left img, .focal-bottom-left video { object-position: 0% 100%; }
.focal-bottom img, .focal-bottom video           { object-position: 50% 100%; }
.focal-bottom-right img, .focal-bottom-right video { object-position: 100% 100%; }

@media (max-width: 991px) {
    .section-image-text, .section-image-text.reverse {
        flex-direction: column;
        gap: 28px;
        margin: 40px auto;
    }
    .sit-image, .sit-content { flex: 0 0 auto !important; }
    .sit-image { min-height: 220px; max-height: none; height: auto; }
    .sit-image img { max-height: 380px; object-fit: cover; }
    .sit-image video {
        height: auto;
        max-height: none;
        object-fit: contain;
        background: #000;
    }
    .sit-content { padding: 0; }
}

/* ============================================================
   ACTION BANNER (Tam genişlik görsel + overlay + sol alt metin)
   ============================================================ */
.section-action-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.action-banner-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.action-banner-media img,
.action-banner-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.action-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 1;
}
.action-banner-content {
    position: relative;
    z-index: 2;
    padding: 50px 60px;
    max-width: 700px;
}
.action-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.action-banner-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 18px;
}
.action-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s;
}
.action-banner-link:hover { opacity: 0.7; }
.action-banner-link i,
.action-banner-link svg { font-size: 0.85rem; }
@media (max-width: 768px) {
    .section-action-banner { min-height: 350px; }
    .action-banner-content { padding: 30px 24px; }
    .action-banner-title { font-size: 1.4rem; }
    .action-banner-subtitle { font-size: 0.85rem; }
}

/* ============================================================
   GALLERY (Çoklu görsel grid + lightbox)
   ============================================================ */
.section-gallery {
    padding: 60px 0;
}
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}
.gallery-upper-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}
.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.gallery-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}
.gallery-item {
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 768px) {
    .section-gallery { padding: 40px 0; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
    .gallery-title { font-size: 1.5rem; }
}

/* ============================================================
   TWO IMAGES (İki görsel + metin layout) — REDESIGNED
   ============================================================ */
.section-two-images {
    padding: 0;
    margin: 70px auto;
    max-width: 1280px;
    padding: 0 24px;
}
.two-images-container {
    display: flex;
    align-items: stretch;
    gap: 48px;
    min-height: auto;
}
.section-two-images.reverse .two-images-container {
    flex-direction: row-reverse;
}
.two-images-media {
    flex: 0 0 50%;
    position: relative;
    min-height: 560px;
    display: block;
}
.ti-image {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 60px -24px rgba(14, 32, 68, .35);
    transition: transform .35s ease, box-shadow .35s ease;
}
.ti-image-primary {
    /* Back card — taller, on the LEFT, slightly higher */
    left: 0;
    top: 0;
    width: 56%;
    height: 86%;
    z-index: 1;
}
.ti-image-secondary {
    /* Front card — overlaps right side, slightly lower */
    right: 0;
    bottom: 0;
    width: 56%;
    height: 78%;
    z-index: 2;
    border: 6px solid #ffffff;
}
.section-two-images.reverse .ti-image-primary {
    left: auto;
    right: 0;
}
.section-two-images.reverse .ti-image-secondary {
    right: auto;
    left: 0;
}
.two-images-media:hover .ti-image-primary { transform: translate(-4px, -4px); }
.two-images-media:hover .ti-image-secondary { transform: translate(4px, 4px); box-shadow: 0 30px 70px -20px rgba(14, 32, 68, .45); }
/* Decorative accent square behind primary image */
.two-images-media::before {
    content: '';
    position: absolute;
    left: -22px;
    top: -22px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #b08449 0%, #d4a455 100%);
    border-radius: 6px;
    opacity: .18;
    z-index: 0;
}
.section-two-images.reverse .two-images-media::before {
    left: auto;
    right: -22px;
}
.two-images-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0;
}
.two-images-content .baseline {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b08449;
    margin-bottom: 12px;
}
.two-images-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 2.4vw, 38px);
    font-weight: 500;
    color: #0e2044;
    margin-bottom: 18px;
    line-height: 1.2;
}
.two-images-content .ti-text {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    color: #4a5060;
    line-height: 1.8;
    margin-bottom: 24px;
}
@media (max-width: 991px) {
    .section-two-images { margin: 40px auto; }
    .two-images-container, .section-two-images.reverse .two-images-container {
        flex-direction: column;
        gap: 28px;
    }
    .two-images-media, .two-images-content { flex: 0 0 auto; width: 100%; }
    .two-images-media { min-height: 460px; max-width: 460px; margin: 0 auto; }
    .two-images-content { padding: 0; text-align: left; }
}
@media (max-width: 540px) {
    .two-images-media { min-height: 380px; }
    .ti-image-primary { width: 60%; height: 84%; }
    .ti-image-secondary { width: 62%; height: 70%; }
    .two-images-media::before { width: 70px; height: 70px; left: -10px; top: -10px; }
}

/* ============================================================
   CONTACT FORM (Standalone)
   ============================================================ */
.section-contact-form {
    padding: 80px 20px;
    background: #f8f8f8;
}
.cf-container {
    max-width: 800px;
    margin: 0 auto;
}
.cf-header {
    text-align: center;
    margin-bottom: 40px;
}
.cf-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 10px;
}
.cf-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.cf-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}
.cf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cf-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 6px;
}
.cf-field input, .cf-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: #fff;
    transition: border-color 0.2s;
}
.cf-field input:focus, .cf-field textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}
.cf-field--full { grid-column: 1 / -1; }
.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}
.cf-submit:hover { background: #333; }
@media (max-width: 768px) {
    .cf-grid { grid-template-columns: 1fr; }
    .section-contact-form { padding: 50px 20px; }
}

/* ============================================================
   CONTACT INFO
   ============================================================ */
.section-contact-info {
    padding: 80px 20px;
}
.ci-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.ci-details { flex: 1; }
.ci-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 10px;
}
.ci-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.ci-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}
.ci-items { display: flex; flex-direction: column; gap: 24px; }
.ci-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}
.ci-text { display: flex; flex-direction: column; gap: 4px; }
.ci-text strong {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #333;
}
.ci-text a, .ci-text span {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    line-height: 1.5;
}
.ci-text a:hover { color: #1a1a1a; }
.ci-map { flex: 1; min-height: 400px; border-radius: 8px; overflow: hidden; }
.ci-map-inner { width: 100%; height: 100%; min-height: 400px; }
.ci-map-inner iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }
.ci-map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #999;
}
@media (max-width: 991px) {
    .ci-container { flex-direction: column; gap: 40px; }
    .ci-map { width: 100%; }
    .section-contact-info { padding: 50px 20px; }
}

/* ============================================================
   RICH TEXT Section
   ============================================================ */
.section-rich-text {
    padding: 60px 20px;
}
.section-rich-text .rich-text-content {
    max-width: 900px;
    margin: 0 auto;
}
.section-rich-text .rich-text-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.section-rich-text .rich-text-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ============================================================
   LIVE EDITOR STYLES
   ============================================================ */

/* Toolbar toggle button */
#le-toolbar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}
#le-toggle {
    background: #b08449;
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    transition: all .2s;
}
#le-toggle:hover { background: #9a7340; transform: scale(1.03); }
#le-toggle i { font-size: 16px; }

/* Active bar */
#le-active-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
}
.le-bar-inner {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.le-btn-active {
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}
.le-btn-cancel {
    background: none;
    color: #999;
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}
.le-btn-cancel:hover { color: #fff; }

/* Inline editing */
.le-inline-editable {
    outline: 1px dashed transparent;
    outline-offset: 2px;
    transition: outline .2s, background .2s;
    cursor: text;
    border-radius: 3px;
}
.le-inline-editable:hover {
    outline-color: rgba(245,166,35,.4);
}
.le-inline-editable.le-inline-focused,
.le-inline-editable:focus {
    outline: 2px solid #b08449;
    background: rgba(245,166,35,.05);
}

/* Hidden helper */
.le-hidden { display: none !important; }

/* Section hover highlight */
.le-editing .le-section-wrap {
    position: relative;
    transition: outline .2s;
}
.le-editing .le-section-wrap:hover {
    outline: 2px dashed rgba(245,166,35,.5);
    outline-offset: -2px;
}

/* Add section buttons (+ between sections) */
.le-add-btn {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 14px 0;
}
.le-editing .le-add-btn { display: flex; }
.le-add-btn button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #b08449;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    transition: all .2s;
}
.le-add-btn button:hover { background: #9a7340; transform: scale(1.15); }

/* Modal overlay */
.le-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.75);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

/* Section picker modal */
.le-modal-container {
    background: #1e1e1e;
    border-radius: 16px;
    width: 100%;
    max-width: 1100px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,.5);
}
.le-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid #333;
}
.le-modal-header h3 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.le-modal-header h3 i { color: #b08449; }
.le-modal-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
#le-search {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    padding: 10px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    width: 220px;
    outline: none;
}
#le-search:focus { border-color: #b08449; }
#le-modal-close {
    background: none;
    border: none;
    color: #999;
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
    transition: color .2s;
}
#le-modal-close:hover { color: #fff; }

.le-modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}
.le-modal-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
.le-modal-preview {
    width: 300px;
    border-left: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #161616;
}
.le-preview-placeholder { text-align: center; color: #666; }
.le-preview-placeholder i { font-size: 48px; margin-bottom: 12px; }
.le-preview-placeholder p { font-size: 14px; }

/* Section type groups */
.le-group-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b08449;
    margin: 20px 0 12px;
}
.le-group-label:first-child { margin-top: 0; }
.le-group-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.le-type-card {
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: all .2s;
}
.le-type-card:hover { border-color: #b08449; background: #333; }
.le-type-card.le-disabled {
    opacity: .4;
    cursor: not-allowed;
}
.le-type-card .le-tc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.le-type-card .le-tc-icon {
    width: 36px;
    height: 36px;
    background: #383838;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.le-type-card .le-tc-name {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
}
.le-type-card .le-tc-desc {
    color: #888;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 1.5;
}

/* Form modal */
.le-form-container {
    background: #1e1e1e;
    border-radius: 16px;
    width: 100%;
    max-width: 1100px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,.5);
}
.le-form-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}
.le-form-fields {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
}
.le-form-preview {
    width: 420px;
    border-left: 1px solid #333;
    background: #111;
    overflow-y: auto;
}
.le-badge {
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 600;
}
.le-btn-save {
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s;
}
.le-btn-save:hover { background: #219a52; }

/* Form fields */
.le-field { margin-bottom: 20px; }
.le-field label {
    display: block;
    color: #999;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.le-field input[type="text"],
.le-field input[type="url"],
.le-field input[type="number"],
.le-field textarea,
.le-field select {
    width: 100%;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
}
.le-field input:focus, .le-field textarea:focus, .le-field select:focus { border-color: #b08449; }
.le-field textarea { resize: vertical; min-height: 100px; }
.le-field .le-hint {
    color: #666;
    font-size: 11px;
    margin-top: 4px;
}

/* File upload */
.le-file-area {
    border: 2px dashed #444;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s;
    color: #888;
}
.le-file-area:hover { border-color: #b08449; }
.le-file-area i { font-size: 28px; margin-bottom: 8px; }
.le-file-preview { max-width: 100%; margin-top: 10px; border-radius: 8px; }

/* "Dosya Yöneticisinden Seç" button */
.le-file-pick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 16px;
    background: #2a2a2a;
    color: #b08449;
    border: 1px solid #444;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all .2s;
    width: 100%;
}
.le-file-pick-btn:hover { background: #333; border-color: #b08449; }
.le-file-pick-btn i { font-size: 14px; }

/* File Picker Modal */
.le-filepicker-container {
    background: #1e1e1e;
    border-radius: 16px;
    width: 100%;
    max-width: 820px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.le-fp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #333;
}
.le-fp-header h3 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.le-fp-header h3 i { color: #b08449; margin-right: 8px; }
.le-fp-header button {
    background: none;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
}
.le-fp-header button:hover { color: #fff; }
.le-fp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 24px;
    background: #252525;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
}
.le-fp-breadcrumb a {
    color: #b08449;
    text-decoration: none;
    cursor: pointer;
}
.le-fp-breadcrumb a:hover { text-decoration: underline; }
.le-fp-breadcrumb span.le-fp-sep { color: #555; margin: 0 2px; }
.le-fp-body {
    overflow-y: auto;
    padding: 16px 24px 24px;
    flex: 1;
}
.le-fp-loading {
    text-align: center;
    color: #888;
    padding: 40px;
    font-family: 'Inter', sans-serif;
}
.le-fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}
.le-fp-item {
    background: #2a2a2a;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all .2s;
    text-align: center;
}
.le-fp-item:hover { border-color: #b08449; transform: translateY(-2px); }
.le-fp-item.is-folder .le-fp-item-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: #333;
}
.le-fp-item.is-folder .le-fp-item-thumb i { font-size: 40px; color: #b08449; }
.le-fp-item-thumb {
    height: 100px;
    overflow: hidden;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}
.le-fp-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.le-fp-item-thumb .le-fp-video-icon { font-size: 36px; color: #e74c3c; }
.le-fp-item-info {
    padding: 8px;
}
.le-fp-item-info .le-fp-name {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #ccc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.le-fp-item-info .le-fp-size {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #666;
    margin-top: 2px;
}
.le-fp-empty {
    text-align: center;
    color: #666;
    padding: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

/* Video upload progress UI */
.le-video-upload-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
}
.le-vup-icon { font-size: 48px; color: #b08449; margin-bottom: 20px; animation: le-pulse 1.5s infinite; }
@keyframes le-pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.le-vup-title { color: #fff; font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.le-vup-info { color: #888; font-size: 13px; margin-bottom: 24px; }
.le-vup-bar-wrap { width: 100%; max-width: 400px; background: rgba(255,255,255,.1); border-radius: 6px; height: 10px; overflow: hidden; }
.le-vup-bar { height: 100%; background: #b08449; border-radius: 6px; transition: width .3s; }
.le-vup-pct { color: #b08449; font-size: 18px; font-weight: 600; margin-top: 12px; }
.le-vup-hint { color: #666; font-size: 12px; margin-top: 12px; }

/* Rich text editor */
.le-richtext-wrap {
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2a;
}
.le-richtext-wrap:focus-within { border-color: #b08449; }
.le-richtext-toolbar {
    display: flex;
    gap: 2px;
    padding: 6px 8px;
    background: #222;
    border-bottom: 1px solid #444;
}
.le-richtext-toolbar button {
    background: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #ccc;
    width: 30px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: background .15s, color .15s;
}
.le-richtext-toolbar button:hover { background: #383838; color: #fff; }
.le-richtext-toolbar button.active { background: #444; color: #b08449; border-color: #555; }
.le-rt-sep { width: 1px; background: #444; margin: 2px 4px; }
.le-richtext-editor {
    min-height: 120px;
    max-height: 320px;
    overflow-y: auto;
    padding: 12px 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    outline: none;
}
.le-richtext-editor p { margin: 0 0 8px; }
.le-richtext-editor a { color: #b08449; }
.le-richtext-editor ul, .le-richtext-editor ol { margin: 0 0 8px 20px; padding: 0; }
.le-richtext-editor li { margin: 0 0 4px; }
.le-richtext-editor b, .le-richtext-editor strong { font-weight: 700; }
.le-richtext-editor i, .le-richtext-editor em { font-style: italic; }
.le-richtext-editor u { text-decoration: underline; }
.le-richtext-editor:empty::before {
    content: attr(data-placeholder);
    color: #666;
    pointer-events: none;
}

/* Radio group */
.le-radio-group {
    display: flex;
    gap: 12px;
}
.le-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    cursor: pointer;
    padding: 8px 14px;
    border: 1px solid #444;
    border-radius: 8px;
    transition: border-color .2s, background .2s;
}
.le-radio-label:hover { border-color: #666; background: #2a2a2a; }
.le-radio-label input[type="radio"] {
    accent-color: #b08449;
    margin: 0;
}
.le-radio-label input[type="radio"]:checked + span { color: #b08449; }

@media (max-width: 767px) {
    .le-modal-container, .le-form-container { max-height: 95vh; }
    .le-modal-preview, .le-form-preview { display: none; }
    .le-group-grid { grid-template-columns: 1fr; }
    #le-search { width: 140px; }
}

/* Section hover toolbar */
.le-section-toolbar {
    display: none;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #1a1a1a;
    border-radius: 30px;
    padding: 8px 10px;
    gap: 4px;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
    flex-direction: row;
}
.le-editing .le-section-wrap { position: relative; min-height: 60px; }
.le-editing .le-section-wrap:hover > .le-section-toolbar { display: flex; }

.le-section-toolbar .le-st-badge {
    color: #b08449;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 0 10px;
    white-space: nowrap;
}
.le-section-toolbar .le-st-id {
    color: #888;
    font-weight: 400;
    font-size: 11px;
}
.le-section-toolbar button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #2a2a2a;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}
.le-section-toolbar button:hover { background: #444; color: #fff; }
.le-section-toolbar .le-st-delete { color: #e74c3c; }
.le-section-toolbar .le-st-delete:hover { background: #e74c3c; color: #fff; }

/* Lifestyle block form */
.le-block-group {
    background: #252525;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}
.le-block-num {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #b08449;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
}
.le-block-title {
    color: #b08449;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 4px;
}
.le-block-hint {
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    margin: 0 0 16px;
}

/* Highlight border on hover in edit mode */
.le-editing .le-section-wrap:hover {
    outline: 2px solid #b08449;
    outline-offset: -2px;
}

/* Delete Confirmation Modal */
.le-delete-container {
    background: #1e1e1e;
    border-radius: 20px;
    width: 100%;
    max-width: 460px;
    padding: 40px 36px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    animation: leDeleteIn .25s ease;
}
@keyframes leDeleteIn {
    from { opacity: 0; transform: scale(.9) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.le-delete-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(231,76,60,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.le-delete-icon i {
    font-size: 28px;
    color: #e74c3c;
}
.le-delete-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
}
.le-delete-desc {
    color: #bbb;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 8px;
}
#le-delete-name {
    color: #b08449;
    font-weight: 600;
}
.le-delete-warning {
    color: #e74c3c;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    margin: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.le-delete-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.le-del-btn {
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.le-del-cancel {
    background: #2a2a2a;
    color: #ccc;
}
.le-del-cancel:hover {
    background: #3a3a3a;
    color: #fff;
}
.le-del-confirm {
    background: #e74c3c;
    color: #fff;
}
.le-del-confirm:hover {
    background: #c0392b;
}

/* ============================================================
   ARTICLES / NEWS PAGES
   ============================================================ */

/* ---- Banner (list & detail) ---- */
.articles-banner,
.article-detail-banner {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 350px;
    max-height: 600px;
    overflow: hidden;
    background: #1a1a1a;
}
.articles-banner__image,
.article-detail-banner__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.articles-banner__video,
.article-detail-banner__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.articles-banner__placeholder,
.article-detail-banner__placeholder {
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
}
.articles-banner__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 60px;
    background: linear-gradient(transparent, rgba(0,0,0,.45));
    display: flex;
    align-items: flex-end;
}
.articles-banner__overlay h1 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}
.articles-banner__overlay h1 .amp,
.articles-page__header h2 .amp {
    font-style: normal;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
}

/* ---- Articles Page ---- */
.articles-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 50px 30px 80px;
}
.articles-page__header {
    text-align: center;
    margin-bottom: 30px;
}
.articles-page__header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #222;
    margin: 0 0 15px;
}
.articles-divider {
    width: 60px;
    border: none;
    border-top: 1px solid #999;
    margin: 0 auto 30px;
}

/* ---- Category Dropdown ---- */
.articles-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.articles-categories__dropdown {
    position: relative;
}
.articles-categories__btn {
    background: #fff;
    border: 1px solid #0e2044;
    color: #0e2044;
    padding: 10px 28px;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
}
.articles-categories__btn:hover {
    background: #0e2044;
    color: #fff;
}
.articles-categories__caret {
    margin-left: 8px;
}
.articles-categories__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    min-width: 220px;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.articles-categories__menu.open {
    display: block;
}
.articles-categories__menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background .15s;
}
.articles-categories__menu li a:hover,
.articles-categories__menu li a.active {
    background: #f5f0ed;
    color: #0e2044;
}

/* ---- Article Cards Grid ---- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.articles-grid--related {
    max-width: 1100px;
    margin: 0 auto;
}
.article-card {
    background: #fff;
}
.article-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.article-card__image-wrap {
    position: relative;
    width: 100%;
    padding-top: 66.66%;
    overflow: hidden;
    background: #eee;
}
.article-card__image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}
.article-card__image--placeholder {
    background: linear-gradient(135deg, #ddd, #bbb);
}
.article-card__link:hover .article-card__image {
    transform: scale(1.05);
}
.article-card__mask {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0,0,0,.25);
    opacity: 0;
    transition: opacity .3s;
}
.article-card__link:hover .article-card__mask {
    opacity: 1;
}
.article-card__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px 15px 0;
}
.article-card__category {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    background: #f5f0ed;
    padding: 3px 10px;
    display: inline-block;
    margin-bottom: 6px;
}
.article-card__date {
    font-size: 0.78rem;
    color: #999;
}
.article-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .5px;
    padding: 10px 15px 8px;
    margin: 0;
    color: #222;
    line-height: 1.4;
}
.article-card__excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #777;
    text-align: center;
    line-height: 1.55;
    padding: 0 15px 20px;
    margin: 0;
}

/* ---- Infinite Scroll Loader ---- */
.articles-loader {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}
.articles-loader__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #ddd;
    border-top-color: #0e2044;
    border-radius: 50%;
    animation: articlesSpinner .7s linear infinite;
}
@keyframes articlesSpinner {
    to { transform: rotate(360deg); }
}

/* ---- Articles Empty State ---- */
.articles-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px 80px;
    text-align: center;
}
.articles-empty__icon {
    font-size: 3rem;
    color: #b08449;
    margin-bottom: 20px;
    opacity: .6;
}
.articles-empty__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
    letter-spacing: .5px;
    margin: 0 0 10px;
}
.articles-empty__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* ---- Article Detail ---- */
.article-detail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 80px;
    position: relative;
}

/* Floating Social Share */
.article-share-float {
    position: sticky;
    top: 120px;
    float: left;
    margin-left: -80px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 10;
}
.article-share-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #555;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #fff;
    transition: all .2s;
    font-size: 0.95rem;
    text-decoration: none;
}
.article-share-float a:last-child {
    border-bottom: 1px solid #ddd;
}
.article-share-float a:hover {
    background: #0e2044;
    color: #fff;
    border-color: #0e2044;
}
@media (max-width: 1280px) {
    .article-share-float {
        position: static;
        float: none;
        margin: 0 auto 25px;
        flex-direction: row;
        justify-content: center;
    }
    .article-share-float a {
        border: 1px solid #ddd;
        border-right: none;
    }
    .article-share-float a:last-child {
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }
}
.article-detail__header {
    text-align: center;
    padding: 50px 0 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.article-detail__header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #222;
    margin: 0 0 12px;
}
.article-detail__date {
    font-size: 0.88rem;
    color: #999;
    letter-spacing: .5px;
}

/* Breadcrumb */
.article-detail__breadcrumb {
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 30px;
    padding: 0 0 15px;
}
.article-detail__breadcrumb a {
    color: #999;
    text-decoration: none;
}
.article-detail__breadcrumb a:hover {
    color: #0e2044;
}
.article-detail__breadcrumb span {
    margin: 0 6px;
}
.article-detail__breadcrumb .current {
    color: #555;
}

/* ---- Article Sections ---- */
.article-section {
    margin-bottom: 40px;
}
.article-section__container {
    max-width: 960px;
    margin: 0 auto;
}
.article-section__container--wide {
    max-width: 100%;
}
.article-section__container--narrow {
    max-width: 700px;
}
.article-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #222;
    margin: 0 0 18px;
}
.article-section__title-centered {
    text-align: center;
}
.article-section__body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
}
.article-section__body p {
    margin: 0 0 16px;
}
.article-section__body img {
    max-width: 100%;
    height: auto;
}

/* Image + Text row */
.article-section__row {
    display: flex;
    gap: 30px;
    align-items: center;
}
.article-section__col-image,
.article-section__col-text {
    flex: 1;
    min-width: 0;
}
.article-section__col-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Full width image */
.article-section__full-image-wrap {
    width: 100%;
}
.article-section__full-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery */
.article-section__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 15px;
}
.article-section__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

/* Video */
.article-section__video-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}
.article-section__video-wrap video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Footer meta */
.article-detail__footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 15px;
}
.article-detail__category-tag {
    font-size: 0.88rem;
    color: #555;
}
.article-detail__category-tag span {
    color: #999;
}
.article-detail__share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: #999;
}
.article-detail__share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ddd;
    color: #555;
    text-decoration: none;
    transition: all .2s;
}
.article-detail__share a:hover {
    border-color: #0e2044;
    color: #0e2044;
}

/* Related articles */
.article-detail__related {
    margin-top: 60px;
    text-align: center;
}
.article-detail__related h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #222;
    margin-bottom: 15px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .article-section__row {
        flex-direction: column;
    }
    .article-section--image-text-right .article-section__row {
        flex-direction: column-reverse;
    }
    .articles-banner__overlay h1 {
        font-size: 1.8rem;
    }
}
@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .articles-banner,
    .article-detail-banner {
        height: 40vh;
        min-height: 250px;
    }
    .articles-banner__overlay {
        padding: 25px 20px;
    }
    .articles-banner__overlay h1 {
        font-size: 1.4rem;
    }
    .article-detail__header h1 {
        font-size: 1.5rem;
    }
    .articles-page {
        padding: 30px 15px 60px;
    }
    .article-detail {
        padding: 0 15px 60px;
    }
}


/* ======================================================
   BRAND PAGE
   ====================================================== */

/* --- Hero Banner --- */
.brand-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.brand-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.brand-hero__image--placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}
.brand-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15) 100%);
}
.brand-hero__content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 2;
    color: #fff;
}
.brand-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.1;
}
.brand-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-top: 16px;
    opacity: 0.85;
}

/* --- Model Slider Section (Prestige-style) --- */
.brand-models {
    padding: 100px 0 40px;
    background: #f5f5f5;
    text-align: center;
    overflow: hidden;
}
.brand-models__header {
    margin-bottom: 50px;
}
.brand-models__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0e2044;
    margin-bottom: 12px;
}
.brand-models__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    margin: 0;
}

/* --- Slider track --- */
.brand-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
.brand-slider__track {
    position: relative;
    height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

/* --- Slider items --- */
.brand-slider__item {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(0.4);
    z-index: 0;
    user-select: none;
}
.brand-slider__item img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}
.brand-slider__model-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin: 12px 0 0;
    transition: all 0.4s;
}

/* Active (center) */
.brand-slider__item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
    width: 55%;
    max-width: 820px;
    transform: translateX(-50%) scale(1);
}
.brand-slider__item.active .brand-slider__model-name {
    display: none;
}

/* Previous (left) */
.brand-slider__item.prev-slide {
    opacity: 0.5;
    pointer-events: auto;
    z-index: 3;
    width: 30%;
    max-width: 440px;
    transform: translateX(-185%) scale(0.75);
}
.brand-slider__item.prev-slide .brand-slider__model-name {
    color: #999;
    font-size: 0.9rem;
}

/* Next (right) */
.brand-slider__item.next-slide {
    opacity: 0.5;
    pointer-events: auto;
    z-index: 3;
    width: 30%;
    max-width: 440px;
    transform: translateX(85%) scale(0.75);
}
.brand-slider__item.next-slide .brand-slider__model-name {
    color: #999;
    font-size: 0.9rem;
}

/* Far items */
.brand-slider__item.far-prev {
    opacity: 0.15;
    z-index: 1;
    width: 22%;
    max-width: 300px;
    transform: translateX(-320%) scale(0.5);
}
.brand-slider__item.far-next {
    opacity: 0.15;
    z-index: 1;
    width: 22%;
    max-width: 300px;
    transform: translateX(220%) scale(0.5);
}

/* --- Detail section below slider --- */
.brand-slider__detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px 40px 60px;
    max-width: 900px;
    margin: 0 auto;
    min-height: 320px;
}

.brand-slider__detail-content {
    text-align: center;
    flex: 1;
    min-width: 0;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.brand-slider__detail-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 8px;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.brand-slider__detail-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: #777;
    margin: 0 0 28px;
    letter-spacing: 0.03em;
    min-height: 1.5em;
}

/* Specs row */
.brand-slider__specs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    min-height: 48px;
    width: 100%;
}
.brand-slider__spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.brand-slider__spec-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
}
.brand-slider__spec-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #1a1a1a;
}

/* Button */
.brand-slider__link {
    margin-top: 8px;
}
.brand-slider__btn {
    display: inline-block;
    padding: 14px 44px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0e2044;
    background: transparent;
    border: 1px solid #0e2044;
    text-decoration: none;
    transition: all 0.3s;
}
.brand-slider__btn:hover {
    background: #0e2044;
    color: #fff;
}

/* Arrows */
.brand-slider__arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    padding: 0;
}
.brand-slider__arrow:hover {
    color: #0e2044;
}
.brand-slider__arrow svg {
    width: 28px;
    height: 28px;
}

/* Responsive */
@media (max-width: 1024px) {
    .brand-slider__track {
        height: 360px;
    }
    .brand-slider__item.active {
        width: 60%;
    }
    .brand-slider__item.prev-slide,
    .brand-slider__item.next-slide {
        width: 28%;
    }
    .brand-slider__detail-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .brand-models {
        padding: 60px 0 30px;
    }
    .brand-models__title {
        font-size: 1.8rem;
    }
    .brand-slider__track {
        height: 260px;
    }
    .brand-slider__item.active {
        width: 70%;
    }
    .brand-slider__item.prev-slide {
        transform: translateX(-160%) scale(0.6);
        width: 30%;
    }
    .brand-slider__item.next-slide {
        transform: translateX(60%) scale(0.6);
        width: 30%;
    }
    .brand-slider__item.far-prev,
    .brand-slider__item.far-next {
        opacity: 0;
    }
    .brand-slider__detail {
        gap: 16px;
        padding: 30px 20px 40px;
        min-height: 260px;
    }
    .brand-slider__detail-name {
        font-size: 2rem;
    }
    .brand-slider__specs {
        gap: 20px;
    }
    .brand-slider__spec-value {
        font-size: 1rem;
    }
    .brand-slider__btn {
        padding: 12px 30px;
        font-size: 0.65rem;
    }
}

/* ======================================================
   BRAND SECTIONS
   ====================================================== */

/* --- Text Section --- */
.brand-section { overflow: hidden; }
.brand-section__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}
.brand-section__label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0e2044;
    margin-bottom: 16px;
}
.brand-section__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 20px;
    letter-spacing: 0.03em;
    line-height: 1.2;
}
.brand-section__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0 0 24px;
}
.brand-section__content {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}
.brand-section__content p { margin-bottom: 16px; }
.brand-section__btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: #0e2044;
    text-decoration: none;
    transition: background 0.3s;
    border-radius: 2px;
}
.brand-section__btn:hover { background: #b08449; }

/* --- Image + Text Full Width --- */
.brand-section__fullwidth {
    display: flex;
    min-height: 600px;
}
.brand-section__fullwidth--img-right {
    flex-direction: row-reverse;
}
.brand-section__image-half {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.brand-section__image-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.brand-section__text-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f6f3;
}
.brand-section__text-half .brand-section__title {
    text-align: left;
}
.brand-section__text-half .brand-section__label {
    text-align: left;
}
.brand-section__text-half .brand-section__content {
    text-align: left;
}
/* Brand image size variants — large is default (50/50) */
.brand-section__fullwidth.img-medium .brand-section__image-half { flex: 0 0 40%; }
.brand-section__fullwidth.img-medium .brand-section__text-half { flex: 0 0 60%; }
.brand-section__fullwidth.img-small .brand-section__image-half { flex: 0 0 30%; }
.brand-section__fullwidth.img-small .brand-section__text-half { flex: 0 0 70%; }

/* --- Characteristics (overlapping images) --- */
.brand-section--characteristics {
    padding: 100px 0;
    background: #fff;
}
.brand-section__characteristics {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 80px;
}
.brand-section__char-text {
    flex: 0 0 40%;
    max-width: 40%;
}
.brand-section__char-text .brand-section__label,
.brand-section__char-text .brand-section__title,
.brand-section__char-text .brand-section__content {
    text-align: left;
}
.brand-section__char-images {
    flex: 1;
    position: relative;
    min-height: 500px;
}
.brand-section__char-img--main {
    width: 80%;
    position: relative;
    z-index: 1;
}
.brand-section__char-img--main img {
    width: 100%;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.brand-section__char-img--overlap {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 55%;
    z-index: 2;
}
.brand-section__char-img--overlap img {
    width: 100%;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* --- Full Image --- */
.brand-section__full-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}
.brand-section__full-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}
.brand-section__full-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: rgba(0,0,0,0.3);
    color: #fff;
}
.brand-section__full-image-overlay .brand-section__title { color: #fff; }
.brand-section__full-image-overlay .brand-section__label { color: rgba(255,255,255,0.8); }
.brand-section__full-image-overlay .brand-section__content { color: rgba(255,255,255,0.9); }

/* --- Video Section --- */
.brand-section__video-wrap {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}
.brand-section__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}
.brand-section__video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #fff;
}
.brand-section__video-overlay .brand-section__title { color: #fff; }

/* ======================================================
   MODEL DETAIL PAGE
   ====================================================== */

/* --- Model Hero --- */
.model-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}
.model-hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.model-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.model-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.1) 100%);
}
.model-hero__content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 2;
    color: #fff;
}
.model-hero__breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}
.model-hero__breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.model-hero__breadcrumb a:hover { color: #fff; }
.model-hero__breadcrumb span { color: rgba(255,255,255,0.5); margin: 0 8px; }
.model-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.1;
}
.model-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-top: 12px;
    opacity: 0.85;
}
.model-hero__badge {
    display: inline-block;
    margin-top: 16px;
    background: #0e2044;
    color: #fff;
    padding: 6px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
}

/* --- Specs Bar --- */
.model-specs-bar {
    background: #1a1a1a;
    padding: 0;
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}
.model-specs-bar__inner {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
}
.model-specs-bar__item {
    flex: 0 0 auto;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.model-specs-bar__item:last-child { border-right: none; }
/* When items fit, distribute evenly */
.model-specs-bar--fit .model-specs-bar__item { flex: 1 1 0; }
.model-specs-bar__value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
    white-space: nowrap;
}
.model-specs-bar__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}
/* Carousel arrows */
.specs-carousel__arrow {
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    z-index: 2;
}
.specs-carousel__arrow:hover { background: rgba(255,255,255,0.18); }

/* --- Model Detail Content --- */
.model-detail {
    padding: 80px 40px;
    background: #fff;
}
.model-detail__container {
    max-width: 900px;
    margin: 0 auto;
}
.model-detail__intro {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
}
.model-detail__content {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}
.model-detail__content p { margin-bottom: 16px; }
.model-detail__content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 20px 0;
}

/* --- Other Models --- */
.model-others {
    padding: 80px 40px;
    background: #f8f6f3;
}
.model-others__container {
    max-width: 1200px;
    margin: 0 auto;
}
.model-others__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 50px;
    letter-spacing: 0.05em;
}
.model-others__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.model-others__card {
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.model-others__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.model-others__card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #f5f5f0;
}
.model-others__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}
.model-others__card:hover .model-others__card-image img {
    transform: scale(1.05);
}
.model-others__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0e2044;
    color: #fff;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
}
.model-others__card-info {
    padding: 20px;
}
.model-others__card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.model-others__card-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}


/* ======================================================
   BRAND & MODEL RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
    .brand-hero__content { left: 40px; bottom: 60px; }
    .brand-hero__title { font-size: 3rem; }
    .brand-carousel { padding: 0 40px; }
    .brand-section__characteristics { padding: 0 40px; gap: 40px; }
    .brand-section__char-text { flex: 0 0 45%; max-width: 45%; }
}

@media (max-width: 768px) {
    .brand-hero { height: 70vh; min-height: 400px; }
    .brand-hero__content { left: 24px; bottom: 40px; }
    .brand-hero__title { font-size: 2.2rem; }
    .brand-hero__subtitle { font-size: 0.95rem; }

    .brand-models { padding: 60px 0; }
    .brand-models__title { font-size: 1.8rem; }
    .brand-carousel { padding: 0 20px; }
    .brand-carousel__track { min-height: auto; }
    .brand-carousel__arrow { width: 40px; height: 40px; font-size: 0.85rem; }
    .brand-carousel__arrow--prev { left: 4px; }
    .brand-carousel__arrow--next { right: 4px; }
    .brand-carousel__specs { gap: 20px; flex-wrap: wrap; }
    .brand-carousel__spec-value { font-size: 1.1rem; }

    .brand-section__container { padding: 60px 24px; }
    .brand-section__title { font-size: 1.8rem; }

    .brand-section__fullwidth { flex-direction: column !important; min-height: auto; }
    .brand-section__image-half { min-height: 300px; }
    .brand-section__text-half { padding: 40px 24px; }

    .brand-section__characteristics { flex-direction: column; padding: 0 24px; gap: 40px; }
    .brand-section__char-text { flex: none; max-width: 100%; }
    .brand-section__char-images { min-height: 300px; }
    .brand-section__char-img--overlap { position: relative; bottom: -20px; right: auto; margin-left: auto; width: 70%; }

    /* Model detail responsive */
    .model-hero { height: 55vh; min-height: 350px; }
    .model-hero__content { left: 24px; bottom: 30px; }
    .model-hero__title { font-size: 2.2rem; }
    .model-hero__breadcrumb { font-size: 0.7rem; }

    .model-specs-bar__item { min-width: 110px; padding: 20px 15px; }
    .model-specs-bar__value { font-size: 1.2rem; }

    .model-detail { padding: 50px 24px; }
    .model-detail__intro { font-size: 1.15rem; }

    .model-others { padding: 50px 24px; }
    .model-others__grid { grid-template-columns: 1fr; }
}

/* ========================================
   CONTACT MAP SECTION
   ======================================== */
.section-contact-map { padding: 100px 0; background: #f5f6f8; }

.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    max-width: 1200px; margin: 0 auto; padding: 0 24px; align-items: stretch;
}

.contact-content {
    background: #fff; padding: 48px; border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    display: flex; flex-direction: column;
}

.contact-header { margin-bottom: 32px; }
.contact-label {
    display: inline-block; font-size: .75rem; text-transform: uppercase;
    letter-spacing: 3px; color: #0e2044; margin-bottom: 12px; font-weight: 600;
}
.contact-title {
    font-size: 2rem; font-family: 'Playfair Display', serif; font-weight: 600;
    margin-bottom: 12px; color: #1a1a1a; line-height: 1.2;
}
.contact-desc { color: #777; margin-bottom: 0; line-height: 1.7; font-size: .95rem; }

.contact-form { flex: 1; display: flex; flex-direction: column; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form .form-field { display: flex; flex-direction: column; }
.contact-form .form-field:only-child { grid-column: 1 / -1; }
.contact-form label {
    font-size: .8rem; font-weight: 600; color: #0e2044; margin-bottom: 8px;
    letter-spacing: .5px;
}
.contact-form input,
.contact-form textarea {
    width: 100%; padding: 14px 18px; border: 1.5px solid #e2e5ea; border-radius: 8px;
    font-size: .95rem; font-family: inherit; transition: all .25s ease;
    background: #fafbfc; box-sizing: border-box; color: #333;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b0b8c4; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: #0e2044; outline: none; background: #fff; box-shadow: 0 0 0 3px rgba(10,61,98,.08); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form > .form-field { margin-bottom: 20px; }
.contact-form > .form-field:last-of-type { flex: 1; }
.contact-form > .form-field:last-of-type textarea { flex: 1; }

.contact-submit {
    display: inline-flex; align-items: center; gap: 10px;
    width: 100%; justify-content: center;
    padding: 16px 28px; font-size: 1rem; font-weight: 600;
    background: #0e2044; color: #fff; border: none; border-radius: 8px;
    cursor: pointer; transition: all .3s ease; margin-top: 8px;
    letter-spacing: .3px;
}
.contact-submit:hover { background: #0c4a75; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,61,98,.25); }
.contact-submit svg { flex-shrink: 0; }

.form-status { margin-top: 12px; padding: 12px 16px; border-radius: 8px; font-size: .9rem; }
.form-status--ok { background: #d4edda; color: #155724; }
.form-status--err { background: #f8d7da; color: #721c24; }

.contact-map { border-radius: 12px; overflow: hidden; min-height: 100%; }
.map-container { width: 100%; height: 100%; min-height: 500px; }
.map-container iframe { width: 100% !important; height: 100% !important; min-height: 500px; border: 0; border-radius: 12px; }
.map-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    height: 100%; min-height: 500px; background: #e9ecef; color: #888; font-size: .95rem; border-radius: 12px;
}

@media (max-width: 768px) {
    .section-contact-map { padding: 60px 0; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 32px; padding: 0 16px; }
    .contact-content { padding: 32px 24px; }
    .contact-form .form-row { grid-template-columns: 1fr; gap: 16px; }
    .contact-map { min-height: 300px; }
    .map-container { min-height: 300px; }
    .map-container iframe { min-height: 300px; }
    .contact-title { font-size: 1.6rem; }
}

/* ========================================
   DYNAMIC FORM SECTION
   ======================================== */
.section-dynamic-form {
    padding: 80px 0;
    background: #f8f9fa;
}
.dynamic-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}
.df-baseline {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 8px;
}
.df-title {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.df-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Form layout */
.df-form {
    position: relative;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.df-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.df-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.df-field--full { flex: 0 0 100%; }
.df-field--half { flex: 0 0 calc(50% - 8px); }
.df-field--third { flex: 0 0 calc(33.333% - 11px); }

/* Labels */
.df-field > label {
    font-size: .9rem;
    font-weight: 500;
    color: #333;
}
.df-required {
    color: #b08449;
    margin-left: 2px;
}

/* Inputs */
.df-field input[type="text"],
.df-field input[type="email"],
.df-field input[type="tel"],
.df-field input[type="number"],
.df-field input[type="date"],
.df-field select,
.df-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .2s, background .2s;
    background: #fafafa;
    box-sizing: border-box;
}
.df-field input:focus,
.df-field select:focus,
.df-field textarea:focus {
    border-color: #0e2044;
    outline: none;
    background: #fff;
}
.df-field textarea { resize: vertical; }
.df-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* Help text */
.df-help {
    font-size: .8rem;
    color: #999;
    line-height: 1.4;
}

/* Heading & Separator */
.df-field--heading h3 {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1a1a1a;
    margin: 10px 0 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #b08449;
}
.df-field--heading .df-help { margin-top: 4px; }
.df-field--separator hr {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 8px 0;
}

/* Radio & Checkbox groups */
.df-radio-group,
.df-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.df-radio-label,
.df-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    cursor: pointer;
    font-size: .9rem;
    transition: border-color .2s, background .2s;
}
.df-radio-label:hover,
.df-checkbox-label:hover {
    border-color: #0e2044;
    background: #f0f4f8;
}
.df-radio-label input:checked + span,
.df-checkbox-label input:checked + span {
    font-weight: 600;
    color: #0e2044;
}
.df-radio-label input,
.df-checkbox-label input {
    width: auto;
    accent-color: #b08449;
}

/* File upload */
.df-file-upload {
    position: relative;
}
.df-file-upload input[type="file"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px dashed #ddd;
    border-radius: 6px;
    background: #fafafa;
    cursor: pointer;
    font-size: .9rem;
    transition: border-color .2s;
}
.df-file-upload input[type="file"]:hover {
    border-color: #0e2044;
}
.df-file-hint {
    font-size: .78rem;
    color: #aaa;
    margin-top: 4px;
}

/* Submit button */
.df-submit-row {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}
.df-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #b08449;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.df-submit-btn:hover {
    background: #8e4a3b;
    transform: translateY(-1px);
}
.df-submit-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}
.df-submit-btn svg { flex-shrink: 0; }

/* Status message */
.df-status {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: .9rem;
}
.df-status--ok { background: #d4edda; color: #155724; }
.df-status--err { background: #f8d7da; color: #721c24; }

/* Success overlay */
.df-success-overlay {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: dfFadeIn .5s ease;
}
.df-success-inner {
    text-align: center;
    padding: 40px;
}
.df-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #d4edda;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #28a745;
    animation: dfScaleIn .4s ease .2s both;
}
.df-success-title {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #333;
    line-height: 1.5;
}
@keyframes dfFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes dfScaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .section-dynamic-form { padding: 50px 0; }
    .dynamic-form-container { padding: 0 16px; }
    .df-title { font-size: 1.6rem; }
    .df-form { padding: 24px 20px; }
    .df-field--half,
    .df-field--third {
        flex: 0 0 100%;
    }
    .df-submit-btn { width: 100%; justify-content: center; }
    .df-radio-group,
    .df-checkbox-group { flex-direction: column; }
}

/* ==========================================================================
   Gallery Lightbox
   ========================================================================== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}
.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 1;
}
.gallery-lightbox-close:hover {
    opacity: 1;
}
.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
    padding: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 1;
}
.gallery-lightbox-nav:hover {
    opacity: 1;
}
.gallery-lightbox-prev {
    left: 20px;
}
.gallery-lightbox-next {
    right: 20px;
}
.gallery-item {
    cursor: pointer;
}

/* ---------- CENTERED HEADER LAYOUT (custom) ---------- */
.main-menu--centered { padding: 0 40px; height: 110px; display: flex; align-items: center; }
.main-menu--centered #items-container-submenu.menu-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}
.main-menu--centered .menu-split .menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
}
.main-menu--centered .menu-split .menu-left { justify-content: flex-end; }
.main-menu--centered .menu-split .menu-right { justify-content: flex-start; }
.main-menu--centered .brand-center {
    flex: 0 0 auto;
    height: 90px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.main-menu--centered .brand-center .logo-img {
    height: 90px;
    width: auto;
    max-width: 320px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .4s;
}
.icons-container--mobile { display: none !important; }
.brand-mobile-fixed { display: none !important; }
@media (min-width: 992px) {
    .brand-mobile-fixed { display: none !important; }
}

@media (max-width: 991px) {
    .main-menu--centered,
    #header .main-menu--centered { height: 70px !important; padding: 0 16px !important; justify-content: space-between; position: relative; }
    /* Solid white backdrop so logo + hamburger are crisply readable over hero/video */
    .main-menu--centered::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #ffffff;
        box-shadow: 0 4px 18px -8px rgba(14, 32, 68, .22);
        z-index: 1000;
        pointer-events: none;
    }
    #header.scrolled .main-menu--centered::before { background: #ffffff; }
    .icons-container--mobile { display: flex !important; align-items: center; z-index: 1002; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }
    .icons-container--mobile .navbar-toggle {
        background: transparent;
        border: 0;
        padding: 8px 10px;
        cursor: pointer;
        line-height: 1;
    }
    .icons-container--mobile .navbar-toggle i { color: #0e2044; font-size: 24px; }
    .brand-desktop-only { display: none !important; }
    .brand-mobile-fixed,
    .main-menu--centered .brand-mobile-fixed {
        display: flex !important;
        position: absolute !important;
        left: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        height: 50px !important;
        min-width: 0 !important;
        max-width: calc(100% - 80px) !important;
        z-index: 1001;
        align-items: center;
        justify-content: flex-start;
    }
    .brand-mobile-fixed .logo-img,
    .main-menu--centered .brand-mobile-fixed .logo-img {
        position: static !important;
        transform: none !important;
        height: 44px !important;
        width: auto !important;
        max-width: 100% !important;
        left: auto !important;
        top: auto !important;
        object-fit: contain;
    }
    .main-menu--centered #items-container-submenu.menu-split {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: rgba(14,32,68,.98);
        padding: 30px 24px;
        gap: 4px;
        overflow-y: auto;
        z-index: 1000;
    }
    .main-menu--centered #items-container-submenu.menu-split.open { display: flex !important; }
    .main-menu--centered .menu-split .menu { flex-direction: column; gap: 0; flex: none; justify-content: flex-start; align-items: stretch; width: 100%; }
    .main-menu--centered .menu-split .menu a {
        color: #ffffff !important;
        padding: 16px 4px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 15px;
        width: 100%;
    }
    .main-menu--centered .menu-split .menu a:hover { color: #b08449 !important; }
    .main-menu--centered .menu-split .header-cta { margin-top: 18px; width: 100%; }
    .main-menu--centered .menu-split .header-cta .btn-talep { width: 100%; justify-content: center; }
    .navbar-toggle i { color: #0e2044; font-size: 22px; }
}

/* ---------- BRAND PALETTE OVERRIDES (navy #0e2044 + gold #b08449) ---------- */
#header {
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(14,32,68,.08);
}
#header.scrolled { background: #ffffff !important; }
@media (min-width: 992px) {
    .main-menu--centered { height: 130px; }
    .main-menu--centered .brand-center { height: 110px; min-width: 240px; }
    .main-menu--centered .brand-center .logo-img { height: 110px; max-width: 360px; }
}

#items-container-submenu .menu a,
.main-menu--centered .menu-split .menu a {
    color: #0e2044 !important;
    font-weight: 600;
}
#items-container-submenu .menu a:hover,
.main-menu--centered .menu-split .menu a:hover { color: #b08449 !important; }

/* Mobile drawer: white text over navy panel — overrides desktop navy color */
@media (max-width: 991px) {
    #items-container-submenu.menu-split .menu a,
    .main-menu--centered .menu-split .menu a,
    body.is-inner #header .main-menu--centered .menu-split .menu a {
        color: #ffffff !important;
    }
    #items-container-submenu.menu-split .menu a:hover,
    .main-menu--centered .menu-split .menu a:hover { color: #b08449 !important; }
}

/* Buttons / accents */
a { color: #0e2044; }
a:hover { color: #b08449; }
.btn, .btn-primary, button[type="submit"] { background: #0e2044; border-color: #0e2044; color: #fff; }
.btn:hover, .btn-primary:hover, button[type="submit"]:hover { background: #b08449; border-color: #b08449; color: #fff; }

/* Footer (legacy dark) — light variant overrides below */
footer:not(.footer-light):not(.vg-footer), .footer-prestige:not(.footer-light) { background: #0e2044 !important; color: #fff; }
footer:not(.footer-light):not(.vg-footer) a, .footer-prestige:not(.footer-light) a { color: #fff; }
footer:not(.footer-light):not(.vg-footer) a:hover, .footer-prestige:not(.footer-light) a:hover { color: #b08449; }

@media (max-width: 991px) {
    .main-menu--centered { height: 90px; }
    .main-menu--centered .brand-center { height: 70px; }
    .main-menu--centered .brand-center .logo-img { height: 70px; max-width: 220px; }
}

/* ---------- TIGHTER NAV + TALEP CTA ---------- */
.main-menu--centered #items-container-submenu.menu-split { gap: 0; }
.main-menu--centered .menu-split .menu { gap: 18px; flex: 1; }
.main-menu--centered .menu-split .menu-left  { justify-content: flex-end;   padding-right: 24px; }
.main-menu--centered .menu-split .menu-right { justify-content: flex-start; padding-left: 24px; }
.main-menu--centered .brand-center { margin: 0 0px; }

/* shrink padding around nav links so they sit close to logo */
#items-container-submenu .menu a { padding: 14px 6px; }

.header-cta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.btn-talep {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0e2044;
    color: #fff !important;
    border: 1px solid #b08449;
    border-radius: 4px;
    padding: 12px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn-talep .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b08449;
    display: inline-block;
    transition: background .25s;
}
.btn-talep:hover {
    background: #b08449;
    border-color: #b08449;
    color: #fff !important;
    transform: translateY(-1px);
}
.btn-talep:hover .dot { background: #fff; }

@media (max-width: 991px) {
    .header-cta { display: none; }
}

/* ---------- TIGHTER: pull menus close to logo ---------- */
.main-menu--centered #items-container-submenu.menu-split {
    justify-content: center;
    gap: 24px;
}
.main-menu--centered .menu-split .menu { flex: 0 0 auto !important; gap: 22px; padding: 0 !important; }
.main-menu--centered .menu-split .menu-left  { justify-content: flex-end; }
.main-menu--centered .menu-split .menu-right { justify-content: flex-start; }
.main-menu--centered .header-cta {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
}
.main-menu--centered { position: relative; }

/* ---------- TIGHTER v2: hug logo, space items more ---------- */
.main-menu--centered #items-container-submenu.menu-split { gap: 6px !important; }
.main-menu--centered .menu-split .menu { gap: 36px !important; padding: 0 !important; }
.main-menu--centered .brand-center { margin: 0 6px !important; min-width: 0 !important; }
#items-container-submenu .menu a { padding: 14px 0 !important; }

/* ---------- FIX: reserve logo space so menus don't overlap ---------- */
.main-menu--centered .brand-center {
    flex: 0 0 auto !important;
    width: 200px !important;
    min-width: 200px !important;
    margin: 0 32px !important;
}
.main-menu--centered .brand-center .logo-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ---------- TRANSPARENT HEADER (solid only when scrolled) ---------- */
#header {
    background: transparent !important;
    box-shadow: none !important;
}
#header.scrolled {
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(14,32,68,.08) !important;
}
/* Make logo/menus readable on transparent state (over images) */
#header:not(.scrolled) #items-container-submenu .menu a,
#header:not(.scrolled) .main-menu--centered .menu-split .menu a {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
#header:not(.scrolled) #items-container-submenu .menu a:hover {
    color: #b08449 !important;
}
#header:not(.scrolled) .btn-talep {
    background: rgba(14,32,68,.85);
    backdrop-filter: blur(4px);
}
/* When transparent, swap default logo to a white/light version if available; otherwise keep but reduce */
#header:not(.scrolled) .brand .logo-img.logo-default { filter: brightness(0) invert(1); }
#header.scrolled .brand .logo-img.logo-default { filter: none; }

/* ---------- LOGO + SLIDER OVERLAY FIXES ---------- */
/* Keep logo original colors at all times */
#header:not(.scrolled) .brand .logo-img.logo-default { filter: none !important; }
#header .brand .logo-img.logo-default { filter: none !important; }

/* Dark overlay on slider for readability — kaldırıldı, slide üzeri net görünsün */
#simulator-slider { position: relative; }

/* ---------- PROGRAM SHOWCASE ---------- */
.program-showcase { padding: 80px 0; background: #fafafa; }
.program-showcase__header { text-align: center; margin-bottom: 50px; }
.program-showcase__upper { font-size: 13px; letter-spacing: 4px; color: #b08449; text-transform: uppercase; margin-bottom: 12px; }
.program-showcase__title { font-size: 36px; color: #0e2044; font-weight: 600; margin: 0 0 12px; }
.program-showcase__subtitle { font-size: 16px; color: #545759; max-width: 720px; margin: 0 auto; line-height: 1.6; }
.program-showcase__empty { text-align: center; padding: 60px 20px; background: #fff; border: 1px dashed #d4d4d4; border-radius: 8px; color: #545759; }

.program-showcase__items.is-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.program-showcase__items.is-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 12px;
}
.program-showcase__items.is-carousel .program-card {
    flex: 0 0 calc(25% - 18px);
    scroll-snap-align: start;
}

.program-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(14,32,68,.06);
    transition: transform .3s, box-shadow .3s;
    color: inherit !important;
    text-decoration: none;
}
.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(14,32,68,.12);
}
.program-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0f0ef;
    overflow: hidden;
}
.program-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.program-card:hover .program-card__media img { transform: scale(1.05); }
.program-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #c0c0c0; font-size: 42px;
}
.program-card__body { padding: 20px 22px 24px; }
.program-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0e2044;
    font-weight: 600;
}
.program-card__desc {
    color: #545759;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.program-card__cta {
    color: #b08449;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.program-card__cta i { transition: transform .25s; margin-left: 6px; }
.program-card:hover .program-card__cta i { transform: translateX(4px); }

.program-showcase__nav {
    display: flex; justify-content: center; gap: 12px; margin-top: 28px;
}
.program-showcase__nav button {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid #b08449;
    background: transparent;
    color: #0e2044;
    cursor: pointer;
    transition: all .25s;
}
.program-showcase__nav button:hover {
    background: #0e2044;
    border-color: #0e2044;
    color: #fff;
}

@media (max-width: 992px) {
    .program-showcase__items.is-grid { grid-template-columns: repeat(2, 1fr); }
    .program-showcase__items.is-carousel .program-card { flex-basis: calc(50% - 12px); }
}
@media (max-width: 576px) {
    .program-showcase { padding: 50px 0; }
    .program-showcase__items.is-grid { grid-template-columns: 1fr; }
    .program-showcase__items.is-carousel .program-card { flex-basis: 85%; }
    .program-showcase__title { font-size: 26px; }
}

/* ---------- Stronger top gradient for transparent header readability ---------- */
#simulator-slider::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 4;
}

/* ---------- Program Detail Page ---------- */
.program-detail__hero {
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 60px;
    color: #fff;
}
.program-detail__hero .program-detail__title { color: #fff; }
.program-detail__hero .program-detail__lead { color: rgba(255,255,255,.92); }
.program-detail__header { padding: 140px 0 40px; }
.program-detail__type {
    font-size: 13px; letter-spacing: 4px; color: #b08449;
    text-transform: uppercase; margin-bottom: 12px;
}
.program-detail__title {
    font-size: 42px; font-weight: 700; color: #0e2044; margin: 0 0 16px;
    line-height: 1.15;
}
.program-detail__lead { font-size: 18px; color: #545759; max-width: 760px; margin: 0; line-height: 1.6; }
.program-detail__content {
    max-width: 860px; margin: 60px auto; padding: 0 0 80px;
    font-size: 17px; line-height: 1.8; color: #2a2a2a;
}
.program-detail__content h2, .program-detail__content h3, .program-detail__content h4 { color: #0e2044; margin-top: 1.8em; }
.program-detail__content a { color: #b08449; }
.program-detail__content a:hover { text-decoration: underline; }
.program-detail__content ul, .program-detail__content ol { padding-left: 1.2em; }
.program-detail__content img { max-width: 100%; height: auto; border-radius: 8px; }

/* ---------- INNER PAGE HEADER (always solid, dark text) ---------- */
body.is-inner #header {
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(14, 32, 68, .08);
}
body.is-inner #header::before,
body.is-inner #header::after { display: none !important; }

body.is-inner #header #items-container-submenu .menu a,
body.is-inner #header .main-menu--centered .menu-split .menu a {
    color: #0e2044 !important;
    text-shadow: none !important;
}
body.is-inner #header #items-container-submenu .menu a:hover,
body.is-inner #header .main-menu--centered .menu-split .menu a:hover {
    color: #b08449 !important;
}
body.is-inner #header .navbar-toggle,
body.is-inner #header .navbar-toggle span,
body.is-inner #header .navbar-toggle i { color: #0e2044 !important; background-color: transparent !important; }

/* Inner pages always show sticky (dark) logo */
body.is-inner #header .brand .logo-img.logo-default { opacity: 0 !important; }
body.is-inner #header .brand .logo-img.logo-sticky  { opacity: 1 !important; }

/* Slider/hero overlay only on home */
body.is-inner #simulator-slider::before,
body.is-inner #simulator-slider::after { display: none !important; }

/* Push inner page content below fixed header */
body.is-inner .wrapper { padding-top: 140px; }
/* JS tarafından eklenen sınıf: ilk section Breadcrumb Banner ise üst boşluğu sıfırla */
body.bc-flush .wrapper { padding-top: 0 !important; }
body.is-inner .program-detail .program-detail__hero,
body.is-inner .program-showcase[style*="padding-top: 140px"] { padding-top: 40px !important; }

@media (max-width: 768px) {
    body.is-inner .wrapper { padding-top: 90px; }
}

/* ---------- Hide ugly scrollbar on program carousel ---------- */
.program-showcase__items.is-carousel {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding-bottom: 4px !important;
}
.program-showcase__items.is-carousel::-webkit-scrollbar {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
}
/* Nav buttons: cleaner positioning */
.program-showcase__nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}
.program-showcase__nav button {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid #0e2044;
    background: #fff;
    color: #0e2044;
    cursor: pointer;
    transition: all .2s;
    font-size: 14px;
}
.program-showcase__nav button:hover {
    background: #0e2044;
    color: #fff;
}

/* ============================================
   PROGRAM AUTO BREADCRUMB
   ============================================ */
.program-auto-breadcrumb {
    padding: 130px 0 70px;
    background-color: #0e2044;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.program-auto-breadcrumb__nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.program-auto-breadcrumb__nav a {
    color: #b08449;
    text-decoration: none;
    transition: color .2s;
}
.program-auto-breadcrumb__nav a:hover { color: #fff; }
.program-auto-breadcrumb__nav .sep { color: rgba(255,255,255,.4); }
.program-auto-breadcrumb__nav .current { color: #fff; }
.program-auto-breadcrumb__title {
    font-size: 44px;
    color: #fff;
    margin: 0 0 14px;
    font-weight: 600;
    letter-spacing: .5px;
}
.program-auto-breadcrumb__lead {
    font-size: 18px;
    color: rgba(255,255,255,.85);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .program-auto-breadcrumb { padding: 110px 0 50px; }
    .program-auto-breadcrumb__title { font-size: 30px; }
    .program-auto-breadcrumb__lead { font-size: 15px; }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.section-faq {
    padding: 70px 0;
    background: #fafafa;
}
.section-faq .container {
    max-width: 880px;
}
.section-faq__upper {
    font-size: 13px;
    letter-spacing: 4px;
    color: #b08449;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}
.section-faq__title {
    font-size: 34px;
    color: #0e2044;
    text-align: center;
    margin: 0 0 18px;
    font-weight: 600;
}
.section-faq__intro {
    text-align: center;
    color: #545759;
    margin-bottom: 36px;
    line-height: 1.6;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding: 0;
    transition: all .25s;
    overflow: hidden;
}
.faq-item[open] {
    border-color: #b08449;
    box-shadow: 0 6px 18px rgba(14,32,68,.08);
}
.faq-item__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: #0e2044;
    list-style: none;
    font-size: 16px;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; content: ''; }
.faq-item__chevron {
    transition: transform .25s;
    color: #b08449;
    flex-shrink: 0;
}
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a {
    padding: 0 22px 20px;
    color: #444;
    line-height: 1.7;
}
.faq-item__a p:first-child { margin-top: 0; }
.faq-item__a p:last-child { margin-bottom: 0; }

/* ============================================
   PROGRAM EMPTY PROMPT (for admins on empty page)
   ============================================ */
.program-empty-prompt {
    padding: 100px 0;
    text-align: center;
    background: #f5f5f5;
}
.program-empty-prompt h2 {
    color: #0e2044;
    font-size: 24px;
    margin: 0 0 12px;
}
.program-empty-prompt p {
    color: #666;
    font-size: 15px;
}

/* ============================================
   FOOTER — LIGHT (off-white) — overrides dark
   ============================================ */
.footer-prestige.footer-light {
    background: #f6f3ee;          /* warm off-white / kırık beyaz */
    color: #2a2f3a;
    border-top: 1px solid #e7e0d4;
    padding: 70px 0 0;
    margin-top: 60px;
    box-shadow: none;
}
.footer-prestige.footer-light .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.footer-light__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 50px;
}

/* Column: brand */
.footer-light__col--brand { padding-right: 16px; }
.footer-light__logo { display: inline-block; margin-bottom: 18px; }
.footer-light__logo img {
    max-width: 180px;
    height: auto;
    display: block;
}
.footer-light__about {
    color: #545759;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 22px;
}
.footer-light__social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-light__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e7e0d4;
    color: #0e2044;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
}
.footer-light__social a:hover {
    background: #b08449;
    border-color: #b08449;
    color: #fff;
    transform: translateY(-2px);
}

/* Column titles */
.footer-light__title {
    color: #0e2044;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin: 0 0 20px;
    padding-bottom: 12px;
    position: relative;
}
.footer-light__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #b08449;
}

/* Link lists */
.footer-light__links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-light__links li { margin-bottom: 9px; }
.footer-light__links li a {
    color: #545759;
    font-size: 14px;
    text-decoration: none;
    transition: color .2s, transform .2s;
    display: inline-block;
    line-height: 1.4;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-light__links li a:hover {
    color: #b08449;
    transform: translateX(4px);
}
.footer-light__see-all { margin-top: 14px !important; }
.footer-light__see-all a {
    font-weight: 600 !important;
    color: #0e2044 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-light__see-all a:hover { color: #b08449 !important; transform: none !important; }
.footer-light__see-all-link {
    display: inline-block;
    margin-top: 14px;
    color: #0e2044;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-light__see-all-link:hover { color: #b08449; }

/* Articles list with thumbs */
.footer-light__articles {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-light__articles li { margin-bottom: 14px; }
.footer-light__article {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: opacity .2s;
}
.footer-light__article:hover { opacity: .8; }
.footer-light__article img,
.footer-light__article-thumb-fallback {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    background: #fff;
    border: 1px solid #e7e0d4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b08449;
    font-size: 20px;
}
.footer-light__article > div { flex: 1; min-width: 0; }
.footer-light__article-title {
    display: block;
    color: #0e2044;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}
.footer-light__article:hover .footer-light__article-title { color: #b08449; }
.footer-light__article-date {
    display: block;
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.footer-light__empty {
    color: #999;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

/* Contact strip */
.footer-light__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 24px 0;
    border-top: 1px solid #e7e0d4;
    border-bottom: 1px solid #e7e0d4;
}
.footer-light__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #2a2f3a;
    text-decoration: none;
    padding: 8px 18px 8px 14px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #e7e0d4;
    transition: all .2s;
}
.footer-light__contact-item i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0e2044;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.footer-light__contact-item span { display: flex; flex-direction: column; line-height: 1.2; }
.footer-light__contact-item small {
    color: #999;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 2px;
}
.footer-light__contact-item strong {
    color: #0e2044;
    font-size: 14px;
    font-weight: 600;
}
.footer-light__contact-item:hover {
    border-color: #b08449;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(176,132,73,.15);
}
.footer-light__contact-item--wa i { background: #25d366; }

/* Bottom strip */
.footer-light__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-light__copy {
    color: #545759;
    font-size: 13px;
}
.footer-light__bottom-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.footer-light__bottom-links li a {
    color: #545759;
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}
.footer-light__bottom-links li a:hover { color: #b08449; }

.footer-light__disclaimer {
    background: #efe9de;
    padding: 16px 0;
    border-top: 1px solid #e7e0d4;
}
.footer-light__disclaimer p {
    color: #777;
    font-size: 12px;
    text-align: center;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-light__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
    .footer-prestige.footer-light { padding-top: 50px; margin-top: 40px; }
    .footer-light__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 30px; }
    .footer-light__bottom { flex-direction: column; text-align: center; }
    .footer-light__contact { justify-content: center; }
}

/* Partnerfy badge */
.footer-light__partnerfy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #e7e0d4;
    border-radius: 50px;
    text-decoration: none;
    transition: all .2s;
    color: inherit;
}
.footer-light__partnerfy:hover {
    border-color: #b08449;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(176,132,73,.15);
}
.footer-light__partnerfy-label {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}
.footer-light__partnerfy img,
.footer-light__partnerfy-svg {
    height: 22px;
    width: auto;
    display: block;
}

@media (max-width: 600px) {
    .footer-light__partnerfy { margin: 0 auto; }
}

/* ==========================================================================
   TALEP FORMU MODAL
   ========================================================================== */
.talep-modal {
    position: fixed; inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.talep-modal.is-open { display: flex; animation: talepFade .25s ease; }
@keyframes talepFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes talepRise { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }

.talep-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(14, 32, 68, .68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}
.talep-modal__panel {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: calc(100vh - 40px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: talepRise .3s cubic-bezier(.2,.8,.25,1);
}
.talep-modal__close {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border: 0; background: rgba(255,255,255,.9);
    border-radius: 50%;
    cursor: pointer;
    color: #0e2044;
    font-size: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .2s;
    z-index: 2;
}
.talep-modal__close:hover { background: #b08449; color: #fff; transform: rotate(90deg); }

.talep-modal__header {
    padding: 28px 28px 20px;
    background: linear-gradient(135deg, #0e2044 0%, #1a3260 100%);
    color: #fff;
    text-align: center;
}
.talep-modal__upper {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b08449;
    font-weight: 600;
    margin-bottom: 6px;
}
.talep-modal__title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
}
.talep-modal__lead {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,.8);
    line-height: 1.5;
}

.talep-modal__steps {
    display: flex;
    background: #f6f3ee;
    border-bottom: 1px solid #e7e0d4;
    padding: 0;
}
.talep-step {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 2px solid transparent;
    transition: all .25s;
}
.talep-step span {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #d6cfc1;
    color: #fff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.talep-step.is-active { color: #0e2044; border-bottom-color: #b08449; background: #fff; }
.talep-step.is-active span { background: #b08449; }
.talep-step.is-done { color: #0e2044; }
.talep-step.is-done span { background: #0e2044; }

.talep-modal__body {
    padding: 24px 28px 28px;
    overflow-y: auto;
    flex: 1;
}
.talep-step-pane { display: none; animation: talepFade .25s; }
.talep-step-pane.is-active { display: block; }
.talep-step__hint {
    margin: 0 0 16px;
    color: #555;
    font-size: 14px;
    text-align: center;
}

/* Type cards (step 1) */
.talep-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.talep-type-card {
    border: 1.5px solid #e7e0d4;
    background: #fff;
    border-radius: 12px;
    padding: 18px 14px;
    cursor: pointer;
    text-align: center;
    transition: all .25s;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.talep-type-card:hover {
    border-color: #b08449;
    background: #fcfaf6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(176,132,73,.12);
}
.talep-type-card__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f6f3ee, #efe9de);
    color: #b08449;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
    transition: all .25s;
}
.talep-type-card:hover .talep-type-card__icon {
    background: linear-gradient(135deg, #b08449, #d4a060);
    color: #fff;
}
.talep-type-card__title {
    font-weight: 600; color: #0e2044; font-size: 14px; line-height: 1.3;
}
.talep-type-card__count { font-size: 11px; color: #999; }

/* Program list (step 2) */
.talep-programs { display: flex; flex-direction: column; gap: 8px; max-height: 320px; overflow-y: auto; padding: 4px; }
.talep-program-item {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1.5px solid #e7e0d4;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    color: #0e2044;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
}
.talep-program-item:hover {
    border-color: #b08449;
    background: #fcfaf6;
    transform: translateX(4px);
}
.talep-program-item span { display: inline-flex; align-items: center; gap: 10px; }
.talep-program-item span i { color: #b08449; font-size: 8px; }
.talep-program-item > i { color: #b08449; font-size: 12px; }

/* Step 3 form */
.talep-summary { margin-bottom: 20px; }
.talep-summary__chip {
    display: inline-flex;
    flex-direction: column;
    padding: 10px 16px;
    background: #f6f3ee;
    border-left: 3px solid #b08449;
    border-radius: 8px;
}
.talep-summary__chip span {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #b08449; font-weight: 600;
}
.talep-summary__chip strong { color: #0e2044; font-size: 15px; margin-top: 2px; }

.talep-form { display: flex; flex-direction: column; gap: 14px; }
.talep-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.talep-field { display: flex; flex-direction: column; gap: 6px; }
.talep-field label {
    font-size: 13px; font-weight: 600; color: #0e2044;
    display: flex; align-items: center; gap: 6px;
}
.talep-field label span { color: #b08449; }
.talep-field label small { color: #999; font-weight: 400; }
.talep-field input,
.talep-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e7e0d4;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: #0e2044;
    background: #fff;
    transition: all .2s;
    resize: vertical;
}
.talep-field input:focus,
.talep-field textarea:focus {
    outline: none;
    border-color: #b08449;
    box-shadow: 0 0 0 3px rgba(176,132,73,.15);
}

.talep-captcha label { justify-content: flex-start; }
.talep-captcha #talep-captcha-q {
    background: #f6f3ee;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    color: #0e2044;
    font-weight: 700;
    font-size: 14px;
    border: 1px dashed #b08449;
}
.talep-captcha__refresh {
    background: transparent;
    border: 0;
    color: #b08449;
    cursor: pointer;
    padding: 2px 6px;
    font-size: 13px;
    transition: transform .3s;
}
.talep-captcha__refresh:hover { transform: rotate(180deg); }

.talep-feedback:empty { display: none; }
.talep-error {
    background: #fff0f0;
    color: #c0392b;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    border-left: 3px solid #c0392b;
}
.talep-loading { text-align: center; padding: 40px; color: #999; font-size: 14px; }
.talep-loading i { margin-right: 8px; color: #b08449; }

/* Step nav */
.talep-step__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.talep-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px;
    border: 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    text-decoration: none;
}
.talep-btn--primary {
    background: linear-gradient(135deg, #0e2044, #1a3260);
    color: #fff;
    flex: 1;
}
.talep-btn--primary:hover { background: linear-gradient(135deg, #b08449, #d4a060); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(176,132,73,.3); }
.talep-btn--primary.is-loading { opacity: .7; cursor: wait; }
.talep-btn--primary:disabled { opacity: .6; cursor: not-allowed; }
.talep-btn--ghost { background: #f6f3ee; color: #0e2044; }
.talep-btn--ghost:hover { background: #efe9de; }

/* Success */
.talep-success { text-align: center; padding: 20px 0; }
.talep-success__icon { font-size: 64px; color: #25d366; margin-bottom: 16px; animation: talepRise .5s; }
.talep-success h4 { font-family: 'Playfair Display', serif; font-size: 24px; color: #0e2044; margin: 0 0 8px; }
.talep-success p { color: #666; margin: 0 0 22px; }
.talep-success .talep-btn { min-width: 180px; flex: 0; margin: 0 auto; display: inline-flex; }

/* Mobile */
@media (max-width: 600px) {
    .talep-modal { padding: 0; align-items: flex-end; }
    .talep-modal__panel { max-width: 100%; max-height: 95vh; border-radius: 18px 18px 0 0; }
    .talep-modal__header { padding: 22px 20px 16px; }
    .talep-modal__title { font-size: 22px; }
    .talep-modal__body { padding: 20px; }
    .talep-types { grid-template-columns: 1fr 1fr; }
    .talep-row { grid-template-columns: 1fr; }
    .talep-step { font-size: 0; gap: 0; padding: 14px 4px; }
    .talep-step span { font-size: 12px; width: 26px; height: 26px; }
}

/* ==========================================================================
   FLOATING WHATSAPP (bottom-right, themed pill)
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: auto;
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px 8px 8px;
    background: linear-gradient(135deg, #0e2044 0%, #1a3260 100%);
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(14, 32, 68, .35);
    text-decoration: none;
    transition: all .25s ease;
    border: 2px solid rgba(255,255,255,.1);
    white-space: nowrap;
    line-height: 1;
    animation: none;
}
.floating-whatsapp:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 14px 36px rgba(37, 211, 102, .45);
    color: #fff;
}
.floating-whatsapp__icon {
    position: relative;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, .4);
    z-index: 2;
}
.floating-whatsapp__pulse {
    position: absolute;
    top: 50%; left: 50%;
    width: 48px; height: 48px;
    margin: -24px 0 0 -24px;
    border-radius: 50%;
    background: #25d366;
    opacity: 0;
    animation: waPulse 2.4s infinite;
    pointer-events: none;
    z-index: 1;
}
.floating-whatsapp__icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #25d366;
    opacity: 0;
    animation: waPulse 2.4s infinite;
    pointer-events: none;
    z-index: -1;
}
@keyframes waPulse {
    0% { transform: scale(.85); opacity: .55; }
    100% { transform: scale(1.7); opacity: 0; }
}
.floating-whatsapp__label {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.15;
    gap: 2px;
}
.floating-whatsapp__label small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b08449;
    font-weight: 600;
}
.floating-whatsapp__label strong {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 600px) {
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 6px;
        gap: 0;
        border-radius: 50%;
    }
    .floating-whatsapp__label { display: none; }
    .floating-whatsapp__icon { width: 52px; height: 52px; font-size: 26px; }
}

/* Partnerfy bar (very bottom, below disclaimer) */
.footer-light__partnerfy-bar {
    background: #0e2044;
    padding: 12px 16px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-light .footer-light__partnerfy,
.footer-light__partnerfy-bar .footer-light__partnerfy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    text-decoration: none;
    transition: opacity .2s;
    margin: 0;
    box-shadow: none;
}
.footer-light__partnerfy-bar .footer-light__partnerfy:hover {
    opacity: .85;
    transform: none;
    box-shadow: none;
    border: 0;
}
.footer-light__partnerfy-bar .footer-light__partnerfy-label {
    color: rgba(255,255,255,.55);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}
.footer-light__partnerfy-bar .footer-light__partnerfy img {
    height: 18px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: .9;
}
.footer-light__partnerfy-bar .footer-light__partnerfy:hover img {
    opacity: 1;
    filter: none;
}

/* ==========================================================================
   BİLGİ YAZILARI SECTION
   ========================================================================== */
.section-bilgi-yazilari {
    padding: 80px 0;
    background: #fff;
}
.section-bilgi-yazilari__upper {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b08449;
    font-weight: 600;
    margin-bottom: 10px;
}
.section-bilgi-yazilari__title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #0e2044;
    margin: 0 0 14px;
    font-weight: 600;
}
.section-bilgi-yazilari__intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}
.section-bilgi-yazilari__cta {
    text-align: center;
    margin-top: 40px;
}

.bilgi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bilgi-grid__empty {
    text-align: center;
    padding: 60px 20px;
    background: #f6f3ee;
    border-radius: 12px;
    color: #999;
    font-size: 14px;
}
.bilgi-grid__empty i {
    color: #b08449;
    margin-right: 8px;
}

.bilgi-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(14, 32, 68, .06);
    transition: all .3s cubic-bezier(.2,.8,.25,1);
    text-decoration: none;
    color: inherit;
    border: 1px solid #f0ece4;
}
.bilgi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(14, 32, 68, .14);
    border-color: #e7d9c0;
}
.bilgi-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f6f3ee;
}
.bilgi-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.bilgi-card:hover .bilgi-card__media img {
    transform: scale(1.06);
}
.bilgi-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #d4c8b0;
    font-size: 48px;
}
.bilgi-card__category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(14, 32, 68, .92);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}
.bilgi-card__body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bilgi-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #0e2044;
    margin: 0 0 10px;
    line-height: 1.35;
    transition: color .2s;
}
.bilgi-card:hover .bilgi-card__title { color: #b08449; }
.bilgi-card__summary {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}
.bilgi-card__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b08449;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bilgi-card__more i {
    transition: transform .2s;
}
.bilgi-card:hover .bilgi-card__more i { transform: translateX(4px); }

/* Carousel layout (basic horizontal scroll, optional later enhancement) */
.bilgi-grid--carousel {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 1024px) {
    .bilgi-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .section-bilgi-yazilari__title { font-size: 32px; }
}
@media (max-width: 600px) {
    .section-bilgi-yazilari { padding: 50px 0; }
    .bilgi-grid { grid-template-columns: 1fr; }
    .section-bilgi-yazilari__title { font-size: 26px; }
}

/* ---------- REFERENCES CAROUSEL (logo marquee) ---------- */
.section-references {
    padding: 80px 0 70px;
    background: #ffffff;
    overflow: hidden;
}
.section-references .container { text-align: center; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-references__upper {
    color: #b08449;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-references__title {
    color: #0e2044;
    font-family: Georgia, 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 16px;
}
.section-references__subtitle {
    color: #5a6170;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 50px;
    max-width: 720px;
}
.references-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.references-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: refsScroll 40s linear infinite;
}
.references-marquee:hover .references-track { animation-play-state: paused; }
.references-item {
    flex: 0 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.references-item img {
    max-height: 70px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .3s;
}
.references-item:hover img { transform: scale(1.06); }
@keyframes refsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (max-width: 600px) {
    .section-references { padding: 60px 0 50px; }
    .section-references__title { font-size: 26px; }
    .references-track { gap: 40px; animation-duration: 30s; }
    .references-item { height: 60px; }
    .references-item img { max-height: 50px; max-width: 130px; }
}

/* === Background video support for heritage / hero_banner === */
.banner.has-bg-video,
.section-hero-banner.has-bg-video {
    position: relative;
    overflow: hidden;
}
.banner__bg-video,
.hero-banner__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.banner__bg-overlay,
.hero-banner__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45));
    z-index: 1;
    pointer-events: none;
}
.banner.has-bg-video > .container,
.section-hero-banner.has-bg-video > .hero-banner-content {
    position: relative;
    z-index: 2;
}

/* ============================================================
   FOOTER BRAND LINKS (Sosyal Sorumluluk + Basında)
   ============================================================ */
.footer-light__brand-links {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-light__brand-links li { margin: 0; }
.footer-light__brand-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4a5060;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: color .2s;
}
.footer-light__brand-links a i { color: #b08449; font-size: 14px; width: 18px; text-align: center; }
.footer-light__brand-links a:hover { color: #b08449; }

/* ============================================================
   PRESS PAGE (Basında Dilek Gönülal)
   ============================================================ */
.press-grid-section { padding: 30px 0 80px; }
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.press-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 26px -14px rgba(14,32,68,.18);
    border: 1px solid rgba(14,32,68,.06);
    transition: transform .25s ease, box-shadow .25s ease;
    color: inherit;
}
.press-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -16px rgba(14,32,68,.28);
}
.press-card__cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f3f4f6;
}
.press-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.press-card:hover .press-card__cover img { transform: scale(1.05); }
.press-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.press-card__source {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b08449;
}
.press-card__title {
    font-family: 'Playfair Display', 'Inter', serif;
    font-size: 19px;
    font-weight: 500;
    color: #0e2044;
    line-height: 1.35;
    margin: 0;
}
.press-card__meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6b7280;
    padding-top: 10px;
    border-top: 1px solid rgba(14,32,68,.06);
}
.press-card__cta {
    color: #0e2044;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.press-card:hover .press-card__cta { color: #b08449; }
.press-card:hover .press-card__cta i { transform: translateX(3px); }
.press-card__cta i { transition: transform .2s; }
@media (max-width: 600px) {
    .press-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   MOBILE MENU FIX — white text on inner pages, hamburger right
   ============================================================ */
@media (max-width: 991px) {
    /* Force white text inside the open mobile drawer regardless of body class */
    body.is-inner #header #items-container-submenu.menu-split .menu a,
    body.is-inner #header .main-menu--centered .menu-split .menu a,
    body.is-home  #header #items-container-submenu.menu-split .menu a,
    body.is-home  #header .main-menu--centered .menu-split .menu a {
        color: #ffffff !important;
        text-shadow: none !important;
        font-weight: 500;
    }
    body.is-inner #header #items-container-submenu.menu-split .menu a:hover,
    body.is-inner #header .main-menu--centered .menu-split .menu a:hover,
    body.is-home  #header #items-container-submenu.menu-split .menu a:hover,
    body.is-home  #header .main-menu--centered .menu-split .menu a:hover {
        color: #b08449 !important;
    }

    /* Make the drawer cover the page even on inner pages */
    body.is-inner #header .main-menu--centered #items-container-submenu.menu-split.open,
    body.is-home  #header .main-menu--centered #items-container-submenu.menu-split.open {
        background: rgba(14,32,68,.98);
    }

    /* Ensure logo is on the LEFT, hamburger on the RIGHT (override anything else) */
    .main-menu--centered .brand-mobile-fixed {
        left: 16px !important;
        right: auto !important;
        position: absolute !important;
        width: auto !important;
    }
    .main-menu--centered .icons-container--mobile {
        right: 12px !important;
        left: auto !important;
        width: auto !important;
        justify-content: flex-end !important;
        position: absolute !important;
    }
}

/* Live editor: media remove (Sil) button */
.le-file-area { position: relative; }
.le-media-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(220, 53, 69, .92);
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    transition: background .15s;
}
.le-media-remove:hover { background: #c82333; }
.le-media-remove i { font-size: 11px; }

/* ---------- HARD FIX: Mobile logo always pinned LEFT, hamburger RIGHT (overrides all desktop brand-center rules) ---------- */
@media (max-width: 991px) {
    /* Neutralize ALL desktop brand-center sizing/margin/positioning that bleeds into mobile */
    .main-menu--centered .brand,
    .main-menu--centered .brand-center,
    .main-menu--centered .brand-mobile-fixed {
        width: auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 80px) !important;
        margin: 0 !important;
        flex: 0 0 auto !important;
        position: absolute !important;
        left: 16px !important;
        right: auto !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    /* Logo image rendered statically (not absolute centered) */
    .main-menu--centered .brand .logo-img,
    .main-menu--centered .brand-center .logo-img,
    .main-menu--centered .brand-mobile-fixed .logo-img,
    #header .main-menu--centered .brand .logo-img,
    #header.scrolled .main-menu--centered .brand .logo-img {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        height: 44px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        margin: 0 !important;
    }
    /* Hamburger pinned RIGHT regardless of scroll state */
    #header .main-menu--centered .icons-container--mobile,
    #header.scrolled .main-menu--centered .icons-container--mobile {
        position: absolute !important;
        right: 12px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        z-index: 1003 !important;
        justify-content: flex-end !important;
    }
}

/* Mobile: stack default + sticky logos on top of each other so swap doesn't shift layout */
@media (max-width: 991px) {
    .main-menu--centered .brand,
    .main-menu--centered .brand-center,
    .main-menu--centered .brand-mobile-fixed {
        width: 160px !important;
        max-width: 160px !important;
    }
    .main-menu--centered .brand .logo-img,
    .main-menu--centered .brand-center .logo-img,
    .main-menu--centered .brand-mobile-fixed .logo-img,
    #header .main-menu--centered .brand .logo-img,
    #header.scrolled .main-menu--centered .brand .logo-img {
        position: absolute !important;
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        height: 44px !important;
        max-width: 160px !important;
    }
}

/* Mobile drawer: hide the desktop brand-center logo that sits inside the menu */
@media (max-width: 991px) {
    .main-menu--centered .brand-desktop-only,
    #items-container-submenu .brand-desktop-only,
    #items-container-submenu .brand,
    #items-container-submenu .brand-center {
        display: none !important;
    }
}

/* ============================================

/* ============================================
   MYG HEADER v2 — diyagonal panel düzeni
   ============================================ */
:root{
  --myg-green:#4aa05c;
  --myg-green-dark:#3e8a4f;
  --myg-red:#dc4423;
  --myg-red-dark:#bf3a1d;
  --myg-text:#1f2a37;
  --myg-light:#f5f7f9;
  --myg-skew: 18deg;
}

#header.myg-header{position:relative;z-index:1000;background:#fff;font-family:'Inter',system-ui,sans-serif;}
#header.myg-header .navbar-prestige,
#header.myg-header .sub-navbar-prestige{display:none !important;}

/* ===== Top bar ===== */
.myg-topbar{background:#fff;border-bottom:1px solid #e5e9ee;font-size:14px;color:var(--myg-text);}
.myg-topbar__inner{max-width:1500px;margin:0 auto;padding:10px 28px;display:flex;align-items:center;gap:24px;}
.myg-topbar__contact{flex:1;display:flex;justify-content:center;gap:42px;flex-wrap:wrap;}
.myg-topbar__item{display:inline-flex;align-items:center;gap:10px;color:var(--myg-green);font-weight:600;text-decoration:none;transition:color .2s;}
.myg-topbar__item:hover{color:var(--myg-green-dark);}
.myg-topbar__item i{font-size:14px;color:var(--myg-text);}
.myg-topbar__social{display:flex;gap:14px;}
.myg-topbar__social a{color:var(--myg-text);font-size:15px;transition:color .2s;}
.myg-topbar__social a:hover{color:var(--myg-green);}

/* ===== Main bar ===== */
.myg-mainbar{position:relative;display:flex;align-items:stretch;background:var(--myg-green);min-height:96px;}

/* Beyaz logo bloğu — sağa diyagonal kesim ile yeşil panele uzanır */
.myg-mainbar__logo{position:relative;flex:0 0 auto;display:flex;align-items:center;background:#fff;padding:14px 70px 14px 36px;z-index:3;}
.myg-mainbar__logo::after{
  content:"";position:absolute;top:0;right:-44px;width:90px;height:100%;background:#fff;
  transform:skewX(calc(var(--myg-skew) * -1));transform-origin:top right;z-index:-1;
}
.myg-mainbar__logo a{display:block;line-height:0;}
.myg-mainbar__logo img{height:62px;width:auto;display:block;}

/* Yeşil panel (menü içeriği) */
.myg-mainbar__panel{flex:1;display:flex;align-items:center;justify-content:flex-end;padding:0 32px 0 60px;min-width:0;}

.myg-nav{display:flex;align-items:center;gap:8px;height:100%;}
.myg-nav-list{list-style:none;margin:0;padding:0;display:flex;align-items:center;height:100%;}
.myg-nav-item{position:relative;height:100%;display:flex;align-items:center;}
.myg-nav-item > a{display:inline-flex;align-items:center;gap:6px;padding:0 16px;height:100%;color:#fff;font-weight:600;font-size:14.5px;letter-spacing:.6px;text-decoration:none;transition:background .15s;}
.myg-nav-item > a:hover,
.myg-nav-item.is-open > a{background:rgba(0,0,0,.12);}
.myg-caret{font-size:9px;opacity:.9;transition:transform .2s;margin-left:2px;}
.myg-nav-item.is-open .myg-caret{transform:rotate(180deg);}

/* Submenu */
.myg-submenu{position:absolute;top:100%;left:0;min-width:240px;background:#fff;list-style:none;margin:0;padding:8px 0;box-shadow:0 14px 30px rgba(0,0,0,.18);border-top:3px solid var(--myg-red);opacity:0;visibility:hidden;transform:translateY(8px);transition:all .2s;z-index:20;}
.myg-nav-item:hover > .myg-submenu,
.myg-nav-item.is-open > .myg-submenu{opacity:1;visibility:visible;transform:translateY(0);}
.myg-submenu li a{display:block;padding:10px 18px;color:var(--myg-text);font-size:14px;font-weight:500;text-decoration:none;transition:background .15s,color .15s;}
.myg-submenu li a:hover{background:var(--myg-light);color:var(--myg-green);}

/* Dil seçici */
.myg-lang{position:relative;margin-left:14px;height:100%;display:flex;align-items:center;}
.myg-lang__btn{background:transparent;border:0;color:#fff;display:inline-flex;align-items:center;gap:8px;cursor:pointer;padding:8px 10px;font-size:13px;}
.myg-lang__btn i{font-size:9px;opacity:.9;}
.myg-flag{display:inline-block;width:22px;height:16px;border-radius:2px;background-repeat:no-repeat;background-size:cover;background-position:center;border:1px solid rgba(0,0,0,.12);box-shadow:0 1px 2px rgba(0,0,0,.08);vertical-align:middle;}
.myg-flag--tr{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'><rect width='1200' height='800' fill='%23E30A17'/><circle cx='425' cy='400' r='200' fill='%23fff'/><circle cx='475' cy='400' r='160' fill='%23E30A17'/><polygon fill='%23fff' points='583.262,400 517.5,421.367 517.5,489.512 558.148,434.566 623.91,455.934 583.262,400 623.91,344.066 558.148,365.434 517.5,310.488 517.5,378.633'/></svg>");}
.myg-flag--en{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'><clipPath id='a'><path d='M0 0v30h60V0z'/></clipPath><clipPath id='b'><path d='M30 15h30v15zv15H0zH0V0zV0h30z'/></clipPath><g clip-path='url(%23a)'><path d='M0 0v30h60V0z' fill='%23012169'/><path d='M0 0l60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/><path d='M0 0l60 30m0-30L0 30' clip-path='url(%23b)' stroke='%23C8102E' stroke-width='4'/><path d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/><path d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/></g></svg>");}
.myg-flag--de{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 3'><rect width='5' height='3' fill='%23000'/><rect width='5' height='2' y='1' fill='%23DD0000'/><rect width='5' height='1' y='2' fill='%23FFCE00'/></svg>");}
.myg-flag--ru{background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 6'><rect width='9' height='6' fill='%23fff'/><rect width='9' height='4' y='2' fill='%230039A6'/><rect width='9' height='2' y='4' fill='%23D52B1E'/></svg>");}
.myg-lang__menu{position:absolute;top:100%;right:0;min-width:160px;background:#fff;list-style:none;margin:0;padding:6px 0;box-shadow:0 12px 28px rgba(0,0,0,.18);border-top:3px solid var(--myg-red);opacity:0;visibility:hidden;transform:translateY(8px);transition:all .2s;z-index:25;}
.myg-lang.is-open .myg-lang__menu{opacity:1;visibility:visible;transform:translateY(0);}
.myg-lang__menu a{display:flex;align-items:center;gap:10px;padding:8px 14px;color:var(--myg-text);text-decoration:none;font-size:14px;}
.myg-lang__menu a:hover{background:var(--myg-light);}
.myg-lang__menu li.is-active a{background:var(--myg-light);font-weight:600;}

/* Kırmızı CTA — sola diyagonal */
.myg-cta{position:relative;display:flex;align-items:center;justify-content:center;background:var(--myg-red);color:#fff;text-decoration:none;font-weight:700;font-size:14px;letter-spacing:.7px;text-transform:uppercase;padding:0 38px 0 56px;min-width:200px;transition:background .2s;flex:0 0 auto;}
.myg-cta::before{
  content:"";position:absolute;top:0;left:-30px;width:60px;height:100%;background:var(--myg-red);
  transform:skewX(calc(var(--myg-skew) * -1));transform-origin:bottom left;z-index:0;
}
.myg-cta:hover{background:var(--myg-red-dark);}
.myg-cta:hover::before{background:var(--myg-red-dark);}
.myg-cta span{position:relative;z-index:1;}

/* Burger */
.myg-burger{display:none;background:transparent;border:0;width:46px;height:46px;flex-direction:column;justify-content:center;align-items:center;gap:5px;cursor:pointer;position:absolute;right:14px;top:50%;transform:translateY(-50%);z-index:6;}
.myg-burger span{display:block;width:26px;height:3px;background:#fff;border-radius:2px;transition:all .25s;}
.myg-burger[aria-expanded="true"] span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.myg-burger[aria-expanded="true"] span:nth-child(2){opacity:0;}
.myg-burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

/* ===== Responsive ===== */
@media (max-width: 1200px){
  .myg-mainbar__logo{padding:14px 56px 14px 22px;}
  .myg-mainbar__logo img{height:54px;}
  .myg-mainbar__panel{padding:0 20px 0 50px;}
  .myg-nav-item > a{padding:0 12px;font-size:13.5px;}
  .myg-cta{padding:0 30px 0 46px;min-width:170px;font-size:13px;}
}
@media (max-width: 980px){
  .myg-topbar__inner{flex-direction:column;align-items:flex-start;gap:8px;padding:8px 16px;}
  .myg-topbar__contact{justify-content:flex-start;gap:18px;font-size:13px;width:100%;}
  .myg-topbar__social{align-self:flex-end;margin-top:-26px;}
  .myg-mainbar{min-height:80px;}
  .myg-mainbar__logo{padding:10px 36px 10px 18px;}
  .myg-mainbar__logo::after{right:-24px;width:60px;}
  .myg-mainbar__logo img{height:46px;}
  .myg-mainbar__panel{padding:0;justify-content:flex-end;}
  .myg-nav{position:absolute;top:100%;left:0;right:0;background:var(--myg-green);max-height:0;overflow:hidden;transition:max-height .3s ease;z-index:30;flex-direction:column;align-items:stretch;height:auto;}
  .myg-nav.is-open{max-height:80vh;overflow-y:auto;}
  .myg-nav-list{flex-direction:column;align-items:stretch;width:100%;height:auto;}
  .myg-nav-item{height:auto;display:block;}
  .myg-nav-item > a{padding:14px 22px;border-bottom:1px solid rgba(255,255,255,.1);}
  .myg-submenu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border-top:0;background:rgba(0,0,0,.15);padding:0;display:none;}
  .myg-nav-item.is-open > .myg-submenu{display:block;}
  .myg-submenu li a{color:#fff;padding:10px 36px;}
  .myg-submenu li a:hover{background:rgba(0,0,0,.2);color:#fff;}
  .myg-lang{margin:0;padding:14px 22px;border-bottom:1px solid rgba(255,255,255,.1);}
  .myg-lang__menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border-top:0;display:none;background:rgba(0,0,0,.1);}
  .myg-lang.is-open .myg-lang__menu{display:block;}
  .myg-lang__menu a{color:#fff;}
  .myg-burger{display:flex;}
  .myg-cta{padding:0 22px 0 36px;min-width:0;font-size:12px;margin-right:60px;}
  .myg-cta::before{left:-18px;width:36px;}
}
@media (max-width: 540px){
  .myg-cta span{font-size:0;}
  .myg-cta{min-width:54px;padding:0 14px 0 24px;}
  .myg-cta::before{display:none;}
  .myg-cta::after{content:"\f0e0";font-family:"Font Awesome 6 Free";font-weight:900;font-size:16px;}
  .myg-topbar__item span{display:none;}
  .myg-topbar__item{font-size:18px;}
}

/* ============================================
   MYG SLIDER override — Vögel benzeri layout
   ============================================ */
#simulator-slider{height:680px;min-height:520px;max-height:720px;background:#fff;}
#simulator-slider .slide{background-position:center right;background-size:cover;background-repeat:no-repeat;}

/* MODE 1: Vögel-stili sol beyaz panel */
#simulator-slider .slide.has-white-panel::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 38%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.35) 65%, rgba(255,255,255,0) 78%);
  pointer-events:none;z-index:1;
}
#simulator-slider .slide.has-white-panel .video-overlay{
  background:linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 38%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.35) 65%, rgba(255,255,255,0) 78%);
}
#simulator-slider .slide.has-white-panel .text-header-inner .title{color:#0e2044 !important;text-shadow:none !important;}
#simulator-slider .slide.has-white-panel .text-header-inner .subtitle{color:#3a4555 !important;text-shadow:none !important;}

/* MODE 2: Komple hafif siyah katman, beyaz yazı */
#simulator-slider .slide.has-dark-overlay::after{
  content:"";position:absolute;inset:0;
  background:rgba(0,0,0,.45);
  pointer-events:none;z-index:1;
}
#simulator-slider .slide.has-dark-overlay .video-overlay{
  background:rgba(0,0,0,.45);
}
#simulator-slider .slide.has-dark-overlay .text-header-inner .title{color:#fff !important;text-shadow:0 2px 18px rgba(0,0,0,.5) !important;}
#simulator-slider .slide.has-dark-overlay .text-header-inner .subtitle{color:rgba(255,255,255,.92) !important;text-shadow:0 1px 10px rgba(0,0,0,.4) !important;}

/* Sol metin bloğu — dikey orta */
.text-header-container{
  position:absolute;top:50%;left:0;right:auto;bottom:auto;
  transform:translateY(-50%);
  display:block;
  padding:0 60px 0 90px;
  max-width:680px;width:55%;
  z-index:5;
}
.text-header-inner{position:relative;padding-left:24px;}
.text-header-inner::before{
  content:"";position:absolute;left:0;top:8px;bottom:8px;width:4px;background:var(--myg-red);border-radius:2px;
}
.text-header-inner .title{
  color:var(--myg-green-dark) !important;
  font-family:'Exo','Inter',system-ui,sans-serif !important;
  font-weight:800 !important;
  font-size:clamp(36px,5.2vw,72px) !important;
  letter-spacing:-0.5px !important;
  line-height:1.02 !important;
  margin:0 0 22px !important;
  text-shadow:none !important;
}
.text-header-inner .subtitle{
  color:var(--myg-text) !important;
  font-family:'Exo','Inter',system-ui,sans-serif !important;
  font-size:18px !important;
  font-weight:400 !important;
  line-height:1.5 !important;
  margin:0 0 30px !important;
  letter-spacing:.1px !important;
  max-width:520px;
}
.text-header-inner .btn,
.text-header-inner .btn-tertiary{
  display:inline-block;
  background:var(--myg-red);color:#fff;
  font-family:'Exo','Inter',system-ui,sans-serif !important;
  padding:16px 34px;font-weight:700;font-size:13.5px;
  letter-spacing:1.2px;text-transform:uppercase;
  border:0;border-radius:0;text-decoration:none;
  transition:background .2s, transform .15s;
  margin-right:12px;
}
.text-header-inner .btn:hover,
.text-header-inner .btn-tertiary:hover{background:var(--myg-red-dark);}
.text-header-inner .btn:active{transform:translateY(1px);}
.text-header-inner .hero-buttons{display:flex;flex-wrap:wrap;gap:14px;margin-top:8px;}
.text-header-inner .hero-buttons .btn{margin-right:0;}
.text-header-inner .btn-secondary-outline{
  display:inline-block;
  background:transparent;color:var(--myg-green-dark,#1f3147);
  font-family:'Exo','Inter',system-ui,sans-serif !important;
  padding:14px 32px;font-weight:700;font-size:13.5px;
  letter-spacing:1.2px;text-transform:uppercase;
  border:2px solid var(--myg-green-dark,#1f3147);border-radius:0;text-decoration:none;
  transition:background .2s,color .2s;
}
.text-header-inner .btn-secondary-outline:hover{background:var(--myg-green-dark,#1f3147);color:#fff;}

/* Slider kontrolleri — Vögel'deki gibi büyük yan oklar */
.slider-controls{
  position:absolute;top:0;left:0;right:0;bottom:auto;height:100%;
  display:block;pointer-events:none;
}
#simulator-slider .slider-controls button.slider-prev,
#simulator-slider .slider-controls button.slider-next{
  pointer-events:auto;
  position:absolute;top:50%;transform:translateY(-50%);
  width:80px!important;height:80px!important;border-radius:0!important;
  background:#fff!important;color:var(--myg-green)!important;border:0;
  display:flex;align-items:center;justify-content:center;
  font-size:36px;line-height:1;font-weight:300;cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.10);
  transition:background .2s,color .2s;
  font-family:'Exo','Inter',sans-serif;
}
#simulator-slider .slider-controls button.slider-prev i,
#simulator-slider .slider-controls button.slider-next i{font-weight:300;font-size:22px;}
#simulator-slider .slider-controls button.slider-prev{left:0;}
#simulator-slider .slider-controls button.slider-next{right:0;}
#simulator-slider .slider-controls button.slider-prev:hover,
#simulator-slider .slider-controls button.slider-next:hover{background:var(--myg-green)!important;color:#fff!important;}
#simulator-slider .slider-controls .slider-dots{
  position:absolute;left:50%;bottom:28px;transform:translateX(-50%);
  display:flex;gap:10px;pointer-events:auto;
}
#simulator-slider .slider-controls .slider-dots .dot{
  width:24px;height:5px;border-radius:0;background:#1f3147;border:0;cursor:pointer;transition:background .2s,transform .2s;transform:none;
}
#simulator-slider .slider-controls .slider-dots .dot.active{background:var(--myg-red);transform:none;}

/* Mobile */
@media (max-width: 900px){
  #simulator-slider{height:auto;min-height:560px;max-height:none;position:relative;}
  #simulator-slider .slide{display:flex;flex-direction:column;justify-content:flex-end;min-height:560px;}
  #simulator-slider .slide.has-white-panel::after{
    background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 55%, rgba(255,255,255,.95) 100%);
  }
  #simulator-slider .slide.has-dark-overlay::after{background:linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.75) 100%);}
  .text-header-container{position:relative;top:auto;left:auto;transform:none;width:100%;max-width:none;padding:0 22px 70px;z-index:5;margin-top:auto;}
  .text-header-inner .title{font-size:30px !important;}
  .text-header-inner .subtitle{font-size:14.5px !important;margin-bottom:18px !important;}
  /* Mobil: yan oklar gizli, sadece dots kalsın */
  #simulator-slider .slider-controls .slider-prev,
  #simulator-slider .slider-controls .slider-next{display:none !important;}
  #simulator-slider .slider-controls .slider-dots{bottom:20px;}
}

/* ============================================================
   CARGO GRID — Vögel benzeri 4 sütunlu hizmet ikonları
   ============================================================ */
.cargo-grid-section{background:#fff;padding:80px 24px;}
.cargo-grid-inner{
  max-width:1280px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
}
.cargo-card{
  position:relative;display:flex;flex-direction:column;align-items:center;
  text-align:center;padding:36px 24px 32px;
  background:#fff;border:1px solid #ececec;text-decoration:none;
  transition:box-shadow .25s,transform .25s,border-color .25s;
  min-height:300px;
}
a.cargo-card:hover{box-shadow:0 12px 32px rgba(0,0,0,.10);border-color:transparent;transform:translateY(-3px);}
.cargo-card-num{
  position:absolute;top:18px;right:24px;
  font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:64px;line-height:1;color:#f0f0f0;
  letter-spacing:-2px;pointer-events:none;user-select:none;
  -webkit-text-stroke:1px #e3e3e3;color:transparent;
}
.cargo-card-icon{
  width:120px;height:120px;display:flex;align-items:center;justify-content:center;
  margin:8px 0 28px;
}
.cargo-card-icon img{max-width:100%;max-height:100%;object-fit:contain;
  filter:drop-shadow(0 0 0 transparent);}
.cargo-card-title{
  font-family:'Exo','Inter',sans-serif;font-weight:800;
  font-size:17px;letter-spacing:1.6px;text-transform:uppercase;
  color:#007E9F;margin:0;line-height:1.25;
}

@media (max-width: 1024px){
  .cargo-grid-inner{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 540px){
  .cargo-grid-section{padding:48px 16px;}
  .cargo-grid-inner{grid-template-columns:1fr;gap:16px;}
  .cargo-card{min-height:260px;}
}

/* ============================================================
   STICKY HEADER — Vögel benzeri scroll-up sticky reveal (full white)
   ============================================================ */
.myg-header.is-sticky{
  position:fixed !important;top:0;left:0;right:0;width:100%;
  z-index:1100;background:#fff;
  box-shadow:0 4px 18px rgba(0,0,0,.08);
  transform:translateY(-100%);
  transition:transform .35s cubic-bezier(.22,.61,.36,1);
}
.myg-header.is-sticky.is-visible{transform:translateY(0);}
/* Sticky kopyada üst utility bar gizli (Vögel sade görünüm) */
.myg-header.is-sticky .myg-topbar{display:none !important;}
/* Mainbar tamamen beyaz, yeşil arkaplan kaldırılır */
.myg-header.is-sticky .myg-mainbar{
  background:#fff !important;
  min-height:72px;
  padding:6px 0;
}
.myg-header.is-sticky .myg-mainbar__logo{background:#fff !important;}
.myg-header.is-sticky .myg-mainbar__logo::after,
.myg-header.is-sticky .myg-mainbar__logo::before{display:none !important;}
.myg-header.is-sticky .myg-mainbar__logo img{max-height:54px;}
.myg-header.is-sticky .myg-mainbar__panel{background:#fff !important;}
.myg-header.is-sticky .myg-mainbar__panel::before,
.myg-header.is-sticky .myg-mainbar__panel::after{display:none !important;}
/* Menü linkleri Vögel teal renginde */
.myg-header.is-sticky .myg-nav-list > .myg-nav-item > a{
  color:#007E9F !important;
  text-shadow:none !important;
}
.myg-header.is-sticky .myg-nav-list > .myg-nav-item > a:hover,
.myg-header.is-sticky .myg-nav-list > .myg-nav-item.has-children:hover > a{
  color:var(--myg-red, #d3501f) !important;
}
.myg-header.is-sticky .myg-caret{color:inherit !important;}
.myg-header.is-sticky .myg-lang__btn{color:#007E9F !important;}
.myg-header.is-sticky .myg-lang__btn .myg-lang__label,
.myg-header.is-sticky .myg-lang__btn i{color:#007E9F !important;}
/* CTA (Talep Formu) düğmesi orijinal kırmızı renkte kalsın */
.myg-header.is-sticky .myg-cta{align-self:stretch;}

/* ============================================================
   SLIDER TEXT COLOR (admin-controlled: dark/light)
   ============================================================ */
#simulator-slider .slide.text-light .text-header-inner .title{color:#fff !important;text-shadow:0 2px 12px rgba(0,0,0,.45);}
#simulator-slider .slide.text-light .text-header-inner .subtitle{color:rgba(255,255,255,.92) !important;text-shadow:0 1px 6px rgba(0,0,0,.4);}
#simulator-slider .slide.text-light .text-header-inner .btn-secondary-outline{color:#fff;border-color:#fff;}
#simulator-slider .slide.text-light .text-header-inner .btn-secondary-outline:hover{background:#fff;color:var(--myg-green-dark,#1f3147);}
#simulator-slider .slide.text-dark .text-header-inner .title{color:var(--myg-green-dark,#1f3147) !important;}
#simulator-slider .slide.text-dark .text-header-inner .subtitle{color:#3a4a63 !important;}

/* ============================================================
   FLEET (Araç Filosu) — Vögel benzeri kart düzeni
   ============================================================ */
.fleet-page{max-width:1280px;margin:0 auto;padding:60px 24px 80px;}
.fleet-page__header{text-align:center;margin-bottom:48px;}
.fleet-page__upper{
  display:inline-block;font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:13px;letter-spacing:2px;text-transform:uppercase;color:var(--myg-red,#d3501f);
  margin-bottom:8px;
}
.fleet-page__title{
  font-family:'Exo','Inter',sans-serif;font-weight:800;
  font-size:clamp(28px,4vw,42px);color:var(--myg-green-dark,#1f3147);margin:0;
}
.fleet-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:70px 50px;
}
.fleet-card{
  display:block;text-decoration:none;color:inherit;
  position:relative;
  transition:transform .25s;
}
.fleet-card:hover{transform:translateY(-4px);}
.fleet-card__media{
  width:100%;background:transparent;text-align:center;
  position:relative;z-index:1;padding:0 0 0 0;
}
.fleet-card__media img{
  max-width:100%;height:auto;display:block;margin:0 auto;
  filter:drop-shadow(0 24px 28px rgba(0,0,0,.22));
}
.fleet-card__body{
  background:#fff;margin:18px 0 0 0;padding:38px 45px 42px;
  position:relative;z-index:2;
  box-shadow:0 14px 34px rgba(0,0,0,.08);
  width:100%;
}
.fleet-card__upper{
  display:inline-block;font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:12px;letter-spacing:2px;text-transform:uppercase;
  color:var(--myg-red,#d3501f);margin-bottom:6px;
}
.fleet-card__title{
  font-family:'Exo','Inter',sans-serif;font-weight:800;
  font-size:22px;letter-spacing:.5px;text-transform:uppercase;
  color:#007E9F;margin:0 0 18px;line-height:1.2;
}
.fleet-card__specs{list-style:none;padding:0;margin:0;}
.fleet-card__specs li{
  font-family:'Exo','Inter',sans-serif;font-size:14px;color:#007E9F;
  padding:4px 0;
}
.fleet-card__specs li strong{color:#007E9F;font-weight:600;margin-right:4px;}
.fleet-empty{grid-column:1/-1;text-align:center;color:#888;padding:60px 0;}

/* Detail */
.fleet-detail__hero{width:100%;max-height:560px;overflow:hidden;background:#f4f4f4;}
.fleet-detail__hero img{width:100%;height:auto;display:block;object-fit:cover;}
.fleet-detail__body{
  background:#fff;margin:-100px auto 0;padding:43px 47px 47px;max-width:760px;
  position:relative;z-index:2;
  box-shadow:0 6px 24px rgba(0,0,0,.06);border:1px solid #f0f0f0;
}
.fleet-card__specs--detail li{font-size:15px;}
.fleet-detail__desc{margin-top:20px;color:#333;line-height:1.65;}

@media (max-width: 900px){
  .fleet-grid{grid-template-columns:1fr;gap:32px;}
  .fleet-card__body{margin:16px 0 0 0;padding:30px 24px;width:100%;}
  .fleet-detail__body{margin:-60px 20px 0;padding:30px 24px;}
}

/* ============================================================
   LIVE EDITOR — Translatable field tabs (TR/EN/DE/RU)
   ============================================================ */
.le-tt-wrap{border:1px solid #2c2f36;border-radius:8px;background:#1d1f24;overflow:hidden;}
.le-tt-tabs{display:flex;background:#15171b;border-bottom:1px solid #2c2f36;}
.le-tt-tab{
  flex:1;background:transparent;border:none;color:#8a8f99;
  padding:10px 12px;font-size:11px;font-weight:600;letter-spacing:.5px;
  cursor:pointer;border-right:1px solid #2c2f36;transition:all .15s;
}
.le-tt-tab:last-child{border-right:none;}
.le-tt-tab:hover{color:#fff;background:#1d1f24;}
.le-tt-tab.is-active{color:#fff;background:#1d1f24;border-bottom:2px solid #b08449;margin-bottom:-1px;}
.le-tt-panels{padding:12px;}
.le-tt-panel{display:none;}
.le-tt-panel.is-active{display:block;}
.le-tt-panel input,
.le-tt-panel textarea{width:100%;background:#15171b;border:1px solid #2c2f36;color:#fff;padding:10px 12px;border-radius:6px;font-size:13px;}
.le-tt-panel .le-richtext-wrap{margin:0;}

/* ============================================================
   LIVE EDITOR — Image Cropper modal
   ============================================================ */
.le-crop-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.85);
  z-index:99999;display:flex;align-items:center;justify-content:center;padding:24px;
}
.le-crop-modal{
  background:#1d1f24;border-radius:10px;width:min(1100px,96vw);max-height:94vh;
  display:flex;flex-direction:column;color:#fff;box-shadow:0 30px 80px rgba(0,0,0,.6);
  overflow:hidden;
}
.le-crop-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 18px;border-bottom:1px solid #2c2f36;background:#15171b;
}
.le-crop-header strong{font-size:15px;letter-spacing:.5px;}
.le-crop-close{background:transparent;border:0;color:#aaa;font-size:26px;line-height:1;cursor:pointer;padding:0 6px;}
.le-crop-close:hover{color:#fff;}
.le-crop-toolbar{
  display:flex;align-items:center;gap:8px;padding:10px 14px;
  background:#15171b;border-bottom:1px solid #2c2f36;flex-wrap:wrap;
}
.le-crop-label{color:#888;font-size:12px;margin-right:4px;}
.le-crop-ratio,.le-crop-rotate,.le-crop-reset{
  background:#1d1f24;border:1px solid #2c2f36;color:#ccc;padding:6px 12px;border-radius:5px;
  font-size:12px;font-weight:600;cursor:pointer;transition:all .15s;
}
.le-crop-ratio:hover,.le-crop-rotate:hover,.le-crop-reset:hover{border-color:#b08449;color:#fff;}
.le-crop-ratio.is-active{background:#b08449;border-color:#b08449;color:#fff;}
.le-crop-stage{
  flex:1;min-height:0;background:#0e0f12;display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.le-crop-stage .le-crop-img{display:block;max-width:100%;max-height:60vh;}
.le-crop-footer{
  display:flex;justify-content:flex-end;gap:10px;padding:14px 18px;
  background:#15171b;border-top:1px solid #2c2f36;
}
.le-crop-cancel,.le-crop-confirm{
  padding:9px 18px;border-radius:6px;font-size:13px;font-weight:600;cursor:pointer;border:0;
}
.le-crop-cancel{background:#2c2f36;color:#ccc;}
.le-crop-cancel:hover{background:#3a3e47;color:#fff;}
.le-crop-confirm{background:#b08449;color:#fff;}
.le-crop-confirm:hover{background:#c89556;}

/* Cropper.js stage height */
.le-crop-stage .cropper-container{max-height:60vh;}

/* ============================================================
   FLEET CAROUSEL — section type
   ============================================================ */
.fleet-carousel-section{padding:60px 0 80px;}
.fleet-carousel__header{text-align:center;margin:0 auto 36px;max-width:900px;padding:0 20px;}
.fleet-carousel__upper{
  display:inline-block;font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:13px;letter-spacing:2px;text-transform:uppercase;
  color:var(--myg-red,#d3501f);margin-bottom:8px;
}
.fleet-carousel__title{
  font-family:'Exo','Inter',sans-serif;font-weight:800;
  font-size:clamp(26px,3.4vw,38px);color:var(--myg-green-dark,#1f3147);margin:0 0 12px;
}
.fleet-carousel__sub{color:#555;font-size:15px;line-height:1.6;margin:0;}

.fleet-carousel__wrap{position:relative;padding:0 60px;}
.fleet-carousel__track{
  display:flex;gap:28px;overflow-x:auto;scroll-snap-type:x mandatory;
  scroll-behavior:smooth;padding:14px 4px 18px;
  scrollbar-width:none;-ms-overflow-style:none;
}
.fleet-carousel__track::-webkit-scrollbar{display:none;width:0;height:0;}

.fleet-card--carousel{
  flex:0 0 calc((100% - 28px*2) / 3);
  scroll-snap-align:start;min-width:0;
}
.fleet-card--carousel .fleet-card__media img{filter:drop-shadow(0 14px 18px rgba(0,0,0,.18));}
.fleet-card--carousel .fleet-card__body{padding:24px 26px 26px;margin:10px 0 0 0;box-shadow:0 10px 26px rgba(0,0,0,.07);}
.fleet-card--carousel .fleet-card__upper{font-size:11px;letter-spacing:1.8px;margin-bottom:6px;}
.fleet-card--carousel .fleet-card__title{font-size:17px;margin:0 0 14px;line-height:1.2;}
.fleet-card--carousel .fleet-card__specs li{font-size:13px;padding:3px 0;}
@media (max-width:1180px){
  .fleet-card--carousel{flex:0 0 calc((100% - 28px) / 2);}
}
@media (max-width:760px){
  .fleet-carousel__wrap{padding:0 12px;}
  .fleet-card--carousel{flex:0 0 86%;}
}

.fleet-carousel__nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:46px;height:46px;border-radius:50%;border:0;
  background:#fff;color:#1f3147;font-size:28px;line-height:1;cursor:pointer;
  box-shadow:0 8px 22px rgba(0,0,0,.15);z-index:5;
  display:flex;align-items:center;justify-content:center;
  transition:all .2s;
}
.fleet-carousel__nav:hover{background:#1f3147;color:#fff;transform:translateY(-50%) scale(1.06);}
.fleet-carousel__nav--prev{left:6px;}
.fleet-carousel__nav--next{right:6px;}
@media (max-width:760px){
  .fleet-carousel__nav{display:none;}
}

/* ============================================================
   NEWS / ARTICLES — Vögel-style layout
   ============================================================ */
.vg-news-layout{
  display:grid;grid-template-columns:minmax(0,1fr) 320px;
  gap:40px;max-width:1340px;margin:0 auto;padding:50px 24px 70px;
  align-items:start;
}
.vg-news-main{padding:0 !important;max-width:none;}

/* Cards */
.vg-news-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:34px;
}
.vg-card{
  background:#fff;border:1px solid #ececec;display:flex;flex-direction:column;
  transition:box-shadow .2s, transform .2s;
}
.vg-card:hover{box-shadow:0 14px 30px rgba(0,0,0,.08);transform:translateY(-3px);}
.vg-card__media{display:block;line-height:0;}
.vg-card__media img{width:100%;height:230px;object-fit:cover;display:block;}
.vg-card__placeholder{
  width:100%;height:230px;background:#eef3f6;display:flex;align-items:center;justify-content:center;
  color:#b9c7d0;font-size:48px;
}
.vg-card__body{padding:26px 28px 28px;display:flex;flex-direction:column;gap:14px;}
.vg-card__title{
  font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:22px;line-height:1.2;color:#007E9F;text-decoration:none;
  transition:color .2s;
}
.vg-card__title:hover{color:#005a73;}
.vg-card__excerpt{
  font-family:'Inter',sans-serif;font-size:14px;line-height:1.55;color:#007E9F;margin:0;
}
.vg-card__btn{
  align-self:flex-start;background:#d3501f;color:#fff;
  padding:12px 26px;font-family:'Exo','Inter',sans-serif;
  font-size:13px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;
  text-decoration:none;border:0;cursor:pointer;transition:background .2s;
}
.vg-card__btn:hover{background:#b13e15;color:#fff;}

/* Sidebar */
.vg-news-sidebar{display:flex;flex-direction:column;gap:24px;position:sticky;top:120px;}
.vg-widget{background:#eaf3f7;padding:0;}
.vg-widget__title{
  position:relative;display:block;text-align:center;
  background:#fff;color:#007E9F;
  font-family:'Exo','Inter',sans-serif;font-weight:700;font-size:17px;
  letter-spacing:1px;text-transform:uppercase;
  padding:18px 16px;margin:0;
}
.vg-widget__title::before{
  content:"";position:absolute;left:14px;top:14px;bottom:14px;width:3px;background:#d3501f;
}
.vg-widget--search{padding:0 0 22px;}
.vg-search{display:flex;align-items:center;gap:0;padding:18px 18px 0;}
.vg-search__input{
  flex:1;height:42px;border:0;background:#fff;padding:0 14px;border-radius:30px 0 0 30px;
  font-size:14px;color:#333;outline:none;
}
.vg-search__btn{
  width:42px;height:42px;border-radius:0 30px 30px 0;background:#d3501f;color:#fff;border:0;
  display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:14px;
  transition:background .2s;
}
.vg-search__btn:hover{background:#b13e15;}

.vg-recent{list-style:none;margin:0;padding:8px 18px 22px;}
.vg-recent li{padding:14px 0;border-bottom:1px solid rgba(0,126,159,.18);}
.vg-recent li:last-child{border-bottom:0;}
.vg-recent a{
  color:#007E9F;font-family:'Exo','Inter',sans-serif;font-weight:600;font-size:14px;
  line-height:1.4;text-decoration:none;display:block;transition:color .2s;
}
.vg-recent a:hover{color:#005a73;}

@media (max-width: 980px){
  .vg-news-layout{grid-template-columns:1fr;gap:32px;padding:30px 16px 50px;}
  .vg-news-sidebar{position:static;}
  .vg-news-grid{grid-template-columns:1fr;gap:24px;}
  .vg-card__media img,.vg-card__placeholder{height:200px;}
}

/* ============================================================
   NEWS CAROUSEL — homepage section (Vögel News & Feeds)
   ============================================================ */
.news-carousel-section{
  position:relative;background:#f5f8fb;padding:90px 0 110px;overflow:hidden;
}
.news-carousel__bg{
  position:absolute;left:50%;top:30px;transform:translateX(-50%);
  font-family:'Exo','Inter',sans-serif;font-weight:900;
  font-size:clamp(140px, 20vw, 290px);line-height:.85;letter-spacing:6px;
  color:transparent;-webkit-text-stroke:1px rgba(0,126,159,.10);
  text-transform:uppercase;white-space:nowrap;pointer-events:none;user-select:none;
}
.news-carousel__header{
  position:relative;z-index:2;text-align:center;margin:0 auto 60px;max-width:900px;padding:0 20px;
}
.news-carousel__upper{
  display:block;color:#d3501f;font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:16px;letter-spacing:2px;text-transform:uppercase;margin-bottom:14px;
}
.news-carousel__title{
  margin:0;color:#007E9F;font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:60px;line-height:1.05;text-transform:uppercase;letter-spacing:1px;
}
.news-carousel__wrap{
  position:relative;z-index:2;max-width:1340px;margin:0 auto;padding:0 24px;
}
.news-carousel__track{
  display:flex;gap:30px;overflow-x:auto;scroll-snap-type:x mandatory;
  scrollbar-width:none;-ms-overflow-style:none;padding-bottom:6px;
}
.news-carousel__track::-webkit-scrollbar{display:none;}
.news-carousel__track > .nc-card{flex:0 0 calc((100% - 60px)/3);scroll-snap-align:start;}
@media (max-width:980px){
  .news-carousel__track > .nc-card{flex:0 0 calc((100% - 30px)/2);}
  .news-carousel__title{font-size:42px;}
}
@media (max-width:640px){
  .news-carousel__track > .nc-card{flex:0 0 90%;}
  .news-carousel__title{font-size:34px;}
}
.news-carousel__nav{
  position:absolute;top:50%;transform:translateY(-50%);width:46px;height:46px;border-radius:50%;
  background:#fff;color:#007E9F;border:1px solid #d8e3ea;display:flex;align-items:center;justify-content:center;
  font-size:24px;cursor:pointer;z-index:3;box-shadow:0 6px 14px rgba(0,0,0,.06);transition:.15s;
}
.news-carousel__nav:hover{background:#d3501f;color:#fff;border-color:#d3501f;}
.news-carousel__nav--prev{left:-6px;} .news-carousel__nav--next{right:-6px;}

.nc-card{background:#fff;border:1px solid #ececec;display:flex;flex-direction:column;
  transition:box-shadow .2s, transform .2s;}
.nc-card:hover{box-shadow:0 16px 34px rgba(0,0,0,.10);transform:translateY(-4px);}
.nc-card__media{position:relative;display:block;line-height:0;}
.nc-card__media img{width:100%;height:260px;object-fit:cover;display:block;}
.nc-card__placeholder{width:100%;height:260px;background:#eef3f6;display:flex;align-items:center;justify-content:center;color:#b9c7d0;font-size:54px;}
.nc-card__badge{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  border:1px solid #fff;color:#fff;background:rgba(0,0,0,.18);
  font-family:'Exo','Inter',sans-serif;font-weight:700;font-size:13px;letter-spacing:2px;
  padding:8px 22px;text-transform:uppercase;white-space:nowrap;
}
.nc-card__body{padding:26px 28px 22px;display:flex;flex-direction:column;gap:14px;}
.nc-card__title{
  font-family:'Exo','Inter',sans-serif;font-weight:700;font-size:22px;line-height:1.2;
  color:#007E9F;text-decoration:none;transition:color .2s;
}
.nc-card__title:hover{color:#005a73;}
.nc-card__sep{border:0;border-top:1px solid #d3501f;margin:0;opacity:.45;}
.nc-card__author{display:flex;align-items:center;gap:8px;color:#d3501f;
  font-family:'Exo','Inter',sans-serif;font-weight:700;font-size:13px;letter-spacing:1.2px;text-transform:uppercase;}
.nc-card__author i{font-size:14px;}

.myg-header.is-sticky .myg-logo--default{display:none;}
.myg-header.is-sticky .myg-logo--sticky{display:block;}

/* Hide + section buttons on /haberler (controller-rendered, not section-based) */
body.page-articles .le-add-section-btn,
body.page-articles .le-empty-add-btn{display:none !important;}

/* Sticky logo swap — override .myg-mainbar__logo img specificity */
.myg-mainbar__logo img.myg-logo--sticky{display:none !important;}
.myg-mainbar__logo img.myg-logo--default{display:block !important;}
.myg-header.is-sticky .myg-mainbar__logo img.myg-logo--default{display:none !important;}
.myg-header.is-sticky .myg-mainbar__logo img.myg-logo--sticky{display:block !important;}

/* Footer logo: do NOT invert if it's a real logo upload (only invert default fallback) */
.vg-footer__logo img{filter:none;}

/* ============================================================
   CONTACT INFO — Vögel theme override
   ============================================================ */
.section-contact-info{
  position:relative;background:#fff;padding:90px 0 100px;overflow:hidden;
}
.section-contact-info::before{
  content:"";position:absolute;inset:0;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 800'><g fill='%23007E9F' opacity='0.10'><circle cx='10' cy='10' r='1.5'/><circle cx='40' cy='10' r='1.5'/><circle cx='70' cy='10' r='1.5'/><circle cx='100' cy='10' r='1.5'/><circle cx='130' cy='10' r='1.5'/><circle cx='160' cy='10' r='1.5'/><circle cx='190' cy='10' r='1.5'/><circle cx='220' cy='10' r='1.5'/><circle cx='250' cy='10' r='1.5'/></g></svg>");
  background-size:240px 120px;background-repeat:repeat;opacity:.6;pointer-events:none;
}
.section-contact-info .ci-container{
  position:relative;z-index:2;max-width:1340px;margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:1fr 1.3fr;gap:60px;align-items:flex-start;
}
.ci-details{padding-top:30px;}
.ci-label{
  display:block;color:#d3501f;font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:15px;letter-spacing:2px;text-transform:uppercase;margin-bottom:12px;
}
.ci-title{
  margin:0 0 38px;color:#007E9F;font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:60px;line-height:1.0;text-transform:uppercase;letter-spacing:1px;
}
.ci-desc{color:#5a6c78;font-size:15px;line-height:1.65;margin:-22px 0 28px;}
.ci-items{display:flex;flex-direction:column;gap:30px;}
.ci-item{display:flex;gap:18px;align-items:flex-start;}
.ci-icon{
  flex:0 0 48px;width:48px;height:48px;border-radius:8px;
  background:#fff;border:1px solid #e2eef3;color:#d3501f;
  display:flex;align-items:center;justify-content:center;
}
.ci-icon svg{width:22px;height:22px;}
.ci-text{display:flex;flex-direction:column;gap:4px;font-family:'Exo','Inter',sans-serif;}
.ci-text strong{color:#007E9F;font-size:16px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:4px;}
.ci-text a, .ci-text span{color:#007E9F;font-size:14px;line-height:1.5;text-decoration:none;}
.ci-text a:hover{color:#d3501f;}

.ci-map{position:relative;min-height:520px;}
.ci-map-inner{position:relative;height:100%;min-height:520px;}
.ci-map-inner iframe,.ci-map-inner > *{width:100% !important;height:100% !important;min-height:520px;border:0 !important;display:block;}
.ci-map-placeholder{
  height:100%;min-height:520px;background:#eef6fa;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;color:#a8bfc9;
}

@media (max-width:980px){
  .section-contact-info .ci-container{grid-template-columns:1fr;}
  .ci-title{font-size:42px;}
  .ci-map,.ci-map-inner{min-height:380px;}
}

/* ============================================================
   FOOTER v2 — WHITE MINIMAL (overrides previous dark vg-footer)
   ============================================================ */
.vg-footer{
  background:#ffffff !important;
  color:#1f2937 !important;
  border-top:1px solid #e5edf1;
  padding:70px 0 0 !important;
  position:relative;
}
.vg-footer::before{display:none !important;}
.vg-footer__container{max-width:1280px;margin:0 auto;padding:0 24px;}
.vg-footer__grid{
  display:grid;grid-template-columns:1.4fr 1fr 1.3fr 1.1fr;gap:50px;
  padding-bottom:50px;
}
.vg-footer__col{display:flex;flex-direction:column;}
.vg-footer__logo{display:inline-block;margin-bottom:18px;}
.vg-footer__logo img{
  height:54px;width:auto;display:block;
  filter:none !important;
}
.vg-footer__about{
  color:#1f2937;font-size:14.5px;line-height:1.7;margin:0 0 22px;max-width:340px;font-weight:500;
}
.vg-footer__social{display:flex;gap:10px;flex-wrap:wrap;}
.vg-footer__social a{
  width:36px;height:36px;display:flex;align-items:center;justify-content:center;
  border-radius:50%;background:#f1f6f9;color:#007E9F;
  border:1px solid #e2eef3;transition:all .25s ease;
  text-decoration:none;font-size:14px;
}
.vg-footer__social a:hover{background:#007E9F;color:#fff;border-color:#007E9F;}

.vg-footer__title{
  margin:0 0 22px;color:#0e2433;font-family:'Exo','Inter',sans-serif;
  font-size:14px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;
  position:relative;padding-left:14px;
}
.vg-footer__title::before{
  content:"";position:absolute;left:0;top:2px;bottom:2px;width:3px;
  background:#d3501f;border-radius:2px;
}

.vg-footer__links,
.vg-footer__contact,
.vg-footer__news{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:11px;}
.vg-footer__links li a{
  color:#1f2937;text-decoration:none;font-size:14.5px;font-weight:600;
  display:inline-flex;align-items:center;gap:8px;transition:color .2s ease;
}
.vg-footer__links li a::before{
  content:"›";color:#d3501f;font-weight:700;font-size:16px;line-height:1;
}
.vg-footer__links li a:hover{color:#007E9F;}

/* News minimal (no images) */
.vg-footer__news--minimal li{border-bottom:1px solid #eef3f6;padding-bottom:11px;}
.vg-footer__news--minimal li:last-child{border-bottom:0;}
.vg-footer__news--minimal a{
  display:flex;flex-direction:column;gap:4px;text-decoration:none;
  transition:color .2s ease;
}
.vg-footer__news--minimal .vg-footer__news-title{
  color:#0b1320;font-size:14.5px;line-height:1.45;font-weight:600;
}
.vg-footer__news--minimal .vg-footer__news-date{
  color:#4b5563;font-size:11.5px;letter-spacing:1px;text-transform:uppercase;font-weight:600;
}
.vg-footer__news--minimal a:hover .vg-footer__news-title{color:#007E9F;}

.vg-footer__see-all{
  margin-top:18px;display:inline-flex;align-items:center;gap:6px;
  color:#d3501f;font-size:12px;font-weight:700;letter-spacing:1.5px;
  text-transform:uppercase;text-decoration:none;
}
.vg-footer__see-all:hover{color:#007E9F;}

.vg-footer__contact li{
  display:flex;gap:10px;align-items:flex-start;color:#1f2937;font-size:14.5px;line-height:1.55;font-weight:600;
}
.vg-footer__contact li i{color:#d3501f;font-size:14px;margin-top:4px;flex:0 0 16px;}
.vg-footer__contact li a{color:#1f2937;text-decoration:none;font-weight:600;}
.vg-footer__contact li a:hover{color:#007E9F;}

.vg-footer__bottom{
  border-top:1px solid #e5edf1;padding:22px 0;
  display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;
}
.vg-footer__copy{color:#1f2937;font-size:13.5px;font-weight:600;}
.vg-footer__bottom-links{
  list-style:none;margin:0;padding:0;display:flex;gap:22px;
}
.vg-footer__bottom-links a{color:#9aabb5;text-decoration:none;font-size:13px;}
.vg-footer__bottom-links a:hover{color:#007E9F;}

.vg-footer__partnerfy-bar{
  border-top:1px solid #e5edf1;padding:14px 0;text-align:center;background:#f7fafc;
}
.vg-footer__partnerfy{display:inline-flex;align-items:center;gap:8px;text-decoration:none;}
.vg-footer__partnerfy-label{color:#9aabb5;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;}
.vg-footer__partnerfy img{height:18px;width:auto;}

@media (max-width:980px){
  .vg-footer__grid{grid-template-columns:repeat(2,1fr);gap:40px;}
}
@media (max-width:640px){
  .vg-footer__grid{grid-template-columns:1fr;gap:34px;}
  .vg-footer__bottom{flex-direction:column;text-align:center;}
}

/* ============================================================
   /haberler — section button at TOP (un-hide and reposition)
   ============================================================ */
body.page-articles .le-add-section-btn,
body.page-articles .le-empty-add-btn{display:block !important;}
body.page-articles .le-add-btn{
  margin:0 auto 30px !important;padding-top:30px !important;padding-bottom:30px !important;
}
/* Move first add-btn to top of articles page */
body.page-articles main.articles-page{position:relative;}

/* ============================================================
   FLEET CAROUSEL v2 — Vögel header + stencil bg word + autoplay
   ============================================================ */
.fleet-carousel-section{
  position:relative !important;background:#f5f8fb;padding:90px 0 110px !important;overflow:hidden;
}
.fleet-carousel__bg{
  position:absolute;left:50%;top:30px;transform:translateX(-50%);
  font-family:'Exo','Inter',sans-serif;font-weight:900;
  font-size:clamp(140px, 20vw, 290px);line-height:.85;letter-spacing:6px;
  color:transparent;-webkit-text-stroke:1px rgba(0,126,159,.10);
  text-transform:uppercase;white-space:nowrap;pointer-events:none;user-select:none;z-index:1;
}
.fleet-carousel__header{
  position:relative;z-index:2;text-align:center;margin:0 auto 60px !important;max-width:900px;padding:0 20px;
}
.fleet-carousel__upper{
  display:block;color:#d3501f !important;font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:16px;letter-spacing:2px;text-transform:uppercase;margin-bottom:14px;
  background:none !important;
}
.fleet-carousel__title{
  margin:0;color:#007E9F !important;font-family:'Exo','Inter',sans-serif;font-weight:700;
  font-size:60px !important;line-height:1.05;text-transform:uppercase;letter-spacing:1px;
}
.fleet-carousel__sub{
  margin:14px auto 0;color:#5a6c78;font-size:15px;line-height:1.6;max-width:680px;
}
.fleet-carousel__wrap{position:relative;z-index:2;}
@media (max-width:780px){
  .fleet-carousel__title{font-size:42px !important;}
}

/* ============================================ */
/* VÖGEL "EFFICIENT ON ITS OWN MERITS" SECTION  */
/* ============================================ */
.section-merits{
    position:relative;
    padding:90px 0 110px;
    background:#fff;
    overflow:hidden;
}
.section-merits .merits-bg{
    position:absolute;
    inset:0;
    background-repeat:no-repeat;
    background-position:center right;
    background-size:cover;
    opacity:0.10;
    pointer-events:none;
    z-index:1;
}
.section-merits .merits-container{
    position:relative;
    z-index:2;
    max-width:1280px;
    margin:0 auto;
    padding:0 40px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}
.section-merits .merits-collage{
    position:relative;
    min-height:560px;
}
.section-merits .merits-img{
    position:absolute;
    background-size:cover;
    background-position:center;
    box-shadow:0 12px 32px rgba(0,0,0,.12);
}
.section-merits .merits-img--top{
    top:0;
    left:8%;
    width:60%;
    aspect-ratio:1/1;
}
.section-merits .merits-img--bottom{
    bottom:0;
    right:0;
    width:55%;
    aspect-ratio:1/1;
}
.section-merits .merits-text{}
.section-merits .merits-upper{
    color:#E30613;
    font-family:'Roboto', sans-serif;
    font-size:16px;
    font-weight:700;
    letter-spacing:.5px;
    margin:0 0 14px;
    text-transform:uppercase;
}
.section-merits .merits-title{
    color:#007E9F;
    font-family:'Exo', 'Roboto', sans-serif;
    font-size:60px;
    font-weight:700;
    line-height:1.1;
    margin:0 0 24px;
    text-transform:uppercase;
}
.section-merits .merits-paragraph,
.section-merits .merits-paragraph p{
    color:#007E9F;
    font-family:'Exo', 'Roboto', sans-serif;
    font-size:18px;
    line-height:1.55;
    margin:0 0 32px;
}
.section-merits .merits-stat{
    background:#fff;
    border-bottom:3px solid #E30613;
    box-shadow:0 18px 40px rgba(227,6,19,.10), 0 4px 12px rgba(0,0,0,.06);
    padding:28px 36px;
    display:flex;
    align-items:center;
    gap:20px;
    position:relative;
    margin-top:8px;
    max-width:560px;
}
.section-merits .merits-stat__num{
    color:#007E9F;
    font-family:'Roboto', sans-serif;
    font-size:80px;
    font-weight:700;
    line-height:1;
    margin:0;
    flex-shrink:0;
}
.section-merits .merits-stat__labels{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:2px;
}
.section-merits .merits-stat__small{
    color:#007E9F;
    font-family:'Roboto', sans-serif;
    font-size:18px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}
.section-merits .merits-stat__big{
    color:#007E9F;
    font-family:'Exo', 'Roboto', sans-serif;
    font-size:40px;
    font-weight:700;
    line-height:1;
    margin:0;
    text-transform:uppercase;
}
.section-merits .merits-stat__plane{
    position:absolute;
    right:24px;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    opacity:.18;
    pointer-events:none;
}
@media (max-width:980px){
    .section-merits{padding:60px 0 70px;}
    .section-merits .merits-container{grid-template-columns:1fr; gap:40px; padding:0 24px;}
    .section-merits .merits-collage{min-height:420px;}
    .section-merits .merits-title{font-size:42px;}
    .section-merits .merits-stat__num{font-size:60px;}
    .section-merits .merits-stat__big{font-size:30px;}
}

/* ===========================================================
   ÜÇLÜ PROMO (trio_promo) — Vögel tarzı 3 sütun layout
   Sol: altın panel (brand #b08449), Orta: koyu panel (#1a1a1a),
   Sağ: tam yükseklik büyük foto.
   =========================================================== */
.section-trio-promo {
    --trio-red:  #c8102e; /* logo kırmızısı */
    --trio-green:#1f7a3a; /* logo yeşili */
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    font-family: 'Exo', 'Inter', Arial, sans-serif;
}
.section-trio-promo .trio-col {
    position: relative;
    min-height: 560px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 90px 80px;
    color: #fff;
    overflow: hidden;
}
.section-trio-promo .trio-col--gold { background-color: var(--trio-red); }   /* sol → kırmızı */
.section-trio-promo .trio-col--dark { background-color: var(--trio-green); } /* orta → yeşil */
.section-trio-promo .trio-col--photo { padding: 0; min-height: 560px; }

.section-trio-promo .trio-col__inner {
    position: relative;
    z-index: 1;
    max-width: 440px;
    width: 100%;
}
.section-trio-promo .trio-col__icon {
    width: 86px;
    height: 86px;
    margin-bottom: 96px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.section-trio-promo .trio-col__icon img,
.section-trio-promo .trio-col__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Force-white SVG icons */
}
.section-trio-promo .trio-col__title {
    font-family: 'Exo', 'Inter', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0 0 24px;
    color: #fff;
    line-height: 1.25;
}
.section-trio-promo .trio-col__text,
.section-trio-promo .trio-col__text p {
    font-family: 'Exo', 'Inter', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #fff;
    margin: 0 0 16px;
}
.section-trio-promo .trio-col__text p:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
    .section-trio-promo {
        grid-template-columns: 1fr 1fr;
    }
    .section-trio-promo .trio-col--photo {
        grid-column: 1 / -1;
        min-height: 360px;
    }
}
@media (max-width: 640px) {
    .section-trio-promo {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .section-trio-promo .trio-col {
        min-height: 420px;
        padding: 50px 28px;
    }
    .section-trio-promo .trio-col--photo { min-height: 280px; }
    .section-trio-promo .trio-col__icon { margin-bottom: 36px; width: 54px; height: 54px; }
    .section-trio-promo .trio-col__title { font-size: 20px; }
    .section-trio-promo .trio-col__text { font-size: 15px; }
}
