:root {
    /* surfaces — clean & corporate */
    --ink: #f5f5f0;
    /* page base — neutral off-white */
    --ink-soft: #ffffff;
    /* sections & cards — pure white */
    /* text — deep & neutral */
    --cream: #1a1a1a;
    /* primary text — near-black */
    --cream-dim: #6b6b6b;
    /* muted text — neutral gray */
    /* accent — corporate navy */
    --gold: #1e3a8a;
    /* deep navy */
    --gold-bright: #1e40af;
    /* hover navy */
    --line: rgba(26, 26, 26, .12);
    /* dark zones — deep navy for hero overlays & footer */
    --night: #0a1628;
    --on-dark: #ffffff;
    /* bright text on dark zones */
    --on-dark-dim: #94a3b8;
    /* muted text on dark zones (slate) */
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Jost', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    background: var(--ink);
    color: var(--cream);
    font-weight: 300;
    letter-spacing: .02em;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--ink)
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.05
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px
}

.eyebrow {
    font-size: .72rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: black;
    font-weight: 400;
}

/* ---------- NAV ---------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    transition: .4s ease;
    background: white;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

nav.scrolled {
    background: white !important;
    backdrop-filter: blur(14px);
    padding: 16px 40px;
    border-bottom: 1px solid var(--line);
}

body.auth-page nav {
    background: rgba(255, 255, 255, 0.90);
    border-bottom: 1px solid rgba(48, 41, 34, 0.08);
    backdrop-filter: blur(10px);
}

body.auth-page nav,
body.auth-page nav .logo,
body.auth-page nav .nav-links a,
body.auth-page nav .nav-auth,
body.auth-page nav .nav-cta {
    color: #2f2a23 !important;
}

body.auth-page nav .nav-auth {
    border-color: rgba(47, 42, 35, 0.24) !important;
}

body.auth-page nav .nav-auth:hover,
body.auth-page nav .nav-cta:hover {
    background: rgba(47, 42, 35, 0.06);
    color: #2f2a23 !important;
}

body.auth-page nav.scrolled,
body.auth-page nav.scrolled .logo,
body.auth-page nav.scrolled .nav-links a,
body.auth-page nav.scrolled .nav-auth,
body.auth-page nav.scrolled .nav-cta {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(48, 41, 34, 0.16);
    color: #2f2a23 !important;
}

body.auth-page nav .burger span {
    background: #2f2a23 !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif)
}

.logo-img {
    height: 30px;
    width: auto;
    display: block;
}

nav.scrolled .logo-img {
    height: 30px;
}

footer .logo-img {
    height: 30px;
}

.logo .mark {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    color: var(--gold);
    font-style: italic;
}

.logo .name {
    font-size: 1.45rem;
    letter-spacing: .06em
}

.logo .name span {
    color: var(--gold)
}

.logo small {
    display: block;
    font-family: var(--sans);
    font-size: .55rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-top: 2px
}

.nav-links {
    display: flex;
    gap: 38px;
    align-items: center
}

.nav-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
}

.nav-links a {
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cream-dim);
    transition: .3s;
    position: relative
}

.nav-links a:hover {
    color: var(--cream)
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: .3s
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    border: 1px solid var(--gold);
    padding: 11px 22px;
    border-radius: 2px;
    color: var(--cream) !important;
    letter-spacing: .16em !important
}

.nav-cta::after {
    display: none
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--ink) !important
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer
}

.burger span {
    width: 26px;
    height: 1.5px;
    background: var(--cream)
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0a1628;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 22, 40, .55) 0%, rgba(10, 22, 40, .25) 35%, rgba(10, 22, 40, .85) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at 50% 120%, rgba(30, 58, 138, .12), transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 90px
}

.hero .eyebrow {
    opacity: 0;
    animation: rise .9s .2s forwards
}

.hero h1 {
    font-size: clamp(2.5rem, 10vw, 7rem);
    margin: 22px 0 14px;
    letter-spacing: .01em;
    opacity: 0;
    animation: rise 1s .4s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold)
}

.hero p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--on-dark-dim);
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.7;
    opacity: 0;
    animation: rise 1s .6s forwards;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ---------- BOOKING ---------- */
.booking-wrap {
    position: relative;
    z-index: 10;
    margin-top: 60px !important;
    margin-bottom: -45px !important;
}

.booking-bar {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
    display: flex;
    align-items: stretch;
    padding: 8px;
    gap: 0;
    border: 1px solid rgba(10, 22, 40, 0.05);
    opacity: 0;
    animation: rise 1s .85s forwards;
}

.booking-bar .field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 15px;
    position: relative;
    border: none;
}

.booking-bar .field::before {
    display: none !important;
}

.booking-bar .field:not(:last-child):not(.book-btn)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(10, 22, 40, 0.08);
}

.booking-bar .field-icon {
    color: var(--gold);
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.booking-bar .field-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.booking-bar .field label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cream-dim);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.booking-bar .field select,
.booking-bar .field input {
    background: transparent;
    border: none;
    font-family: var(--sans);
    font-size: 16px;
    /* Prevents iOS zoom */
    font-weight: 500;
    color: var(--night);
    width: 100%;
    padding: 4px 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.booking-bar .field select:focus,
.booking-bar .field input:focus {
    outline: none;
}

.booking-bar .book-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 0 40px;
    min-height: 48px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-left: 8px;
}

@media (hover: hover) {
    .booking-bar .book-btn:hover {
        background: var(--night);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
    }

    .booking-bar .book-btn:hover svg {
        transform: translateX(4px);
    }
}

.booking-bar .book-btn svg {
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .booking-bar {
        flex-wrap: wrap;
        padding: 16px;
        gap: 8px;
    }

    .booking-bar .field {
        flex: 1 1 calc(50% - 8px);
        background: var(--ink);
        border-radius: 8px;
        padding: 12px 16px;
    }

    .booking-bar .field:not(:last-child):not(.book-btn)::after {
        display: none;
    }

    .booking-bar .book-btn {
        flex: 1 1 100%;
        margin-left: 0;
        margin-top: 8px;
    }
}

@media (max-width: 600px) {
    .booking-wrap {
        margin-top: 40px !important;
        margin-bottom: -80px !important;
    }

    .booking-bar .field {
        flex: 1 1 100%;
    }
}

/* ---------- SECTION SHELL ---------- */
section {
    padding: 130px 0
}

.sec-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 70px
}

.sec-head h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin: 18px 0
}

.sec-head h2 em {
    font-style: italic;
    color: var(--gold)
}

.sec-head p {
    color: var(--cream-dim);
    line-height: 1.8
}

/* ---------- FLEET ---------- */
#fleet {
    padding-top: 170px
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

/* ===== Kurumsal Araç Kartı ===== */
.car {
    position: relative;
    background: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease,
        box-shadow .35s ease,
        border-color .25s ease;
    box-shadow: 0 1px 0 rgba(26, 26, 26, .03);
}

.car:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 58, 138, .4);
    box-shadow: 0 16px 32px -20px rgba(15, 23, 42, .22),
        0 4px 12px -6px rgba(15, 23, 42, .10);
}

.car-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    background: #eef0f3;
}

.car-img::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 38%;
    background: linear-gradient(to top, rgba(26, 26, 26, .18), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}

.car:hover .car-img::before {
    opacity: 1;
}

.car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.car:hover .car-img img {
    transform: scale(1.06);
}

/* Sağ üst segment etiketi — kurumsal düz chip */
.car-segment-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    font-family: var(--sans);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: black;
    border-radius: 2px;
}

.car-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(10, 22, 40, .78);
    border: 1px solid var(--line);
    padding: 5px 12px;
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold)
}

.car-body {
    padding: 28px 28px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.car-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-bottom: 14px;
}

.car-eyebrow .dot {
    color: var(--gold);
    letter-spacing: 0;
}

.car-brand {
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--cream);
    margin: 0;
}

.car-model {
    font-family: var(--sans);
    font-size: .92rem;
    font-weight: 400;
    color: var(--cream-dim);
    margin-top: 6px;
    letter-spacing: .02em;
}

.car-accent {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin: 16px 0 20px;
}

