:root {
    --orange: #F5A623;
    --orange2: #E89A12
}

* {
    box-sizing: border-box
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Arial
}

#hero {
    position: relative;
    margin-top: 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 120px 20px 50px;
    background: url('../img/hero.jpg') center/cover no-repeat;
    transition: opacity .6s ease
}

.content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%
}

.text {
    text-align: center;
    margin-bottom: 30px
}

.logo {
    font-weight: 700;
    letter-spacing: .5px;
    opacity: .9;
    font-size: 48px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
    margin-bottom: 10px
}

.heading {
    font-size: 56px;
    font-weight: 700;
    margin: 10px 0 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .2);
    opacity: 0;
    animation: slideInDown 1s ease-out .3s forwards
}

.subtitle {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, .95);
    margin-top: 20px;
    opacity: 0;
    animation: slideInDown 1s ease-out 1.3s forwards
}

.trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .2);
    margin-top: 20px;
    opacity: 0;
    animation: fadeScale .8s ease 1.6s forwards
}

.form-card {
    background: #F5F5F5;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    animation: none;
    overflow: visible
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr .8fr .7fr .7fr;
    gap: 16px
}

.form-grid.quick {
    grid-template-columns: 1.2fr 1.2fr .8fr 1fr
}

.input-wrapper {
    position: relative
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 20px;
    pointer-events: none;
    z-index: 1;
    width: 20px;
    height: 20px
}

.input-icon svg {
    display: block;
    width: 20px;
    height: 20px
}

.form-input {
    height: 56px;
    padding: 0 16px 0 50px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    background: #fff;
    transition: .3s;
    position: relative;
    width: 100%
}

/* Normalize date/time inputs height (desktop) */
input[type="date"].form-input,
input[type="time"].form-input {
    height: 56px;
    font-size: 16px
}

.form-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, .1);
    outline: none
}

.form-input::placeholder {
    color: #222;
    font-weight: 600;
    opacity: 1
}

/* Visual placeholder hint overlay for date/time inputs */
.placeholder-hint {
    position: absolute;
    left: 44px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
    pointer-events: none;
    opacity: .75;
    transition: opacity .2s
}

.input-wrapper input:focus~.placeholder-hint,
.input-wrapper input:valid~.placeholder-hint {
    opacity: 0
}

.input-wrapper input:invalid~.placeholder-hint {
    opacity: .75
}

/* Quick Reservation typography overrides */
.form-card .form-input,
.form-card .select-display,
.form-card .num-display {
    color: #000;
    font-weight: 600
}

.form-card .guest-label,
.form-card .select-option {
    color: #000;
    font-weight: 600
}

.counter-wrapper {
    display: flex;
    align-items: center;
    gap: 8px
}

.counter-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: .2s
}

.counter-btn:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange)
}

.num-display {
    height: 56px;
    width: 64px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    text-align: center;
    font-size: 16px
}

.submit-btn {
    height: 56px;
    padding: 0 32px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 15px rgba(245, 166, 35, .4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 166, 35, .5)
}

.blur {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(245, 166, 35, .3), transparent 60%);
    filter: blur(150px);
    opacity: .35
}

.c1 {
    top: -80px;
    left: -80px
}

.c2 {
    bottom: -60px;
    right: 10%
}

.c3 {
    top: 20%;
    right: -120px
}

.float {
    position: absolute;
    animation: floatY 8s ease-in-out infinite
}

.car {
    top: 12%;
    left: 8%;
    opacity: .7
}

.sign {
    top: 28%;
    right: 16%;
    opacity: .55;
    animation-delay: 2s
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    animation: waveUpDown 6s ease-in-out infinite
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .1;
    pointer-events: none;
    z-index: 1
}

#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    opacity: 0;
    animation: none;
    pointer-events: none;
    z-index: 1
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(8px);
    color: #fff;
    z-index: 10;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .1) inset
}

.topbar .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    font-size: 13px
}

.topbar .contact-item {
    margin-right: 16px;
    opacity: .9
}

.topbar .social a {
    color: #fff;
    opacity: .8;
    margin-left: 12px;
    text-decoration: none
}

/* Dil bayrakları (kurumsal stil) */
.topbar .lang-flags {
    display: flex;
    align-items: center;
    gap: 10px
}

.topbar .lang-flags .flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 16px;
    text-decoration: none;
    opacity: .96
}

.topbar .lang-flags .flag-icon {
    display: block;
    width: 24px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, .45);
    filter: saturate(.95) contrast(1.02);
    transition: box-shadow .2s ease, border-color .2s ease
}

.topbar .lang-flags .flag:hover .flag-icon,
.topbar .lang-flags .flag:focus .flag-icon {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .25)
}

.topbar .lang-flags .flag.active .flag-icon {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .40)
}

.topbar .lang-flags .flag:focus {
    outline: none
}

.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(8px);
    z-index: 1000
}

.navbar .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none
}

.brand-logo {
    height: 36px;
    width: auto;
    display: block
}

@media (max-width:480px) {
    .brand-logo {
        height: 32px
    }
}

@media (min-width:1024px) {
    .brand-logo {
        height: 44px
    }
}

.vip-badge {
    background: #000;
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 8px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, .2)
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    opacity: .9;
    font-weight: 500
}

.nav-links a:hover {
    opacity: 1
}

.nav-links .cta {
    padding: 8px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
    box-shadow: 0 4px 15px rgba(245, 166, 35, .4)
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer
}

@media (max-width:1023px) {
    .menu-toggle {
        display: block
    }

    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        backdrop-filter: blur(2px);
        z-index: 9
    }

    .navbar.open .nav-backdrop {
        display: block
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100%);
        left: 16px;
        right: 16px;
        background: rgba(0, 0, 0, .85);
        backdrop-filter: blur(8px);
        padding: 16px;
        border-radius: 14px;
        flex-direction: column;
        gap: 12px;
        z-index: 10;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
        max-height: calc(100vh - 140px);
        overflow: auto
    }

    .navbar.open .nav-links {
        display: flex
    }

    .nav-links a {
        padding: 10px 12px;
        border-radius: 10px
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, .08)
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(.9) translateY(30px)
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@keyframes fadeScale {
    0% {
        opacity: 0;
        transform: scale(.95)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes waveUpDown {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(6px)
    }
}

@media (max-width:1023px) {
    .heading {
        font-size: 42px
    }

    .subtitle {
        font-size: 20px
    }

    .form-card {
        padding: 32px
    }

    .form-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .form-grid.quick {
        grid-template-columns: repeat(2, 1fr)
    }

    .g-nereden {
        grid-column: 1 / 3
    }

    .g-nereye {
        grid-column: 1 / 3
    }

    .g-kisi {
        grid-column: 1
    }

    .g-btn {
        grid-column: 2
    }
}

@media (max-width:767px) {
    .heading {
        font-size: 36px
    }

    .subtitle {
        font-size: 18px
    }

    .form-card {
        padding: 24px
    }

    .form-grid {
        display: flex;
        flex-direction: column;
        gap: 14px
    }
}

/* Guest dropdown */
.guest-dropdown {
    position: relative
}

.guest-display {
    cursor: pointer
}

/* Select dropdown (Nereden/Nereye) */
.select-dropdown {
    position: relative
}

.select-display {
    cursor: pointer
}

.select-dropdown .clear-select {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    font-size: 18px;
    line-height: 18px
}

.select-dropdown.has-value .clear-select {
    display: inline-flex
}

.select-dropdown .clear-select:hover {
    background: #f1f5f9;
    color: #111827;
    border-color: #cbd5e1
}

.select-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    background: #fff;
    border: 2px solid #E8E8E8;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    display: none;
    z-index: 100
}

