:root {
    --ink: #081116;
    --muted: #66727c;
    --paper: #f6f2ea;
    --white: #ffffff;
    --gold: #d8ad62;
    --gold-soft: #f0d59d;
    --teal: #0e5b5f;
    --jade: #1f8a79;
    --night: #071116;
    --line: rgba(255, 255, 255, .18);
    --shadow: 0 24px 80px rgba(4, 12, 16, .25);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background: var(--paper);
    color: var(--ink);
    letter-spacing: 0;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 18px 24px auto;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 72px;
    padding: 10px 12px 10px 16px;
    color: var(--white);
    background: rgba(6, 18, 22, .48);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    background: rgba(6, 18, 22, .86);
    border-color: rgba(216, 173, 98, .36);
    transform: translateY(-6px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(216, 173, 98, .65);
    background: linear-gradient(135deg, rgba(216, 173, 98, .98), rgba(255, 244, 190, .72));
    color: #111;
    font-weight: 900;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 15px;
}

.brand small {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(14px, 3vw, 38px);
}

.site-nav a {
    position: relative;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease;
}

.site-nav a::after {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    content: "";
    background: var(--gold);
    transition: width .25s ease;
}

.site-nav a:hover {
    color: var(--white);
}

.site-nav a:hover::after {
    width: 100%;
}

.language-menu {
    position: relative;
    justify-self: end;
}

.language-button,
.nav-toggle {
    border: 0;
    cursor: pointer;
}

.language-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 74px;
    height: 46px;
    padding: 0 14px;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
}

.globe-icon {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: inset 6px 0 0 rgba(255, 255, 255, .18), inset -6px 0 0 rgba(255, 255, 255, .18);
}

.language-options {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 190px;
    padding: 8px;
    background: rgba(7, 17, 22, .96);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
    transform: translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.language-menu.is-open .language-options {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.language-options a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px;
    color: rgba(255, 255, 255, .82);
}

.language-options a:hover,
.language-options a.is-active {
    color: #111;
    background: var(--gold);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .12);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.hero-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 10, 13, .9) 0%, rgba(3, 10, 13, .62) 44%, rgba(3, 10, 13, .15) 100%),
        linear-gradient(0deg, rgba(3, 10, 13, .92) 0%, rgba(3, 10, 13, .08) 45%);
}

.light-sweep {
    position: absolute;
    inset: -30% auto -30% -28%;
    width: 28%;
    z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(255, 236, 176, .18), transparent);
    transform: skewX(-16deg);
    animation: sweep 8s cubic-bezier(.7, 0, .2, 1) infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    gap: clamp(28px, 5vw, 78px);
    align-items: end;
    min-height: 100svh;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 132px 0 58px;
}

.hero-copy {
    max-width: 760px;
    padding-bottom: 24px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    width: 34px;
    height: 1px;
    content: "";
    background: currentColor;
}

.brand-line {
    margin: 28px 0 8px;
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: 84px;
    line-height: .95;
    font-weight: 900;
}

