:root {
    --bg-deep: #0a0e12;
    --bg-panel: #121922;
    --bg-elev: #0f1419;
    --line: #2a3544;
    --text: #e8eef5;
    --muted: #9aa8b8;
    --gold: #c9a227;
    --gold-dim: #8a7020;
    --accent: #4fd1c5;
    --danger: #ff8a80;
    --ok: #a5d6a7;
    --radius: 14px;
    --nav-w: 220px;
    --font: "DM Sans", system-ui, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    background: radial-gradient(1200px 800px at 20% 0%, #1a2433 0%, var(--bg-deep) 55%);
    color: var(--text);
    line-height: 1.6;
}

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

a {
    color: var(--gold);
}

/* —— Asansör şaftı: şeffaf (sarı kat çizgisi yok); opak dolgu kullanma — tüm site z-index üstünde kapanır —— */
.elev-shaft {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.elev-shaft__lines {
    position: absolute;
    inset: 0;
    background: transparent;
}

/* —— Elevator doors (hafif şeffaf) —— */
.elev-doors {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.elev-doors--closed {
    pointer-events: auto;
}

.elev-door {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 50.1%;
    background: linear-gradient(90deg, rgba(22, 30, 42, 0.52) 0%, rgba(32, 42, 58, 0.48) 50%, rgba(20, 28, 38, 0.52) 100%);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(201, 162, 39, 0.18);
    transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.35s ease;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.elev-doors--closed .elev-door {
    opacity: 0.88;
}

.elev-doors--open .elev-door,
.elev-doors:not(.elev-doors--closed) .elev-door {
    opacity: 0.35;
}

.elev-door--left {
    left: 0;
    transform: translateX(-100%);
}

.elev-door--right {
    right: 0;
    transform: translateX(100%);
}

.elev-doors--closed .elev-door--left {
    transform: translateX(0);
}

.elev-doors--closed .elev-door--right {
    transform: translateX(0);
}

/* —— Right navigation —— */
.site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--nav-w);
    height: 100vh;
    z-index: 1500;
    background: linear-gradient(180deg, #0d1218 0%, #151c26 40%, #0d1218 100%);
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0.9rem 1rem;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
}

.site-nav__brand {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    padding: 0 0.5rem 1rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0.75rem;
}

.site-nav__logo {
    display: block;
    text-decoration: none;
    line-height: 0;
}

.site-nav__logoimg {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    overflow-y: auto;
}

.site-nav__link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.5rem;
    margin-bottom: 0.2rem;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    background: rgba(201, 162, 39, 0.12);
    color: #fff;
    outline: none;
}

.nav-floor {
    font-size: 0.72rem;
    font-weight: 700;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #1e2733;
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.site-nav__admin {
    margin-top: auto;
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
}

/* Floor indicator */
.floor-display {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 1400;
    background: #0d1218;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.5rem 0.85rem;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.floor-display__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.floor-display__num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 1.5ch;
    text-align: center;
}

/* Main column offset for nav */
.site-main {
    margin-right: var(--nav-w);
    min-height: 100vh;
    transition: transform 0.45s ease-out;
    will-change: transform;
}

.site-main--elev-journey {
    animation: site-elev-bob 0.58s ease-in-out 1;
}

@keyframes site-elev-bob {
    0% {
        transform: translateY(12px);
    }
    45% {
        transform: translateY(-14px);
    }
    100% {
        transform: translateY(0);
    }
}

.section {
    min-height: min(100vh, 920px);
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
    scroll-margin-top: 1rem;
    border-bottom: 1px solid rgba(42, 53, 68, 0.6);
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(201, 162, 39, 0.4) 18%,
        rgba(224, 188, 74, 0.75) 50%,
        rgba(201, 162, 39, 0.4) 82%,
        rgba(0, 0, 0, 0) 100%
    );
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    opacity: 0.9;
}

.section__head {
    max-width: 900px;
    margin-bottom: 1.75rem;
}

.section__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 0.35rem;
    color: #fff;
}

.section__sub {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.section__inner {
    max-width: 1100px;
}

.section__inner--split {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
}

/* —— Hero slider —— */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    --hero-slides: 1;
    overflow: hidden;
    background: #0a0e12;
}

.hero-slider__track {
    display: flex;
    width: calc(var(--hero-slides) * 100%);
    min-width: 0;
    height: 100%;
    min-height: 100vh;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slider__slide {
    --slide-image: none;
    position: relative;
    flex: 0 0 calc(100% / var(--hero-slides, 1));
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #0a0e12;
    overflow: hidden;
}

.hero-slider__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-slider__img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slider__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, rgba(10, 14, 18, 0.75) 0%, rgba(10, 14, 18, 0.45) 45%, rgba(10, 14, 18, 0.55) 100%);
    pointer-events: none;
}