.select-dropdown.open .select-panel {
    display: block
}

.select-option {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 10px;
    color: #333;
    font-weight: 500
}

.select-option:hover {
    background: #f5f5f5
}

.guest-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: auto;
    right: 0;
    width: auto;
    min-width: 480px;
    max-width: 560px;
    background: #fff;
    border: 2px solid #E8E8E8;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    display: none;
    z-index: 100
}

.guest-dropdown.open .guest-panel {
    display: block
}

.guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0
}

.guest-label {
    color: #555;
    font-weight: 500
}

.submit-btn.small {
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(245, 166, 35, .35)
}

/* Region quick reservation masaüstü uyumu */
.region-detail-section .form-grid.quick {
    grid-template-columns: 1fr
}

.region-detail-section .g-nereden,
.region-detail-section .g-nereye,
.region-detail-section .g-kisi,
.region-detail-section .g-btn {
    grid-column: 1 / -1
}

.region-detail-section .form-grid.quick .submit-btn {
    width: 100%
}

.region-detail-section .guest-panel,
.region-detail-section .select-panel {
    left: 0;
    right: 0;
    min-width: 0;
    max-width: 100%;
    width: auto
}

.region-detail-section .detail-grid {
    grid-template-columns: 2fr 1fr
}

/* Mobilde hızlı rezervasyon üstte görünsün */
@media (max-width:1023px) {
    .region-detail-section .detail-grid {
        grid-template-columns: 1fr !important
    }

    .region-detail-section .detail-side {
        order: -1
    }
}

.guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0
}

.guest-label {
    color: #555;
    font-weight: 500
}

.submit-btn.small {
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(245, 166, 35, .35)
}

/* 480px and below */
@media (max-width:480px) {

    /* Region detay layout tek sütun ve form düzeltiler */
    .region-detail-section .detail-grid {
        grid-template-columns: 1fr !important
    }

    .region-detail-section .detail-side {
        padding: 12px
    }

    .form-grid.quick .submit-btn {
        width: 100%
    }

    .guest-panel {
        left: 0;
        right: 0;
        min-width: 0;
        max-width: 100%;
        width: auto
    }
}

/* 768px ve aşağısı için genişletmeler */
@media (max-width:767px) {
    .region-detail-section .detail-grid {
        grid-template-columns: 1fr !important
    }

    .form-grid.quick .submit-btn {
        width: 100%
    }
}

/* Global: yatay taşmaları gizle, spesifik sayfalarda genişliği kontrol et */
html,
body {
    overflow-x: hidden
}

#hero {
    overflow: hidden
}

/* Quick Reservation modal: input genişlik ve ikon boşluğu düzeltmeleri */
#qrModal .form-grid.quick {
    grid-template-columns: 1.35fr 1.35fr auto;
    gap: 12px;
    align-items: center
}

#qrModal .input-wrapper {
    min-width: 0
}

#qrModal .form-input,
#qrModal .select-display {
    padding-left: 56px !important;
    padding-right: 38px;
    height: 44px
}

#qrModal .input-icon {
    left: 14px
}

#qrModal .g-btn .submit-btn {
    width: 220px;
    white-space: nowrap
}

/* WhatsApp Floating Bubble */
.whatsapp-bubble {
    position: fixed;
    left: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    z-index: 1100;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease
}

.whatsapp-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .3)
}

.whatsapp-bubble:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25)
}

/* Resim/SVG boyutlandırma: ikon balon kadar büyük olsun */
.whatsapp-bubble img,
.whatsapp-bubble svg {
    display: block;
    width: 100%;
    height: 100%
}

.whatsapp-bubble img {
    object-fit: contain
}

@media (max-width:480px) {
    .whatsapp-bubble {
        left: 12px;
        bottom: 12px;
        width: 60px;
        height: 60px
    }
}

/* WhatsApp label next to bubble */
.whatsapp-label {
    position: fixed;
    left: 92px;
    bottom: 32px;
    background: rgba(255, 255, 255, .95);
    color: #111827;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    text-decoration: none;
    z-index: 1100
}

.whatsapp-label:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2)
}

@media (max-width:480px) {
    .whatsapp-label {
        left: 84px;
        bottom: 26px;
        font-size: 13px;
        padding: 7px 10px;
        border-radius: 10px
    }
}

/* Rezervasyon baloncuğu (WhatsApp yanında) */
.reservation-bubble {
    position: fixed;
    right: 92px;
    bottom: 72px;
    background: #fff;
    color: #0f172a;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
    text-decoration: none;
    z-index: 1100;
    border: 1px solid #e2e8f0
}

.reservation-bubble:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2)
}

@media (max-width:480px) {
    .reservation-bubble {
        right: 84px;
        bottom: 64px;
        font-size: 13px;
        padding: 7px 10px;
        border-radius: 10px
    }
}

/* Rezervasyon sorgu paneli */
.reservation-panel {
    position: fixed;
    right: 16px;
    bottom: 100px;
    width: 320px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(2, 6, 23, .15);
    z-index: 1200;
    overflow: hidden
}

.reservation-panel.open {
    animation: panelIn .14s ease-out both
}

@keyframes panelIn {
    from {
        transform: translateY(8px);
        opacity: .0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.reservation-panel .panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0
}

.reservation-panel .panel-title {
    font-weight: 800;
    color: #0f172a
}

.reservation-panel .panel-close {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 18px;
    cursor: pointer
}

.reservation-panel .panel-body {
    padding: 12px
}

.reservation-panel .panel-field {
    display: grid;
    gap: 6px;
    margin-bottom: 10px
}

.reservation-panel .pnr-result {
    font-size: 14px;
    color: #0f172a
}

/* Panel input alanı (PNR) */
.reservation-panel .panel-field .muted {
    color: #64748b;
    font-weight: 700
}

.reservation-panel .input {
    height: 44px;
    padding: 0 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #0f172a;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease
}

.reservation-panel .input::placeholder {
    color: #9ca3af;
    font-weight: 500;
    opacity: .9
}

.reservation-panel .input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, .15);
    outline: none;
    background: #fff
}

.reservation-panel .input:hover {
    border-color: #cbd5e1
}

.reservation-panel .input:disabled {
    background: #f1f5f9;
    color: #64748b;
    cursor: not-allowed
}