.hero-lead {
    max-width: 650px;
    color: rgba(255, 255, 255, .8);
    font-size: 20px;
    line-height: 1.7;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.primary-action,
.ghost-action,
.contact-actions a,
.vehicle-body a,
.booking-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-action,
.booking-form button,
.contact-actions a:first-child {
    color: #12120f;
    background: linear-gradient(135deg, var(--gold), #f6db98);
    box-shadow: 0 16px 45px rgba(216, 173, 98, .28);
}

.ghost-action,
.contact-actions a:last-child {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
}

.primary-action:hover,
.ghost-action:hover,
.contact-actions a:hover,
.vehicle-body a:hover,
.booking-form button:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-stats span {
    padding: 12px 14px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
}

.booking-panel {
    padding: 20px;
    background: rgba(8, 17, 22, .76);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.panel-heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.panel-heading span {
    font-size: 20px;
    font-weight: 900;
}

.panel-heading small {
    max-width: 190px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.5;
}

.booking-form {
    display: grid;
    gap: 12px;
}

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

.form-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
}

.form-grid.four label {
    min-width: 0;
}

.booking-form label {
    display: grid;
    gap: 6px;
}

.booking-form label span {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    outline: 0;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
    cursor: pointer;
    padding-right: 42px;
    color-scheme: dark;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.booking-form textarea {
    resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(216, 173, 98, .16);
}

.booking-form select option {
    color: #111;
}

.booking-form button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.website-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-alert {
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid;
    line-height: 1.45;
}

.form-alert.is-success {
    color: #133b24;
    background: #dff7e7;
    border-color: #8bd3a5;
}

.form-alert.is-error {
    color: #5a1d1d;
    background: #ffe5e5;
    border-color: #f2aaaa;
}

.section-pad {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(74px, 9vw, 132px) 0;
}

.intro-section {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: center;
}

.section-copy h2,
.section-head h2,
.service-copy h2,
.contact-panel h2 {
    max-width: 850px;
    margin-bottom: 18px;
    color: #102026;
    font-size: 56px;
    line-height: 1;
}

.section-copy p,
.section-head p,
.service-copy p,
.contact-panel p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.section-kicker {
    color: var(--teal);
    margin-bottom: 18px;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(8, 17, 22, .12);
}

.signal-grid div {
    min-height: 150px;
    padding: 24px;
    background: #fffaf1;
}

.signal-grid strong {
    display: block;
    color: var(--teal);
    font-size: 34px;
}

.signal-grid span {
    color: var(--muted);
    line-height: 1.4;
}

.fleet-section {
    width: 100%;
    max-width: none;
    padding-inline: max(24px, calc((100vw - 1240px) / 2));
    background: #0b1519;
    color: var(--white);
}

.fleet-section .section-head h2,
.fleet-section .section-head p {
    color: var(--white);
}

.fleet-section .section-head p {
    color: rgba(255, 255, 255, .7);
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.vehicle-card {
    overflow: hidden;
    background: #111f25;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 173, 98, .5);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.vehicle-image {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

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

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-image span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 10px;
    color: #111;
    background: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.vehicle-body {
    padding: 22px;
}

.vehicle-body h3 {
    min-height: 58px;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.2;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vehicle-specs span {
    padding: 8px 10px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .08);
}

.vehicle-price {
    display: grid;
    gap: 2px;
    margin: 24px 0;
}

.vehicle-price small,
.vehicle-price span {
    color: rgba(255, 255, 255, .62);
}

.vehicle-price strong {
    color: var(--gold-soft);
    font-size: 28px;
}

.vehicle-body a {
    width: 100%;
    color: #101010;
    background: var(--gold);
}

.services-section {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, .8fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
}

.service-visual {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: #0b1519;
    box-shadow: 0 24px 80px rgba(8, 17, 22, .2);
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
}

.route-line {
    position: absolute;
    left: 8%;
    bottom: 12%;
    width: 72%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: routePulse 2.8s ease-in-out infinite;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.feature-list span {
    padding: 16px 18px;
    background: #fffaf1;
    border-left: 3px solid var(--teal);
    box-shadow: 0 12px 40px rgba(8, 17, 22, .06);
}

.faq-section {
    padding-top: 20px;
}

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

details {
    padding: 22px;
    background: #fffaf1;
    border: 1px solid rgba(8, 17, 22, .08);
}

summary {
    cursor: pointer;
    font-weight: 900;
}

details p {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
    gap: 18px;
    padding-top: 20px;
}

.contact-panel,
.contact-details {
    padding: clamp(28px, 5vw, 52px);
    background: #0b1519;
    color: var(--white);
}

.contact-panel h2,
.contact-panel p {
    color: var(--white);
}

.contact-panel p {
    color: rgba(255, 255, 255, .72);
}

.contact-details {
    display: grid;
    align-content: center;
    gap: 14px;
    margin: 0;
    font-style: normal;
    background: linear-gradient(145deg, var(--teal), #112b32);
}

.contact-details span,
.contact-details a {
    color: rgba(255, 255, 255, .82);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px max(24px, calc((100vw - 1240px) / 2));
    color: rgba(255, 255, 255, .72);
    background: #071116;
}

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

[dir="rtl"] .language-options {
    right: auto;
    left: 0;
}

[dir="rtl"] .vehicle-image span {
    left: auto;
    right: 14px;
}

[dir="rtl"] .feature-list span {
    border-left: 0;
    border-right: 3px solid var(--teal);
}

@keyframes heroDrift {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.055) translate3d(-1.2%, -1%, 0);
    }
}

@keyframes sweep {
    0%,
    18% {
        transform: translateX(0) skewX(-16deg);
        opacity: 0;
    }
    36% {
        opacity: 1;
    }
    58%,
    100% {
        transform: translateX(520%) skewX(-16deg);
        opacity: 0;
    }
}

@keyframes routePulse {
    0%,
    100% {
        opacity: .18;
        transform: scaleX(.72);
    }
    50% {
        opacity: .9;
        transform: scaleX(1);
    }
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: auto auto auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: grid;
        padding: 12px;
        background: rgba(6, 18, 22, .96);
        border: 1px solid rgba(255, 255, 255, .14);
        transform: translateY(8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .18s ease, transform .18s ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 12px;
    }

    .hero-content,
    .intro-section,
    .services-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero-content {
        align-items: center;
        padding-top: 118px;
    }

    .booking-panel {
        max-width: 680px;
    }

    h1 {
        font-size: 64px;
    }

    .section-copy h2,
    .section-head h2,
    .service-copy h2,
    .contact-panel h2 {
        font-size: 44px;
    }

    .vehicle-grid,
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header {
        inset: 10px 10px auto;
        min-height: 64px;
        gap: 8px;
    }

    .brand {
        min-width: 0;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .brand small {
        display: none;
    }

    .language-button {
        min-width: 58px;
        padding: 0 10px;
    }

    .hero-content,
    .section-pad {
        width: min(100% - 24px, 1240px);
    }

    h1 {
        font-size: 46px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .section-copy h2,
    .section-head h2,
    .service-copy h2,
    .contact-panel h2 {
        font-size: 34px;
    }

    .form-grid,
    .form-grid.four,
    .signal-grid,
    .vehicle-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .panel-heading {
        display: grid;
    }

    .service-visual,
    .service-visual img {
        min-height: 360px;
    }

    .site-footer {
        display: grid;
    }
}

/* Final reservation form and language/logo fixes */
.brand-logo {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
}

.globe-icon {
    display: none !important;
}

.language-flag {
    display: inline-block;
    flex: 0 0 auto;
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .22);
    vertical-align: middle;
}

.language-option-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.date-time-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    align-items: end;
}

.date-time-grid label {
    min-width: 0;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
    position: relative;
    min-width: 0;
    width: 100%;
    min-height: 58px;
    padding: 14px 46px 14px 16px;
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: auto;
    color-scheme: dark;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
    position: absolute;
    inset-inline-end: 12px;
    width: 22px;
    height: 22px;
    opacity: .95;
    cursor: pointer;
}

.booking-form input[type="date"]::-webkit-date-and-time-value,
.booking-form input[type="time"]::-webkit-date-and-time-value {
    text-align: left;
}

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

    .brand-logo {
        width: 42px;
        height: 42px;
    }
}

/* Mobile reservation form responsive fix - 20260616 */
.booking-panel,
.booking-form,
.booking-form *,
.form-grid,
.date-time-grid,
.date-time-row {
    box-sizing: border-box;
}

.booking-panel {
    overflow: hidden;
}

.booking-form label,
.date-time-grid label,
.date-time-row label {
    min-width: 0;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.25;
}

.booking-form select {
    appearance: auto;
    -webkit-appearance: auto;
}

.date-time-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100% !important;
}

.date-time-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    align-items: end;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
    display: block;
    width: 100%;
    min-width: 0;
    height: 58px;
    min-height: 58px;
    padding: 14px 48px 14px 16px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    color-scheme: dark;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
    width: 22px;
    height: 22px;
    margin: 0;
    cursor: pointer;
}

@media (max-width: 900px) {
    .hero-content,
    .section-pad {
        width: min(100% - 28px, 1240px);
    }

    .booking-panel {
        width: 100%;
        max-width: 100%;
        padding: 18px;
    }

    .booking-form {
        gap: 14px;
    }

    .booking-form .form-grid,
    .booking-form .form-grid.four,
    .date-time-row {
        grid-template-columns: 1fr !important;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        min-height: 56px;
        padding: 13px 14px;
    }

    .booking-form input[type="date"],
    .booking-form input[type="time"] {
        height: 56px;
        min-height: 56px;
        padding-right: 48px;
    }
}

@media (max-width: 480px) {
    .booking-panel {
        padding: 16px;
    }

    .panel-heading span {
        font-size: 18px;
    }

    .booking-form label span {
        font-size: 12px;
        line-height: 1.25;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        width: 100%;
        min-height: 54px;
    }

    .booking-form button {
        min-height: 56px;
        padding: 14px 16px;
        font-size: 16px;
    }
}

/* =========================================================
   ACIL FINAL UI FIX - 20260616
   Ayar yeri:
   - Tarih / saat kutu ölçüleri: --booking-field-height, --booking-field-font, .date-time-row
   - Bayraklar: .flag-gb / .flag-tr / .flag-ae / .flag-ru
   Bu blok eski tekrar eden kuralları ezmek için dosyanın EN ALTINDA durmalı.
   ========================================================= */
:root {
    --booking-field-height: 62px;
    --booking-field-font: 17px;
    --booking-field-gap: 14px;
    --flag-width: 30px;
    --flag-height: 21px;
}

/* Dil menüsü: kırık img yerine CSS/SVG bayrak kullanır */
.language-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-width: 98px !important;
    height: 56px !important;
    padding: 0 14px !important;
}

.language-button .flag-icon,
.language-options .flag-icon {
    display: inline-block !important;
    flex: 0 0 auto !important;
    width: var(--flag-width) !important;
    height: var(--flag-height) !important;
    min-width: var(--flag-width) !important;
    border-radius: 3px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,.35), 0 4px 12px rgba(0,0,0,.18) !important;
    overflow: hidden !important;
}