.hero--slide {
    position: relative;
    z-index: 2;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.hero__actions .btn--primary + .btn--primary {
    margin-top: 0.35rem;
}

@media (min-width: 640px) {
    .hero__actions .btn--primary + .btn--primary {
        margin-top: 0;
        margin-left: 0.35rem;
    }
}

.hero-slider--single .hero-slider__arrows,
.hero-slider--single .hero-slider__dots {
    display: none;
}

.hero-slider__arrows {
    position: absolute;
    bottom: 1.5rem;
    right: 1.25rem;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
    margin-right: 0;
}

@media (min-width: 961px) {
    .hero-slider__arrows {
        right: calc(var(--nav-w) + 1rem);
    }
}

.hero-slider__arrow {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: rgba(13, 18, 24, 0.85);
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
    background: rgba(201, 162, 39, 0.2);
    color: #fff;
    outline: none;
}

.hero-slider__dots {
    position: absolute;
    bottom: 1.5rem;
    left: 1.25rem;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    max-width: min(70vw, 420px);
}

.hero-slider__dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.45);
    background: rgba(0, 0, 0, 0.35);
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.hero-slider__dots button.is-active,
.hero-slider__dots button[aria-selected="true"] {
    background: var(--gold);
    border-color: #fff5;
    transform: scale(1.2);
}

/* Hero */
.section--hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-left: 0;
    padding-right: 0;
    background: radial-gradient(800px 500px at 70% 30%, rgba(79, 209, 197, 0.08), transparent), linear-gradient(160deg, #0f1419, #0a0e12);
}

.section--hero:has(.hero-slider) {
    background: #0a0e12;
    padding: 0;
}