/* Hata kutusu */
.alert-error {
    background: #fee2e2;
    color: #7f1d1d;
    border: 1px solid #fecaca;
    padding: 8px 10px;
    border-radius: 10px
}

.lookup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.status-pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #e2e8f0
}

.status-pill.wait {
    background: #fff7ed;
    color: #c2410c;
    border-color: #fdba74
}

.status-pill.ok {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0
}

.status-pill.bad {
    background: #fee2e2;
    color: #7f1d1d;
    border-color: #fecaca
}

.reservation-panel .panel-footer {
    padding: 8px 12px;
    border-top: 1px dashed #e2e8f0;
    background: #fff
}

/* Basit ön yüz buton stili (panel için) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #eef2f7;
    color: #0f172a;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease
}

.btn:hover {
    transform: translateY(-1px);
    background: #e2e8f0
}

.btn-primary {
    background: #fb923c;
    color: #fff;
    border-color: #f59e0b;
    box-shadow: 0 8px 20px rgba(251, 146, 60, .28)
}

.btn-primary:hover {
    background: #f59e0b
}

/* Topbar’ı göster, navbar’ı topbar’ın altına sabitle ve şeffaf yap */
.topbar {
    display: block;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .1) inset
}

.navbar {
    top: 36px;
    height: 56px;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(8px)
}

.navbar .nav-container {
    padding: 0 12px
}

.nav-links {
    top: 56px;
    left: 16px;
    right: 16px;
    padding: 14px
}

/* Hero mobil kısaltma */
@media (max-width:1023px) {
    #hero {
        margin-top: 0;
        min-height: 0;
        height: 40vh;
        padding: 0;
        background-size: cover;
        background-position: center
    }

    #hero .text {
        display: none
    }
}

/* Desktop için kişi dropdown panelini sağa doğru genişlet */
@media (min-width:1024px) {
    .guest-dropdown .guest-panel {
        left: 0;
        right: auto;
        min-width: 240px;
        max-width: 270px
    }
}

.form-card {
    padding: 16px;
    border-radius: 18px;
    animation: none;
    opacity: 1;
    transform: none
}

.heading {
    font-size: 28px
}

.subtitle {
    font-size: 16px
}

.trust {
    font-size: 13px;
    padding: 10px 14px
}

.input-icon {
    left: 12px;
    width: 18px;
    height: 18px
}

.form-input {
    height: 56px;
    padding-left: 46px;
    font-size: 16px;
    box-sizing: border-box
}

/* Normalize date/time inputs height (mobile) */
input[type="date"].form-input,
input[type="time"].form-input {
    height: 60px !important;
    font-size: 16px !important;
    padding-left: 46px;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: normal
}

/* iOS Safari: tarih/saat iç metin ve gösterge boyutlarını hizala */
input[type="date"].form-input::-webkit-datetime-edit,
input[type="time"].form-input::-webkit-datetime-edit {
    font-size: 16px;
    line-height: 1.2;
    padding: 6px 0
}

input[type="date"].form-input::-webkit-date-and-time-value,
input[type="time"].form-input::-webkit-date-and-time-value {
    font-size: 16px;
}

input[type="date"].form-input::-webkit-calendar-picker-indicator,
input[type="time"].form-input::-webkit-calendar-picker-indicator {
    padding: 8px
}

/* Date-Time Row for Reservation */
.date-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start
}

.date-time-row .dt-col {
    display: flex;
    flex-direction: column;
    gap: 6px
}

@media (max-width:480px) {
    .date-time-row {
        grid-template-columns: 1fr;
        gap: 12px
    }
}

@media (max-width:767px) {
    .date-time-row {
        grid-template-columns: 1fr !important;
        gap: 14px
    }

    .date-time-row .dt-col {
        width: 100%
    }

    .date-time-row .input-wrapper {
        width: 100%;
        display: block
    }

    .date-time-row .form-input {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box
    }

    input[type="date"].form-input,
    input[type="time"].form-input {
        display: block;
        -webkit-appearance: none;
        appearance: none;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important
    }

    /* Safari/iOS için tam genişlik doldur */
    input[type="date"].form-input,
    input[type="time"].form-input {
        width: 100% !important
    }
}

.counter-btn {
    width: 32px;
    height: 32px
}

.num-display {
    height: 52px;
    width: 56px;
    font-size: 15px
}

.guest-panel {
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    min-width: 0;
    max-width: calc(100vw - 40px)
}

.select-panel {
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    min-width: 0;
    max-width: calc(100vw - 40px)
}

.guest-row {
    gap: 10px
}

.guest-actions {
    justify-content: flex-end;
    margin-top: 10px
}

/* iOS notch için güvenli alan desteği */
@media (max-width:480px) {
    @supports(padding-top: env(safe-area-inset-top)) {
        .navbar {
            padding-top: env(safe-area-inset-top)
        }
    }
}

/* iOS notch için güvenli alan desteği */
@media (max-width:480px) {
    @supports(padding-top: env(safe-area-inset-top)) {
        .navbar {
            padding-top: env(safe-area-inset-top)
        }
    }
}

/* Topbar kurumsal iletişim linkleri */
.topbar .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    margin-right: 16px;
    opacity: .92
}

.topbar .contact-link:visited {
    color: #fff
}

.topbar .contact-link:hover {
    opacity: 1
}

.topbar .contact-link .icon {
    display: inline-flex;
    width: 16px;
    height: 16px
}

.topbar .contact-link .icon svg {
    display: block;
    width: 16px;
    height: 16px
}

.topbar .contact-text {
    font-weight: 500;
    letter-spacing: .2px
}

/* Mobilde yalnızca telefon görünsün (e-posta gizlenir) */
@media (max-width:767px) {
    .topbar .contact-link[href^="mailto:"] {
        display: none
    }
}

/* Navbar döviz menüsü (kurumsal stil) */
.nav-links .currency-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px
}

.nav-links .currency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    opacity: .95
}

.nav-links .currency:hover {
    opacity: 1
}

.nav-links .currency-icon {
    display: block;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0;
    transition: none
}

.nav-links .currency:hover .currency-icon {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .24)
}

.nav-links .currency-code {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px
}

@media (max-width:1023px) {
    .nav-links .currency-menu {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 6px
    }
}

/* Nav-right wrapper */
.navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 16px
}

/* Navbar para birimi dropdown (global) */
.navbar .currency-dropdown {
    position: relative;
    margin-left: 8px
}

.navbar .currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 10px;
    padding: 6px 10px;
    cursor: pointer
}

.navbar .currency-toggle .currency-icon {
    display: block;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0
}

.navbar .currency-toggle .currency-code {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px
}

.navbar .currency-toggle .chevron {
    margin-left: 4px;
    transition: transform .2s ease
}

.navbar .currency-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    z-index: 1000;
    min-width: 160px
}

.navbar .currency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 10px;
    width: 100%;
    text-align: left;
    border-radius: 8px
}