.car-class {
    font-size: .7rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-top: 4px
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.spec {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 6px 12px;
    background: #f1f3f7;
    border: 1px solid var(--line);
    border-radius: 999px;
    line-height: 1;
}

.spec b {
    font-family: var(--sans);
    font-size: .82rem;
    font-weight: 600;
    color: var(--cream);
}

.spec span {
    font-family: var(--sans);
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.car-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 0 4px;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: .02em;
    color: var(--cream);
}

.car-includes span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.car-includes .ic-diamond {
    font-style: normal;
    font-size: .85rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.car-foot {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
}

.price b {
    font-family: var(--sans);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: -.01em;
}

.price span {
    font-size: .7rem;
    color: var(--cream-dim);
    letter-spacing: .08em;
    font-weight: 500;
}

.mini-btn {
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid var(--line);
    padding: 11px 20px;
    border-radius: 2px;
    transition: .3s
}

.mini-btn:hover {
    border-color: var(--gold);
    color: var(--gold)
}

/* ---------- CAR CTA BUTTONS (sadece araç kartı İncele / Kirala) ---------- */
.car-foot .car-cta {
    position: relative;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    font-family: var(--sans, 'Jost', sans-serif);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, color .35s ease, background .35s ease, border-color .35s ease;
    -webkit-tap-highlight-color: transparent;
}

.car-foot .car-cta span {
    position: relative;
    z-index: 2;
    transition: color .35s ease, letter-spacing .35s ease;
}

.car-foot .car-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .45s cubic-bezier(.7, 0, .2, 1);
}

.car-foot .car-cta:hover {
    transform: translateY(-1px);
}

.car-foot .car-cta:hover span {
    letter-spacing: .26em;
}

.car-foot .car-cta:active {
    transform: translateY(0);
}

.car-foot .car-cta:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* İncele — zarif outline */
.car-foot .car-cta-detail {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--line);
}

.car-foot .car-cta-detail::before {
    background: var(--cream);
}

.car-foot .car-cta-detail:hover {
    border-color: var(--cream);
    color: var(--ink);
    box-shadow: 0 10px 22px -16px rgba(26, 26, 26, .55);
}

.car-foot .car-cta-detail:hover::before {
    transform: scaleX(1);
}

/* Kirala — altın/sage dolu, içinde ok ikonu */
.car-foot .car-cta-rent {
    background: var(--gold);
    color: var(--ink-soft);
    border: 1px solid var(--gold);
    gap: 10px;
    box-shadow: 0 14px 26px -16px rgba(30, 58, 138, .7);
}

.car-foot .car-cta-rent::before {
    background: var(--cream);
}

.car-foot .car-cta-rent:hover {
    border-color: var(--cream);
    color: var(--ink-soft);
    box-shadow: 0 18px 30px -14px rgba(26, 26, 26, .55);
}

.car-foot .car-cta-rent:hover::before {
    transform: scaleX(1);
}

.car-foot .car-cta-rent .cta-arrow {
    position: relative;
    z-index: 2;
    width: 16px;
    height: 16px;
    color: currentColor;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.car-foot .car-cta-rent:hover .cta-arrow {
    transform: translateX(4px);
}

@media (max-width: 480px) {
    .car-foot .car-cta {
        padding: 0 16px;
        font-size: .68rem;
        letter-spacing: .18em;
    }

    .car-foot .car-cta:hover span {
        letter-spacing: .2em;
    }
}

/* ---------- EXPERIENCE ---------- */
#experience {
    background: var(--ink-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 30px
}

.exp {
    text-align: center;
    padding: 0 10px
}

.exp .ico {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold)
}

.exp h3 {
    font-size: 1.6rem;
    margin-bottom: 12px
}

.exp p {
    color: var(--cream-dim);
    line-height: 1.8;
    font-size: .95rem
}

/* ---------- DESTINATIONS ---------- */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.dest {
    position: relative;
    height: 440px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer
}

.dest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s ease
}

.dest:hover img {
    transform: scale(1.08)
}

.dest::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 22, 40, .9) 100%)
}

.dest-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px;
    text-align: center
}

.dest-cap .eyebrow {
    display: block;
    margin-bottom: 8px
}

.dest-cap h3 {
    font-size: 2rem
}

.dest-cap p {
    color: var(--cream-dim);
    font-size: .85rem;
    margin-top: 6px;
    opacity: 0;
    max-height: 0;
    transition: .45s;
    overflow: hidden
}

.dest:hover .dest-cap p {
    opacity: 1;
    max-height: 60px;
    margin-top: 12px
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
    text-align: center;
    background: linear-gradient(rgba(10, 22, 40, .72), rgba(10, 22, 40, .72)),
        url('laur2.webp') center/cover no-repeat;
    background-attachment: scroll;
}

@media (hover: hover) and (min-width: 1025px) {
    .cta-strip {
        background-attachment: fixed;
    }
}

.cta-strip h2 {
    font-size: clamp(2.4rem, 5vw, 4rem)
}

.cta-strip h2 em {
    font-style: italic;
    color: var(--gold)
}

.cta-strip p {
    color: var(--cream-dim);
    margin: 20px auto 36px;
    max-width: 480px;
    line-height: 1.8
}

.big-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    padding: 18px 50px;
    border-radius: 2px;
    font-size: .8rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s
}

.big-btn:hover {
    background: var(--gold-bright);
    transform: translateY(-3px)
}

.cta-strip .big-btn {
    border: none;

}

.cta-strip .big-btn:hover {
    background: var(--gold);
    transform: scale(1.05);
}

/* ---------- FOOTER ---------- */
footer {
    background: #0a1628;
    padding: 80px 0 36px;
    border-top: 1px solid var(--line)
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px
}

.foot-grid p {
    color: var(--cream-dim);
    line-height: 1.8;
    font-size: .92rem;
    margin-top: 18px;
    max-width: 280px
}

.foot-col h4 {
    font-size: .72rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-family: var(--sans);
    font-weight: 500
}

.foot-col a {
    display: block;
    color: var(--cream-dim);
    font-size: .92rem;
    margin-bottom: 12px;
    transition: .3s
}

.foot-col a:hover {
    color: var(--cream)
}

.foot-bottom {
    border-top: 1px solid var(--line);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cream-dim);
    font-size: .78rem;
    letter-spacing: .08em
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: .9s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}



/* ---------- ULTRA-MODERN VEHICLE DETAIL MODAL ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(40px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(10, 22, 40, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(26, 26, 26, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--cream);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gold);
    color: #fff;
    transform: rotate(90deg);
}

.modal-body-content {
    padding: 60px 50px 40px;
}

.modal-info {
    text-align: center;
}

.modal-info .eyebrow {
    font-size: 0.65rem;
    margin-bottom: 12px;
    display: block;
    opacity: 0.8;
}

.modal-info h2 {
    font-size: 3rem;
    color: var(--night);
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.modal-info .car-class {
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 45px;
    display: block;
}

.modal-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.feature-pill {
    background: #eef2f9;
    border: 1px solid rgba(26, 26, 26, 0.06);
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    background: #fff;
}

.feature-pill span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cream-dim);
    margin-bottom: 6px;
}

.feature-pill b {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--night);
    font-weight: 500;
}

.modal-desc {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 50px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.modal-actions .price {
    margin-bottom: 10px;
}

.modal-actions .price b {
    font-size: 2rem;
    color: var(--night);
}

.modal-actions .big-btn {
    width: 100%;
    max-width: 320px;
    background: var(--night);
    color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.2);
}

.modal-actions .big-btn:hover {
    background: var(--gold);
    transform: translateY(-4px);
}

@media(max-width: 600px) {
    .modal-body-content {
        padding: 50px 30px 30px;
    }

    .modal-info h2 {
        font-size: 2.2rem;
    }

    .modal-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ---------- MULTI PAGE NAV & EXTRA UI ---------- */
.nav-links a.active {
    color: var(--cream)
}

.nav-links a.active::after {
    width: 100%
}

.nav-auth,
.nav-list-btn {
    border: 2px solid var(--line);
    padding: 11px 18px;
    border-radius: 2px;
    color: var(--cream) !important;
    letter-spacing: .16em !important;
}