.hero {
    position: relative;
    padding-right: min(38%, 420px);
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--accent);
    margin: 0 0 0.5rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero__lead {
    max-width: 36rem;
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0 0 1.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero__cabin {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: min(32%, 280px);
    aspect-ratio: 3/5;
    border: 2px solid rgba(201, 162, 39, 0.45);
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 0 40px rgba(0, 0, 0, 0.35);
    background: linear-gradient(180deg, #1a222e, #0f1419);
}

.hero__panel {
    flex: 1;
    background: linear-gradient(105deg, #2a3548, #1a222e 60%);
    animation: cabinShine 6s ease-in-out infinite;
}

.hero__panel--r {
    animation-delay: -3s;
}

@keyframes cabinShine {
    0%,
    100% {
        filter: brightness(0.95);
    }
    50% {
        filter: brightness(1.15);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold), #a38420);
    color: #0f0f0f;
    border-color: rgba(255, 255, 255, 0.15);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}

/* Cards */
.grid-cards {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card__ph {
    aspect-ratio: 16/9;
    background: repeating-linear-gradient(
            -45deg,
            #1a222e,
            #1a222e 8px,
            #222b38 8px,
            #222b38 16px
        ),
        radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.12), transparent 50%);
}

.card__ph--model {
    background: radial-gradient(circle at 70% 20%, rgba(79, 209, 197, 0.15), transparent 45%), #151c26;
}

.card__title {
    margin: 0;
    padding: 0.85rem 1rem 0.25rem;
    font-size: 1.1rem;
}

.card__text {
    margin: 0;
    padding: 0 1rem 1rem;
    color: var(--muted);
    font-size: 0.92rem;
    flex: 1;
}

.card__link {
    padding: 0 1rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* News */
.news-list {
    display: grid;
    gap: 1rem;
}

.news-item {
    padding: 1rem 1.1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(18, 25, 34, 0.85);
}

.news-item__date {
    font-size: 0.8rem;
    color: var(--muted);
}

.news-item__title {
    margin: 0.35rem 0;
    font-size: 1.1rem;
}

.news-item__title a {
    color: #fff;
    text-decoration: none;
}

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

.news-item__ex {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

/* Forms */
.form__row {
    margin-bottom: 1rem;
}

.form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    color: var(--muted);
}

.form input,
.form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #0d1218;
    color: var(--text);
    font-family: inherit;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.alert--ok {
    background: rgba(165, 214, 167, 0.12);
    border: 1px solid rgba(165, 214, 167, 0.35);
    color: var(--ok);
}

.contact-block p {
    margin: 0.35rem 0;
}

.map-embed {
    margin-top: 2rem;
}

.map-embed iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: var(--radius);
}

.prose p {
    margin-top: 0;
}

.site-footer {
    padding: 2rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
    border-top: 1px solid var(--line);
}

/* Inner pages */
.site-body--inner {
    background: var(--bg-elev);
}

.inner-main {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3rem) 1.25rem 4rem;
    margin-right: 0;
}

.inner-main--wide {
    max-width: 1100px;
}

/* İç sayfalar (slug): sağda sabit menü; ana sütun index .site-main gibi, metin sola hizalı */
.site-body--with-nav .inner-main {
    margin: 0;
    margin-right: var(--nav-w);
    margin-left: 0;
    text-align: left;
    max-width: none;
    width: auto;
    box-sizing: border-box;
}

/* Ana sayfadaki section__inner ile aynı maks. genişlik, ortalanmış kolon yok */
.site-body--with-nav .inner-main > .inner-back,
.site-body--with-nav .inner-main > .inner-article,
.site-body--with-nav .inner-main > .inner-list-head,
.site-body--with-nav .inner-main > .grid-cards {
    max-width: 1100px;
    margin-left: 0;
    margin-right: 0;
}

.floor-display--inner {
    display: none;
}

.site-nav__brand-txt {
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: block;
}

@media (max-width: 960px) {
    .site-body--with-nav .inner-main {
        margin-right: 0;
    }
}

.inner-list-head {
    margin-bottom: 2rem;
}

.inner-list-head__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.3rem);
    margin: 0 0 0.35rem;
    color: #fff;
}

.inner-list-head__sub {
    margin: 0;
    color: var(--muted);
}

/* Ana sayfa — Hizmetler: başlık + "Tüm hizmetler" */
.section__head--row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
}

.section__all {
    font-weight: 600;
    text-decoration: none;
    color: var(--gold);
    white-space: nowrap;
    font-size: 0.95rem;
}

.section__all:hover,
.section__all:focus-visible {
    text-decoration: underline;
    color: #fff;
    outline: none;
}

/* Hizmet kartı: tıklanabilir görsel ve başlık */
.card--service .card__img-link {
    display: block;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    line-height: 0;
}

.card--service .card__img {
    width: 100%;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.card--service .card__img-link:hover .card__img,
.card--service .card__img-link:focus-visible .card__img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.card__title-link {
    color: #fff;
    text-decoration: none;
}

.card__title-link:hover,
.card__title-link:focus-visible {
    color: var(--gold);
    outline: none;
}

/* Hizmet detay: solda resim, sağda başlık + metin; uzun metin resmin yanında ve altında akar (float) */
.service-detail__flow {
    overflow: hidden;
}

.service-detail__img {
    float: left;
    max-width: min(100%, 480px);
    width: 42%;
    height: auto;
    margin: 0 1.5rem 0.75rem 0;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: block;
}

.service-detail__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    margin: 0 0 0.75rem;
    line-height: 1.2;
    color: #fff;
}

.service-detail__body {
    color: var(--text);
    font-size: 1.02rem;
}

.service-detail__body p:first-child {
    margin-top: 0;
}

@media (max-width: 720px) {
    .section__head--row {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detail__img {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1.25rem;
    }
}

.inner-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
    font-weight: 600;
}

.inner-article__head time {
    color: var(--muted);
    font-size: 0.9rem;
}

.inner-article__head h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    margin: 0.5rem 0;
}

.inner-kicker {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: var(--gold);
    margin: 0;
}

.inner-lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin: 0 0 1rem;
}

