﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f8f9fa;
    color: #1a1a2e;
    line-height: 1.5;
}
img[loading="lazy"] {
    background-color: #e8e4da;
}
.header {
    position: relative;
    width: 100%;
}
.top-bar {
    background: linear-gradient(135deg, #9b1c1c 0%, #c0392b 100%);
    min-height: 42px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(0,0,0,.15);
}
.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 32px;
    width: 100%;
    gap: 16px;
}
.announcement {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: normal;
    overflow-wrap: break-word;
}
.announcement strong {
    font-weight: 800;
    color: #fff3c4;
}
.btn-top-bar {
    background-color: #fff;
    color: #9b1c1c;
    padding: 5px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    border: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
    flex-shrink: 0;
}
.btn-top-bar:hover {
    background-color: #ffe5e5;
    color: #7b1111;
    transform: translateY(-1px);
}
.navbar {
    background-color: #ffffff;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    position: sticky;
    top: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.03);
    z-index: 1000;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0d1b2a;
}
.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.06));
}
.logo h1 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #0d1b2a;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}
.nav-menu > li {
    position: relative;
}
.nav-menu > li.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    pointer-events: none;
}
.nav-menu > li.dropdown:hover::after {
    pointer-events: auto;
}
.nav-menu > li > a {
    display: block;
    padding: 10px 18px;
    color: #2d3748;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: #c9a84c;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}
.nav-menu > li > a:hover {
    color: #0d1b2a;
    background-color: rgba(13, 27, 42, 0.03);
}
.nav-menu > li > a:hover::after {
    transform: scaleX(1);
}
.dropdown {
    position: relative;
}
.dropdown-content {
    display: block;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(13, 27, 42, 0.12), 0 2px 8px rgba(13, 27, 42, 0.06);
    border-radius: 10px;
    padding: 8px 0;
    z-index: 1002;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    white-space: nowrap;
}
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-content a {
    display: block;
    padding: 11px 24px;
    color: #374151;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.15s ease;
    text-align: center;
}
.dropdown-content a:hover {
    background-color: #f0f2f5;
    color: #0d1b2a;
}
.dropdown-content a:first-child {
    border-radius: 10px 10px 0 0;
}
.dropdown-content a:last-child {
    border-radius: 0 0 10px 10px;
}
.functional-menus {
    display: flex;
    align-items: center;
    gap: 12px;
}
.currency-selector {
    position: relative;
}
.currency-selector select {
    padding: 4px 24px 4px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background-color: #ffffff;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23374151'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: all 0.2s ease;
    font-family: inherit;
}
.currency-selector select:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}
.currency-selector select:focus {
    outline: none;
    border-color: #c9a84c;
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.15);
}
.currency-selector select option {
    background-color: #0d1b2a;
    color: #fffaf0;
}
.btn-outline,
.btn-primary {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-block;
    font-family: inherit;
}
.btn-primary {
    background-color: #0d1b2a;
    color: #ffffff;
    border: 1.5px solid #0d1b2a;
}
.btn-primary:hover {
    background-color: #1a2f4a;
    border-color: #1a2f4a;
    box-shadow: 0 4px 14px rgba(13, 27, 42, 0.25);
    transform: translateY(-1px);
}
.btn-outline {
    background-color: #ffffff;
    color: #0d1b2a;
    border: 1.5px solid #0d1b2a;
}
.btn-outline:hover {
    background-color: #0d1b2a;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(13, 27, 42, 0.2);
    transform: translateY(-1px);
}
@media (max-width: 1024px) {
    .navbar {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 24px;
        gap: 14px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2px;
        order: 3;
        width: 100%;
    }
    .nav-menu > li > a {
        padding: 8px 14px;
        font-size: 13px;
    }
    .functional-menus {
        order: 2;
        gap: 8px;
    }
    .logo h1 {
        font-size: 17px;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .navbar {
        justify-content: space-between;
        padding: 14px 16px;
    }
    .top-bar-content {
        padding: 8px 16px;
    }
    .announcement {
        font-size: 12px;
    }
    .btn-top-bar {
        font-size: 11px;
        padding: 4px 12px;
    }
    .functional-menus {
        display: none;
    }
    .btn-outline {
        display: none;
    }
    .currency-selector select {
        padding: 8px 28px 8px 10px;
        font-size: 12px;
    }
    .btn-primary {
        padding: 8px 14px;
        font-size: 12px;
    }
}
.hero {
    position: relative;
    width: 100%;
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 30px;
   background-image:
        linear-gradient(140deg, rgba(21, 23, 26, 0.55), rgba(45, 56, 54, 0.5)),
        url('/Contents/img/heroImageBacground.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 768px) {
    /* Arama kutusu paneli fotoğrafın neredeyse tamamını örtüyor — sadece küçük bir şerit
       görünüyor. Mobilde JPEG'i hiç indirmeden aynı tonda opak bir gradient kullanıyoruz;
       hem bant genişliği tasarrufu hem de LCP'nin resim yerine metne bağlanması sağlanıyor. */
    .hero {
        background-image: linear-gradient(140deg, #1c2b2a 0%, #15171a 100%);
    }
}
.hero::before {
    content: '';
    position: absolute;
    inset: -60px;
    background-image:
        linear-gradient(rgba(255, 250, 240, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 250, 240, 0.032) 1px, transparent 1px);
    background-size: 68px 68px;
    transform: rotate(-10deg) scale(1.2);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -22% -10%;
    height: 200px;
    background: #f4f1eb;
    border-radius: 50% 50% 0 0;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-orb-gold {
    width: 780px;
    height: 780px;
    top: -300px;
    right: -200px;
    background: radial-gradient(circle at center,
        rgba(214, 177, 106, 0.13) 0%,
        rgba(214, 177, 106, 0.04) 40%,
        transparent 70%);
}
.hero-orb-teal {
    width: 560px;
    height: 560px;
    bottom: -60px;
    left: -160px;
    background: radial-gradient(circle at center,
        rgba(118, 156, 145, 0.14) 0%,
        rgba(118, 156, 145, 0.04) 45%,
        transparent 70%);
}
.hero-ring {
    position: absolute;
    right: 5%;
    top: 8%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(214, 177, 106, 0.1);
    pointer-events: none;
    z-index: 0;
}
.hero-ring::before {
    content: '';
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    border: 1px solid rgba(214, 177, 106, 0.07);
}
.hero-ring::after {
    content: '';
    position: absolute;
    inset: 56px;
    border-radius: 50%;
    border: 1px solid rgba(214, 177, 106, 0.05);
}
.hero-route-decor {
    position: absolute;
    right: 0;
    bottom: 15%;
    width: 48%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(214, 177, 106, 0.15) 30%,
        rgba(214, 177, 106, 0.35) 60%,
        transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.hero-route-decor::before {
    content: '';
    position: absolute;
    left: 28%;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d6b16a;
    box-shadow: 0 0 18px rgba(214, 177, 106, 0.5);
}
.hero-route-decor::after {
    content: '';
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(214, 177, 106, 0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
    width: min(1220px, 100%);
    padding: 72px 40px 32px;
    color: #fffaf0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #d6b16a;
    margin-bottom: 20px;
}
.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #d6b16a;
    border-radius: 2px;
}
.hidden {
    display: none !important;
}
.hero-title {
    font-size: clamp(28px, 3.4vw, 50px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #fffaf0;
}
.hero-title-gold {
    color: #d6b16a;
    display: block;
}
.hero-desc {
    color: rgba(255, 250, 240, 0.66);
    font-size: 16px;
    font-weight: 450;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 20px 24px;
    border: 1px solid rgba(255, 250, 240, 0.1);
    border-radius: 10px;
    background: rgba(255, 250, 240, 0.05);
    backdrop-filter: blur(8px);
}
.hero-stat {
    flex: 1;
    text-align: center;
}
.hero-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #fffaf0;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat strong em {
    color: #d6b16a;
    font-style: normal;
}
.hero-stat span {
    font-size: 11px;
    color: rgba(255, 250, 240, 0.5);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.hero-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 250, 240, 0.1);
    flex-shrink: 0;
}
.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hero-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 250, 240, 0.1);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.05);
    transition: background 0.2s, border-color 0.2s;
}
.hero-badge:hover {
    background: rgba(255, 250, 240, 0.1);
    border-color: rgba(255, 250, 240, 0.18);
}
.hero-badge > span {
    font-size: 20px;
    flex-shrink: 0;
}
.hero-badge b {
    display: block;
    color: #fffaf0;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 1px;
}
.hero-badge small {
    display: block;
    color: rgba(255, 250, 240, 0.5);
    font-size: 11px;
}
.form-header {
    padding: 20px 24px 0;
}
.form-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7a612f;
    margin-bottom: 4px;
}
.form-header h2,
.form-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #15171a;
    margin: 0 0 16px;
}
@media (max-width: 1100px) {
    .hero-content {
        padding: 72px 24px 32px;
    }
    .hero-orb,
    .hero-ring,
    .hero-route-decor { display: none; }
    .hero::after { display: none; }
}
@media (max-width: 600px) {
    .hero-content {
        padding: 20px 16px 24px;
    }
}
.hero-searchbar {
    position: relative;
    z-index: 10;
    width: min(1220px, 100%);
    padding: 0 40px;
}
.hsb-panel {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0,0,0,0.06);
    overflow: hidden;
}
.hsb-tabs {
    display: flex;
    align-items: flex-end;
    gap: 0;
    padding: 0 8px;
    border-bottom: 1px solid #e8e8e8;
}
.hsb-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 13px 20px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    background: transparent;
    color: #aaa;
    font: inherit;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.18s, border-color 0.18s;
}
.hsb-tab--active {
    color: #0d1b2a;
    font-weight: 800;
    border-bottom-color: #2563eb;
}
.hsb-form {
    display: flex;
    align-items: stretch;
}
.hsb-form--hidden {
    display: none;
}
.hsb-fields {
    display: flex;
    align-items: center;
    flex: 1 1 0%;
    min-height: 72px;
    min-width: 0;
    overflow: hidden;
}
.hsb-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 0 18px;
    min-width: 0;
    height: 100%;
}
.hsb-field--loc {
    flex: 1 1 0%;
    max-width: 260px;
    min-width: 0;
}
@keyframes hsb-shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-5px); }
    40%       { transform: translateX(5px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}
.hsb-field--required {
    animation: hsb-shake 0.35s ease;
    background: rgba(220, 38, 38, 0.04);
    border-radius: 4px;
    outline: 1.5px solid rgba(220, 38, 38, 0.45);
}
.hsb-field--toggle {
    flex: 0 0 130px;
    width: 130px;
    overflow: hidden;
}
.hsb-field--pax {
    flex: 0 0 120px;
    width: 120px;
    overflow: hidden;
    padding: 0 12px;
}
.hsb-field--pax .hsb-field-label { font-size: 9px; }
.hsb-field--pax .hsb-pax-row { gap: 5px; }
.hsb-field--pax .hsb-pax-btn {
    width: 20px;
    height: 20px;
    font-size: 13px;
}
.hsb-field--pax .hsb-pax-row span {
    font-size: 12px;
}
.hsb-icon {
    color: #9ca3af;
    flex-shrink: 0;
}
.hsb-field-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.hsb-field-label {
    font-size: 10.5px;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.hsb-field-sub {
    font-size: 9.5px;
    color: #c0c8d0;
    white-space: nowrap;
}
.hsb-loc-btn {
    background: transparent;
    border: none;
    padding: 0;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #1a2744;
    cursor: pointer;
    text-align: left;
    display: block;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hsb-loc-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 3px;
}
.hsb-loc-empty .hsb-loc-val {
    color: #b0b8c4;
}
.hsb-date-input {
    background: transparent;
    border: none;
    padding: 0;
    font: inherit;
    font-size: 9px;
    font-weight: 600;
    color: #1a2744;
    cursor: pointer;
    width: 100%;
    min-width: 0;
}
.hsb-date-input:focus { outline: none; }
.hsb-date-input::placeholder {
    color: #b0b8c4;
    font-weight: 400;
}
.hsb-date-range {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}
.hsb-date-slot {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
}
.hsb-dt-val {
    font-size: 13px;
    font-weight: 400;
    color: #b0b8c4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    user-select: none;
    line-height: 1.4;
}
.hsb-dt-val.has-value { font-weight: 600; color: #1a2744; }
.hsb-dt-btn {
    position: absolute;
    inset: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    padding: 0;
}
.cpk-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 9998;
}
.cpk-panel {
    position: absolute;
    z-index: 9999;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.16);
    width: 296px;
    overflow: hidden;
    font-family: inherit;
}
@media (max-width: 767px) {
    .cpk-panel {
        position: fixed !important;
        top: 50% !important; left: 50% !important;
        transform: translate(-50%,-50%) !important;
        width: calc(100vw - 32px); max-width: 340px;
    }
}
.cpk-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 12px 8px;
}
.cpk-title { font-size: 13px; font-weight: 700; color: #1a2744; letter-spacing: .4px; }
.cpk-arr {
    background: none; border: none; cursor: pointer;
    color: #1a2744; font-size: 22px; line-height: 1;
    padding: 6px 10px; border-radius: 7px; transition: background .15s;
}
.cpk-arr:hover { background: #f4f1eb; }
.cpk-wdays {
    display: grid; grid-template-columns: repeat(7,1fr);
    padding: 0 10px 4px;
}
.cpk-wdays span { text-align: center; font-size: 11px; font-weight: 600; color: #9ca3af; padding: 2px 0; }
.cpk-grid {
    display: grid; grid-template-columns: repeat(7,1fr);
    padding: 2px 10px 14px; gap: 2px;
}
.cpk-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 500; color: #1a2744;
    border-radius: 50%; border: none; background: none;
    cursor: pointer; transition: background .12s; min-height: 34px;
}
.cpk-day:hover:not(:disabled) { background: #f4f1eb; }
.cpk-day.cpk-past  { color: #d1d5db; cursor: default; }
.cpk-day.cpk-today { border: 1.5px solid #1a2744; font-weight: 700; }
.cpk-day.cpk-sel   { background: #1a2744 !important; color: #fff !important; border-color: transparent; }
.cpk-day.cpk-empty { pointer-events: none; }
.cpk-time { display: flex; flex-direction: column; }
.cpk-time-head {
    display: flex; align-items: center; gap: 4px;
    padding: 12px 16px 10px; border-bottom: 1px solid #f0ece4;
}
.cpk-back {
    background: none; border: none; cursor: pointer;
    color: #1a2744; font-size: 22px; line-height: 1; padding: 2px 8px 2px 0;
}
.cpk-time-label { font-size: 14px; font-weight: 700; color: #1a2744; }
.cpk-time-list {
    overflow-y: auto; max-height: 272px;
    padding: 6px 0; overscroll-behavior: contain;
}
.cpk-time-btn {
    display: block; width: 100%; background: none; border: none;
    padding: 11px 28px; text-align: left;
    font-size: 14px; font-weight: 500; color: #374151;
    cursor: pointer; font-family: inherit; transition: background .1s;
}
.cpk-time-btn:hover  { background: #f4f1eb; }
.cpk-time-btn.cpk-time-now { color: #d6b16a; font-weight: 700; }
.hsb-date-arrow {
    font-size: 14px;
    color: #9ca3af;
    flex-shrink: 0;
    padding: 0 2px;
}
.hsb-field--date {
    flex: 1.4;
    justify-content: center;
    transition: flex 0.2s;
    overflow: hidden;
}
#hsb-tours .hsb-field--date { justify-content: center; }
#hsb-tours .hsb-field--date .hsb-icon { display: none; }
#hsb-tours .hsb-field--date .hsb-field-inner { flex: unset; text-align: center; }
#hsb-tours .hsb-field--date .hsb-field-label { font-size: 12px; }
#hsb-tours .hsb-field--date .hsb-field-sub { font-size: 11px; }
#hsb-tours .hsb-field--date .hsb-date-input { text-align: center; font-size: 14px; }
.hsb-sep {
    width: 1px;
    height: 40px;
    background: #e8e8e8;
    flex-shrink: 0;
}
.hsb-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}
.hsb-switch input { opacity: 0; width: 0; height: 0; }
.hsb-slider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s;
}
.hsb-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.hsb-switch input:checked + .hsb-slider { background: #2563eb; }
.hsb-switch input:checked + .hsb-slider::before { transform: translateX(18px); }
.hsb-pax-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hsb-pax-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: transparent;
    color: #374151;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: border-color 0.15s, background 0.15s;
}
.hsb-pax-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}
.hsb-pax-row span {
    font-size: 14px;
    font-weight: 700;
    color: #1a2744;
    min-width: 16px;
    text-align: center;
}
.hsb-select {
    background: transparent;
    border: none;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #1a2744;
    cursor: pointer;
    width: 100%;
    appearance: none;
}
.hsb-select:focus { outline: none; }
.hsb-search-btn {
    flex-shrink: 0;
    padding: 0 40px;
    background: linear-gradient(135deg, #9b1c1c 0%, #c0392b 100%);
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 0 0 16px 0;
    cursor: pointer;
    transition: background 0.2s;
    align-self: stretch;
}
.hsb-search-btn:hover { background: linear-gradient(135deg, #7b1111 0%, #9b2218 100%); }
@media (max-width: 1100px) {
    .hero-searchbar { padding: 0 24px; }
    .hsb-field--toggle { flex: 0 0 110px; width: 110px; }
    .hsb-field--pax { flex: 0 0 110px; width: 110px; }
}
@media (max-width: 900px) {
    .hero-searchbar { padding: 0 16px; }
    .hsb-fields { flex-wrap: wrap; padding: 8px 0; min-height: unset; }
    .hsb-field { flex: 1 1 40%; padding: 10px 14px; border-bottom: 1px solid #f0f0f0; }
    .hsb-sep { display: none; }
    .hsb-search-btn {
        border-radius: 0 0 16px 16px;
        width: 100%;
        min-height: 54px;
        padding: 0;
        background: linear-gradient(135deg, #9b1c1c 0%, #c0392b 100%);
        color: #ffffff;
        font-size: 16px;
        letter-spacing: 0.12em;
    }
    .hsb-search-btn:hover { background: linear-gradient(135deg, #7b1111 0%, #9b2218 100%); }
    .hsb-form { flex-direction: column; }
}
@media (max-width: 600px) {
    .hero { padding-bottom: 32px; }
    .hsb-field { flex: 1 1 100%; }
}
.form-container {
    width: 100%;
    background: #fffaf0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 32px 80px rgba(13, 27, 42, 0.36),
        0 0 0 1px rgba(255, 250, 240, 0.06);
}
.hf-tabs {
    display: flex;
    border-bottom: 1px solid rgba(21, 23, 26, 0.1);
}
.hf-tab {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    background: transparent;
    color: #73695a;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.hf-tab.active {
    color: #15171a;
    border-bottom-color: #d6b16a;
}
.hf-body {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px 22px;
}
.hf-body.active {
    display: flex;
}
.hf-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hf-field > label {
    font-size: 11px;
    font-weight: 800;
    color: #73695a;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.hf-input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(21, 23, 26, 0.12);
    border-radius: 8px;
    background: #f4f1eb;
    color: #15171a;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: auto;
}
.hf-input:focus {
    outline: none;
    border-color: #7a612f;
    box-shadow: 0 0 0 3px rgba(135, 107, 53, 0.1);
    background: #fffaf0;
}
.hf-location-btn {
    width: 100%;
    height: 46px;
    padding: 0 12px 0 14px;
    border: 1px solid rgba(21, 23, 26, 0.12);
    border-radius: 8px;
    background: #f4f1eb;
    color: #15171a;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: left;
}
.hf-location-btn:hover {
    border-color: rgba(21, 23, 26, 0.24);
}
.hf-location-btn:focus {
    outline: none;
    border-color: #7a612f;
    box-shadow: 0 0 0 3px rgba(135, 107, 53, 0.1);
}
.hf-location-val {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hf-location-btn.hf-empty .hf-location-val {
    color: #73695a;
}
.hf-chevron {
    font-size: 16px;
    color: #73695a;
    flex-shrink: 0;
}
.hf-row {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 10px;
    align-items: end;
}
.hf-stepper {
    display: flex;
    align-items: center;
    height: 46px;
    border: 1px solid rgba(21, 23, 26, 0.12);
    border-radius: 8px;
    overflow: hidden;
    background: #f4f1eb;
}
.hf-stepper button {
    width: 38px;
    height: 100%;
    border: 0;
    background: transparent;
    color: #15171a;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}
.hf-stepper button:hover {
    background: rgba(21, 23, 26, 0.08);
}
.hf-stepper span {
    flex: 1;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: #15171a;
    border-left: 1px solid rgba(21, 23, 26, 0.12);
    border-right: 1px solid rgba(21, 23, 26, 0.12);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hf-toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(21, 23, 26, 0.08);
    border-radius: 8px;
    background: rgba(214, 177, 106, 0.06);
    cursor: pointer;
}
.hf-toggle-label {
    font-size: 13px;
    font-weight: 600;
    color: #6f736f;
    flex: 1;
    user-select: none;
}
.hf-submit {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: #15171a;
    color: #fffaf0;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 2px;
    letter-spacing: 0.02em;
}
.hf-submit:hover {
    background: #7a612f;
    transform: translateY(-1px);
}
.transfer-results-section {
    padding: 42px 32px 56px;
    background:
        linear-gradient(180deg, #f8f9fa 0%, #eef4f7 100%);
}
.transfer-results-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}
.booking-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(13, 27, 42, 0.06);
}
.booking-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border-radius: 6px;
    color: #8a96a8;
    font-size: 13px;
    font-weight: 800;
}
.booking-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #edf3f7;
    color: #64748b;
    font-size: 12px;
}
.booking-step.active {
    background: #effaf7;
    color: #0f766e;
}
.booking-step.active span {
    background: #0f766e;
    color: #ffffff;
}
.transfer-results-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}
.route-visual-card,
.route-summary-card,
.vehicle-result-card {
    border: 1px solid #dfe8ef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 58px rgba(13, 27, 42, 0.07);
}
.route-visual-card {
    position: sticky;
    top: 96px;
    overflow: hidden;
}
.route-map-visual {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(13, 27, 42, 0.06)),
        #d8edf0;
}
.map-grid {
    position: absolute;
    inset: -20px;
    background-image:
        linear-gradient(rgba(13, 27, 42, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 27, 42, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    transform: rotate(-8deg) scale(1.12);
}
.map-water {
    position: absolute;
    left: -15%;
    right: -18%;
    top: 40%;
    height: 92px;
    border-radius: 50%;
    background: rgba(44, 118, 166, 0.22);
    transform: rotate(-12deg);
}
.route-line {
    position: absolute;
    left: 26%;
    top: 29%;
    width: 46%;
    height: 44%;
    border-right: 5px solid #0f766e;
    border-bottom: 5px solid #0f766e;
    border-radius: 0 0 110px 0;
    transform: rotate(-18deg);
    filter: drop-shadow(0 8px 10px rgba(15, 118, 110, 0.24));
}
.route-pin {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(13, 27, 42, 0.24);
}
.route-pin::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 12px;
    height: 12px;
    background: inherit;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px;
}
.route-pin-start {
    left: 23%;
    top: 24%;
    background: #0f766e;
}
.route-pin-end {
    right: 22%;
    bottom: 24%;
    background: #0d1b2a;
}
.map-label {
    position: absolute;
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    color: #0d1b2a;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(13, 27, 42, 0.12);
}
.map-label-start {
    left: 16%;
    top: 17%;
}
.map-label-end {
    right: 14%;
    bottom: 14%;
}
.route-visual-footer {
    padding: 18px;
    border-top: 1px solid #e6edf5;
    background: #ffffff;
}
.route-visual-footer strong,
.route-visual-footer span {
    display: block;
}
.route-visual-footer strong {
    color: #0d1b2a;
    font-size: 17px;
}
.route-visual-footer span {
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}
.results-main {
    min-width: 0;
}
.route-summary-card {
    padding: 18px;
}
.summary-header,
.vehicle-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.summary-eyebrow {
    display: block;
    color: #0f766e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.summary-header h1,
.summary-header h2,
.vehicle-results-head h3 {
    margin: 3px 0 0;
    color: #0d1b2a;
    font-size: 22px;
    line-height: 1.2;
}
.summary-edit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 14px;
    border: 1px solid #d9e4ec;
    border-radius: 7px;
    background: #ffffff;
    color: #0d1b2a;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.summary-edit-btn:hover {
    border-color: #0f766e;
    background: #f0faf8;
}
.route-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}
.route-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    background: #fbfdfe;
}
.point-dot {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
}
.point-dot.start {
    background: #10b981;
}
.point-dot.end {
    background: #0d1b2a;
}
.route-point span {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.route-point strong {
    display: block;
    min-width: 0;
    margin-top: 2px;
    overflow: hidden;
    color: #0d1b2a;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.summary-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}
.metric-box {
    min-height: 78px;
    padding: 13px 10px;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    background: #f8fbfc;
    text-align: center;
}
.metric-box span {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
}
.metric-box strong {
    display: block;
    margin-top: 7px;
    color: #0d1b2a;
    font-size: 14px;
    font-weight: 900;
}
.vehicle-results-head {
    margin: 22px 0 12px;
}
.vehicle-results-head span:last-child {
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}
.vehicle-results-list {
    display: grid;
    gap: 12px;
}
.vehicle-result-card {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 150px;
    gap: 16px;
    align-items: center;
    padding: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.vehicle-result-card:hover,
.vehicle-result-card.featured {
    border-color: #0f766e;
    box-shadow: 0 22px 64px rgba(13, 27, 42, 0.1);
}
.vehicle-result-card:hover {
    transform: translateY(-1px);
}
.vehicle-result-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 7px;
    background: #eef3f6;
}
.vehicle-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vehicle-result-body {
    min-width: 0;
}
.vehicle-kicker {
    color: #0f766e;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.vehicle-result-body h4 {
    margin: 2px 0 4px;
    color: #0d1b2a;
    font-size: 18px;
}
.vehicle-result-body p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}
.vehicle-specs,
.vehicle-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 10px;
}
.vehicle-specs span,
.vehicle-services span {
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}
.vehicle-services span {
    color: #0f766e;
}
.vehicle-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.old-price {
    color: #9aa5b1;
    font-size: 12px;
    font-weight: 800;
    text-decoration: line-through;
}
.vehicle-price {
    color: #0d1b2a;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}
.vehicle-currency {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}
.vehicle-reserve-btn {
    width: 100%;
    height: 42px;
    border: 0;
    border-radius: 7px;
    background: #0f766e;
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.vehicle-reserve-btn:hover {
    background: #0b625c;
    transform: translateY(-1px);
}
.results-page {
    background: #f4f1eb;
    color: #15171a;
}
.results-page .navbar {
    box-shadow: 0 1px 0 rgba(21, 23, 26, 0.08);
}
.new-results-hero {
    position: relative;
    overflow: hidden;
    padding: 18px 32px 22px;
    background:
        linear-gradient(140deg, rgba(21, 23, 26, 0.96), rgba(45, 56, 54, 0.94)),
        url('/Contents/img/heroImageBacground.jpeg') center/cover;
    color: #fffaf0;
}
.new-results-hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -28% -10%;
    height: 120px;
    background: #f4f1eb;
    border-radius: 50% 50% 0 0;
}
.new-results-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
}
.new-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.new-steps span {
    min-width: 80px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 250, 240, 0.18);
    border-radius: 999px;
    color: rgba(255, 250, 240, 0.58);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}
.new-steps span.is-active {
    border-color: #d6b16a;
    background: rgba(214, 177, 106, 0.16);
    color: #ffe2a3;
}
.new-route-stage {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.25fr);
    gap: 28px;
    align-items: end;
}
.new-route-copy {
    padding-bottom: 20px;
}
.new-eyebrow {
    display: block;
    color: #d6b16a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.new-route-copy h1 {
    max-width: 560px;
    margin: 6px 0 8px;
    color: #fffaf0;
    font-size: clamp(20px, 2.8vw, 30px);
    line-height: 1.15;
    font-weight: 850;
}
.new-route-copy p {
    max-width: 560px;
    color: rgba(255, 250, 240, 0.72);
    font-size: 13px;
    font-weight: 650;
    margin: 0;
}
.new-edit-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 250, 240, 0.24);
    border-radius: 999px;
    background: rgba(255, 250, 240, 0.08);
    color: #fffaf0;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.new-edit-link:hover {
    background: rgba(255, 250, 240, 0.16);
    border-color: rgba(255, 250, 240, 0.4);
    transform: translateY(-1px);
}
.new-route-panel {
    position: relative;
    padding: 14px 18px;
    border: 1px solid rgba(255, 250, 240, 0.18);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.1);
    backdrop-filter: blur(14px);
}
.new-route-line {
    display: grid;
    grid-template-columns: 22px 1fr 22px;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.new-route-line span {
    width: 22px;
    height: 22px;
    border: 6px solid rgba(255, 250, 240, 0.9);
    border-radius: 50%;
    background: #d6b16a;
}
.new-route-line span:last-child {
    background: #769c91;
}
.new-route-line i {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, #d6b16a, rgba(255, 250, 240, 0.24), #769c91);
}
.new-route-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.new-route-cities div {
    min-width: 0;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.92);
}
.new-route-cities small {
    display: block;
    color: #7a612f;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.new-route-cities strong {
    display: block;
    min-width: 0;
    margin-top: 4px;
    overflow: hidden;
    color: #15171a;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.new-metrics {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.18);
}
.new-metrics div {
    min-height: 56px;
    padding: 10px 14px;
    background: rgba(255, 250, 240, 0.1);
}
.new-metrics span {
    display: block;
    color: rgba(255, 250, 240, 0.58);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.new-metrics strong {
    display: block;
    margin-top: 4px;
    color: #fffaf0;
    font-size: 15px;
    font-weight: 900;
}
.new-fleet-results {
    padding: 20px 32px 48px;
    background: #f4f1eb;
}
.new-fleet-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}
.new-fleet-head .new-eyebrow {
    color: #7a612f;
}
.new-fleet-head h2 {
    margin: 4px 0 0;
    color: #15171a;
    font-size: 30px;
    line-height: 1.15;
}
.new-fleet-head > span {
    color: #6f736f;
    font-size: 13px;
    font-weight: 850;
}
.new-sort-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 16px;
    border: 1px solid rgba(21, 23, 26, 0.1);
    border-radius: 8px;
    background: #fffaf0;
}
.new-sort-bar label {
    color: #6f736f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.new-sort-bar select {
    border: 1px solid rgba(21, 23, 26, 0.14);
    border-radius: 6px;
    background: #f4f1eb;
    color: #15171a;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 28px 7px 10px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236f736f'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color 0.2s;
}
.new-sort-bar select:focus {
    outline: none;
    border-color: #7a612f;
}
.new-sort-count {
    margin-left: auto;
    color: #73695a;
    font-size: 13px;
    font-weight: 700;
}
.new-savings-tag {
    display: inline-block;
    margin-top: 4px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(118, 156, 145, 0.18);
    color: #2d6a5f;
    font-size: 11px;
    font-weight: 850;
}
.new-vehicle-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.new-vehicle-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    overflow: hidden;
    border: 1px solid rgba(21, 23, 26, 0.1);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: 0 4px 16px rgba(21, 23, 26, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.new-vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(21, 23, 26, 0.1);
}
.new-vehicle-card.is-featured {
    border-color: #d6b16a;
    box-shadow: 0 4px 16px rgba(135, 107, 53, 0.15);
}
.new-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(214,177,106,.18);
    border: 1px solid #d6b16a;
    color: #7a612f;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.new-vehicle-media {
    position: relative;
    overflow: hidden;
    background: #d8d2c4;
    min-height: 180px;
}
.new-vehicle-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nv-cat {
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(21, 23, 26, 0.74);
    color: #fffaf0;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.new-vehicle-content {
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    min-height: 0;
}
.new-vehicle-title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: start;
}
.new-vehicle-title h3 {
    margin: 0;
    color: #15171a;
    font-size: 16px;
    font-weight: 800;
}
.new-vehicle-title p {
    margin: 3px 0 0;
    color: #6f736f;
    font-size: 12px;
    font-weight: 600;
}
.new-price {
    text-align: right;
    white-space: nowrap;
}
.new-price small {
    display: block;
    color: #73695a;
    font-size: 11px;
    font-weight: 750;
}
.new-price strong {
    display: block;
    color: #7a612f;
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
}
.new-price-alt {
    display: block;
    font-size: 10px;
    color: #73695a;
    font-weight: 600;
    margin-top: 2px;
}
.new-rt-discount {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #2ca87f;
    margin-top: 2px;
    white-space: nowrap;
}
.new-vehicle-facts {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.new-vehicle-facts span {
    padding: 4px 10px;
    background: #f0ede7;
    border-radius: 999px;
    color: #15171a;
    font-size: 12px;
    font-weight: 700;
}
.new-service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}
.new-service-row span {
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(118, 156, 145, 0.14);
    color: #435d56;
    font-size: 11px;
    font-weight: 800;
}
.new-reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 8px;
    padding: 6px 14px;
    height: 30px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, #9b1c1c 0%, #c0392b 100%);
    color: #ffffff;
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.new-reserve-btn:hover {
    background: linear-gradient(135deg, #7b1111 0%, #9b2218 100%);
}
@media (max-width: 1024px) {
    .new-route-stage {
        grid-template-columns: 1fr;
    }
    .new-route-panel {
        max-width: 560px;
    }
    .new-metrics {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}
@media (max-width: 600px) {
    .new-vehicle-card {
        grid-template-columns: 1fr;
    }
    .new-vehicle-media {
        min-height: 200px;
        aspect-ratio: 16 / 9;
    }
}
@media (min-width: 601px) and (max-width: 900px) {
    .new-vehicle-card {
        grid-template-columns: 160px 1fr;
    }
    .new-results-hero {
        padding-left: 20px;
        padding-right: 20px;
    }
    .new-fleet-results {
        padding-left: 20px;
        padding-right: 20px;
    }
    .new-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .new-route-cities {
        grid-template-columns: 1fr;
    }
    .new-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .new-metrics div {
        min-height: 72px;
        padding: 14px;
    }
    .new-metrics strong {
        font-size: 16px;
    }
    .new-vehicle-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .new-steps {
        gap: 6px;
    }
    .new-steps span {
        min-width: 76px;
        padding: 8px 10px;
        font-size: 11px;
    }
    .new-fleet-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .new-fleet-head h2 {
        font-size: 24px;
    }
    .new-sort-bar {
        flex-wrap: wrap;
        gap: 8px;
    }
}
.tours-section {
    padding: 80px 32px;
    background: #f4f0e8;
}
.tours-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-sub-text {
    color: #73695a;
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.6;
}
.tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 4px;
}
.tour-card {
    display: flex;
    flex-direction: column;
    background: #fffaf0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(21, 23, 26, 0.08);
    box-shadow: 0 16px 48px rgba(21, 23, 26, 0.07);
    transition: transform 0.25s, box-shadow 0.25s;
}
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 72px rgba(21, 23, 26, 0.13);
}
.tour-image {
    height: 230px;
    overflow: hidden;
    position: relative;
}
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-image img {
    transform: scale(1.06);
}
.tour-cat-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 6px 12px;
    background: rgba(21,23,26,0.72);
    backdrop-filter: blur(6px);
    color: #fffaf0;
    font-size: 11px;
    font-weight: 800;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.tour-dur-badge {
    position: absolute;
    right: 14px;
    top: 14px;
    padding: 6px 12px;
    background: #d6b16a;
    color: #15171a;
    font-size: 11px;
    font-weight: 900;
    border-radius: 999px;
}
.tour-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.tour-body h3 {
    margin: 0;
    color: #15171a;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.25;
}
.tour-body p {
    margin: 0;
    color: #6f736f;
    font-size: 13px;
    line-height: 1.65;
    flex: 1;
}
.tour-features-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.tour-features-row span {
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(118,156,145,0.14);
    color: #435d56;
    font-size: 11px;
    font-weight: 850;
}
.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(21,23,26,0.07);
    margin-top: 2px;
}
.tour-price-block {
    display: flex;
    flex-direction: column;
}
.tour-price-lbl {
    font-size: 10px;
    font-weight: 700;
    color: #73695a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.tour-price-val {
    font-size: 22px;
    font-weight: 950;
    color: #7a612f;
    line-height: 1.1;
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    padding: 10px 18px;
    background: #15171a;
    color: #fffaf0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover {
    background: #7a612f;
    transform: translateY(-1px);
}
.tour-image { position: relative; }
.gallery-indicator {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(13,27,42,0.9);
    color: #fff;
    font-weight: 700;
    padding: 6px 9px;
    border-radius: 20px;
    font-size: 12px;
    box-shadow: 0 6px 16px rgba(13,27,42,0.18);
}
.gallery-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(9, 14, 18, 0.6);
    z-index: 3000;
}
.gallery-modal.active { display: flex; }
.gallery-modal .inner {
    max-width: 920px;
    width: 96%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(6,9,15,0.5);
    position: relative;
}
.gallery-modal img { width: 100%; height: auto; display: block; }
.gallery-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.gallery-controls button {
    pointer-events: auto;
    background: rgba(13,27,42,0.7);
    border: none;
    color: #fff;
    padding: 10px 14px;
    margin: 0 8px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}