.navbar .currency-option:hover {
    background: rgba(255, 255, 255, .08)
}

.navbar .currency-option .currency-icon {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0
}

.navbar .currency-dropdown.open .currency-panel {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.navbar .currency-dropdown.open .currency-toggle .chevron {
    transform: rotate(180deg)
}

@media (max-width:1023px) {
    .navbar .currency-panel {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 6px
    }
}

/* Mobilde dropdown panelin ekran dışına taşmasını engelle */
@media (max-width:480px) {
    .navbar .nav-right {
        position: relative
    }

    .navbar .currency-dropdown {
        position: static
    }

    .navbar .currency-panel {
        position: fixed;
        /* navbar altına sabitle */
        top: calc(36px + 56px);
        /* topbar + mobil navbar yüksekliği */
        left: 12px;
        right: 12px;
        width: auto;
        min-width: 0;
        margin-top: 0;
        max-height: calc(100vh - 80px);
        overflow: auto;
        z-index: 1100;
        border-radius: 12px;
    }
}

@media (max-width:480px) {
    @supports(top: env(safe-area-inset-top)) {
        .navbar .currency-panel {
            top: calc(36px + 56px + env(safe-area-inset-top));
        }
    }
}

/* Services dropdown (navbar) */
.navbar .services-dropdown {
    position: relative
}

.navbar .services-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 600
}

.navbar .services-toggle .chevron {
    margin-left: 4px;
    transition: transform .2s ease
}

.navbar .services-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    z-index: 1000;
    min-width: 240px
}

.navbar .services-item {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600
}

.navbar .services-item:hover {
    background: #F7F7F7
}

.navbar .services-dropdown.open .services-panel {
    display: block
}

.navbar .services-dropdown.open .services-toggle .chevron {
    transform: rotate(180deg)
}

@media (max-width:1023px) {
    .navbar .services-panel {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 6px;
        background: #fff
    }
}

@media (max-width:480px) {
    .navbar .services-panel {
        position: fixed;
        top: calc(36px + 56px);
        left: 12px;
        right: 12px;
        width: auto;
        min-width: 0;
        margin-top: 0;
        max-height: calc(100vh - 80px);
        overflow: auto;
        z-index: 1100;
        border-radius: 12px
    }
}

@media (max-width:480px) {
    @supports(top: env(safe-area-inset-top)) {
        .navbar .services-panel {
            top: calc(36px + 56px + env(safe-area-inset-top));
        }
    }
}

/* Popular Regions (Antalya Popüler Bölgeler) */

/* Vehicles page layout */
.vehicle-select-page {
    padding: 120px 0 32px
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px
}

@media(max-width:1023px) {
    .page-container {
        grid-template-columns: 1fr;
    }
}

/* Tighter mobile container padding to widen cards */
@media(max-width:767px) {
    .page-container {
        padding: 0 10px
    }

    .cta-col {
        display: flex
    }

    .cta-tag {
        width: 100%
    }
}

@media(max-width:480px) {
    .page-container {
        padding: 0 8px
    }
}

.vehicles-column {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.vehicle-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 16px;
    transition: transform .18s ease, box-shadow .18s ease
}

.vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08)
}

.vehicle-card .vehicle-grid {
    display: grid;
    grid-template-columns: 320px 1fr 220px;
    gap: 16px;
    align-items: start
}

.gallery-col {
    min-width: 0
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cta-col {
    display: flex
}

.cta-tag {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #EEE;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 18px;
    min-height: 100%
}

.cta-tag .price {
    font-size: 28px;
    font-weight: 800;
    color: #8A6B00
}

.cta-tag .note {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px
}

/* Trip toggle (Tek Yön / Gidiş Dönüş) */
.trip-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.toggle-btn {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #E8E8E8;
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-weight: 800;
    cursor: pointer;
    transition: .2s cubic-bezier(.4, 0, .2, 1)
}

.toggle-btn:hover {
    transform: translateY(-1px)
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(245, 166, 35, .4)
}

.cta-tag .submit-btn {
    width: 100%;
    height: 48px;
    font-weight: 800;
    letter-spacing: .2px
}

.cta-tag .submit-btn.small {
    height: 48px
}

.cta-tag .submit-btn::after {
    content: '›';
    margin-left: 8px;
    font-weight: 800
}

.submit-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 166, 35, .25), 0 8px 25px rgba(245, 166, 35, .5)
}

.cta-tag .submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 28px rgba(245, 166, 35, .5)
}

@media(max-width:1023px) {
    .vehicle-card .vehicle-grid {
        grid-template-columns: 1fr
    }

    .cta-col {
        margin-top: 8px
    }

    .cta-tag {
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: auto
    }
}

/* Mobile price emphasis */
@media(max-width:767px) {
    .cta-tag .price {
        font-size: 34px;
        line-height: 1.15
    }
}

@media(max-width:480px) {
    .cta-tag .price {
        font-size: 38px
    }
}

.vehicle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px
}

.vehicle-name {
    font-size: 18px;
    font-weight: 800;
    color: #2a2a2a;
    margin: 0 0 6px
}

.vehicle-price {
    font-size: 28px;
    font-weight: 800;
    color: #8A6B00
}

.vehicle-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-weight: 600;
    margin-bottom: 12px
}

.vehicle-actions {
    display: flex;
    justify-content: flex-end
}

/* Vehicle features chips */
.vehicle-features {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    list-style: none;
    padding: 0
}

.vehicle-features li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #E8E8E8;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05)
}

.vehicle-features li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    margin-right: 6px
}

@media(max-width:480px) {
    .vehicle-features {
        gap: 6px 8px
    }

    .vehicle-features li {
        padding: 6px 9px;
        font-weight: 700
    }
}

/* Vehicle gallery slider */
.vehicle-gallery {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    margin-bottom: 0
}

.vehicle-gallery .slides {
    position: relative;
    height: 100%;
    min-height: 200px
}

.vehicle-gallery .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    opacity: 0;
    transition: opacity .35s ease
}

.vehicle-gallery .slide.active {
    opacity: 1
}

.vehicle-gallery .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    cursor: pointer
}

.vehicle-gallery .nav.prev {
    left: 8px
}

.vehicle-gallery .nav.next {
    right: 8px
}

.vehicle-gallery .dots {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px
}

.vehicle-gallery .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    border: none;
    cursor: pointer
}

.vehicle-gallery .dot.active {
    background: #fff
}

/* Vehicle Lightbox (enlarged slider) */
.lightbox-backdrop[hidden],
.lightbox-dialog[hidden] {
    display: none !important
}

.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(2px);
    z-index: 3000
}

.lightbox-dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(95vw, 1000px);
    max-height: 95vh;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, .45);
    z-index: 3001;
    display: flex;
    flex-direction: column;
    overflow: visible
}

.lightbox-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px
}

.lightbox-close {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer
}

.lightbox-body {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000
}

.lightbox-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(95vh - 60px);
    object-fit: contain
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    cursor: pointer
}