.nav-auth::after,
.nav-list-btn::after {
    display: none
}

.nav-auth:hover,
.nav-list-btn:hover {
    border-color: var(--gold);
    color: var(--gold) !important
}

.nav-auth.signup {
    background: transparent;
    border-color: var(--gold);
    color: var(--ink) !important;
    font-weight: 500;
    border: 1px solid var(--gold);
}

.nav-auth.signup:hover {
    background: var(--gold-bright);
    color: var(--ink) !important
}

/* Borderless auth links in navbar (Giris/Kayit/Hesabim/Cikis) */
.nav-auth-text {
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cream-dim);
    background: transparent;
    border: 0;
    padding: 0;
    transition: color .3s;
    position: relative;
}

.nav-auth-text:hover {
    color: var(--gold);
}

.nav-auth-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width .3s;
}

.nav-auth-text:hover::after {
    width: 100%;
}

nav .nav-auth-text {
    color: black !important;
}

nav .nav-auth-text:hover {
    color: var(--gold) !important;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-top: 34px;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 1s .75s forwards
}

.hero-actions .big-btn,
.hero-actions .outline-btn {
    border: none;

    color: var(--on-dark);
}

.hero-actions .big-btn:hover,
.hero-actions .outline-btn:hover {
    background: var(--gold);
    transform: scale(1.05);
    color: var(--on-dark);
}

.outline-btn {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--gold)
}

.outline-btn:hover {
    background: var(--gold);
    color: var(--ink)
}

/* ---------- INNER PAGES ---------- */
.page-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(10, 22, 40, .72) 0%, rgba(10, 22, 40, .48) 44%, rgba(10, 22, 40, .92) 100%),
        url('laur3.webp') center/cover no-repeat;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 105%, rgba(30, 58, 138, .16), transparent 62%)
}

.page-hero .wrap {
    position: relative;
    z-index: 2;
    padding-top: 96px
}

.page-hero h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
    margin: 20px 0 14px
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold)
}

.page-hero p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--cream-dim);
    font-size: 1.02rem;
    line-height: 1.8
}

.page-hero.auth-bg {
    min-height: 48vh;
    background:
        linear-gradient(180deg, rgba(10, 22, 40, .78), rgba(10, 22, 40, .9)),
        url('laur4.webp') center/cover no-repeat
}

.list-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: rgba(255, 252, 246, .82);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 18px 20px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.tool-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.pill {
    border: 1px solid var(--line);
    color: var(--cream-dim);
    padding: 9px 15px;
    border-radius: 999px;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase
}

.pill.active {
    border-color: var(--gold);
    color: var(--gold)
}

.list-note {
    color: var(--cream-dim);
    font-size: .88rem;
    line-height: 1.6
}

.details-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 22px;
    color: var(--cream-dim);
    font-size: .86rem
}

.details-list span {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px
}

.details-list b {
    color: var(--cream);
    font-weight: 400
}

.auth-section {
    padding-top: 70px;
    background:
        radial-gradient(ellipse at 50% 0, rgba(30, 58, 138, .08), transparent 55%), var(--ink)
}

.auth-card {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 252, 246, .92);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 42px;
    box-shadow: 0 36px 80px rgba(15, 23, 42, .14);
}

.auth-card h2 {
    font-size: 2.6rem;
    margin: 14px 0 10px;
    text-align: center
}

.auth-card p {
    color: var(--cream-dim);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 28px
}

.auth-field {
    margin-bottom: 18px
}

.auth-field label {
    display: block;
    font-size: .64rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 9px
}

.auth-field input,
.auth-field select {
    width: 100%;
    background: #f1f3f7;
    border: 1px solid var(--line);
    border-radius: 2px;
    color: var(--cream);
    padding: 15px 16px;
    font-family: var(--sans);
    font-size: 16px;
    letter-spacing: .02em;
    appearance: none;
    -webkit-appearance: none;
}

.auth-field input:focus,
.auth-field select:focus {
    outline: none;
    border-color: rgba(30, 58, 138, .62)
}

.auth-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 8px
}

.auth-alt {
    margin-top: 22px !important;
    margin-bottom: 0 !important;
    font-size: .92rem
}

.auth-alt a {
    color: var(--gold)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.auth-card.signup-card {
    max-width: 640px;
}

.auth-field .hint {
    display: block;
    font-size: .68rem;
    color: var(--cream-dim);
    margin-top: 6px;
    letter-spacing: .04em;
    font-style: italic;
}

.id-toggle {
    display: inline-flex;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
    background: rgba(255, 252, 246, .6);
}

.id-toggle label {
    cursor: pointer;
    padding: 9px 18px;
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cream-dim);
    transition: background .25s ease, color .25s ease;
    margin: 0;
}

.id-toggle input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.id-toggle input[type="radio"]:checked+label {
    background: #dbe4f5;
    color: #1a1a1a;
}

.password-match {
    font-size: .9rem;
    letter-spacing: .03em;
    margin-top: -6px;
    margin-bottom: 14px;
    min-height: 18px;
    transition: color .2s ease;
}

.password-match.ok {
    color: #6b8e6b;
}

.password-match.bad {
    color: #ff0000;
}

.auth-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 8px 0 22px;
    padding: 14px 16px;
    background: rgba(255, 252, 246, .55);
    border: 1px solid var(--line);
    border-radius: 3px;
}

.auth-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #f1f3f7;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.auth-consent input[type="checkbox"]:checked {
    background: #ffffff;
    border-color: #000000;
}

.auth-consent input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #1a1a1a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.auth-consent label {
    font-size: .82rem;
    line-height: 1.55;
    color: var(--cream-dim);
    letter-spacing: .01em;
    text-transform: none;
    cursor: pointer;
    margin: 0;
}

.auth-consent label a {
    color: black;
    text-decoration: underline;
}

.fine-print {
    font-size: .78rem;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-top: 16px;
    text-align: center
}

.fine-print a {
    color: var(--gold)
}

/* ---------- RESPONSIVE ---------- */

/* Tablet & Mobile (≤ 1024px) */
@media (max-width: 1024px) {
    .wrap {
        padding: 0 30px;
    }

    nav {
        padding: 16px 30px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        right: 30px;
        left: 30px;
        flex-direction: column;
        gap: 16px;
        padding: 30px;
        background: rgba(10, 22, 40, .98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 8px;
        z-index: 1000;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        color: white !important;
        font-size: 0.9rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-divider {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 8px 0;
    }

    .burger {
        display: flex;
    }

    .fleet-grid,
    .exp-grid,
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .foot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    section {
        padding: 80px 0;
    }

    /* Admin & Profile Specifics */
    .admin-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .profile-nav {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        border-radius: 8px;
        scrollbar-width: none;
    }

    .profile-nav::-webkit-scrollbar {
        display: none;
    }

    .profile-nav button {
        border-bottom: none;
        border-right: 1px solid var(--line);
        flex: 1 0 auto;
        text-align: center;
        padding: 16px 24px;
    }

    .profile-nav button:last-child {
        border-right: none;
    }

    .profile-nav button::before {
        width: 100%;
        height: 3px;
        top: auto;
        bottom: 0;
        left: 0;
        transform: scaleX(0);
        transform-origin: left;
    }

    .profile-nav button.active::before {
        transform: scaleX(1);
    }

    .lang-switch {
        width: 100%;
        justify-content: flex-start;
    }

    .lang-btn {
        width: 100%;
        justify-content: space-between;
    }

    .lang-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0 6px;
        transition: max-height .25s, padding .25s;
    }

    .lang-switch.open .lang-menu {
        max-height: 420px;
        padding: 6px;
    }
}

/* ============================================================
   SAFE AREA (NOTCH) SUPPORT
   ============================================================ */
@supports (padding-left: env(safe-area-inset-left)) {
    .wrap {
        padding-left: max(40px, env(safe-area-inset-left));
        padding-right: max(40px, env(safe-area-inset-right));
    }

    @media(max-width: 1024px) {
        .wrap {
            padding-left: max(30px, env(safe-area-inset-left));
            padding-right: max(30px, env(safe-area-inset-right));
        }

        nav {
            padding-left: max(30px, env(safe-area-inset-left));
            padding-right: max(30px, env(safe-area-inset-right));
        }
    }

    @media(max-width: 600px) {
        .wrap {
            padding-left: max(20px, env(safe-area-inset-left));
            padding-right: max(20px, env(safe-area-inset-right));
        }

        nav {
            padding-left: max(20px, env(safe-area-inset-left));
            padding-right: max(20px, env(safe-area-inset-right));
        }
    }

    nav {
        padding-left: max(40px, env(safe-area-inset-left));
        padding-right: max(40px, env(safe-area-inset-right));
        padding-top: max(16px, env(safe-area-inset-top));
    }

    footer {
        padding-bottom: max(36px, env(safe-area-inset-bottom));
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
    .wrap {
        padding: 0 20px;
    }

    nav {
        padding: 14px 20px;
    }

    .nav-links {
        top: 64px;
        right: 20px;
        left: 20px;
    }

    .fleet-grid,
    .exp-grid,
    .dest-grid,
    .foot-grid {
        grid-template-columns: 1fr;
    }

    .sec-head {
        margin-bottom: 40px;
    }

    .foot-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .dest {
        height: 320px;
    }

    .admin-actions-grid {
        grid-template-columns: 1fr;
    }

    .profile-page .profile-content .form-block,
    .profile-page .profile-content .quote-card {
        padding: 30px 24px;
    }

    .profile-page .form-grid {
        grid-template-columns: 1fr;
    }

    .tool-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        width: 100%;
        scrollbar-width: none;
        /* Firefox */
    }

    .tool-pills::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari/Webkit */
    }

    .pill {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .reservation-layout {
        grid-template-columns: 1fr;
    }

    .auth-card {
        max-width: 100%;
        padding: 20px;
    }
}

/* Redundant blocks removed */













/* ---------- RESERVATION FORM ---------- */
.reservation-section {
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0, rgba(30, 58, 138, .08), transparent 55%),
        var(--ink);
}