.flag-gb { background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20280%20200%22%3E%3Cpath%20fill=%22#012169%22%20d=%22M0%200h280v200H0z%22/%3E%3Cpath%20stroke=%22#fff%22%20stroke-width=%2240%22%20d=%22M0%200l280%20200M280%200L0%20200%22/%3E%3Cpath%20stroke=%22#C8102E%22%20stroke-width=%2224%22%20d=%22M0%200l280%20200M280%200L0%20200%22/%3E%3Cpath%20stroke=%22#fff%22%20stroke-width=%2268%22%20d=%22M140%200v200M0%20100h280%22/%3E%3Cpath%20stroke=%22#C8102E%22%20stroke-width=%2240%22%20d=%22M140%200v200M0%20100h280%22/%3E%3C/svg%3E") !important; }
.flag-tr { background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20280%20200%22%3E%3Cpath%20fill=%22#E30A17%22%20d=%22M0%200h280v200H0z%22/%3E%3Ccircle%20cx=%22112%22%20cy=%22100%22%20r=%2248%22%20fill=%22#fff%22/%3E%3Ccircle%20cx=%22126%22%20cy=%22100%22%20r=%2238%22%20fill=%22#E30A17%22/%3E%3Cpath%20fill=%22#fff%22%20d=%22M170%20100l42-14-26%2036V78l26%2036z%22/%3E%3C/svg%3E") !important; }
.flag-ae { background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20280%20200%22%3E%3Cpath%20fill=%22#fff%22%20d=%22M0%200h280v200H0z%22/%3E%3Cpath%20fill=%22#00732F%22%20d=%22M0%200h280v66.67H0z%22/%3E%3Cpath%20fill=%22#000%22%20d=%22M0%20133.33h280V200H0z%22/%3E%3Cpath%20fill=%22#FF0000%22%20d=%22M0%200h80v200H0z%22/%3E%3C/svg%3E") !important; }
.flag-ru { background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20280%20200%22%3E%3Cpath%20fill=%22#fff%22%20d=%22M0%200h280v200H0z%22/%3E%3Cpath%20fill=%22#0039A6%22%20d=%22M0%2066.67h280v66.66H0z%22/%3E%3Cpath%20fill=%22#D52B1E%22%20d=%22M0%20133.33h280V200H0z%22/%3E%3C/svg%3E") !important; }

.language-options {
    min-width: 230px !important;
}

.language-options a {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 16px !important;
    min-height: 58px !important;
    padding: 12px 14px !important;
}

.language-option-main {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
}

/* Eski kırık img varsa görünmesin */
img.language-flag {
    display: none !important;
}

/* Rezervasyon formu genel ölçü */
.booking-panel,
.booking-form,
.booking-form *,
.form-grid,
.form-grid.four,
.date-time-grid,
.date-time-row {
    box-sizing: border-box !important;
}

.booking-panel {
    overflow: visible !important;
}

.booking-form {
    gap: 14px !important;
}

.form-grid,
.form-grid.four {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
}

.booking-form label {
    min-width: 0 !important;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: var(--booking-field-height) !important;
    height: auto !important;
    font-size: var(--booking-field-font) !important;
    line-height: 1.2 !important;
    padding: 15px 16px !important;
}

.booking-form textarea {
    min-height: 110px !important;
}

/* Tarih/saat alanları: 2 satır, her satırda 2 eşit kutu */
.date-time-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: var(--booking-field-gap) !important;
    width: 100% !important;
}

.date-time-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--booking-field-gap) !important;
    width: 100% !important;
    align-items: end !important;
}

.date-time-row label {
    width: 100% !important;
    min-width: 0 !important;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
    display: block !important;
    width: 100% !important;
    height: var(--booking-field-height) !important;
    min-height: var(--booking-field-height) !important;
    padding: 15px 16px !important;
    padding-inline-end: 42px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    color-scheme: dark !important;
    background-color: rgba(255,255,255,.1) !important;
    background-image: none !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
    position: static !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: .95 !important;
    cursor: pointer !important;
    filter: invert(1) opacity(.85) !important;
    background-color: transparent !important;
}

.booking-form input[type="date"]::-webkit-date-and-time-value,
.booking-form input[type="time"]::-webkit-date-and-time-value {
    text-align: start !important;
}

@media (max-width: 900px) {
    .booking-panel {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px !important;
    }

    .form-grid,
    .form-grid.four {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    :root {
        --booking-field-height: 58px;
        --booking-field-font: 16px;
        --booking-field-gap: 12px;
        --flag-width: 28px;
        --flag-height: 20px;
    }

    .date-time-row {
        grid-template-columns: 1fr !important;
    }

    .language-button {
        min-width: 90px !important;
        height: 52px !important;
        padding: 0 12px !important;
    }

    .language-options {
        min-width: 220px !important;
    }
}

@media (max-width: 420px) {
    .booking-panel {
        padding: 15px !important;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .booking-form input[type="date"],
    .booking-form input[type="time"] {
        padding-inline-end: 40px !important;
    }
}

/* =========================================================
   FINAL MOBILE FORM + CSS FLAGS FIX - v6
   Bu blok dosyanın en altında kalmalı. Eski kuralların tamamını ezer.
   ========================================================= */
:root {
    --asf-field-height: 50px;
    --asf-field-font: 15px;
    --asf-field-gap: 10px;
    --asf-flag-width: 28px;
    --asf-flag-height: 19px;
}

/* Dil bayrakları: resim/svg/data-url kullanmaz, tamamen CSS ile çizilir. Kırık ikon çıkmaz. */
.language-button .flag-icon,
.language-options .flag-icon,
.flag-icon {
    display: inline-block !important;
    position: relative !important;
    flex: 0 0 var(--asf-flag-width) !important;
    width: var(--asf-flag-width) !important;
    height: var(--asf-flag-height) !important;
    min-width: var(--asf-flag-width) !important;
    max-width: var(--asf-flag-width) !important;
    border-radius: 3px !important;
    border: 1px solid rgba(255,255,255,.45) !important;
    box-shadow: 0 3px 10px rgba(0,0,0,.25) !important;
    overflow: hidden !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100% 100% !important;
}

.flag-icon::before,
.flag-icon::after {
    content: none !important;
}

.flag-gb {
    background-color: #012169 !important;
    background-image:
        linear-gradient(32deg, transparent 0 43%, #ffffff 43% 49%, #c8102e 49% 52%, #ffffff 52% 58%, transparent 58% 100%),
        linear-gradient(-32deg, transparent 0 43%, #ffffff 43% 49%, #c8102e 49% 52%, #ffffff 52% 58%, transparent 58% 100%),
        linear-gradient(0deg, transparent 0 38%, #ffffff 38% 62%, transparent 62% 100%),
        linear-gradient(90deg, transparent 0 40%, #ffffff 40% 60%, transparent 60% 100%),
        linear-gradient(0deg, transparent 0 44%, #c8102e 44% 56%, transparent 56% 100%),
        linear-gradient(90deg, transparent 0 45%, #c8102e 45% 55%, transparent 55% 100%) !important;
}

.flag-tr {
    background-color: #e30a17 !important;
    background-image:
        radial-gradient(circle at 42% 50%, #ffffff 0 26%, transparent 27%),
        radial-gradient(circle at 49% 50%, #e30a17 0 21%, transparent 22%),
        radial-gradient(circle at 68% 50%, #ffffff 0 4%, transparent 5%) !important;
}

.flag-ae {
    background-image:
        linear-gradient(90deg, #ff0000 0 28%, transparent 28% 100%),
        linear-gradient(180deg, #00732f 0 33.333%, #ffffff 33.333% 66.666%, #000000 66.666% 100%) !important;
}

.flag-ru {
    background-image: linear-gradient(180deg, #ffffff 0 33.333%, #0039a6 33.333% 66.666%, #d52b1e 66.666% 100%) !important;
}

.language-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: auto !important;
    min-width: 82px !important;
    height: 46px !important;
    padding: 0 10px !important;
}

.language-options {
    min-width: 220px !important;
    padding: 8px !important;
}

.language-options a {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 48px !important;
    padding: 10px 12px !important;
}

.language-option-main {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
}

img.language-flag,
.globe-icon {
    display: none !important;
}

/* Mobil başlık taşmasını engelle */
@media (max-width: 640px) {
    .site-header {
        inset: 8px 8px auto !important;
        min-height: 58px !important;
        padding: 8px !important;
        grid-template-columns: minmax(0, 1fr) 42px auto !important;
        gap: 6px !important;
    }

    .brand {
        min-width: 0 !important;
        gap: 8px !important;
        overflow: hidden !important;
    }

    .brand strong {
        max-width: 145px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 13px !important;
    }

    .brand-mark,
    .brand-logo {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 12px !important;
    }

    .nav-toggle {
        width: 40px !important;
        height: 40px !important;
    }

    .language-button {
        min-width: 72px !important;
        height: 40px !important;
        padding: 0 8px !important;
        font-size: 13px !important;
    }

    :root {
        --asf-flag-width: 24px;
        --asf-flag-height: 16px;
    }
}

/* Rezervasyon formu: oranlı, taşmayan, kompakt */
.booking-panel,
.booking-form,
.booking-form *,
.form-grid,
.form-grid.four,
.date-time-grid,
.date-time-row {
    box-sizing: border-box !important;
}

.booking-panel {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
}

.booking-form {
    display: grid !important;
    gap: 12px !important;
    width: 100% !important;
}

.booking-form label {
    min-width: 0 !important;
    width: 100% !important;
}

.booking-form label span {
    line-height: 1.25 !important;
}

.form-grid,
.form-grid.four {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: var(--asf-field-height) !important;
    height: var(--asf-field-height) !important;
    padding: 12px 14px !important;
    font-size: var(--asf-field-font) !important;
    line-height: 1.2 !important;
    border-radius: 0 !important;
}

.booking-form textarea {
    height: 92px !important;
    min-height: 92px !important;
}

.date-time-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: var(--asf-field-gap) !important;
    width: 100% !important;
}

.date-time-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: var(--asf-field-gap) !important;
    width: 100% !important;
    align-items: end !important;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
    width: 100% !important;
    height: var(--asf-field-height) !important;
    min-height: var(--asf-field-height) !important;
    padding: 10px 10px !important;
    font-size: 14px !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    cursor: pointer !important;
    color-scheme: dark !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
    display: none !important;
    opacity: 0 !important;
}

.booking-form input[type="date"]::-webkit-date-and-time-value,
.booking-form input[type="time"]::-webkit-date-and-time-value {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 900px) {
    .hero-content,
    .section-pad {
        width: min(100% - 20px, 1240px) !important;
    }

    .booking-panel {
        padding: 14px !important;
    }

    .form-grid,
    .form-grid.four {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .date-time-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    :root {
        --asf-field-height: 46px;
        --asf-field-font: 14px;
        --asf-field-gap: 8px;
    }

    .booking-panel {
        padding: 12px !important;
    }

    .booking-form {
        gap: 10px !important;
    }

    .booking-form label span {
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 10px 12px !important;
    }

    .booking-form textarea {
        height: 80px !important;
        min-height: 80px !important;
    }

    .booking-form input[type="date"],
    .booking-form input[type="time"] {
        font-size: 13px !important;
        padding: 9px 8px !important;
    }

    .booking-form button {
        min-height: 48px !important;
        padding: 12px 14px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 340px) {
    .date-time-row {
        gap: 6px !important;
    }

    .booking-form input[type="date"],
    .booking-form input[type="time"] {
        font-size: 12px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

/* =========================================================
   FLAG CORRECTION - 20260616 v7
   Önceki CSS-only bayrak çizimleri bu blokla tamamen ezilir.
   Türk bayrağı artık nokta değil gerçek ay-yıldız SVG olarak görünür.
   ========================================================= */
.flag-icon::before,
.flag-icon::after {
    content: none !important;
    display: none !important;
}

.language-button .flag-icon,
.language-options .flag-icon,
.flag-icon {
    display: inline-block !important;
    position: relative !important;
    flex: 0 0 var(--asf-flag-width, 28px) !important;
    width: var(--asf-flag-width, 28px) !important;
    height: var(--asf-flag-height, 19px) !important;
    min-width: var(--asf-flag-width, 28px) !important;
    max-width: var(--asf-flag-width, 28px) !important;
    border-radius: 2px !important;
    border: 1px solid rgba(255,255,255,.45) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 100% 100% !important;
    box-shadow: 0 3px 10px rgba(0,0,0,.25) !important;
    overflow: hidden !important;
}

.flag-gb { background-color: transparent !important; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyODAgMjAwIj48cmVjdCB3aWR0aD0iMjgwIiBoZWlnaHQ9IjIwMCIgZmlsbD0iIzAxMjE2OSIvPjxwYXRoIGQ9Ik0wIDBsMjgwIDIwME0yODAgMEwwIDIwMCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjQyIi8+PHBhdGggZD0iTTAgMGwyODAgMjAwTTI4MCAwTDAgMjAwIiBzdHJva2U9IiNDODEwMkUiIHN0cm9rZS13aWR0aD0iMjQiLz48cGF0aCBkPSJNMTQwIDB2MjAwTTAgMTAwaDI4MCIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjcwIi8+PHBhdGggZD0iTTE0MCAwdjIwME0wIDEwMGgyODAiIHN0cm9rZT0iI0M4MTAyRSIgc3Ryb2tlLXdpZHRoPSI0MiIvPjwvc3ZnPg==") !important; }
.flag-tr { background-color: transparent !important; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyODAgMjAwIj48cmVjdCB3aWR0aD0iMjgwIiBoZWlnaHQ9IjIwMCIgZmlsbD0iI0UzMEExNyIvPjxjaXJjbGUgY3g9IjEwNiIgY3k9IjEwMCIgcj0iNTAiIGZpbGw9IiNmZmYiLz48Y2lyY2xlIGN4PSIxMjQiIGN5PSIxMDAiIHI9IjM5IiBmaWxsPSIjRTMwQTE3Ii8+PHBvbHlnb24gcG9pbnRzPSIxOTAuMCw2Ni4wIDE5Ny45LDg5LjEgMjIyLjMsODkuNSAyMDIuOCwxMDQuMiAyMTAuMCwxMjcuNSAxOTAuMCwxMTMuNSAxNzAuMCwxMjcuNSAxNzcuMiwxMDQuMiAxNTcuNyw4OS41IDE4Mi4xLDg5LjEiIGZpbGw9IiNmZmYiLz48L3N2Zz4=") !important; }
.flag-ae { background-color: transparent !important; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyODAgMjAwIj48cmVjdCB3aWR0aD0iMjgwIiBoZWlnaHQ9IjIwMCIgZmlsbD0iI2ZmZiIvPjxyZWN0IHdpZHRoPSIyODAiIGhlaWdodD0iNjYuNjY3IiBmaWxsPSIjMDA5NzM5Ii8+PHJlY3QgeT0iMTMzLjMzMyIgd2lkdGg9IjI4MCIgaGVpZ2h0PSI2Ni42NjciIGZpbGw9IiMwMDAiLz48cmVjdCB3aWR0aD0iNzgiIGhlaWdodD0iMjAwIiBmaWxsPSIjRUYzMzQwIi8+PC9zdmc+") !important; }
.flag-ru { background-color: transparent !important; background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyODAgMjAwIj48cmVjdCB3aWR0aD0iMjgwIiBoZWlnaHQ9IjIwMCIgZmlsbD0iI2ZmZiIvPjxyZWN0IHk9IjY2LjY2NyIgd2lkdGg9IjI4MCIgaGVpZ2h0PSI2Ni42NjciIGZpbGw9IiMwMDM5QTYiLz48cmVjdCB5PSIxMzMuMzMzIiB3aWR0aD0iMjgwIiBoZWlnaHQ9IjY2LjY2NyIgZmlsbD0iI0Q1MkIxRSIvPjwvc3ZnPg==") !important; }

img.language-flag,
.globe-icon {
    display: none !important;
}