.lightbox-nav.prev {
    left: 10px
}

.lightbox-nav.next {
    right: 10px
}

.lightbox-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px
}

.lightbox-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: none;
    cursor: pointer
}

.lightbox-dot.active {
    background: #fff
}

.sidebar .details-card {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    padding: 16px;
    position: sticky;
    top: 24px
}

.details-title {
    font-size: 18px;
    font-weight: 800;
    color: #2a2a2a;
    margin-bottom: 10px
}

.details-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.details-list li {
    color: #333;
    font-weight: 600
}

.support-box {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed #ddd
}

.support-title {
    font-weight: 800;
    color: #2a2a2a;
    text-align: center
}

.support-sub {
    color: #666;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.support-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    justify-content: center
}

.support-line>div {
    flex: 1
}

.support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #8A6B00
}

.support-icon.small {
    width: 20px;
    height: 20px
}

.support-icon .icon {
    width: 100%;
    height: 100%;
    display: block
}

.contact-link.phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    color: #1a1a1a;
    font-weight: 800;
    text-decoration: none
}

.contact-link.phone:hover {
    color: #000
}

/* Rezervasyon Sahip Bilgileri (Araç seçimi sonrası form) */
.reservation-owner-section {
    display: none;
    padding: 24px 20px
}

.reservation-owner-section.show {
    display: block
}

.reservation-owner-section {
    max-width: 1200px;
    margin: 0 auto
}

.owner-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #2a2a2a;
    margin: 0 0 16px
}

.owner-title .icon {
    width: 22px;
    height: 22px
}

.owner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px
}

.owner-grid .input-wrapper {
    position: relative
}

/* Yan yana tarih-saat satırı tüm satırı kaplasın */
.owner-grid .date-time-row {
    grid-column: 1 / -1
}

/* Ekstra hizmetler de tam satırı kaplasın */
.owner-grid .extras-section {
    grid-column: 1 / -1
}

.return-group {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px
}

/* Responsive */
@media (max-width:1023px) {
    .owner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .return-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width:767px) {
    .owner-grid {
        grid-template-columns: 1fr;
    }

    .return-group {
        grid-template-columns: 1fr;
    }
}

/* Mobilde yalnızca telefon görünsün (e-posta gizlenir) */
@media (max-width:767px) {
    .topbar .contact-link[href^="mailto:"] {
        display: none
    }
}

/* Reservation page top spacing to avoid fixed navbar overlap */
.reservation-page {
    padding: 120px 0 32px;
    display: flex;
    justify-content: center
}

.reservation-page {
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box
}

.reservation-page .form-card {
    margin-left: auto;
    margin-right: auto
}

/* Reservation page: keep WhatsApp left; move only reservation widgets to right */
.reservation-page .reservation-bubble,
.reservation-page .reservation-panel {
    left: auto;
    right: 16px;
}

@media (max-width:480px) {

    .reservation-page .reservation-bubble,
    .reservation-page .reservation-panel {
        right: 12px;
        left: auto;
    }
}

/* Trip labels and helper tip */
.group-label {
    grid-column: 1/-1;
    font-weight: 800;
    color: #2a2a2a;
    margin: 8px 0 4px
}

.trip-tip {
    grid-column: 1/-1;
    margin-top: 6px;
    color: #666;
    font-size: 13px;
    font-weight: 600
}

/* Phone input with intl-tel-input integration */
.iti {
    width: 100%
}

.iti input.form-input {
    height: 56px
}

.iti__country-list {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
    border-radius: 12px;
    border: 1px solid #E8E8E8
}

.iti__country {
    font-weight: 600;
    color: #333
}

.iti--separate-dial-code .iti__selected-dial-code {
    font-weight: 800;
    color: #2a2a2a
}

/* remove legacy phone-group styles (kept for fallback) */
.phone-group {
    display: none
}

.phone-only {
    display: none
}

.dial-select {
    display: none
}

@media(max-width:480px) {
    .dial-select {
        display: none
    }
}

/* Navbar döviz menüsü (kurumsal stil) */
.nav-links .currency-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 8px
}

.nav-links .currency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    opacity: .95
}

.nav-links .currency:hover {
    opacity: 1
}

.nav-links .currency-icon {
    display: block;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0;
    transition: none
}

.nav-links .currency:hover .currency-icon {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .24)
}

.nav-links .currency-code {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px
}

@media (max-width:1023px) {
    .nav-links .currency-menu {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 6px
    }
}

/* Nav-right wrapper */
.navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 16px
}

/* Navbar para birimi dropdown (global) */
.navbar .currency-dropdown {
    position: relative;
    margin-left: 8px
}

.navbar .currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 10px;
    padding: 6px 10px;
    cursor: pointer
}

.navbar .currency-toggle .currency-icon {
    display: block;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0
}

.navbar .currency-toggle .currency-code {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px
}

.navbar .currency-toggle .chevron {
    margin-left: 4px;
    transition: transform .2s ease
}

.navbar .currency-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    z-index: 1000;
    min-width: 160px
}

.navbar .currency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 10px;
    width: 100%;
    text-align: left;
    border-radius: 8px
}

.navbar .currency-option:hover {
    background: rgba(255, 255, 255, .08)
}

.navbar .currency-option .currency-icon {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0
}

.navbar .currency-dropdown.open .currency-panel {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.navbar .currency-dropdown.open .currency-toggle .chevron {
    transform: rotate(180deg)
}

@media (max-width:1023px) {
    .navbar .currency-panel {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 6px
    }
}

/* Mobilde dropdown panelin ekran dışına taşmasını engelle */
@media (max-width:480px) {
    .navbar .nav-right {
        position: relative
    }

    .navbar .currency-dropdown {
        position: static
    }

    .navbar .currency-panel {
        position: fixed;
        /* navbar altına sabitle */
        top: calc(36px);
        /* mobil navbar yüksekliği */
        left: 12px;
        right: 12px;
        width: auto;
        min-width: 0;
        margin-top: 0;
        max-height: calc(100vh - 80px);
        overflow: auto;
        z-index: 1100;
        border-radius: 12px;
    }

    @media (max-width:480px) {

        /* Mobil güvenli boşluklar ve genişlik sınırları */
        .reservation-page {
            padding: 100px 12px 24px
        }

        .reservation-owner-section {
            padding: 16px 12px
        }

        .reservation-owner-section .form-card {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            padding: 16px;
            border-radius: 14px
        }
    }

    /* Rezervasyon sayfasında genişlik ve taşma korumaları */
    .reservation-page .form-card,
    .reservation-owner-section,
    .reservation-owner-section .owner-grid,
    .reservation-owner-section .date-time-row {
        max-width: 100%;
        min-width: 0
    }

    .reservation-page .input-wrapper,
    .reservation-page .form-input,
    .reservation-page textarea.form-input {
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box
    }

    .reservation-page .group-label,
    .reservation-page .extras-tip {
        word-break: break-word;
        hyphens: auto
    }

    @supports(top: env(safe-area-inset-top)) {
        .navbar .currency-panel {
            top: calc(36px + 56px + env(safe-area-inset-top));
        }
    }
}

/* Popular Regions (Antalya Popüler Bölgeler) */

/* Why Choose (Neden Lux Transfer) */
.why-section {
    padding: 50px 0;
    background: transparent
}

.why-section .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.why-section .section-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: .5px;
    color: #2a2a2a;
    margin-bottom: 24px;
    text-align: center
}