.reservation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(310px, .8fr);
    gap: 30px;
    align-items: start;
}

.quote-card,
.side-card {
    background: rgba(255, 252, 246, .92);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: 0 36px 80px rgba(15, 23, 42, .14);
}

.quote-card {
    padding: 38px
}

.side-card {
    padding: 30px;
    position: sticky;
    top: 110px
}

.form-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
    margin-bottom: 30px;
}

.form-intro h2 {
    font-size: 2.65rem;
    margin: 12px 0 8px
}

.form-intro h2 em {
    font-style: italic;
    color: var(--gold)
}

.form-intro p {
    color: var(--cream-dim);
    line-height: 1.8;
    max-width: 610px
}

.step-pill {
    min-width: 118px;
    border: 1px solid rgb(44 64 39);
    color: var(--gold);
    padding: 12px 14px;
    border-radius: 999px;
    text-align: center;
    font-size: .65rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    margin-top: 10px;
}

.form-block {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 22px;
    background: #f8f9fb;
}

.form-block legend {
    font-family: var(--serif);
    font-size: 1.65rem;
    color: var(--cream);
    padding-right: 18px;
}

.legend-note {
    display: block;
    color: var(--cream-dim);
    font-size: .86rem;
    line-height: 1.7;
    margin: 8px 0 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.form-grid.three {
    grid-template-columns: 1fr 1fr 1fr
}

.form-field {
    position: relative
}

.form-field.full {
    grid-column: 1/-1
}

.form-field label {
    display: block;
    font-size: .64rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 9px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: #f1f3f7;
    border: 1px solid rgb(0 0 0 / 13%);
    border-radius: 2px;
    color: var(--cream);
    padding: 15px 16px;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: .02em;
    transition: .25s;
    appearance: none;
    -webkit-appearance: none;
}

.form-field textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.7
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(30, 58, 138, .62);
    background: #ffffff
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(26, 26, 26, .42)
}

.form-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #000000 50%), linear-gradient(135deg, #000000 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-field select option {
    background: var(--ink-soft);
    color: var(--cream)
}

.form-field input[type=date],
.form-field input[type=time] {
    color-scheme: dark
}

.checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.check-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid var(--line);
    background: #f1f3f7;
    padding: 15px;
    border-radius: 2px;
    color: var(--cream-dim);
    line-height: 1.5;
}

.check-card input {
    accent-color: var(--gold);
    margin-top: 3px
}

.check-card b {
    display: block;
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 2px
}

.terms {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--cream-dim);
    line-height: 1.7;
    font-size: .86rem;
    margin: 18px 0 0;
}

.terms input {
    accent-color: var(--gold);
    margin-top: 6px
}

.terms a {
    color: var(--gold)
}

.form-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 28px;
}

.big-btn {
    display: inline-block;
    background: transparent;
    color: var(--ink);
    padding: 18px 50px;
    border-radius: 2px;
    font-size: .8rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s;
    border: none;
    border: 1px solid var(--gold);
    cursor: pointer;
}

.big-btn:hover {
    background: var(--gold-bright);
    transform: translateY(-3px)
}

.outline-btn {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--gold)
}

.outline-btn:hover {
    background: var(--gold);
    color: var(--ink)
}

.form-note {
    color: var(--cream-dim);
    font-size: .84rem;
    line-height: 1.7;
    max-width: 420px
}

.side-card .eyebrow {
    display: block;
    margin-bottom: 12px
}

.side-card h3 {
    font-size: 2rem;
    margin-bottom: 12px
}

.side-card p {
    color: var(--cream-dim);
    line-height: 1.8;
    font-size: .92rem
}

.summary-list {
    display: grid;
    gap: 12px;
    margin: 26px 0;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.summary-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--cream-dim);
    font-size: .86rem;
    line-height: 1.5
}

.summary-item span:first-child {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .65rem;
    color: #000000
}

.summary-item b {
    color: var(--cream);
    font-weight: 400;
    text-align: right
}

.contact-box {
    background: #f1f3f7;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 20px;
}

.contact-box a {
    display: block;
    color: var(--cream);
    margin-top: 8px
}

.contact-box small {
    display: block;
    color: var(--cream-dim);
    line-height: 1.7;
    margin-top: 12px
}

.status {
    display: none;
    margin-top: 20px;
    border: 1px solid rgba(30, 58, 138, .4);
    background: rgba(30, 58, 138, .08);
    padding: 18px;
    border-radius: 4px;
    color: var(--cream);
    line-height: 1.7;
}

/* ---------- ADMIN PANEL STYLES ---------- */
.admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.admin-action-btn {
    background: #f8f9fb;
    border: 1px solid var(--line);
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.admin-action-btn:hover {
    background: #fff;
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
}

.admin-action-btn .icon {
    font-size: 2.5rem;
    display: block;
}

.admin-action-btn h3 {
    font-size: 1.4rem;
    color: var(--night);
    margin: 0;
}

.admin-action-btn p {
    font-size: 0.85rem;
    color: var(--cream-dim);
    margin: 0;
    line-height: 1.4;
}

/* Admin Form Elements */
.admin-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-weight: 500;
}

.admin-input {
    width: 100%;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--night);
    margin-bottom: 10px;
    transition: border-color 0.3s ease;
}

.admin-input:focus {
    outline: none;
    border-color: var(--gold);
    background: #fafbfc;
}



.status.show {
    display: block
}

.status b {
    color: var(--gold);
    font-weight: 500
}