.gallery-close {
    position: absolute;
    right: 8px;
    top: 8px;
    background: rgba(255,255,255,0.9);
    border: 0;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}
@media (max-width: 900px) {
    .tours-grid { grid-template-columns: 1fr; }
    .tour-image { height: 200px; }
}
.why-choose {
    padding: 0;
    background: transparent;
}
.why-choose-inner {
    background: #15171a;
    padding: 64px 32px;
}
.wc-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255,250,240,0.04);
    border: 1px solid rgba(255,250,240,0.08);
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 52px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.wc-stat {
    text-align: center;
    padding: 0 32px;
    flex: 1;
    min-width: 120px;
}
.wc-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 950;
    color: #fffaf0;
    line-height: 1;
    margin-bottom: 4px;
}
.wc-stat strong em {
    color: #d6b16a;
    font-style: normal;
}
.wc-stat span {
    font-size: 12px;
    color: rgba(255,250,240,0.5);
    font-weight: 600;
}
.wc-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,250,240,0.1);
    flex-shrink: 0;
}
.wc-head {
    text-align: center;
    margin-bottom: 36px;
}
.wc-head h2 {
    font-size: 32px;
    font-weight: 900;
    color: #fffaf0;
    margin: 8px 0 10px;
}
.wc-head p {
    color: rgba(255,250,240,0.55);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: rgba(255,250,240,0.05);
    border-radius: 12px;
    padding: 26px;
    border: 1px solid rgba(255,250,240,0.08);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
    background: rgba(255,250,240,0.08);
    transform: translateY(-3px);
    border-color: rgba(214,177,106,0.3);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(200,151,58,0.18);
    border: 1px solid rgba(200,151,58,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    color: #c8973a;
}
.feature-icon i,
.feature-icon .bi {
    color: #c8973a;
    font-size: 22px;
}
.feature-card h3 {
    margin: 0 0 8px;
    color: #fffaf0;
    font-size: 16px;
    font-weight: 800;
}
.feature-card p {
    margin: 0;
    color: rgba(255,250,240,0.55);
    font-size: 13px;
    line-height: 1.65;
}
.wc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 44px;
    flex-wrap: wrap;
}
.wc-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #d6b16a;
    color: #15171a;
    border-radius: 9px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: background 0.2s, transform 0.2s;
}
.wc-cta-btn:hover { background: #7a612f; color: #fffaf0; transform: translateY(-1px); }
.wc-cta-link {
    color: rgba(255,250,240,0.55);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.wc-cta-link:hover { color: #d6b16a; }
@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; }
    .wc-stat-sep { display: none; }
    .wc-stat { padding: 12px 20px; }
}
.fleet-section { padding: 64px 32px; background: #f4f1eb; }
.fleet-section .container { max-width: 1200px; margin: 0 auto; }
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 8px;
}
.vehicle-card {
    display: flex;
    flex-direction: column;
    background: #fffaf0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(21,23,26,0.08);
    box-shadow: 0 12px 40px rgba(21,23,26,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}
.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 64px rgba(21,23,26,0.12);
}
.vehicle-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #e8e2d6;
}
.vehicle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.05); }
.vehicle-card:hover .mini-slide { transform: none; }
.mini-track {
    display: flex;
    height: 100%;
    transition: transform 0.35s ease;
    will-change: transform;
}
.mini-slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}
.mini-prev, .mini-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: rgba(21,23,26,0.62);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,250,240,0.14);
    border-radius: 50%;
    color: #fffaf0;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    z-index: 2;
}
.mini-prev { left: 8px; }
.mini-next { right: 8px; }
.vehicle-img-wrap:hover .mini-prev,
.vehicle-img-wrap:hover .mini-next,
.vl-img-wrap:hover .mini-prev,
.vl-img-wrap:hover .mini-next,
.new-vehicle-media:hover .mini-prev,
.new-vehicle-media:hover .mini-next { opacity: 1; }
.mini-prev:hover, .mini-next:hover { background: #d6b16a; color: #15171a; }
.mini-dots {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}
.mini-dot {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.mini-dot::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    transition: background 0.2s;
}
.mini-dot.active::before { background: #d6b16a; }
@media (hover: none) {
    .mini-prev, .mini-next { opacity: 0.75; }
    .new-vehicle-media .mini-prev,
    .new-vehicle-media .mini-next { opacity: 0.75; }
}
.vc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.vc-eco   { background: rgba(118,156,145,0.9); color: #fff; }
.vc-private { background: rgba(21,23,26,0.82); color: #fffaf0; }
.vc-lux   { background: rgba(214,177,106,0.9); color: #15171a; }
.vc-vip   { background: #d6b16a; color: #15171a; }
.vc-ultra { background: linear-gradient(135deg,#d6b16a,#7a612f); color: #15171a; }
.vc-group { background: rgba(60,100,160,0.85); color: #fff; }
.vehicle-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vehicle-body h3 {
    margin: 0;
    color: #15171a;
    font-size: 15px;
    font-weight: 850;
}
.vehicle-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.vehicle-specs span {
    font-size: 11px;
    color: #6f736f;
    font-weight: 600;
}
.vehicle-price {
    font-size: 18px;
    font-weight: 950;
    color: #7a612f;
    padding-top: 6px;
    border-top: 1px solid rgba(21,23,26,0.07);
    margin-top: 2px;
}
.vehicle-price small {
    font-size: 11px;
    font-weight: 600;
    color: #73695a;
}
@media (max-width: 1100px) {
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .fleet-grid { grid-template-columns: 1fr; }
}
.site-footer {
    background: #0d1b2a;
    color: rgba(255, 250, 240, 0.7);
    border-top: 1px solid rgba(214, 177, 106, 0.12);
}
.footer-top {
    padding: 52px 40px 44px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 160px;
    gap: 40px;
    align-items: start;
}
.footer-brand {
    padding-right: 24px;
}
.footer-logo {
    height: 38px;
    width: auto;
    aspect-ratio: 320 / 91;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 250, 240, 0.52);
    margin-bottom: 20px;
}
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 250, 240, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-item:hover { color: #d6b16a; }
.footer-contact-item span:first-child {
    font-size: 15px;
    flex-shrink: 0;
}
.footer-col h4 {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d6b16a;
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 13px;
    color: rgba(255, 250, 240, 0.6);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: #fffaf0; }
.footer-tursab img {
    max-width: 130px;
    border-radius: 8px;
    opacity: 0.85;
    filter: brightness(0.9);
    transition: opacity 0.2s;
}
.footer-tursab img:hover { opacity: 1; }
.footer-tursab p {
    font-size: 11px;
    color: rgba(255, 250, 240, 0.48);
    margin-top: 8px;
    line-height: 1.5;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 250, 240, 0.07);
    padding: 18px 40px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom-copy {
    font-size: 12px;
    color: rgba(255, 250, 240, 0.48);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 250, 240, 0.48);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255, 250, 240, 0.7); }
.pay-coupon-row { margin: 12px 0 4px; }
.pay-coupon-toggle {
    background: none;
    border: 1.5px dashed rgba(21,23,26,.2);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #6f736f;
    cursor: pointer;
    transition: border-color .15s, color .15s;
    width: 100%;
    text-align: left;
}
.pay-coupon-toggle:hover { border-color: #d6b16a; color: #7a612f; }
.pay-coupon-input {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}
.pay-coupon-input input {
    flex: 1;
    border: 1.5px solid rgba(21,23,26,.15);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    outline: none;
    transition: border-color .15s;
}
.pay-coupon-input input:focus { border-color: #d6b16a; }
.pay-coupon-input button {
    background: #15171a;
    color: #fffaf0;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .15s;
}
.pay-coupon-input button:disabled { opacity: .4; cursor: default; }
.pay-coupon-msg { margin-top: 6px; font-size: 13px; font-weight: 600; min-height: 18px; }
.footer-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 14px 40px;
    border-top: 1px solid rgba(255, 250, 240, 0.07);
}
.footer-trust-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 250, 240, 0.12);
}
.footer-trust-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-trust-cards {
    gap: 6px;
}
.ft-tursab {
    height: 36px;
    width: auto;
    opacity: 0.75;
    border-radius: 4px;
    filter: brightness(1.1);
    transition: opacity .2s;
}
.ft-tursab:hover { opacity: 1; }
.ft-iyzico-img {
    height: 34px;
    width: auto;
    opacity: 0.85;
    border-radius: 5px;
    transition: opacity .2s;
}
.ft-iyzico-img:hover { opacity: 1; }
.ft-iyzico-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    background: #1a1a2e;
    border-radius: 6px;
    padding: 4px 10px 4px 8px;
    opacity: 0.8;
    transition: opacity .2s;
    line-height: 1;
    gap: 2px;
}
.ft-iyzico-badge:hover { opacity: 1; }
.ft-iyzico-name {
    font-size: 13px;
    font-weight: 800;
    color: #00c4ff;
    letter-spacing: -.3px;
    font-family: Arial, sans-serif;
}
.ft-iyzico-sub {
    font-size: 8px;
    color: rgba(255,255,255,.45);
    font-family: Arial, sans-serif;
    letter-spacing: .2px;
}
.ft-card {
    height: 22px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(30%);
    border-radius: 3px;
    transition: opacity .2s, filter .2s;
}
.ft-card:hover { opacity: 1; filter: none; }
.contact-box { display: none; }
.footer-grid { display: contents; }
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: span 3; padding-right: 0; }
    .footer-tursab { display: none; }
}
@media (max-width: 640px) {
    .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 20px 32px; gap: 28px; }
    .footer-brand { grid-column: span 2; }
    .footer-bottom { padding: 16px 20px; flex-direction: column; text-align: center; gap: 8px; }
    .footer-trust { padding: 12px 20px; gap: 12px; }
    .footer-trust-sep { display: none; }
}
.popular-routes {
    padding: 64px 32px;
    background: #f4f0e8;
}
.popular-routes .container {
    max-width: 1200px;
    margin: 0 auto;
}
.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 8px;
}
.route-card {
    position: relative;
    background: #fffaf0;
    border-radius: 12px;
    padding: 18px 16px 16px;
    border: 1px solid rgba(21, 23, 26, 0.08);
    box-shadow: 0 4px 20px rgba(21, 23, 26, 0.05);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.route-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(21, 23, 26, 0.1);
    border-color: rgba(214, 177, 106, 0.45);
}
.rc-inner {
    flex: 1;
    min-width: 0;
}
.rc-route {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    overflow: hidden;
    margin-bottom: 8px;
}
.rc-airport {
    font-size: 11px;
    font-weight: 800;
    color: #7a612f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.rc-arrow-icon {
    font-size: 12px;
    color: #d6b16a;
    font-weight: 900;
    flex-shrink: 0;
}
.rc-dest {
    font-size: 13px;
    font-weight: 900;
    color: #15171a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.route-meta {
    display: flex;
    gap: 8px;
    font-size: 11px;
    color: #73695a;
    font-weight: 600;
}
.rc-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}
.rc-from {
    font-size: 10px;
    color: #73695a;
    font-weight: 600;
}
.rc-price {
    font-size: 20px;
    font-weight: 950;
    color: #7a612f;
    line-height: 1.1;
}
.route-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d6b16a, #769c91);
    opacity: 0;
    transition: opacity 0.2s;
}
.route-card:hover .route-accent { opacity: 1; }
.popular-actions { text-align: center; margin-top: 32px; }
.popular-actions .btn-outline { padding: 12px 28px; border-radius: 8px; font-weight: 800; }
@media (max-width: 1100px) {
    .popular-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .popular-grid { grid-template-columns: 1fr; }
}
.form-tabs {
    display: flex;
    border-bottom: 1px solid rgba(21, 23, 26, 0.1);
}
.tab-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    background: transparent;
    color: #6f736f;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}