.why-section .section-title .accent {
    background: linear-gradient(135deg, #F5A623 0%, #FDB94E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06)
}

.icon-disc {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 166, 35, .18), rgba(253, 185, 78, .28));
    color: #E89A12;
    display: flex;
    align-items: center;
    justify-content: center
}

.icon {
    width: 22px;
    height: 22px;
    display: block
}

/* Kurumsal çizgi ikon stili */
.icon path,
.icon line,
.icon rect,
.icon polyline,
.icon circle {
    vector-effect: non-scaling-stroke
}

.icon-disc {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 166, 35, .18), rgba(253, 185, 78, .28));
    color: #E89A12;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(245, 166, 35, .25) inset, 0 6px 18px rgba(0, 0, 0, .06)
}

.feature-title {
    font-weight: 700;
    color: #000
}

.feature-sub {
    font-size: 13px;
    color: #777
}

/* Content */
.why-content {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 20px;
    align-items: start
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px
}

.media-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #eaeaea;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06)
}

.media-img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, .0) 50%)
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .2)
}

.play-btn span {
    display: block;
    width: 0;
    height: 0;
    border-left: 14px solid #000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 16px
}

.reasons-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06)
}

.reasons-list li {
    position: relative;
    padding: 12px 14px 12px 42px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    color: #333;
    font-weight: 600
}

.reasons-list li:last-child {
    border-bottom: none
}

.reasons-list li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5A623, #FDB94E);
    box-shadow: 0 2px 6px rgba(245, 166, 35, .5)
}

.reasons-list li::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff
}

/* Social proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-top: 20px
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    text-decoration: none
}

.badge.google {
    background: #4285F4
}

.badge.tripadvisor {
    background: #34E0A1;
    color: #1A1A1A
}

.badge.youtube {
    background: #FF0000
}

.badge.instagram {
    background: linear-gradient(45deg, #FFDC80, #F77737, #FD1D1D, #C13584, #6C3A9E)
}

/* Responsive */
@media(max-width:1023px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .why-content {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .media-img {
        height: 150px
    }

    .social-proof {
        flex-wrap: wrap
    }
}

/* Extras (Ekstra Hizmetler) */
.extras-section {
    grid-column: 1/-1;
    margin-top: 16px
}

.extras-title {
    font-size: 16px;
    font-weight: 800;
    color: #2a2a2a;
    margin-bottom: 6px
}

.extras-tip {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px
}

.extras-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.extras-grid .chip {
    width: 100%;
    justify-content: center;
    text-align: center
}

.extras-grid .chip-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.extras-grid .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #E8E8E8;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    transition: .18s cubic-bezier(.4, 0, .2, 1)
}

.extras-grid .chip:hover {
    transform: translateY(-1px);
    border-color: #D8D8D8;
    background: #F9FAFB
}

.extras-grid .chip-input:checked+.chip {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(245, 166, 35, .35)
}

@media(max-width:480px) {
    .extras-grid .chip {
        height: 34px;
        padding: 0 10px;
        font-size: 13px
    }
}

.extras-grid .chip-price {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #8A6B00;
    white-space: nowrap
}

/* Qty controls for extras (clean, aligned) */
.extras-grid .extra-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr max-content;
    align-items: center;
    gap: 10px;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
    overflow: visible
}

.extras-grid .extra-row:hover {
    border-color: #D8D8D8;
    background: #F9FAFB
}

.extra-row.selected {
    border-color: var(--orange);
    background: #fff7ed
}

.extras-grid .extra-row .chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex: 1 1 auto;
    width: auto !important;
    text-align: left;
    border: none !important;
    background: transparent !important;
    box-shadow: none;
    padding: 0;
    height: auto
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: .18s cubic-bezier(.4, 0, .2, 1);
    font-size: 16px
}

.qty-btn:hover {
    background: #F3F4F6;
    border-color: #D8D8D8
}

.qty-btn:focus {
    outline: 2px solid #F59E0B;
    outline-offset: 2px
}

.qty-count {
    min-width: 28px;
    text-align: center;
    font-weight: 800;
    color: #0f172a
}

@media(max-width:420px) {
    .extras-grid .extra-row {
        grid-template-columns: 1fr
    }

    .qty-control {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 8px;
        gap: 8px
    }

    .extra-row .chip {
        font-size: 14px
    }
}

@media(max-width:768px) {
    .extras-grid .extra-row {
        grid-template-columns: 1fr
    }

    .qty-control {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 8px
    }
}

.extras-grid .chip-input:checked+.chip .chip-price {
    color: #fff;
    opacity: .95
}

/* Footer */
.site-footer {
    background: transparent;
    color: #333;
    margin-top: 40px
}

.site-footer a {
    color: #222;
    text-decoration: none
}

.site-footer a:hover {
    color: #000
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.1fr .8fr 1.5fr;
    gap: 40px
}

.footer-col {
    min-width: 0
}

.site-footer .social-links {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px
}

.site-footer .social-links .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    background: #fff;
    color: #111827;
    box-shadow: 0 1px 2px rgba(2, 6, 23, .06);
    transition: background .15s ease, color .15s ease, border-color .15s ease
}

.site-footer .social-links .social-btn:hover {
    background: #f9fafb;
    color: var(--orange);
    border-color: #f59e0b
}

.site-footer .social-links .social-btn.ig:hover {
    color: #E1306C;
    border-color: #E1306C
}

.site-footer .social-links .social-btn.fb:hover {
    color: #1877F2;
    border-color: #1877F2
}

.site-footer .social-links .social-btn svg {
    width: 18px;
    height: 18px
}

.footer-title {
    color: #111;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: .2px
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #333
}

.footer-list .icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: var(--orange);
    margin-top: 2px
}

.footer-list .icon svg {
    width: 18px;
    height: 18px
}

.footer-list .meta-title {
    font-weight: 700;
    color: #111
}

.popular-list-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding: 14px 20px;
    background: transparent
}

.footer-bottom .container {
    max-width: 1400px;
    margin: 0 auto
}

.footer-bottom .copyright {
    color: #666;
    font-size: 12px
}

/* Responsive */
@media(max-width:1023px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .popular-list-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media(max-width:767px) {
    .footer-container {
        grid-template-columns: 1fr
    }

    .popular-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

/* Popular Regions */
.regions-section {
    padding: 40px 0;
    background: transparent
}

.regions-section .section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px
}

.regions-section .section-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: .5px;
    color: #2a2a2a;
    margin-bottom: 16px
}