/* ---------- PROCESS ---------- */
.process {
    background: var(--ink-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px
}

.process-card {
    border: 2px solid var(--line);
    background: transparent;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
}

.process-no {
    width: 54px;
    height: 54px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.3rem;
}

.process-card h3 {
    font-size: 1.55rem;
    margin-bottom: 10px
}

.process-card p {
    color: var(--cream-dim);
    line-height: 1.8;
    font-size: .92rem
}

/* ---------- FOOTER ---------- */
footer {
    background: #0a1628;
    padding: 80px 0 36px;
    border-top: 1px solid var(--line)
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px
}

.foot-grid p {
    color: var(--cream-dim);
    line-height: 1.8;
    font-size: .92rem;
    margin-top: 18px;
    max-width: 280px
}

.foot-col h4 {
    font-size: .72rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-family: var(--sans);
    font-weight: 500
}

.foot-col a {
    display: block;
    color: var(--cream-dim);
    font-size: .92rem;
    margin-bottom: 12px;
    transition: .3s
}

.foot-col a:hover {
    color: var(--cream)
}

.foot-bottom {
    border-top: 1px solid var(--line);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cream-dim);
    font-size: .78rem;
    letter-spacing: .08em
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: .9s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ============================================================
   PALETTE FIXES — nav is now WHITE background, so text/icons
   must be dark (not white as old palette assumed)
   ============================================================ */

nav .logo .name {
    color: var(--cream);
}

nav .logo small {
    color: var(--cream-dim);
}

nav .nav-links a {
    color: var(--cream);
}

nav .nav-links a:hover,
nav .nav-links a.active {
    color: var(--gold);
}

nav .nav-cta,
nav .nav-auth:not(.signup),
nav .nav-list-btn {
    color: var(--cream) !important;
}

nav .burger span {
    background: var(--cream);
}

/* Mobile menu paneli kendi koyu zeminine sahip,
   içindeki linkler tekrar beyaz olmalı */
@media (max-width: 1024px) {
    .nav-links.open a {
        color: #ffffff !important;
    }

    .nav-links.open a:hover,
    .nav-links.open a.active {
        color: var(--gold) !important;
    }
}

/* Text that sits over photos / deep-green zones */
.hero h1,
.page-hero h1,
.cta-strip h2,
.dest-cap h3 {
    color: var(--on-dark);
}

.hero p,
.page-hero p,
.cta-strip p,
.dest-cap p {
    color: white;
}

.hero-actions .outline-btn {
    color: var(--on-dark);
}

.hero-actions .outline-btn:hover {
    color: var(--ink);
}

/* Date/time pickers now live on light panels */
.field input[type=date],
.form-field input[type=date],
.form-field input[type=time] {
    color-scheme: light;
}

/* Footer is deep Aegean green -> light text + light hairlines */
footer {
    border-top-color: rgba(255, 255, 255, .14);
}

footer .logo .name {
    color: var(--on-dark);
}

footer .foot-grid p,
footer .foot-col a,
footer .foot-bottom {
    color: var(--on-dark-dim);
}

footer .foot-col a:hover {
    color: var(--on-dark);
}

footer .foot-bottom {
    border-top-color: rgba(255, 255, 255, .14);
}

/* Mobile menu panel hairline on dark green */
@media(max-width:860px) {
    .nav-links {
        border-color: rgba(255, 255, 255, .16);
    }
}

/* ============================================================
   PROFILE PAGE STYLES (Clean & Modular Entegration)
   ============================================================ */
.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.profile-sidebar {
    position: sticky;
    top: 110px;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    background: rgba(255, 252, 246, .92);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.profile-nav button {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
    text-align: left;
    font-family: var(--sans);
    font-size: .95rem;
    color: var(--cream-dim);
    cursor: pointer;
    transition: .3s;
    letter-spacing: .02em;
}

.profile-nav button:last-child {
    border-bottom: none;
}

.profile-nav button:hover {
    background: #f8f9fb;
    color: var(--gold);
}

.profile-nav button.active {
    background: var(--gold);
    color: var(--ink);
    font-weight: 500;
}

.tab-content {
    display: none;
    animation: rise 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

/* Rezervasyon Kartları Mimarisi */
.res-card {
    background: rgba(255, 252, 246, .92);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: .3s;
}

.res-card:hover {
    border-color: rgba(30, 58, 138, .4);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, .08);
}

.res-info h3 {
    font-size: 1.8rem;
    margin: 8px 0;
}

.res-info p {
    color: var(--cream-dim);
    font-size: .9rem;
    line-height: 1.6;
}

.res-status-area {
    text-align: right;
}

.status-pill {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 2px;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 12px;
}

.status-pending {
    background: #fdf6e3;
    color: #b58900;
    border: 1px solid #eee8d5;
}

.status-preparing {
    background: #eef5fc;
    color: #268bd2;
    border: 1px solid #d4e4f7;
}

.status-approved {
    background: #eaf5e9;
    color: #2aa198;
    border: 1px solid #d0e6d3;
}

.status-completed {
    background: #f1f3f7;
    color: var(--cream-dim);
    border: 1px solid var(--line);
}

.price-tag {
    display: block;
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--gold);
}

@media(max-width: 1024px) {
    .res-status-area {
        text-align: left;
        width: 100%;
        border-top: 1px solid var(--line);
        padding-top: 16px;
    }
}

/* ============================================================
   REZERVASYON İPTAL (ÇARPI) BUTONU
   ============================================================ */
.cancel-res-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ff6b6b;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s ease;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.cancel-res-btn:hover {
    color: #d9534f;
    opacity: 1;
    transform: scale(1.1) rotate(90deg);
}


/* ============================================================
           PROFİL — PREMIUM KATMAN
           style.css'ten SONRA yüklenir; yalnızca görünümü zenginleştirir.
           HTML hook'ları, JS ve Supabase bağlantıları değişmemiştir.
           ============================================================ */

/* ---------- ARKA PLAN DERİNLİĞİ ---------- */
.profile-page .reservation-section {
    background:
        radial-gradient(ellipse at 12% 0%, rgba(30, 58, 138, .07), transparent 46%),
        radial-gradient(ellipse at 92% 18%, rgba(10, 22, 40, .06), transparent 42%),
        var(--ink);
}

/* ---------- ÜST BANT (HERO) ---------- */
.profile-page .page-hero.auth-bg {
    min-height: 56vh !important;
    background:
        linear-gradient(180deg, rgba(10, 22, 40, .60) 0%, rgba(10, 22, 40, .52) 42%, rgba(10, 22, 40, .95) 100%),
        url('laur4.webp') center/cover no-repeat;
}

.profile-page .page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.profile-page .page-hero .eyebrow::before,
.profile-page .page-hero .eyebrow::after {
    content: '';
    width: 44px;
    height: 1px;
    background: white;
}

.profile-page .page-hero h1 {
    position: relative;
    padding-bottom: 24px;
    font-size: clamp(2.6rem, 5.5vw, 4.6rem);
    letter-spacing: .01em;
}

.profile-page .page-hero h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 62px;
    height: 2px;
    background: var(--gold);
}

.profile-page .page-hero p {
    color: var(--on-dark-dim);
}

/* ---------- YERLEŞİM ---------- */
.profile-page .profile-layout {
    grid-template-columns: 300px 1fr;
    gap: 48px;
}

/* ---------- SOL PANEL: MONOGRAM KİMLİK KARTI ---------- */
.profile-page .profile-identity {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 36px 28px 32px;
    margin-bottom: 22px;
    border-radius: 4px;
    color: var(--on-dark);
    background: linear-gradient(160deg, #0a1628 0%, #142845 100%);
    box-shadow: 0 20px 50px rgba(10, 22, 40, .18);
}

.profile-page .profile-identity::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 125%, rgba(30, 58, 138, .28), transparent 60%);
    pointer-events: none;
}

.profile-page .monogram {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .38);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 2.15rem;
    font-style: italic;
    color: white;
}

.profile-page .identity-eyebrow {
    position: relative;
    z-index: 1;
    display: block;
    font-size: .58rem;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}

.profile-page .identity-name {
    position: relative;
    z-index: 1;
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--on-dark);
}

/* ---------- SOL PANEL: SEKME NAVİGASYONU ---------- */
.profile-page .profile-nav {
    box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}

.profile-page .profile-nav button {
    position: relative;
    padding: 18px 22px 18px 26px;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.profile-page .profile-nav button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform .3s ease;
}

.profile-page .profile-nav button:hover {
    background: #f8f9fb;
    color: var(--night);
}

.profile-page .profile-nav button.active {
    background: #ffffff;
    color: var(--night);
    font-weight: 600;
}

.profile-page .profile-nav button.active::before {
    transform: scaleY(1);
}

/* ---------- SOL PANEL: CONCIERGE KUTUSU ---------- */
.profile-page .contact-box {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .05);
}