.inner-hero-img {
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--line);
}

.inner-body {
    font-size: 1.02rem;
}

/* Mobil üst bar: solda marka, sağda burger (masaüstünde gizli) */
.mobile-bar {
    display: none;
}

/* Mobile nav toggle (masaüstü: gizli; mobil: mobile-bar içinde) */
.nav-toggle {
    display: none;
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #0d1218;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
}

@media (max-width: 960px) {
    :root {
        --nav-w: min(280px, 86vw);
    }

    .mobile-bar {
        display: flex;
        align-items: center;
        box-sizing: border-box;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1600;
        min-height: 3.25rem;
        padding: 0.5rem 0.75rem;
        background: linear-gradient(180deg, #0d1218 0%, #121922 100%);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }

    .mobile-bar__brand {
        flex: 0 1 auto;
        min-width: 0;
        margin-right: auto;
        text-align: left;
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 700;
        color: var(--gold);
        text-decoration: none;
        line-height: 1.2;
        padding: 0.25rem 0.5rem 0.25rem 0;
    }

    .mobile-bar .nav-toggle {
        flex: 0 0 auto;
        margin-left: 0.5rem;
    }

    .site-nav__brand {
        display: none;
    }

    .site-main {
        margin-right: 0;
        padding-top: 3.25rem;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        transform: translateX(100%);
        transition: transform 0.35s ease;
    }

    .site-nav.site-nav--open {
        transform: translateX(0);
    }

    .hero {
        padding-right: 0;
        padding-bottom: 8rem;
    }

    .hero__cabin {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: min(220px, 70%);
        margin-top: 2rem;
    }

    .section__inner--split {
        grid-template-columns: 1fr;
    }

    .floor-display {
        left: 0.75rem;
        bottom: 0.75rem;
    }
}

/* ── Sürükle-doğrula (Gönder öncesi) ─────────────────────── */
.drag-to-send {
    margin-bottom: 1rem;
    user-select: none;
    -webkit-user-select: none;
}

.drag-track {
    position: relative;
    height: 52px;
    background: var(--bg-elev, #0d1218);
    border: 1.5px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    cursor: default;
    transition: border-color 0.2s;
}
.drag-track:hover { border-color: var(--gold, #b8860b); }
.drag-track.is-unlocked {
    background: rgba(34, 85, 45, 0.35);
    border-color: #4caf50;
}

.drag-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}
.drag-track.is-unlocked .drag-label { color: #a5d6a7; }

.drag-handle {
    position: absolute;
    top: 4px; left: 4px;
    min-width: 48px; width: 48px; height: 44px;
    border-radius: 22px;
    background: var(--gold, #b8860b);
    color: #0d0d0d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 0 2px;
    cursor: grab;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    transition: background 0.2s, box-shadow 0.2s;
    touch-action: none;
}
.drag-handle:active { cursor: grabbing; }
.drag-handle:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}
.drag-grip, .drag-chevron { pointer-events: none; }
.drag-handle.is-unlocked {
    background: #4caf50;
    color: #fff;
    box-shadow: 0 2px 12px rgba(76, 175, 80, 0.35);
    cursor: default;
}

.form--with-drag .drag-to-send + .btn:disabled,
.form--with-drag .drag-to-send + .btn[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Sol alt: WhatsApp (ayar: admin) */
.whatsapp-float {
    position: fixed;
    right: 1rem;
    left: auto;
    bottom: 1rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.05); }
.whatsapp-float:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.whatsapp-float svg { width: 1.75rem; height: 1.75rem; fill: currentColor; }

/* Masaüstü: sağ menünün solunda, içerik alanının sağ altı */
@media (min-width: 961px) {
    .whatsapp-float {
        right: calc(var(--nav-w) + 1rem);
        left: auto;
    }
}

@media (max-width: 960px) {
    .whatsapp-float { right: 0.75rem; left: auto; bottom: 0.75rem; width: 3.1rem; height: 3.1rem; }
}

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

    .elev-door,
    .site-nav {
        transition: none;
    }

    .hero__panel {
        animation: none;
    }

    .site-main--elev-journey {
        animation: none;
    }

    .hero-slider__track {
        transition: none;
    }
}