.regions-section .section-title .accent {
    background: linear-gradient(135deg, #F5A623 0%, #FDB94E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px
}

.regions-grid .region-card {
    display: block;
    text-decoration: none;
    color: inherit
}

.region-card .card-image {
    height: 160px
}

.region-card .price-badge .price {
    font-size: 20px
}

.region-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08)
}

.region-card .card-image {
    position: relative;
    height: 160px;
    background: #eaeaea
}

.region-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.region-card .gradient-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, 0))
}

.region-card .price-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    color: #fff;
    text-align: right
}

.region-card .price-badge .label {
    font-size: 12px;
    opacity: .9;
    margin-top: 2px
}

.region-card .card-caption {
    padding: 12px 14px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, .06);
    color: #777;
    font-weight: 600
}

.region-card .card-caption strong {
    color: #000;
    font-weight: 700
}

/* Skeleton loader */
.region-card .skeleton {
    position: absolute;
    inset: 0;
    border-radius: 0;
    background: linear-gradient(90deg, #EEE 25%, #F5F5F5 37%, #EEE 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s linear infinite
}

.region-card.is-loading .card-img {
    visibility: hidden
}

.region-card.is-loading .gradient-overlay,
.region-card.is-loading .price-badge {
    visibility: hidden
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

/* Responsive: tablet and mobile */
@media(max-width:1023px) {
    .regions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

@media(max-width:767px) {
    .regions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

/* Mobile: Extras two-column grid */
@media(max-width:480px) {
    .extras-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px
    }

    .extras-grid .chip {
        width: 100%;
        justify-content: center;
        text-align: center
    }
}

.extras-grid .chip-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.extras-grid .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #E8E8E8;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-weight: 700;
    cursor: pointer;
    transition: .18s cubic-bezier(.4, 0, .2, 1)
}

.extras-grid .chip:hover {
    transform: translateY(-1px);
    border-color: #D8D8D8;
    background: #F9FAFB
}

.extras-grid .chip-input:checked+.chip {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(245, 166, 35, .35)
}

@media(max-width:480px) {
    .extras-grid .chip {
        height: 34px;
        padding: 0 10px;
        font-size: 13px
    }
}

.extras-grid .chip-price {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #8A6B00
}

.extras-grid .chip-input:checked+.chip .chip-price {
    color: #fff;
    opacity: .95
}

/* Payment (Ödeme Bilgileri) */
.payment-section {
    grid-column: 1/-1;
    margin-top: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    padding: 18px 20px
}

.payment-title {
    font-size: 18px;
    font-weight: 800;
    color: #2a2a2a;
    margin-bottom: 10px
}

.price-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 10px;
    column-gap: 14px;
    align-items: center
}

.price-name {
    color: #444;
    font-weight: 700;
    font-size: 14px
}

.price-value {
    font-weight: 800;
    color: #111827;
    font-size: 16px
}

.price-total .price-value {
    font-size: 20px;
    color: #E89A12
}

.discount-field {
    display: flex;
    gap: 8px;
    align-items: center
}

/* Mobile: prevent horizontal overflow in payment summary */
@media (max-width:480px) {
    .price-summary {
        grid-template-columns: 1fr;
    }

    .price-name {
        justify-self: start
    }

    .price-value {
        justify-self: start
    }

    .discount-field {
        flex-wrap: wrap
    }

    .discount-field .input {
        min-width: 0;
        flex: 1 1 auto;
        width: 100%
    }

    .discount-field .btn {
        flex: 0 0 auto
    }
}

/* İndirim kodu alanı (rezervasyon ödeme bölümü) */
.discount-field {
    display: flex;
    gap: 8px;
    align-items: center
}

.discount-field .input {
    height: 36px;
    padding: 0 12px;
    min-width: 200px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #0f172a
}

.discount-field .input::placeholder {
    color: #9ca3af;
    font-weight: 600
}

.discount-field .input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, .15);
    outline: none
}

.discount-field .btn {
    height: 36px;
    padding: 0 14px;
    border-radius: 10px
}

.discount-message {
    font-size: 12px;
    color: #64748b;
    font-weight: 700
}

.discount-message.ok {
    color: #0f766e
}

.discount-message.err {
    color: #b91c1c
}

.btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

.payment-actions {
    margin-top: 14px;
    display: flex
}

.payment-actions .submit-btn {
    width: 100%
}

.pay-method {
    margin-top: 10px;
    font-size: 13px;
    color: #555
}

.payment-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end
}

@media(max-width:480px) {
    .extras-grid .chip {
        height: 34px;
        padding: 0 10px;
        font-size: 13px
    }
}

.extras-grid .chip-price {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #8A6B00
}

.extras-grid .chip-input:checked+.chip .chip-price {
    color: #fff;
    opacity: .95
}

/* Terms consent row styling */
.consent-row {
    margin-top: 12px
}

/* Polished themed checkbox UI */
.terms-consent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    color: #2a2a2a;
    cursor: pointer;
    user-select: none
}

.terms-consent:hover {
    border-color: var(--orange);
    box-shadow: 0 10px 24px rgba(245, 166, 35, .18)
}

.terms-consent .terms-input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none
}

.terms-consent .checkbox-ui {
    width: 22px;
    height: 22px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .02);
    transition: .2s ease
}

.terms-consent .checkbox-ui::after {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    opacity: 0;
    transition: opacity .15s ease
}

.terms-consent .terms-input:focus-visible+.checkbox-ui {
    box-shadow: 0 0 0 4px rgba(245, 166, 35, .18)
}

.terms-consent .terms-input:checked+.checkbox-ui {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
    border-color: var(--orange2);
    box-shadow: 0 4px 12px rgba(245, 166, 35, .35)
}

.terms-consent .terms-input:checked+.checkbox-ui::after {
    opacity: 1
}

.terms-consent .terms-text {
    font-weight: 700;
    color: #1a1a1a
}

/* Terms link next to consent */
.terms-link {
    margin-left: 12px;
    background: none;
    border: none;
    padding: 0;
    color: var(--orange);
    cursor: pointer;
    font-weight: 700;
    text-decoration: underline
}

.terms-link:hover {
    color: var(--orange2)
}

/* Generic modal styling for public pages */
.modal-backdrop[hidden],
.modal-dialog[hidden] {
    display: none !important
}

.modal-open {
    overflow: hidden
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(2px);
    z-index: 2000
}

.modal-dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(760px, calc(100% - 40px));
    max-height: 80vh;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, .35);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    overscroll-behavior: none;
    overflow: hidden
}

.modal-dialog.compact {
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    bottom: 8px;
    width: min(900px, calc(100% - 16px));
    height: calc(100vh - 16px);
    max-height: calc(100vh - 16px);
    border-radius: 14px
}

@supports (height: 100svh) {
    .modal-dialog.compact {
        height: calc(100svh - 16px);
        max-height: calc(100svh - 16px)
    }
}