.profile-page .contact-box .eyebrow {
    display: block;
    color: #930404;
    margin-bottom: 16px;
}

.profile-page .contact-box a {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--night);
    margin-top: 0;
    transition: color .3s ease;
}

.profile-page .contact-box a:hover {
    color: var(--gold);
}

.profile-page .contact-box small {
    color: var(--cream-dim);
    margin-top: 16px;
}

/* ---------- ANA KART ---------- */
.profile-page .profile-content .form-block,
.profile-page .profile-content .quote-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 46px 48px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .07);
}

.profile-page .profile-content .form-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(30, 58, 138, 0));
}

/* ---------- KART İÇİ BAŞLIK ---------- */
.profile-page .profile-content .form-intro {
    display: block;
    border-bottom: none;
    margin-bottom: 28px;
    padding-bottom: 0;
}

.profile-page .profile-content .form-intro h2 {
    position: relative;
    font-size: 2.3rem;
    margin: 0 0 18px;
    padding-bottom: 16px;
}

.profile-page .profile-content .form-intro h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.profile-page .profile-content .form-intro p {
    color: var(--cream-dim);
    line-height: 1.8;
}

/* ---------- FORM ALANLARI ---------- */
.profile-page .form-grid {
    gap: 24px 28px;
}

.profile-page .form-field label {
    font-size: .62rem;
    letter-spacing: .2em;
    color: #000000;
    margin-bottom: 11px;
}

.profile-page .form-field input {
    background: #fafbfc;
    border: 1px solid #e7e2da;
    border-radius: 2px;
    padding: 16px 18px;
    color: var(--night);
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.profile-page .form-field input::placeholder {
    color: rgba(26, 26, 26, .4);
}

.profile-page .form-field input:focus {
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, .1);
}

.profile-page .form-field input[type=date] {
    color-scheme: light;
}

/* ---------- ŞİFRE PANELİ + AÇMA BUTONU ---------- */
.password-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height .5s ease, opacity .4s ease, margin .4s ease;
}

.password-panel.show {
    max-height: 600px;
    opacity: 1;
    margin-top: 24px;
}

.profile-page .toggle-password-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--night);
    padding: 10px 0;
    margin-top: 28px;
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .22em;
    cursor: pointer;
    transition: color .35s ease, letter-spacing .35s ease;
}

.profile-page .toggle-password-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: var(--night);
    transform: scaleX(.3);
    transform-origin: left center;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1), background .35s ease;
}

.profile-page .toggle-password-btn::before {
    content: "›";
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-page .toggle-password-btn:hover {
    color: var(--gold);
    letter-spacing: .26em;
}

.profile-page .toggle-password-btn:hover::after {
    transform: scaleX(1);
    background: var(--gold);
}

.profile-page .toggle-password-btn:hover::before {
    transform: translate(4px, -1px);
}

.profile-page .toggle-password-btn:focus-visible {
    outline: none;
    color: var(--gold);
}

.profile-page .toggle-password-btn:focus-visible::after {
    transform: scaleX(1);
    background: var(--gold);
}

/* ---------- KAYDET BUTONU (BİRİNCİL) ---------- */
.profile-page #updateProfileBtn {
    background: var(--night);
    color: var(--on-dark);
    border: 1px solid var(--night);
    padding: 18px 50px;
    border-radius: 2px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: .3s ease;
}

.profile-page #updateProfileBtn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(30, 58, 138, .28);
}

/* ---------- REZERVASYON KARTLARI (JS enjekte eder) ---------- */
.profile-page .res-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 30px 32px;
    margin-bottom: 18px;
    align-items: center;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .05);
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.profile-page .res-card:hover {
    border-color: rgba(30, 58, 138, .4);
    box-shadow: 0 20px 48px rgba(15, 23, 42, .09);
    transform: translateY(-3px);
}

.profile-page .res-info .eyebrow {
    color: #ff0000;
}

.profile-page .res-info h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--night);
}

.profile-page .res-info p b {
    color: var(--night);
}

.profile-page .price-tag {
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--night);
}

.profile-page .status-pill {
    border: none;
    border-radius: 999px;
    padding: 7px 15px;
    font-size: .62rem;
    letter-spacing: .14em;
    font-weight: 600;
}

.profile-page .status-pending {
    background: rgba(30, 58, 138, .12);
    color: #b45309;
}

.profile-page .status-approved {
    background: rgba(46, 110, 78, .14);
    color: #2f6a4a;
}

.profile-page .status-preparing {
    background: rgba(63, 106, 130, .13);
    color: #3a6079;
}

.profile-page .status-completed {
    background: rgba(26, 26, 26, .08);
    color: var(--cream-dim);
}

.profile-page .cancel-res-btn {
    background: rgba(26, 26, 26, .05);
    color: var(--cream-dim);
    transition: background .25s ease, color .25s ease, transform .35s ease;
}

.profile-page .cancel-res-btn:hover {
    background: var(--gold);
    color: #ffffff;
    transform: rotate(90deg);
}

/* ---------- DUYARLI ---------- */


/* =========================
   Dil Seçici (i18n)
   ========================= */
.lang-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--cream-dim);
    font-family: inherit;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: .25s;
}

.lang-btn:hover {
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.45);
}

.lang-btn .lang-glyph {
    font-size: .9rem;
    line-height: 1;
}

.lang-btn .lang-caret {
    font-size: .65rem;
    opacity: .75;
    transition: transform .25s;
}

.lang-switch.open .lang-btn .lang-caret {
    transform: rotate(180deg);
}

nav.scrolled .lang-btn {
    border-color: rgba(20, 30, 50, 0.18);
    color: #1a2438;
}

nav.scrolled .lang-btn:hover {
    border-color: rgba(20, 30, 50, 0.45);
}

body.auth-page .lang-btn {
    border-color: rgba(20, 30, 50, 0.18);
    color: #1a2438;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: rgba(10, 22, 40, 0.97);
    border: 1px solid var(--line);
    border-radius: 12px;
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 1000;
}

.lang-switch.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li {
    margin: 0;
}

.lang-menu button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    color: var(--cream-dim);
    font-family: inherit;
    font-size: .82rem;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: .2s;
}

.lang-menu button:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--cream);
}

.lang-menu button.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream);
}

.lang-menu .lang-code {
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .72rem;
    min-width: 26px;
    opacity: .8;
}

.lang-menu .lang-name {
    font-size: .85rem;
}

/* ============================================================
   MOBILE POLISH — index.html için layout düzeltmeleri
   Breakpoint: ≤768px (iPhone'lardan iPad portrait'e kadar)
   ============================================================ */

/* Hero slider: drone fotoları portrait viewport'a cover olunca
   ortada anlamsız bölge görünüyor; odak noktasını biraz aşağı çek */
@media (max-width: 768px) {
    .hero-slide {
        background-position: center 40%;
    }
}

/* Hero inner: nav mobile'de daha kısa, padding-top'u azalt */
@media (max-width: 1024px) {
    .hero-inner {
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        padding-top: 56px;
    }

    .hero h1 {
        margin: 18px 0 12px;
    }
}

/* Booking-wrap: mobile'de stack edildiğinde negative margin
   fleet section'a çakışıyor — normal akışa al */
@media (max-width: 1024px) {
    .booking-wrap {
        margin-top: 40px !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 768px) {
    .booking-wrap {
        margin-top: 32px !important;
        margin-bottom: 0 !important;
    }

    /* Booking bar: tablet'te 2x2 grid yerine direkt tek sütun stack */
    .booking-bar .field {
        flex: 1 1 100%;
    }
}

/* Section padding: mobile'de büyük padding'leri makul değerlere indir */
@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    #fleet {
        padding-top: 80px;
    }

    .sec-head {
        margin-bottom: 36px;
    }

    .sec-head h2 {
        margin: 12px 0;
    }
}

/* Fleet/Experience/Destinations grid: tablet portrait'te de tek sütun
   (1024px breakpoint zaten 2 col yapıyor, 768'de tek sütuna geç) */