.tab-btn:hover {
    color: #15171a;
    background-color: rgba(21, 23, 26, 0.04);
}
.tab-btn.active {
    color: #15171a;
    border-bottom-color: #d6b16a;
}
.form-body {
    padding: 22px 16px 18px;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.form-row {
    display: grid;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
}
#transfer-form .form-row {
    grid-template-columns: minmax(150px, 1fr) minmax(160px, 1fr) minmax(360px, 2.25fr) 132px 88px;
}
#turlar-form .form-row {
    grid-template-columns: minmax(130px, 1fr) minmax(180px, 1.35fr) minmax(150px, 1fr) 132px 132px 88px;
}
.input-group {
    display: flex;
    flex: 1 1 160px;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}
.input-group label,
.mini-stepper label,
.toggle-block .switch-label {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.input-group input,
.input-group select {
    width: 100%;
    height: 46px;
    padding: 0 13px;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #fafbfc;
    color: #0d1b2a;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.input-group input:hover,
.input-group select:hover {
    border-color: #cbd5e1;
}
.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #0d1b2a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.08);
}
.input-group input::placeholder {
    color: #7b8798;
    opacity: 0.85;
}
.input-group input[type="date"] {
    color-scheme: light;
}
.date-range-group {
    display: flex;
    flex: 1.2 1 280px;
    align-items: flex-end;
    gap: 12px;
    min-width: 250px;
}
.date-inputs {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    height: 56px;
    overflow: hidden;
    border: 1px solid #dfe5ec;
    border-radius: 7px;
    background-color: #fafbfc;
}
.date-inputs .input-group {
    flex: 1 1 0;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    padding: 8px 12px 7px;
}
.date-inputs .input-group:first-child {
    border-right: 1px solid #dfe5ec;
}
.date-inputs.single .input-group:first-child {
    border-right: 0;
}
.date-inputs.single .input-group label {
    display: block;
}
.date-inputs.single .input-group {
    align-items: stretch;
}
.date-inputs .input-group label {
    font-size: 10px;
    text-align: center;
}
.date-inputs .input-group input {
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
.date-inputs .input-group input:focus {
    background: transparent;
    box-shadow: none;
}
.date-inputs .input-group input::placeholder {
    color: #97a1af;
    opacity: 1;
}
.location-input {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}
.location-input label {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.location-input input,
.location-input select {
    width: 100%;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #fafbfc;
    color: #0d1b2a;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    height: 46px;
    padding: 0 13px;
}
.location-input input:hover,
.location-input select:hover {
    border-color: #cbd5e1;
}
.location-input input:focus,
.location-input select:focus {
    outline: none;
    border-color: #0d1b2a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.08);
}
.location-input input::placeholder {
    color: #7b8798;
    opacity: 0.85;
}
.location-input input[type="date"] {
    color-scheme: light;
}
.location-input label {
    font-size: 10px;
    text-align: center;
    color: #0d1b2a;
    font-weight: 600;
}
.location-input input,
.location-input select {
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    color: #64748b;
}
.location-input input:select {
   border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.location-input input::placeholder {
    color: #b0b9c6;
    opacity: 1;
}
.location-input select option {
    color: #0d1b2a;
}
.form-row > .location-input {
    height: 56px;
    overflow: hidden;
    justify-content: center;
    padding: 8px 12px 7px;
    border: 1px solid #dfe5ec;
    border-radius: 7px;
    background-color: #fafbfc;
}
.form-row > .location-input:focus-within,
.form-row > .location-input:hover {
    border-color: #cbd5e1;
    background-color: #ffffff;
}
.form-row > .location-input input,
.form-row > .location-input select,
.form-row > .location-input .location-picker {
    min-height: 20px;
}
.transfer-location-field {
    cursor: pointer;
}
.location-picker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #0d1b2a;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
}
.location-picker-value {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.location-picker-icon {
    color: #0f766e;
    font-size: 14px;
    line-height: 1;
    transition: transform 0.2s ease;
}
.location-picker.is-empty {
    color: #97a1af;
    font-weight: 700;
}
.transfer-location-field:hover {
    border-color: #c5d7e6;
    background-color: #ffffff;
}
.transfer-location-field:focus-within {
    border-color: #0f766e;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}
.location-picker:focus {
    outline: none;
}
.location-picker:focus-visible {
    outline: none;
}
.toggle-block {
    display: flex;
    flex: 0 0 82px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 82px;
    height: 56px;
}
.toggle-block .switch-label,
.toggle-block .discount-text {
    white-space: nowrap;
}
.toggle-block .discount-text {
    color: #94a3b8;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
}
.toggle-block .discount-text.active {
    color: #10b981;
}
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}
.switch input {
    width: 0;
    height: 0;
    opacity: 0;
}
.slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background-color: #e2e8f0;
    cursor: pointer;
    transition: background-color 0.25s ease;
}
.slider::before {
    content: '';
    position: absolute;
    left: 3px;
    bottom: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
    transition: transform 0.25s ease;
}
input:checked + .slider {
    background-color: #10b981;
}
input:checked + .slider::before {
    transform: translateX(22px);
}
.passenger-input {
    display: flex;
    flex-direction: column;
    height: 56px;
    overflow: hidden;
    border: 1px solid #dfe5ec;
    border-radius: 7px;
    background-color: #fafbfc;
    padding: 8px 12px 7px;
    gap: 6px;
    align-items: center;
    justify-content: center;
    min-width: 0;
}
.passenger-input label {
    font-size: 10px;
    text-align: center;
    color: #0d1b2a;
    font-weight: 600;
}
.mini-stepper-btns,
.stepper {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #dfe5ec;
    border-radius: 7px;
    background-color: #fafbfc;
}
.mini-btn,
.stepper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #334155;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.mini-btn {
    width: 32px;
    height: 35px;
    font-size: 16px;
}
.mini-btn:hover,
.stepper-btn:hover {
    background-color: rgba(13, 27, 42, 0.06);
    color: #0d1b2a;
}
.mini-value {
    min-width: 30px;
    padding: 5px 0;
    border-right: 1px solid #dfe5ec;
    border-left: 1px solid #dfe5ec;
    background-color: #ffffff;
    color: #0d1b2a;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    user-select: none;
}
.passenger-input .mini-value {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    min-width: 40px;
    height: 35px;
    font-size: 13px;
}
.stepper-group {
    flex: 0 0 118px;
}
.stepper-btn {
    width: 38px;
    height: 42px;
    font-size: 18px;
}
.stepper input[type="number"] {
    width: 50px;
    height: 42px;
    padding: 0;
    border: 0;
    border-right: 1px solid #dfe5ec;
    border-left: 1px solid #dfe5ec;
    border-radius: 0;
    background-color: #ffffff;
    color: #0d1b2a;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    pointer-events: none;
}
.btn-search {
    flex: 0 0 88px;
    height: 45px;
    padding: 0 22px;
    border: 0;
    border-radius: 8px;
    background-color: #15171a;
    color: #fffaf0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}
.btn-search:hover {
    background-color: #7a612f;
    box-shadow: 0 8px 24px rgba(135, 107, 53, 0.25);
    transform: translateY(-1px);
}
.btn-search:active {
    transform: translateY(0);
}
@media (max-width: 1024px) {
    .hero-title {
        font-size: 28px;
    }
    .transfer-results-layout {
        grid-template-columns: 1fr;
    }
    .route-visual-card {
        position: relative;
        top: auto;
    }
    .route-map-visual {
        min-height: 260px;
    }
    .summary-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .new-route-stage {
        grid-template-columns: 1fr;
    }
    .new-route-copy {
        padding-bottom: 0;
    }
    .new-vehicle-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    #transfer-form .form-row,
    #turlar-form .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .input-group.fixed-group {
        flex: 1 1 calc(50% - 6px);
    }
    .date-range-group {
        grid-column: 1 / -1;
        flex: 1 1 100%;
        min-width: 0;
    }
    .passenger-mini-wrapper {
        flex: 0 0 100px;
    }
    .btn-search {
        flex: 1 1 140px;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .hero {
        min-height: 520px;
    }
    .transfer-results-section {
        padding: 28px 16px 42px;
    }
    .booking-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .new-results-hero {
        padding: 28px 16px 32px;
    }
    .new-fleet-results {
        padding: 30px 16px 44px;
    }
    .new-steps span {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
    }
    .new-route-panel {
        padding: 18px;
    }
    .new-route-cities,
    .new-metrics,
    .new-vehicle-title,
    .new-vehicle-facts {
        grid-template-columns: 1fr;
    }
    .new-metrics div {
        min-height: 74px;
    }
    .new-price {
        text-align: left;
    }
    .new-fleet-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .summary-header,
    .vehicle-results-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .summary-edit-btn {
        width: 100%;
    }
    .route-points,
    .summary-metrics {
        grid-template-columns: 1fr;
    }
    .vehicle-result-card {
        grid-template-columns: 1fr;
    }
    .vehicle-price-box {
        align-items: stretch;
    }
    .vehicle-price,
    .old-price,
    .vehicle-currency {
        text-align: left;
    }
    .hero-content {
        padding: 20px 16px 32px;
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .hero-desc,
    .hero-badges,
    .hero-orb,
    .hero-ring,
    .hero-route-decor { display: none; }
    .hero-left {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 4px 14px;
        padding-bottom: 0;
    }
    .hero-subtitle {
        grid-column: 1;
        grid-row: 1;
        font-size: 10px;
        margin-bottom: 0;
    }
    .hero-title {
        grid-column: 1;
        grid-row: 2;
        font-size: 22px;
        margin-bottom: 0;
    }
    .hero-stats {
        grid-column: 2;
        grid-row: 1 / 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 10px;
        align-items: start;
    }
    .hero-stat-sep { display: none; }
    .hero-stat {
        text-align: center;
        gap: 2px;
    }
    .hero-stat strong {
        font-size: 13px;
        letter-spacing: 0;
    }
    .hero-stat span {
        font-size: 9px;
        line-height: 1.2;
    }
    .hero-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .form-container {
        border-radius: 12px;
        padding: 6px;
    }
    .tab-btn {
        padding: 12px 14px;
        font-size: 13px;
    }
    .form-body {
        padding: 14px 10px 12px;
    }
    .form-row,
    .date-range-group {
        align-items: stretch;
        gap: 10px;
    }
    .form-row,
    #transfer-form .form-row,
    #turlar-form .form-row {
        grid-template-columns: 1fr;
    }
    .input-group,
    .input-group.fixed-group,
    .date-range-group,
    .passenger-mini-wrapper,
    .stepper-group,
    .btn-search {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
    }
    .date-inputs {
        width: 100%;
    }
    .toggle-block {
        flex: 1 1 auto;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        height: auto;
        min-width: 0;
        padding: 4px 0;
    }
    .passenger-mini-wrapper {
        justify-content: stretch;
    }
    .mini-stepper {
        align-items: stretch;
        width: 100%;
    }
    .mini-stepper label {
        text-align: center;
    }
    .mini-stepper-btns,
    .stepper {
        justify-content: center;
    }
}
.driver-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.driver-field label {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.driver-field input,
.driver-field select,
.driver-field textarea {
    width: 100%;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #fafbfc;
    color: #0d1b2a;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.driver-field input,
.driver-field select {
    height: 46px;
    padding: 0 13px;
}
.driver-field input:hover,
.driver-field select:hover,
.driver-field textarea:hover {
    border-color: #cbd5e1;
}
.driver-field input:focus,
.driver-field select:focus,
.driver-field textarea:focus {
    outline: none;
    border-color: #0d1b2a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.08);
}
.hidden        { display: none; }
.mt-8          { margin-top: 8px; }
.mt-16         { margin-top: 16px; }
.mt-20         { margin-top: 20px; }
.mt-24         { margin-top: 24px; }
.mt-48         { margin-top: 48px; }
.mt-56         { margin-top: 56px; }
.mb-0          { margin-bottom: 0; }
.text-right    { text-align: right; }
.text-center   { text-align: center; }
.cursor-pointer{ cursor: pointer; }
.new-eyebrow--gold { color:#d6b16a; }
.nel-compact { margin-top:0; min-height:38px; font-size:13px; }
.nel-dark { background:rgba(21,23,26,0.08); border-color:rgba(21,23,26,0.18); color:#15171a; }
.switch { margin:0; }
.nav-right-mobile {
    display: none;
}
.nav-currency-mobile {
    display: flex;
    align-items: center;
}
.nav-currency-mobile select {
    height: 34px;
    padding: 0 24px 0 10px;
    border: 1px solid rgba(21,23,26,0.15);
    border-radius: 7px;
    background-color: #fff;
    color: #15171a;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2315171a'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.nav-currency-mobile select:focus { outline: none; border-color: #c9a84c; }
.nav-lang-mobile {
    display: flex;
    align-items: center;
}
.nav-lang-mobile select {
    height: 34px;
    padding: 0 24px 0 10px;
    border: 1px solid rgba(21,23,26,0.15);
    border-radius: 7px;
    background-color: #fff;
    color: #15171a;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2315171a'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.nav-lang-mobile select:focus { outline: none; border-color: #c9a84c; }
@media (max-width: 768px) {
    .nav-right-mobile { display: flex; align-items: center; gap: 4px; }
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}
.hamburger:hover { background: rgba(21,23,26,0.06); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #15171a;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
    .hamburger { display: flex; }
}
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: #15171a;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
    display: flex;
    flex-direction: column;
    animation: mmIn 0.22s ease;
}
@keyframes mmIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}
.mm-inner {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: 0 24px 40px;
}
.mm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,250,240,0.08);
}
.mm-logo {
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.88;
}
.mm-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,250,240,0.15);
    background: none;
    color: #fffaf0;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}
.mm-close:hover { background: rgba(255,250,240,0.1); }
.mm-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mm-link {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #fffaf0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,250,240,0.07);
    transition: color 0.2s;
}
.mm-link:hover { color: #d6b16a; }
.mm-group {
    border-bottom: 1px solid rgba(255,250,240,0.07);
    padding: 12px 0;
}
.mm-group-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,250,240,0.32);
    margin-bottom: 6px;
}
.mm-sub {
    display: block;
    padding: 8px 0 8px 14px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,250,240,0.72);
    text-decoration: none;
    transition: color 0.2s;
}
.mm-sub:hover { color: #d6b16a; }
.mm-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 28px;
    margin-top: auto;
}
.mm-btn {
    display: block;
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.mm-btn-primary {
    background: #d6b16a;
    color: #15171a;
}
.mm-btn-primary:hover { background: #c4a05e; transform: translateY(-1px); }
.mm-btn-outline {
    background: rgba(255,250,240,0.06);
    border: 1px solid rgba(255,250,240,0.14);
    color: #fffaf0;
}
.mm-btn-outline:hover { background: rgba(255,250,240,0.1); }
.mm-lang {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.mm-lang-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: rgba(255,250,240,0.6);
    background: rgba(255,250,240,0.05);
    border: 1px solid rgba(255,250,240,0.1);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mm-lang-btn:hover { background: rgba(255,250,240,0.1); color: #fffaf0; }
.mm-lang-btn.active {
    background: rgba(214,177,106,0.15);
    border-color: rgba(214,177,106,0.4);
    color: #d6b16a;
}
.why-choose {
    padding: 0;
    background: transparent;
}
.why-choose-inner {
    background: #15171a;
    padding: 64px 32px;
}
.wc-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255,250,240,0.04);
    border: 1px solid rgba(255,250,240,0.08);
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 52px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.wc-stat {
    text-align: center;
    padding: 0 32px;
    flex: 1;
    min-width: 120px;
}
.wc-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 950;
    color: #fffaf0;
    line-height: 1;
    margin-bottom: 4px;
}
.wc-stat strong em {
    color: #d6b16a;
    font-style: normal;
}
.wc-stat span {
    font-size: 12px;
    color: rgba(255,250,240,0.5);
    font-weight: 600;
}
.wc-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,250,240,0.1);
    flex-shrink: 0;
}
.wc-head {
    text-align: center;
    margin-bottom: 36px;
}
.wc-head h2 {
    font-size: 32px;
    font-weight: 900;
    color: #fffaf0;
    margin: 8px 0 10px;
}
.wc-head p {
    color: rgba(255,250,240,0.55);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}
.new-eyebrow--gold { color: #d6b16a; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: rgba(255,250,240,0.05);
    border-radius: 12px;
    padding: 26px;
    border: 1px solid rgba(255,250,240,0.08);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
    background: rgba(255,250,240,0.08);
    transform: translateY(-3px);
    border-color: rgba(214,177,106,0.3);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(200,151,58,0.18);
    border: 1px solid rgba(200,151,58,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    color: #c8973a;
}
.feature-icon i,
.feature-icon .bi {
    color: #c8973a;
    font-size: 22px;
}
.feature-card h3 {
    margin: 0 0 8px;
    color: #fffaf0;
    font-size: 16px;
    font-weight: 800;
}
.feature-card p {
    margin: 0;
    color: rgba(255,250,240,0.55);
    font-size: 13px;
    line-height: 1.65;
}
.wc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 44px;
    flex-wrap: wrap;
}
.wc-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #d6b16a;
    color: #15171a;
    border-radius: 9px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: background 0.2s, transform 0.2s;
}
.wc-cta-btn:hover { background: #7a612f; color: #fffaf0; transform: translateY(-1px); }
.wc-cta-link {
    color: rgba(255,250,240,0.55);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.wc-cta-link:hover { color: #d6b16a; }
@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; }
    .wc-stat-sep { display: none; }
    .wc-stat { padding: 12px 20px; }
}
.auth-section {
    background: #f4f1eb;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}
.auth-card {
    background: #fffaf0;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 24px 80px rgba(21,23,26,0.12), 0 4px 16px rgba(21,23,26,0.06);
    border: 1px solid rgba(21,23,26,0.07);
}
.auth-card-top {
    background: #15171a;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.auth-card-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,250,240,0.05) 1px, transparent 0);
    background-size: 22px 22px;
}
.auth-card-top::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d6b16a, #7a612f, #769c91);
}
.auth-card-top img {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}
.auth-card-body { padding: 36px 40px 40px; }
.auth-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a612f;
    margin-bottom: 6px;
}
.auth-card-body h1 { font-size: 26px; font-weight: 850; color: #15171a; margin-bottom: 6px; line-height: 1.2; }
.auth-sub { display: block; font-size: 13px; color: #6f736f; margin-bottom: 28px; line-height: 1.55; }
.auth-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.auth-field > label { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #6f736f; }
.auth-field-wrap { position: relative; display: flex; align-items: center; }
.auth-field input, .auth-field-wrap input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(21,23,26,0.13);
    border-radius: 8px;
    background: #f4f1eb;
    color: #15171a;
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
}
.auth-field-wrap input { padding-right: 64px; }
.auth-field input::placeholder, .auth-field-wrap input::placeholder { color: #73695a; }
.auth-field input:focus, .auth-field-wrap input:focus {
    outline: none;
    border-color: #7a612f;
    background: #fffaf0;
    box-shadow: 0 0 0 3px rgba(135,107,53,0.11);
}
.auth-field-error { font-size: 11px; color: #e05252; font-weight: 600; }
.auth-error-box { color: #e05252; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.af-toggle {
    position: absolute; right: 0; background: none; border: none; cursor: pointer;
    font-size: 11px; font-weight: 700; color: #7a612f; padding: 4px 12px;
    transition: color 0.2s; font-family: inherit;
}
.af-toggle:hover { color: #15171a; }
.auth-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-row-2 .auth-field { margin-bottom: 0; }
.auth-meta-row { display: flex; align-items: center; justify-content: space-between; margin: -4px 0 24px; }
.auth-check-label { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #6f736f; cursor: pointer; }
.auth-check-label input { accent-color: #7a612f; cursor: pointer; }
.auth-forgot-link { font-size: 12px; font-weight: 600; color: #7a612f; text-decoration: none; }
.auth-forgot-link:hover { color: #15171a; text-decoration: underline; }
.auth-submit {
    width: 100%; padding: 13px 20px; background: #15171a; color: #fffaf0;
    border: none; border-radius: 8px; font-size: 14px; font-weight: 800;
    cursor: pointer; transition: background 0.2s, transform 0.15s; font-family: inherit;
}
.auth-submit:hover { background: #7a612f; transform: translateY(-1px); }
.auth-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }
.auth-divider {
    display: flex; align-items: center; gap: 12px; margin: 20px 0;
    color: #73695a; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: rgba(21,23,26,0.1); }
.auth-link-row { text-align: center; font-size: 13px; color: #6f736f; }
.auth-link-row a { color: #7a612f; text-decoration: none; font-weight: 700; }
.auth-link-row a:hover { color: #15171a; text-decoration: underline; }
.auth-trust-row { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(21,23,26,0.07); flex-wrap: wrap; }
.auth-trust-item { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: #73695a; white-space: nowrap; }
.auth-terms { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.auth-terms input { accent-color: #7a612f; margin-top: 3px; flex-shrink: 0; }
.auth-terms label { font-size: 12px; color: #6f736f; line-height: 1.6; }
.auth-terms label a { color: #7a612f; font-weight: 700; text-decoration: none; }
.pw-strength-wrap { margin-top: 6px; }
.pw-bars { display: flex; gap: 4px; margin-bottom: 4px; }
.pw-bar { height: 3px; flex: 1; background: rgba(21,23,26,0.1); border-radius: 2px; transition: background 0.3s; }
.pw-bar.weak   { background: #e05252; }
.pw-bar.medium { background: #d6b16a; }
.pw-bar.strong { background: #769c91; }
.pw-label { font-size: 11px; color: #73695a; }
.pw-label.weak   { color: #e05252; }
.pw-label.medium { color: #7a612f; }
.pw-label.strong { color: #769c91; }
.auth-info-box {
    background: rgba(214,177,106,0.1);
    border: 1px solid rgba(214,177,106,0.22);
    border-left: 3px solid #d6b16a;
    padding: 12px 16px; border-radius: 8px; margin-bottom: 20px;
    font-size: 13px; color: #7a612f; font-weight: 600; line-height: 1.5;
}
.auth-back { text-align: center; margin-top: 16px; }
.auth-back a { font-size: 13px; font-weight: 600; color: #7a612f; text-decoration: none; }
.auth-back a:hover { color: #15171a; text-decoration: underline; }
.auth-success { text-align: center; padding: 8px 0 4px; }
.auth-success-icon {
    width: 68px; height: 68px; background: rgba(118,156,145,0.1);
    border: 2px solid rgba(118,156,145,0.25); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; margin: 0 auto 18px;
}
.auth-success h2 { font-size: 22px; font-weight: 850; color: #15171a; margin-bottom: 8px; }
.auth-success p  { font-size: 13px; color: #6f736f; line-height: 1.65; margin-bottom: 20px; }
.reg-opt-hint { font-size: 10px; font-weight: 500; color: #73695a; text-transform: none; letter-spacing: 0; }
@media (max-width: 600px) {
    .auth-section { padding: 32px 16px; align-items: flex-start; padding-top: 40px; }
    .auth-card-top { padding: 24px 28px; }
    .auth-card-body { padding: 28px 24px 32px; }
    .auth-row-2 { grid-template-columns: 1fr; }
    .auth-trust-row { gap: 12px; }
}
.user-menu-wrap { position: relative; }
.user-menu-btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
}
.user-menu-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fffaf0;
    border: 1px solid rgba(21,23,26,0.1);
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(21,23,26,0.12);
    min-width: 180px;
    z-index: 1000;
    overflow: hidden;
}
.user-menu-dropdown.open { display: block; }
.user-menu-dropdown a,
.user-menu-logout {
    display: block;
    width: 100%;
    padding: 11px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #15171a;
    text-decoration: none;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
    box-sizing: border-box;
}
.user-menu-dropdown a:hover,
.user-menu-logout:hover { background: #f4f1eb; color: #7a612f; }
.user-menu-logout { border-top: 1px solid rgba(21,23,26,0.07); color: #e05252; }
.user-menu-logout:hover { background: rgba(224,82,82,0.06); color: #c03030; }
.lang-dd-wrap { position: relative; }
.lang-dd-btn {
    padding: 4px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background-color: #ffffff;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}
.lang-dd-btn:hover { border-color: #c9a84c; color: #c9a84c; }
.lang-dd-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fffaf0;
    border: 1px solid rgba(21,23,26,0.1);
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(21,23,26,0.12);
    min-width: 160px;
    z-index: 1000;
    overflow: hidden;
}
.lang-dd-menu.open { display: block; }
.lang-dd-menu a {
    display: block;
    width: 100%;
    padding: 11px 18px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #15171a;
    text-decoration: none;
    transition: background 0.15s;
    box-sizing: border-box;
}
.lang-dd-menu a:hover,
.lang-dd-menu a.active { background: #f4f1eb; color: #7a612f; }
.pr-hero-content { padding-bottom: 90px; }
.pr-hero-head { max-width: 680px; padding-bottom: 40px; }
.pr-hero-head h1 { font-size:clamp(30px,4.5vw,52px); font-weight:900; color:#fffaf0; margin:10px 0 14px; line-height:1.06; }
.pr-hero-head p { color:rgba(255,250,240,0.68); font-size:16px; line-height:1.65; }
.pr-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:40px; }
.pr-stat { background:#fffaf0; border:1px solid rgba(21,23,26,0.08); border-radius:10px; padding:20px; text-align:center; box-shadow:0 4px 16px rgba(21,23,26,0.04); }
.pr-stat strong { display:block; font-size:28px; font-weight:950; color:#15171a; line-height:1; margin-bottom:4px; }
.pr-stat strong em { color:#d6b16a; font-style:normal; }
.pr-stat span { font-size:12px; color:#73695a; }
.pr-search-wrap { margin-bottom:32px; }
.pr-section-label { font-size:13px; font-weight:900; color:#15171a; text-transform:uppercase; letter-spacing:0.07em; margin-bottom:6px; }
.pr-search { display:flex; gap:0; max-width:560px; }
.pr-search input { flex:1; padding:13px 18px; border:1px solid rgba(21,23,26,0.14); border-radius:9px 0 0 9px; background:#fffaf0; font:inherit; font-size:14px; color:#15171a; outline:none; }
.pr-search input:focus { border-color:#d6b16a; }
.pr-search button { padding:13px 22px; background:#15171a; color:#fffaf0; border:none; border-radius:0 9px 9px 0; font:inherit; font-size:14px; font-weight:800; cursor:pointer; transition:background 0.2s; white-space:nowrap; }
.pr-search button:hover { background:#7a612f; }
.pr-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:32px; }
.pr-tab { padding:10px 20px; border:1px solid rgba(21,23,26,0.12); border-radius:999px; background:#fffaf0; color:#6f736f; font:inherit; font-size:13px; font-weight:700; cursor:pointer; transition:all 0.2s; }
.pr-tab:hover { border-color:rgba(21,23,26,0.24); color:#15171a; }
.pr-tab.active { background:#15171a; border-color:#15171a; color:#fffaf0; }
.pr-group { margin-bottom:36px; }
.pr-group-head { display:flex; align-items:center; gap:12px; margin-bottom:16px; padding-bottom:12px; border-bottom:2px solid rgba(21,23,26,0.07); flex-wrap:nowrap; }
.pr-group-icon { font-size:22px; flex-shrink:0; }
.pr-group-title { font-size:16px; font-weight:900; color:#15171a; letter-spacing:0.03em; flex:1; min-width:0; }
.pr-group-count { flex-shrink:0; padding:4px 10px; background:rgba(21,23,26,0.06); border-radius:999px; font-size:11px; font-weight:700; color:#6f736f; white-space:nowrap; }
.pr-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.pr-card { background:#fffaf0; border:1px solid rgba(21,23,26,0.08); border-radius:10px; padding:18px; cursor:pointer; box-shadow:0 4px 16px rgba(21,23,26,0.05); transition:transform 0.2s,box-shadow 0.2s,border-color 0.2s; text-decoration:none; display:flex; flex-direction:column; gap:12px; }
.pr-card:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(21,23,26,0.1); border-color:rgba(214,177,106,0.4); }
.pr-route { display:flex; align-items:center; gap:8px; }
.pr-from { font-size:13px; font-weight:700; color:#15171a; }
.pr-arrow { font-size:14px; color:#d6b16a; flex-shrink:0; }
.pr-to { font-size:13px; font-weight:700; color:#15171a; }
.pr-meta { display:flex; gap:12px; font-size:12px; color:#73695a; }
.pr-card-footer { display:flex; align-items:center; justify-content:space-between; }
.pr-price { font-size:18px; font-weight:900; color:#7a612f; }
.pr-price-sub { font-size:10px; color:#73695a; font-weight:600; }
.pr-book { padding:7px 14px; background:#15171a; color:#fffaf0; border-radius:6px; font-size:11px; font-weight:800; white-space:nowrap; }
.pr-card:hover .pr-book { background:#7a612f; }
.pr-popular-badge { display:inline-flex; align-items:center; gap:4px; padding:3px 8px; background:rgba(214,177,106,0.15); border-radius:999px; font-size:10px; font-weight:800; color:#7a612f; align-self:flex-start; }
.pr-custom { background:#15171a; border-radius:14px; padding:40px; margin-top:48px; display:grid; grid-template-columns:1fr auto; align-items:center; gap:32px; }
.pr-custom h2 { font-size:22px; font-weight:900; color:#fffaf0; margin:0 0 8px; }
.pr-custom p { font-size:14px; color:rgba(255,250,240,0.6); margin:0; }
.pr-custom-btn { display:inline-flex; align-items:center; padding:14px 28px; background:#d6b16a; color:#15171a; border-radius:9px; text-decoration:none; font-size:14px; font-weight:900; transition:background 0.2s; white-space:nowrap; }
.pr-custom-btn:hover { background:#7a612f; color:#fffaf0; }
@media(max-width:900px){
    .pr-grid { grid-template-columns:repeat(2,1fr); }
    .pr-stats { grid-template-columns:repeat(2,1fr); }
    .pr-custom { grid-template-columns:1fr; }
}
@media(max-width:600px){
    .pr-grid { grid-template-columns:1fr; }
}
.ab-hero { padding-bottom: 120px; }
.ab-hero h1 { font-size:clamp(28px,4vw,48px); font-weight:900; color:#fffaf0; margin:10px 0 14px; line-height:1.06; }
.ab-hero p { color:rgba(255,250,240,0.68); font-size:16px; max-width:600px; line-height:1.7; }
.ab-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(21,23,26,0.08); border-radius:10px; overflow:hidden; margin-bottom:32px; }
.ab-stat { padding:24px 20px; background:#fffaf0; text-align:center; }
.ab-stat strong { display:block; font-size:32px; font-weight:900; color:#7a612f; line-height:1; }
.ab-stat span { display:block; font-size:12px; color:#6f736f; font-weight:700; margin-top:6px; }
.ab-story { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:center; margin-bottom:48px; }
.ab-story-text p { font-size:15px; color:#6f736f; line-height:1.75; margin-bottom:14px; }
.ab-story-img { border-radius:12px; overflow:hidden; height:320px; background:#d8d2c4; }
.ab-story-img img { width:100%; height:100%; object-fit:cover; display:block; }
.ab-story-img-grid { position:absolute; inset:-20px; background-image:linear-gradient(rgba(255,250,240,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,250,240,0.04) 1px,transparent 1px); background-size:40px 40px; }
.ab-story-img-label { position:relative; z-index:1; text-align:center; color:rgba(255,250,240,0.8); }
.ab-story-img-label strong { display:block; font-size:48px; }
.ab-story-img-label span { font-size:14px; color:rgba(255,250,240,0.5); white-space:pre-line; }
.ab-values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:48px; }
.ab-value-card { padding:28px 24px; background:#fffaf0; border:1px solid rgba(21,23,26,0.08); border-radius:10px; box-shadow:0 20px 48px rgba(21,23,26,0.06); }
.ab-value-icon { font-size:32px; margin-bottom:14px; }
.ab-value-card h3 { font-size:17px; font-weight:850; color:#15171a; margin:0 0 8px; }
.ab-value-card p { font-size:14px; color:#6f736f; line-height:1.65; margin:0; }
.ab-team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-bottom:32px; }
.ab-team-card { background:#fffaf0; border:1px solid rgba(21,23,26,0.08); border-radius:10px; padding:28px 24px; text-align:center; box-shadow:0 20px 48px rgba(21,23,26,0.06); }
.ab-team-avatar { width:72px; height:72px; border-radius:50%; background:linear-gradient(135deg,#d6b16a,#7a612f); display:flex; align-items:center; justify-content:center; font-size:24px; font-weight:900; color:#15171a; margin:0 auto 14px; }
.ab-team-card h3 { font-size:16px; font-weight:800; color:#15171a; margin:0 0 4px; }
.ab-team-card span { font-size:12px; color:#73695a; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; }
.ab-team-card p { font-size:13px; color:#6f736f; margin:12px 0 0; line-height:1.6; }
.ab-cert { display:flex; align-items:center; gap:24px; padding:24px 28px; background:#fffaf0; border:1px solid rgba(214,177,106,0.3); border-radius:10px; margin-top:32px; }
.ab-cert img { width:80px; border-radius:6px; flex-shrink:0; }
.ab-cert h3 { font-size:16px; font-weight:800; color:#15171a; margin:0 0 6px; }
.ab-cert p { font-size:13px; color:#6f736f; margin:0; line-height:1.6; }
@media(max-width:900px){
    .ab-stats { grid-template-columns:repeat(2,1fr); }
    .ab-story { grid-template-columns:1fr; }
    .ab-values-grid,.ab-team-grid { grid-template-columns:1fr; }
    .ab-cert { flex-direction:column; }
}
.kp-hero-content { padding-bottom:120px; }
.kp-hero-head { max-width:680px; padding-bottom:48px; }
.kp-hero-head h1 { font-size:clamp(30px,4.5vw,52px); font-weight:900; color:#fffaf0; margin:10px 0 14px; line-height:1.06; }
.kp-hero-head p { color:rgba(255,250,240,0.68); font-size:16px; line-height:1.65; }
.kp-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.kp-card { background:#fffaf0; border:1px solid rgba(21,23,26,0.08); border-radius:12px; overflow:hidden; box-shadow:0 20px 48px rgba(21,23,26,0.07); transition:transform 0.25s,box-shadow 0.25s; display:flex; flex-direction:column; }
.kp-card:hover { transform:translateY(-4px); box-shadow:0 32px 72px rgba(21,23,26,0.12); }
.kp-card.kp-featured { border-color:rgba(214,177,106,0.5); grid-column:span 2; }
.kp-card-header { position:relative; padding:24px 24px 20px; background:linear-gradient(135deg,#0d1b2a 0%,#1b2d1e 100%); overflow:hidden; display:flex; align-items:flex-end; justify-content:space-between; gap:16px; min-height:130px; }
.kp-card-header::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(255,250,240,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,250,240,0.04) 1px,transparent 1px); background-size:40px 40px; pointer-events:none; }
.kp-header-orb { position:absolute; width:260px; height:260px; top:-80px; right:-60px; border-radius:50%; background:radial-gradient(circle,rgba(214,177,106,0.22) 0%,transparent 70%); pointer-events:none; }
.kp-featured-header { min-height:110px; align-items:center; }
.kp-header-left { display:flex; flex-direction:column; gap:6px; position:relative; z-index:1; }
.kp-featured-eyebrow { font-size:11px; font-weight:800; color:rgba(255,250,240,0.55); text-transform:uppercase; letter-spacing:0.1em; }
.kp-big-discount { font-size:52px; font-weight:900; color:#d6b16a; line-height:1; position:relative; z-index:1; }
.kp-big-discount small { font-size:15px; font-weight:700; color:rgba(255,250,240,0.55); margin-left:4px; }
.kp-countdown { position:relative; z-index:1; display:flex; flex-direction:column; align-items:flex-end; gap:4px; }
.kp-countdown-label { font-size:11px; color:rgba(255,250,240,0.55); font-weight:700; text-transform:uppercase; letter-spacing:0.06em; white-space:nowrap; }
.kp-countdown-timer { font-size:26px; font-weight:900; color:#ffe2a3; font-family:'Courier New',monospace; line-height:1; }
.kp-body { padding:24px; display:flex; flex-direction:column; flex:1; }
.kp-body h3 { font-size:20px; font-weight:850; color:#15171a; margin:0 0 10px; line-height:1.2; }
.kp-card.kp-featured .kp-body h3 { font-size:24px; }
.kp-body p { font-size:14px; color:#6f736f; line-height:1.65; margin-bottom:18px; flex:1; }
.kp-footer { display:flex; align-items:center; justify-content:space-between; gap:12px; padding-top:16px; border-top:1px solid rgba(21,23,26,0.07); flex-wrap:wrap; }
.kp-validity { font-size:12px; color:#73695a; font-weight:600; }
.kp-btn { display:inline-flex; align-items:center; padding:10px 18px; background:#15171a; color:#fffaf0; border-radius:8px; text-decoration:none; font-size:13px; font-weight:800; transition:background 0.2s,transform 0.2s; white-space:nowrap; }
.kp-btn:hover { background:#7a612f; transform:translateY(-1px); }
.kp-btn-outline { display:inline-flex; align-items:center; padding:10px 18px; border:1.5px solid rgba(21,23,26,0.2); color:#15171a; border-radius:8px; text-decoration:none; font-size:13px; font-weight:700; transition:border-color 0.2s,background 0.2s; white-space:nowrap; }
.kp-btn-outline:hover { border-color:#7a612f; background:rgba(135,107,53,0.06); }
.kp-info-banner { display:flex; align-items:center; gap:16px; padding:20px 28px; border:1px solid rgba(21,23,26,0.08); border-radius:10px; background:#fffaf0; margin-bottom:28px; }
.kp-info-banner > span { font-size:24px; flex-shrink:0; }
.kp-info-banner p { font-size:14px; color:#6f736f; margin:0; }
.kp-info-banner strong { color:#15171a; }
@media(max-width:900px){
    .kp-grid { grid-template-columns:1fr; }
    .kp-card.kp-featured { grid-column:span 1; }
    .kp-featured-header { flex-direction:column; align-items:flex-start; }
    .kp-countdown { align-items:flex-start; }
    .kp-countdown-timer { font-size:22px; }
}
@media(max-width:600px){
    .kp-big-discount { font-size:40px; }
    .kp-footer { flex-direction:column; align-items:flex-start; }
    .kp-btn { width:100%; justify-content:center; }
}
#pace-bar {
    position: fixed; top: 0; left: 0; right: 0; height: 3px;
    z-index: 9999; pointer-events: none;
    opacity: 0; transition: opacity .2s;
}
#pace-bar.pace-active { opacity: 1; }
#pace-bar.pace-done   { opacity: 0; transition: opacity .4s .1s; }
#pace-fill {
    height: 100%; width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, #d6b16a, #7a612f);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(214,177,106,.6);
}
@keyframes scModalIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
@keyframes scAcSpin { to { transform: rotate(360deg); } }
.sc-dt-wrap { position: relative; width: 100%; }
.sc-dt-wrap input { width: 100%; box-sizing: border-box; }
.ct-phone-group { position: relative; display: flex; align-items: stretch; }
.ct-country-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 0 12px; border: 1.5px solid rgba(21,23,26,.1); border-right: none;
    border-radius: 9px 0 0 9px; background: #f4f1eb; cursor: pointer;
    font: inherit; font-size: 14px; color: #15171a; white-space: nowrap;
    transition: background .15s, border-color .2s; flex-shrink: 0;
}
.ct-country-btn:hover { background: #ece8e0; }
.ct-country-btn svg { color: #73695a; }
.ct-flag { width: 22px; height: 16px; display: inline-block; border-radius: 2px; overflow: hidden; flex-shrink: 0; background-size: cover; }
.ct-code { font-size: 13px; font-weight: 700; color: #15171a; }
.ct-phone-group input[type="tel"] {
    flex: 1; border-radius: 0 9px 9px 0 !important;
    border-left-color: rgba(21,23,26,.1) !important;
}
.ct-phone-group:focus-within .ct-country-btn { border-color: #7a612f; }
.ct-country-dropdown {
    display: none; position: absolute; top: calc(100% + 6px); left: 0;
    width: 280px; background: #fffaf0; border: 1px solid rgba(21,23,26,.12);
    border-radius: 10px; box-shadow: 0 16px 40px rgba(21,23,26,.14);
    z-index: 200; overflow: hidden;
}
.ct-country-dropdown.open { display: block; }
.ct-country-search-wrap { padding: 10px; border-bottom: 1px solid rgba(21,23,26,.07); }
.ct-country-search {
    width: 100%; padding: 9px 12px; border: 1.5px solid rgba(21,23,26,.1);
    border-radius: 7px; background: #f4f1eb; font: inherit; font-size: 13px;
    color: #15171a; box-sizing: border-box;
}
.ct-country-search:focus { outline: none; border-color: #7a612f; }
.ct-country-list { list-style: none; margin: 0; padding: 6px 0; max-height: 220px; overflow-y: auto; }
.ct-country-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px; cursor: pointer; transition: background .12s;
}
.ct-country-list li:hover { background: rgba(214,177,106,.1); }
.ct-cl-flag { width: 22px; height: 16px; display: inline-block; border-radius: 2px; overflow: hidden; flex-shrink: 0; background-size: cover; }
.ct-cl-name { flex: 1; font-size: 13px; font-weight: 600; color: #15171a; }
.ct-cl-code { font-size: 12px; font-weight: 700; color: #73695a; }
@media (max-width: 480px) {
    .booking-steps { grid-template-columns: 1fr; gap: 8px; }
    .wc-head h2 { font-size: clamp(20px, 6vw, 28px); }
    .hsb-search-btn { padding: 0 16px; font-size: 13px; }
    .hsb-panel { border-radius: 16px; }
    .hsb-tabs { overflow-x: auto; }
    .cnf-hero { padding: 32px 16px 60px !important; }
    .cnf-body { padding-left: 16px !important; padding-right: 16px !important; }
    .cnf-body-shell { grid-template-columns: 1fr !important; gap: 12px !important; }
    .cnf-route-bar { gap: 4px; }
    .rz-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .blog-grid { grid-template-columns: 1fr !important; }
    .campaigns-grid { grid-template-columns: 1fr !important; }
    .sss-container { padding: 0 8px; }
    .araclar-grid { grid-template-columns: 1fr !important; }
    .fleet-section,
    .section { padding-left: 16px !important; padding-right: 16px !important; }
}
.menu-open .wa-cta { display: none !important; }
.wa-cta {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: hsl(142, 70%, 45%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s, background 0.2s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform, opacity;
}
.wa-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.wa-cta:hover { background: hsl(142, 70%, 40%); color: #fff; }
.wa-cta:active { opacity: 0.88; }
@media (max-width: 767px) {
    .wa-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 500;
        padding: 14px 20px 10px;
        font-size: 15px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    }
}
@media (min-width: 768px) {
    .wa-cta {
        display: flex;
        position: fixed;
        bottom: 36px;
        left: 24px;
        z-index: 500;
        padding: 13px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    }
    .wa-cta span { display: none; }
}
.ln-section {
    background: #f4f1eb;
    padding: 72px 0 80px;
}
.ln-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.ln-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.ln-card {
    background: #fffaf0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(21,23,26,0.07);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.22s, transform 0.22s;
}
.ln-card:hover {
    box-shadow: 0 12px 40px rgba(21,23,26,0.1);
    transform: translateY(-4px);
}
.ln-card-img-wrap {
    display: block;
    overflow: hidden;
    height: 200px;
    position: relative;
    flex-shrink: 0;
}
.ln-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.ln-card:hover .ln-card-img {
    transform: scale(1.05);
}
.ln-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21,23,26,0.35) 0%, transparent 60%);
}
.ln-card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ln-card-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #7a612f;
    margin-bottom: 8px;
    display: block;
}
.ln-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #15171a;
    line-height: 1.35;
    margin: 0 0 10px;
}
.ln-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s;
}
.ln-card-title a:hover { color: #7a612f; }
.ln-card-excerpt {
    font-size: 13.5px;
    color: #6f736f;
    line-height: 1.65;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ln-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 800;
    color: #7a612f;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.18s, gap 0.18s;
    margin-top: auto;
}
.ln-read-more:hover {
    color: #d6b16a;
    gap: 8px;
}
.ln-anno-wrap {
    border-top: 1px solid rgba(21,23,26,0.1);
    padding-top: 40px;
}
.ln-anno-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #15171a;
    margin-bottom: 20px;
}
.ln-anno-heading svg { color: #d6b16a; flex-shrink: 0; }
.ln-anno-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.ln-anno-card {
    background: #fffaf0;
    border: 1px solid rgba(21,23,26,0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.ln-anno-card:hover {
    box-shadow: 0 8px 28px rgba(21,23,26,0.09);
    transform: translateY(-2px);
}
.ln-anno-card--featured {
    border-color: #d6b16a;
    box-shadow: 0 0 0 1px rgba(214,177,106,0.3);
}
.ln-anno-img-wrap {
    height: 120px;
    overflow: hidden;
    flex-shrink: 0;
}
.ln-anno-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ln-anno-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ln-anno-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: #d6b16a;
    color: #15171a;
    border-radius: 5px;
    padding: 3px 8px;
    margin-bottom: 10px;
    margin-right: 6px;
    text-transform: uppercase;
}
.ln-anno-badge--code {
    background: #15171a;
    color: #d6b16a;
    font-family: monospace;
}
.ln-anno-title {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #15171a;
    line-height: 1.35;
    margin-bottom: 6px;
}
.ln-anno-desc {
    font-size: 13px;
    color: #6f736f;
    line-height: 1.6;
    margin: 0 0 12px;
    flex: 1;
}
.ln-anno-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}
.ln-anno-date {
    font-size: 11.5px;
    color: #73695a;
    font-weight: 600;
}
.ln-anno-cta {
    font-size: 12.5px;
    font-weight: 800;
    color: #7a612f;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s;
}
.ln-anno-cta:hover { color: #d6b16a; }
@media (max-width: 900px) {
    .ln-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .ln-section { padding: 48px 0 56px; }
    .ln-grid { grid-template-columns: 1fr; gap: 16px; }
    .ln-card-img-wrap { height: 180px; }
    .ln-anno-grid { grid-template-columns: 1fr; }
}
.gr-section {
    padding: 72px 0 80px;
    background: #15171a;
}
.gr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.gr-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.gr-header .new-eyebrow { color: #d6b16a; }
.gr-header h2 { color: #fffaf0; }
.gr-header .section-sub-text { color: rgba(255,250,240,0.55); }
.gr-overall {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,250,240,0.06);
    border: 1px solid rgba(255,250,240,0.1);
    border-radius: 14px;
    padding: 18px 24px;
    flex-shrink: 0;
}
.gr-google-logo {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.gr-score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.gr-score-number {
    font-size: 32px;
    font-weight: 950;
    color: #fffaf0;
    line-height: 1;
}
.gr-stars-row {
    display: flex;
    gap: 2px;
}
.gr-star {
    width: 16px;
    height: 16px;
}
.gr-star--full  path { fill: #f9ab00; }
.gr-star--empty path { fill: rgba(255,250,240,0.2); }
.gr-score-sub {
    font-size: 11px;
    color: rgba(255,250,240,0.45);
    font-weight: 600;
    white-space: nowrap;
}
.gr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}
.gr-card {
    background: rgba(255,250,240,0.05);
    border: 1px solid rgba(255,250,240,0.09);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.2s, border-color 0.2s;
}
.gr-card:hover {
    background: rgba(255,250,240,0.08);
    border-color: rgba(214,177,106,0.25);
}
.gr-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gr-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.gr-avatar-ph {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d6b16a, #7a612f);
    color: #15171a;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gr-reviewer-info {
    flex: 1;
    min-width: 0;
}
.gr-reviewer-name {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #fffaf0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gr-review-date {
    font-size: 11.5px;
    color: rgba(255,250,240,0.42);
    font-weight: 500;
}
.gr-google-mini {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: auto;
}
.gr-card-stars {
    gap: 2px;
}
.gr-review-text {
    font-size: 13.5px;
    color: rgba(255,250,240,0.72);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.gr-footer {
    text-align: center;
}
.gr-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border: 1.5px solid rgba(255,250,240,0.15);
    border-radius: 9px;
    color: rgba(255,250,240,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.gr-all-btn:hover {
    border-color: #d6b16a;
    color: #d6b16a;
    background: rgba(214,177,106,0.06);
}
@media (max-width: 900px) {
    .gr-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .gr-section { padding: 48px 0 56px; }
    .gr-grid { grid-template-columns: 1fr; gap: 14px; }
    .gr-header { flex-direction: column; }
    .gr-overall { width: 100%; justify-content: center; }
}
.rev-section {
    background: #f4f1eb;
    border-bottom: 1px solid #e8e3d8;
    position: relative;
    z-index: 10;
}
.rev-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 0;
}
.rev-tabs {
    display: flex;
    align-items: flex-end;
    border-bottom: 2px solid #e9e9e9;
    gap: 0;
}
.rev-tab {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 15px 22px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #6b6b6b;
    font-family: inherit;
    transition: color .18s;
    white-space: nowrap;
}
.rev-tab--active {
    color: #15171a;
    border-bottom-color: #d6b16a;
    font-weight: 700;
}
.rev-tab:not(.rev-tab--active):hover { color: #444; }
.rev-tab-score {
    font-weight: 800;
    color: #15171a;
}
.rev-platform-logo {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.rev-score-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 18px;
    border-bottom: 1px solid #f0f0f0;
    gap: 16px;
    flex-wrap: wrap;
}
.rev-score-label {
    font-size: 13px;
    font-weight: 700;
    color: #15171a;
    display: block;
    margin-bottom: 4px;
}
.rev-score-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rev-score-number {
    font-size: 26px;
    font-weight: 950;
    color: #15171a;
    line-height: 1;
}
.rev-stars-row {
    display: flex;
    gap: 2px;
    align-items: center;
}
.rev-star { width: 16px; height: 16px; flex-shrink: 0; }
.rev-score-count {
    font-size: 13px;
    color: #6b6b6b;
    font-weight: 600;
}
.rev-write-btn {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    background: #1a73e8;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background .18s;
    white-space: nowrap;
}
.rev-write-btn:hover { background: #1558b0; color: #fff; }
.rev-ai-summary {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f0f4ff;
    border: 1px solid #c5d8fb;
    border-radius: 12px;
    padding: 16px 18px;
    scroll-snap-align: start;
}
.rev-ai-summary-head {
    display: flex;
    align-items: center;
    gap: 6px;
}
.rev-ai-summary-icon { width: 18px; height: 18px; flex-shrink: 0; }
.rev-ai-summary-title {
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(90deg, #4285f4, #9b72cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rev-ai-summary-source {
    font-size: 11px;
    color: #656c72;
}
.rev-ai-summary-text {
    font-size: 12.5px;
    color: #3c4043;
    line-height: 1.6;
    margin: 0;
}
.rev-ai-summary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.rev-ai-summary-tags span {
    padding: 3px 10px;
    background: #e8f0fe;
    color: #1558b0;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}
.rev-cards-outer {
    position: relative;
    padding: 20px 0 24px;
    overflow: hidden;
}
.rev-cards-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 64px;
    scrollbar-width: none;
}
.rev-cards-track::-webkit-scrollbar { display: none; }
.rev-card {
    flex: 0 0 320px;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 20px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .2s;
}
.rev-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.rev-card--ai {
    flex: 0 0 340px;
    background: #fafafa;
    border: 1.5px solid #e0d4f0;
}
.rev-ai-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rev-ai-label {
    font-size: 13.5px;
    font-weight: 800;
    color: #15171a;
    line-height: 1.3;
}
.rev-ai-sub {
    font-size: 12px;
    color: #6b6b6b;
    font-weight: 500;
    margin-top: -6px;
}
.rev-ai-stars { margin-top: -4px; }
.rev-ai-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.rev-ai-points li {
    font-size: 13px;
    color: #444;
    line-height: 1.55;
    padding-left: 20px;
    position: relative;
}
.rev-ai-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34a853;
    font-weight: 700;
}
.rev-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rev-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.rev-avatar-ph {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rev-reviewer { flex: 1; min-width: 0; }
.rev-reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: #15171a;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rev-check { width: 16px; height: 16px; flex-shrink: 0; }
.rev-reviewer-meta {
    font-size: 12px;
    color: #6b6b6b;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.rev-meta-sep { color: #bbb; }
.rev-google-inline {
    width: 38px;
    height: 14px;
}
.rev-card-stars { margin-top: -2px; }
.rev-text {
    font-size: 13.5px;
    color: #444;
    line-height: 1.65;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rev-text a,
.rev-card a:not(.rev-write-btn) {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
}
.rev-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e4e4e4;
    background: #fff;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow .18s, background .18s;
    z-index: 2;
}
.rev-arrow--next { right: 0; }
.rev-arrow--prev { left: 0; }
.rev-arrow:hover { background: #f5f5f5; box-shadow: 0 4px 16px rgba(0,0,0,0.14); }
.rev-arrow--hidden { display: none; }
@media (max-width: 768px) {
    .rev-tab { padding: 12px 14px; font-size: 13px; }
    .rev-card { flex: 0 0 280px; }
    .rev-card--ai { flex: 0 0 300px; }
    .rev-score-number { font-size: 22px; }
}
@media (max-width: 480px) {
    .rev-tabs { overflow-x: auto; scrollbar-width: none; }
    .rev-tabs::-webkit-scrollbar { display: none; }
}