@supports (height: 100dvh) {
    .modal-dialog.compact {
        height: calc(100dvh - 16px);
        max-height: calc(100dvh - 16px)
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
    background: #f8fafc
}

.modal-dialog.compact .modal-header {
    padding: 10px 12px
}

.modal-title {
    font-size: 20px;
    font-weight: 800
}

.modal-body {
    display: block;
    gap: 10px;
    padding: 16px 18px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    touch-action: pan-y;
    flex: 1
}

.modal-dialog .modal-body {
    min-height: 0;
    overflow-y: auto;
    padding-bottom: 12px
}

.modal-dialog.compact .modal-body {
    padding: 10px 12px
}

.modal-body h4 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 800;
    color: #111827
}

.modal-body h5 {
    margin: 10px 0 6px 0;
    font-size: 16px;
    font-weight: 800;
    color: #1f2937
}

.modal-body p {
    margin: 0 0 8px 0;
    line-height: 1.55;
    color: #374151
}

.modal-dialog.compact .modal-body h4 {
    margin: 0 0 6px;
    font-size: 18px
}

.modal-dialog.compact .modal-body h5 {
    margin: 6px 0 4px;
    font-size: 14px
}

.modal-dialog.compact .modal-body p {
    margin: 0 0 6px;
    line-height: 1.4
}

.modal-body ul {
    margin: 0 0 8px 18px;
}

.modal-body ul {
    margin: 0;
    padding-left: 18px
}

.modal-dialog.compact .modal-body ul {
    margin: 0 0 6px 14px;
    padding-left: 14px
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 12px 18px;
    border-top: 1px solid #eee;
    background: #f8fafc
}

.modal-dialog.compact .modal-footer {
    padding: 10px 12px
}

/* Minimal modal: daha küçük genişlik ve içerik yüksekliği */
.modal-dialog.minimal {
    width: min(560px, calc(100% - 32px));
    max-height: 70vh;
    border-radius: 14px
}

.modal-dialog.minimal .modal-header {
    padding: 10px 12px
}

.modal-dialog.minimal .modal-body {
    padding: 10px 12px
}

.modal-dialog.minimal .modal-footer {
    padding: 10px 12px
}

/* Wide modal: daha geniş ve modern görünüm */
.modal-dialog.wide {
    width: min(1100px, calc(100% - 24px));
    max-height: 82vh;
    border-radius: 18px
}

.modal-dialog.wide .modal-header {
    padding: 14px 16px
}

.modal-dialog.wide .modal-body {
    padding: 14px 16px
}

.modal-dialog.wide .modal-footer {
    padding: 12px 16px
}

/* Quick Reservation modal içerik düzeni: tek sütun ve harita gizli */
#qrModal .modal-body.modal-qr .form-grid.quick {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr auto;
    gap: 12px;
    align-items: center
}

#qrModal .modal-body.modal-qr .g-kisi {
    display: none !important
}

/* Modal içi hizalama ve görsel düzenlemeler */
#qrModal .modal-header {
    background: #f8fafc;
    border-bottom: 1px solid #eee
}

#qrModal .modal-footer {
    background: #f8fafc;
    border-top: 1px solid #eee
}

#qrModal .form-grid.quick {
    align-items: center
}

#qrModal .form-grid.quick .select-dropdown {
    display: flex;
    align-items: center
}

#qrModal .form-grid.quick .select-dropdown .form-input {
    height: 48px;
    padding: 0 14px;
    min-width: 0
}

#qrModal .form-grid.quick .submit-btn {
    height: 48px;
    line-height: 48px
}

#qrModal .form-grid.quick .clear-select {
    height: 48px
}

#qrModal .form-input,
#qrModal .select-display {
    padding-left: 56px;
    padding-right: 38px
}

#qrModal .input-icon {
    left: 14px
}

#qrModal .g-btn .submit-btn {
    min-width: 220px;
    white-space: nowrap
}

/* Rezervasyon butonu sağda sabit genişlikte ve taşmadan görünür */
#qrModal .form-grid.quick .g-btn {
    white-space: nowrap;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

#qrModal .modal-body.modal-qr .map-container,
#qrModal .modal-body.modal-qr #qrMap {
    display: none !important
}

.btn-close {
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #374151;
    cursor: pointer
}

.btn-close:hover {
    color: #111827
}

/* Route map block (Leaflet + OSM) */
.route-block {
    margin-top: 8px
}

.route-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.route-block .input-wrapper {
    position: relative
}

.map-container {
    height: 320px;
    border: 2px solid #E8E8E8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    margin-top: 12px;
    overflow: hidden
}

.route-note {
    margin-top: 8px;
    color: #666;
    font-weight: 500
}

.suggest-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
    display: none;
    z-index: 200
}

.suggest-item {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 10px;
    color: #333;
    font-weight: 500
}

.suggest-item:hover {
    background: #f5f5f5
}

/* Typeahead highlight visuals */
.select-panel .select-option.active,
.suggest-item.active {
    background-color: #eef4ff;
}

.pac-matched {
    font-weight: 600;
}

/* Dropdown açıkken sayfa scroll’unu kilitle */
body.pac-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

/* Google Places Autocomplete dropdown (mobile overlay fix) */
.pac-container {
    z-index: 10000 !important;
}

.suggest-item:hover {
    background: #f5f5f5
}

/* Typeahead highlight visuals */
.select-panel .select-option.active,
.suggest-item.active {
    background-color: #eef4ff;
}

.pac-matched {
    font-weight: 600;
}

@media (max-width:1023px) {
    .route-tools {
        grid-template-columns: 1fr
    }

    .map-container {
        height: 260px
    }
}

@media (max-width:767px) {
    .map-container {
        height: 220px
    }
}

/* (removed) Navbar EUR kur pili */
/* Special Request: disable manual resize */
#specialRequest {
    resize: none;
}

#specialRequest {
    resize: none;
}

/* Align special request placeholder with icon */
#specialRequest.form-input {
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1.4;
}

@media (max-width:480px) {
    #specialRequest.form-input {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

@media (max-width:767px) {
    .topbar .contact-link[href^="mailto:"] {
        display: none
    }
}


/* Lite Modal — rebuilt for reliable mobile scrolling */
.lite-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.lite-modal.is-open {
    display: block;
}

.lite-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.lite-modal__dialog {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    bottom: 8px;
    /* safe margins */
    width: calc(100% - 16px);
    max-width: 720px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Ensure robust viewport sizing across mobile browsers */
.lite-modal__dialog {
    height: calc(100vh - 16px);
}

.lite-modal__dialog {
    height: calc(100svh - 16px);
}

.lite-modal__dialog {
    height: calc(100dvh - 16px);
}

.lite-modal__header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lite-modal__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.lite-modal__close {
    background: transparent;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
}

.lite-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    /* allow flex child to shrink */
    padding: 12px 16px 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    scrollbar-gutter: stable;
}

.lite-modal__footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* Prevent scroll chaining at container level */
.lite-modal__dialog {
    overscroll-behavior: none;
}

/* Optional: respect safe areas on iOS */
.lite-modal {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}