@media (max-width: 768px) {

    .fleet-grid,
    .exp-grid,
    .dest-grid,
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer: mobile'de stack edildiğinde içerik sola yapışıyor — ortala */
@media (max-width: 768px) {
    footer {
        padding: 56px 0 28px;
        text-align: center;
    }

    .foot-grid {
        gap: 36px;
        margin-bottom: 40px;
    }

    .foot-col .logo {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .foot-grid p {
        margin-left: auto;
        margin-right: auto;
    }

    .foot-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Destinations: mobile'de fixed 320px height yerine biraz daha kısa */
@media (max-width: 768px) {
    .dest {
        height: 280px;
    }

    .dest-cap {
        padding: 20px;
    }

    .dest-cap h3 {
        font-size: 1.5rem;
    }
}

/* Experience grid: mobilde tek sütun, ikon ve metin ortalanır */
@media (max-width: 768px) {
    .exp {
        padding: 0;
    }

    .exp h3 {
        font-size: 1.4rem;
    }
}

/* Tüm araç kartlarındaki resim object-position garantisi */
.car-img img,
.dest img {
    object-fit: cover;
    object-position: center;
}

/* Nav: iPhone notch (safe-area) — fixed nav, iOS'ta top'a yapışınca
   notch'un altına gizleniyor */
@supports (padding-top: env(safe-area-inset-top)) {
    @media (max-width: 768px) {
        nav {
            padding-top: max(14px, env(safe-area-inset-top));
        }
    }
}

/* Reveal animasyonu mobilde tetiklenmezse içerik görünmez kalır
   (kullanıcı hızlı scrolllarsa observer kaçırabilir) */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== Profil — mobil yan panel drawer (premium minimal) ===== */
/* Masaüstünde menü butonu, backdrop ve close butonu gizli */
.profile-menu-btn,
.profile-backdrop,
.profile-close-btn {
    display: none;
}

@media (max-width: 900px) {

    /* Layout tek kolon — form üstte ve tam genişlik */
    .profile-page .profile-layout,
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Sidebar: ekran dışında, soldan içeri kayar */
    .profile-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(320px, 86vw);
        max-width: 86vw;
        margin: 0;
        padding: 24px 22px calc(28px + env(safe-area-inset-bottom, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: white;
        border-right: 1px solid var(--line, rgba(0, 0, 0, .1));
        box-shadow: 18px 0 50px rgba(15, 23, 42, .25);
        transform: translateX(-100%);
        transition: transform .35s cubic-bezier(.2, .8, .2, 1);
        z-index: 1000;
    }

    body.profile-panel-open .profile-sidebar {
        transform: translateX(0);
    }

    /* Backdrop */
    .profile-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, .45);
        z-index: 999;
        opacity: 0;
        transition: opacity .3s ease;
        pointer-events: none;
    }

    body.profile-panel-open .profile-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    /* Açıkken sayfa scroll'u kilitlensin */
    body.profile-panel-open {
        overflow: hidden;
    }

    /* Premium menü butonu — formun üstünde, sola dayalı küçük chip */
    .profile-menu-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        align-self: flex-start;
        padding: 9px 16px 9px 12px;
        background: rgba(255, 252, 246, .92);
        border: 1px solid var(--line, rgba(0, 0, 0, .12));
        border-left: 3px solid var(--gold, #c9a961);
        border-radius: 3px;
        color: var(--ink, #0a1628);
        font-family: var(--sans, inherit);
        font-size: .72rem;
        font-weight: 500;
        letter-spacing: .26em;
        text-transform: uppercase;
        cursor: pointer;
        box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
        transition: background .25s ease, transform .15s ease;
    }

    .profile-menu-btn:hover {
        background: var(--gold, #c9a961);
        color: var(--ink, #0a1628);
    }

    .profile-menu-btn:active {
        transform: scale(.97);
    }

    .profile-menu-icon {
        display: inline-flex;
        color: var(--gold, #c9a961);
    }

    .profile-menu-btn:hover .profile-menu-icon {
        color: var(--ink, #0a1628);
    }

    /* Drawer içinde mevcut kimlik kartı boyutu mobil için biraz daha sıkı */
    .profile-page .profile-identity {
        padding: 28px 22px 26px;
        margin-bottom: 18px;
    }

    .profile-page .monogram {
        width: 62px;
        height: 62px;
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .profile-page .identity-name {
        font-size: 1.2rem;
    }

    /* Sticky'i mobilde iptal — fixed drawer kullanıyoruz */
    .profile-sidebar {
        position: fixed !important;
        top: 0 !important;
    }

    /* Drawer içinde sağ üst köşede ince × kapatma butonu (premium minimal) */
    .profile-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        padding: 0;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .35);
        background: rgba(10, 22, 40, .55);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        color: rgba(255, 255, 255, .92);
        cursor: pointer;
        z-index: 3;
        box-shadow: 0 4px 12px rgba(15, 23, 42, .18);
        transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
    }

    .profile-close-btn svg {
        display: block;
        transition: transform .35s cubic-bezier(.2, .8, .2, 1);
    }

    .profile-close-btn:hover {
        background: var(--gold, #c9a961);
        color: var(--ink, #0a1628);
        border-color: var(--gold, #c9a961);
    }

    .profile-close-btn:hover svg {
        transform: rotate(90deg);
    }

    .profile-close-btn:active {
        transform: scale(.92);
    }
}

/* ===== Auth formları (signup/login) — mobil overflow düzeltmesi =====
   form-row grid çocukları default min-width:auto ile içeriklerinden büyük kalıp grid'i taşırıyor.
   Mobilde tek kolona düş + input'lar konteyneri aşmasın. */
.auth-card .auth-field {
    min-width: 0;
}

.auth-card .auth-field input,
.auth-card .auth-field select,
.auth-card .auth-field textarea {
    max-width: 100%;
}

@media (max-width: 768px) {

    /* Auth section: normalize padding and alignment */
    body .auth-section {
        padding-top: 40px;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Navbar mobilde viewport ile uyumlu */
    body nav,
    body nav.scrolled {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 14px 20px !important;
    }

    body .auth-section>.wrap {
        padding: 0 !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Kart yapısını koru ama kenarlardan 0 padding yerine doğal wrap padding'ine bırak */
    body .auth-card,
    body .auth-card.signup-card,
    body section.auth-section .auth-card {
        max-width: 540px !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 30px 20px !important;
        border-radius: 8px !important;
        border: 1px solid var(--line) !important;
        box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08) !important;
        box-sizing: border-box !important;
        background: rgba(255, 255, 255, 0.98) !important;
    }

    /* Başlık ve metin öğeleri için padding'i sıfırla (kartın kendi padding'i var) */
    body .auth-card>.eyebrow,
    body .auth-card>h2,
    body .auth-card>p,
    body .auth-card>.auth-alt {
        padding: 0 !important;
        margin-left: 0;
        margin-right: 0;
    }

    body .auth-card>h2 {
        font-size: 2rem !important;
        margin-bottom: 12px !important;
    }

    body .auth-card>.eyebrow:first-child {
        padding-top: 0 !important;
    }

    body .auth-card>form {
        padding: 0;
        margin: 24px 0 0;
    }

    /* form-row tek kolon */
    body .auth-card .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* auth-field: inputlar kartın içinde düzgün dursun */
    body .auth-card .auth-field {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 16px;
    }

    body .auth-card .auth-field>label,
    body .auth-card .auth-field>.hint,
    body .auth-card .auth-field>.id-toggle {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body .auth-card .auth-field input,
    body .auth-card .auth-field select,
    body .auth-card .auth-field textarea {
        width: 100% !important;
        border-radius: 4px !important;
        border: 1px solid var(--line) !important;
    }

    body .auth-card form>.auth-consent,
    body .auth-card form>.password-match,
    body .auth-card form>.fine-print,
    body .auth-card form>#signupMessage,
    body .auth-card form>center {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body .auth-card .auth-consent {
        border: 1px solid var(--line) !important;
        border-radius: 4px !important;
        background: rgba(10, 22, 40, 0.02) !important;
    }

    /* Page Hero Başlık Küçültme (Taşmayı Önler) */
    .page-hero h1 {
        font-size: 2.4rem !important;
    }

    .page-hero .wrap {
        padding: 0 20px !important;
    }
}

.auth-card .form-row {
    grid-template-columns: 1fr;
    gap: 0;
}

.auth-card h2 {
    font-size: 1.85rem;
}

/* Kimlik türü toggle: dar ekranda taşmasın */
.auth-card .id-toggle {
    display: flex;
    width: 100%;
}

.auth-card .id-toggle label {
    flex: 1;
    text-align: center;
    padding: 9px 8px;
    font-size: .62rem;
    letter-spacing: .16em;
}


/* ===== Process bölümü — mobilde tamamen gizli ===== */
@media (max-width: 768px) {
    .process {
        display: none;
    }
}

/* ===== Rezervasyon formu — mobil overflow düzeltmesi =====
   Grid çocukları default min-width:auto ile içeriklerinden büyük kalıp grid'i taşırıyor.
   Body'de overflow-x:hidden olduğu için scroll görünmüyor, ama sayfa "yarım" görünüyor. */
.reservation-section .form-field {
    min-width: 0;
}

.reservation-section .form-field input,
.reservation-section .form-field select,
.reservation-section .form-field textarea {
    max-width: 100%;
}

@media (max-width: 768px) {

    .reservation-section .form-grid,
    .reservation-section .form-grid.three {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reservation-section .checks {
        grid-template-columns: 1fr;
    }

    .reservation-section .quote-card {
        padding: 22px 18px;
    }
}

/* ===== Talep Özeti — Minimal Popup (mobil) ===== */
/* Masaüstünde FAB ve backdrop gizli; sidebar klasik sticky kalır */
.summary-fab,
.summary-backdrop {
    display: none;
}

@media (max-width: 900px) {

    /* Reservation layout: form tek başına tam genişlik */
    .reservation-layout {
        grid-template-columns: 1fr;
    }

    /* Sağ alt köşede yuvarlak küçük buton */
    .summary-fab {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 18px;
        bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--ink, #0a1628);
        color: var(--gold, #c9a961);
        border: 1px solid var(--gold, #c9a961);
        cursor: pointer;
        box-shadow: 0 8px 24px rgba(15, 23, 42, .28);
        z-index: 1001;
        transition: transform .2s ease, background .2s ease;
    }

    .summary-fab:hover {
        background: var(--gold, #c9a961);
        color: var(--ink, #0a1628);
    }

    .summary-fab:active {
        transform: scale(.94);
    }

    .summary-fab-icon-close {
        display: none;
    }

    body.summary-open .summary-fab-icon-open {
        display: none;
    }

    body.summary-open .summary-fab-icon-close {
        display: inline-block;
    }

    /* Hafif backdrop — sadece tıklanabilir alan */
    .summary-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(10, 22, 40, .25);
        z-index: 999;
        opacity: 0;
        transition: opacity .25s ease;
        pointer-events: none;
    }

    body.summary-open .summary-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    /* Side-card: FAB'in üstünde küçük popup pencere — tüm ekranı kaplamaz */
    .side-card {
        position: fixed;
        right: 14px;
        bottom: calc(82px + env(safe-area-inset-bottom, 0px));
        left: auto;
        top: auto;
        width: min(300px, calc(100vw - 28px));
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0;
        padding: 18px 18px 16px;
        border-radius: 12px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, .25);
        transform-origin: bottom right;
        transform: scale(.92) translateY(8px);
        opacity: 0;
        pointer-events: none;
        transition: transform .22s cubic-bezier(.2, .8, .2, 1), opacity .22s ease;
        z-index: 1000;
    }

    body.summary-open .side-card {
        transform: scale(1) translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    /* Minimal görünüm: açıklama paragrafı, iletişim kutusu ve "Seçiminiz" başlığı gizli */
    .side-card>.eyebrow {
        font-size: .65rem;
        margin-bottom: 4px;
    }

    .side-card>h3 {
        display: none;
    }

    .side-card>p {
        display: none;
    }

    .side-card .contact-box {
        display: none;
    }

    .side-card .summary-list {
        margin-top: 10px;
        gap: 8px;
    }

    .side-card .summary-item {
        padding: 8px 0;
        font-size: .88rem;
    }
}

/* ===== MOBIL: Fleet & Destinations kartları yatay kaydırmalı carousel ===== */
@media (max-width: 768px) {

    .fleet-grid,
    .dest-grid {
        display: flex;
        grid-template-columns: none;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* wrap padding'i taşırarak ilk/son kart kenarda nefes alsın */
        padding: 4px 20px 20px;
        margin: 0 -20px;
        scroll-padding-left: 20px;
    }

    .fleet-grid::-webkit-scrollbar,
    .dest-grid::-webkit-scrollbar {
        display: none;
    }

    .fleet-grid>.car,
    .dest-grid>.dest {
        flex: 0 0 82%;
        max-width: 360px;
        scroll-snap-align: start;
    }

    /* dest kart yüksekliği carousel modunda tutarlı kalsın */
    .dest-grid>.dest {
        height: 280px;
    }

    /* Yükleniyor mesajı tek satırda olduğunda hizalansın */
    .fleet-grid>p {
        flex: 0 0 100%;
    }
}

/* ============================================================
   AGGRESSIVE MOBILE OVERFLOW FIX
   (Kullanıcının hala sağa kaydırabildiği sığmama sorunu için)
   ============================================================ */
@media (max-width: 768px) {

    /* 1. Kök Düzeyinde Taşma Koruması */
    html,
    body {
        width: 100vw;
        max-width: 100%;
        overflow-x: hidden !important;
        position: relative;
    }

    /* 2. Navigasyon Çubuğunun Taşımasını Engelle */
    body nav,
    body nav.scrolled {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        padding: 12px 20px !important;
        box-sizing: border-box !important;
    }

    /* 3. Wrap ve İçerik Alanı Uyumsuzluğunu Gider (Hero ve Auth uyumu) */
    body .auth-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body .auth-section>.wrap,
    .page-hero .wrap {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }

    /* 4. Auth Kartının Genişliğini Ekranı Aşmayacak Şekilde Sabitle */
    body .auth-card,
    body .auth-card.signup-card,
    body section.auth-section .auth-card {
        max-width: calc(100vw - 40px) !important;
        width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* 5. Taşmaya Neden Olabilecek Diğer Unsurlar (Carousel vb.) */
    .fleet-grid,
    .dest-grid {
        max-width: 100vw;
        overflow-x: auto !important;
        box-sizing: border-box;
    }
}

/* ============================================================
   PWA INSTALL BANNER (Ana Ekrana Ekle) — mobile only
   ============================================================ */
.pwa-install-banner {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    background: #0a1628;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
    transform: translateY(140%);
    opacity: 0;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .35s ease;
    font-family: 'Jost', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.pwa-install-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.pwa-banner-inner {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 16px 18px 16px 16px;
    align-items: start;
}

.pwa-banner-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
}

.pwa-banner-close:active {
    background: rgba(255, 255, 255, 0.08);
}

.pwa-banner-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #000;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(59, 130, 246, 0.25);
}

.pwa-banner-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pwa-banner-body {
    min-width: 0;
    padding-right: 22px;
}

.pwa-banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin: 0 0 4px;
    color: #fff;
    letter-spacing: .2px;
}

.pwa-banner-desc {
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 0;
    color: #cbd5e1;
}

.pwa-banner-ios-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #93c5fd;
}

.pwa-banner-ios-steps .pwa-step {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(147, 197, 253, 0.12);
}

.pwa-banner-ios-steps .pwa-step-arrow {
    font-size: 14px;
    color: #94a3b8;
}

.pwa-banner-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.pwa-banner-btn {
    flex: 1;
    min-height: 44px;
    padding: 10px 14px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform .15s ease, background .2s ease;
}

.pwa-banner-btn:active {
    transform: scale(0.97);
}

.pwa-banner-install {
    background: #fff;
    color: #0a1628;
}

.pwa-banner-later {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.pwa-banner-already {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px 10px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-family: inherit;
    font-size: 0.78rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.pwa-banner-already:active {
    color: #cbd5e1;
}

@media (min-width: 520px) {
    .pwa-install-banner {
        left: auto;
        right: 16px;
        bottom: 16px;
        max-width: 380px;
    }
}