:root {
    --c-black: #0a0a0a;
    --c-white: #fafaf8;
    --c-grey-100: #f5f5f3;
    --c-grey-200: #e4e4e4;
    --c-grey-400: #b0b0aa;
    --c-grey-600: #6b6b65;
    --c-grey-800: #2a2a28;
    --c-accent: #c8a96e;
    --c-accent-light: #e8d5a8;
    --font-display: Georgia, 'Times New Roman', serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-h: 72px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--c-white);
    color: var(--c-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 100;
    transition: background 0.4s var(--ease-out), border-color 0.4s;
    border: 1px solid transparent;
    background: rgba(250, 250, 248, 0.52);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin: 8px;
    border-radius: 12px;
    border-color: var(--c-grey-200);
}

@media (min-width: 1440px) {
    nav {
        left: 50%;
        right: auto;
        width: calc(100% - 16px);
        max-width: 1400px;
        transform: translateX(-50%);
    }
}

nav.scrolled {}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 54px;
    height: 54px;
    background: var(--c-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-left: 4px;
}

.nav-logo-mark span {
    color: var(--c-accent);
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--c-black);
    letter-spacing: 0.5px;
}

.nav-logo-text span {
    color: #6b5a3d;
    display: block;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 36px;
    list-style: none;
    background: rgba(250, 250, 248, 0.52);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid var(--c-grey-200);
    padding: 12px;
    margin: 8px;
    margin-top: 10px;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    color: var(--c-grey-800);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--c-black);
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links-desktop a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--c-grey-800);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links-desktop a:hover {
    color: var(--c-black);
}
.mobile-menu-btn {
    display:none
}
.nav-lang {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-lang-dropdown {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--c-grey-100);
    border: 1px solid var(--c-grey-200);
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-black);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    white-space: nowrap;
}

.lang-btn .flag {
    display: flex;
    flex-shrink: 0;
}

.lang-btn .flag svg {
    width: 20px;
    height: 14px;
    display: block;
}

.lang-btn .lang-arrow {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s;
}

.nav-lang-dropdown.open .lang-btn .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    border-radius: 6px;
    right: 0;
    min-width: 180px;
    margin-top: 1.5rem;
    background: var(--c-white);
    border: 1px solid var(--c-grey-200);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 200;
}

.nav-lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--c-grey-600);
    cursor: pointer;
    text-decoration: none;
}

.lang-dropdown-menu a .flag-wrap {
    flex-shrink: 0;
}

.lang-dropdown-menu a .flag-wrap svg {
    width: 20px;
    height: 14px;
    display: block;
    border-radius: 2px;
}

.lang-dropdown-menu a .lang-name {
    flex: 1;
}

.lang-dropdown-menu a .lang-code {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--c-grey-600);
}

.lang-dropdown-menu a:hover {
    background: var(--c-grey-100);
    color: var(--c-black);
}

.lang-dropdown-menu a:hover .lang-code {
    color: var(--c-black);
}

.lang-dropdown-menu a.active {
    color: var(--c-black);
    font-weight: 600;
    background: var(--c-grey-100);
}

.lang-dropdown-menu a.active .lang-code {
    color: var(--c-black);
}

.nav-cta {
    background: var(--c-black);
    color: var(--c-white) !important;
    padding: 10px 24px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
    background: var(--c-accent) !important;
    color: var(--c-black) !important;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding: 140px;
    inset: 0;
    background-image: linear-gradient(rgba(200, 169, 110, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 169, 110, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}


.hero-left {
    order: 1;
}

.hero-right {
    order: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--c-accent);
}

.hero-eyebrow-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b5a3d;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 5.5vw, 80px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--c-black);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--c-grey-600);
}

.hero-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--c-grey-600);
    max-width: 400px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.65s forwards;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--c-black);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-num span {
    color: #6b5a3d;
}

.hero-stat-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-grey-600);
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-black);
    color: var(--c-white);
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.25s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c-accent);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-out);
    z-index: -1;
}

.btn-primary:hover {
    background: var(--c-accent);
    color: var(--c-black);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--c-grey-600);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    padding: 16px 0;
    text-decoration: none;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: var(--c-black);
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a18 0%, #2d2d2a 40%, #3d3d38 70%, #1a1a18 100%);
    overflow: hidden;
    border-radius:16px;
}

.hero-image-bg .hero-unsplash {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay-text {
    position: absolute;
    bottom: 140px;
    left: 48px;
    right: 48px;
}

.hero-overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 169, 110, 0.15);
    border: 1px solid rgba(200, 169, 110, 0.3);
    padding: 8px 16px;
    margin-bottom: 16px;
}

.hero-overlay-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--c-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-overlay-badge span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-accent);
}

.hero-route-display {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    color: var(--c-white);
    line-height: 1.3;
}

.hero-route-display span {
    color: var(--c-accent);
}

.floating-buttons{
    position:fixed;
    right:32px;
    bottom:32px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:999;
}

.float-btn{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    font-size:22px;
    color:#fff;
    text-decoration:none;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.3);

    box-shadow:0 8px 25px rgba(0,0,0,0.25);

    transition:0.3s;
}

.float-btn:hover{
    transform:scale(1.1);
}

.whatsapp{
    color:#25D366;

}

.call{
    color:#4aa3ff;
}
.call svg{
    animation: call 2.5s ease-in-out infinite;
    transform-origin: 50% 60%;
}

@keyframes call{
    0% { transform: rotate(0) scale(1); }

    5% { transform: rotate(15deg) scale(1.05); }
    10% { transform: rotate(-13deg) scale(1.05); }
    15% { transform: rotate(15deg) scale(1.05); }
    20% { transform: rotate(-10deg) scale(1.05); }
    25% { transform: rotate(0) scale(1); }

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


.booking-section {
    background: var(--c-grey-100);
    padding: 0;
    position: relative;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px;
}

.booking-card {
    background: var(--c-white);
    border: 1px solid var(--c-grey-200);
    padding: 24px 48px 48px 48px;
    margin-top: -170px;
    position: relative;
    z-index: 10;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.50);
    border-radius: 16px;
}

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

.booking-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--c-black);
}

.booking-subtitle {
    font-size: 13px;
    color: var(--c-grey-600);
    margin-top: 4px;
    letter-spacing: 0.3px;
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0faf0;
    border: 1px solid #c8e6c9;
    padding: 8px 16px;
}

.booking-badge-icon {
    font-size: 14px;
}

.booking-badge-text {
    font-size: 12px;
    color: #2e7d32;
    font-weight: 500;
}

.booking-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--c-grey-200);
}

.booking-tab {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--c-grey-600);
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    border-radius: 6px 6px 0 0;
    transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, border-radius 0.35s ease;
    letter-spacing: 0.3px;
}

.booking-tab.active {
    color: var(--c-black);
    border: 1px solid rgba(200, 169, 110, 0.3);
    border-bottom: 2px solid var(--c-black);
    background: rgba(200, 169, 110, 0.15);
    border-radius: 6px 6px 0px 0px;
}

.booking-tab .tab-icon {
    vertical-align: middle;
    margin-right: 4px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-grey-600);
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--c-grey-200);
    background: var(--c-grey-100);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--c-black);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
    border-color: var(--c-black);
    background: var(--c-white);
}

.form-input::placeholder {
    color: var(--c-grey-400);
}

.form-select-wrap {
    position: relative;
}

.form-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--c-grey-400);
    font-size: 10px;
}

.btn-book {
    background: var(--c-black);
    color: var(--c-white);
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s;
}

.btn-book:hover {
    background: var(--c-accent);
    color: var(--c-black);
}

.trust-bar {
    background: var(--c-black);
    padding: 24px 48px;
}

.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--c-accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-text-top {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-white);
    letter-spacing: 0.2px;
}

.trust-text-bottom {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 2px;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
}

.destinations {
    padding: 120px 0;
    background: var(--c-white);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--c-accent);
}

.section-eyebrow-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b5a3d;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--c-black);
}

.section-title em {
    font-style: italic;
    color: var(--c-grey-600);
}

.section-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--c-grey-600);
    align-self: end;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.dest-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--c-grey-800);
    aspect-ratio: 3/4;
    text-decoration: none;
    color: inherit;
}

.dest-card:first-child {
    grid-row: span 2;
    aspect-ratio: unset;
}

.dest-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--ease-out);
    overflow: hidden;
}

.dest-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13, 15, 23, 0.18), rgba(13, 15, 23, 0.62));
    pointer-events: none;
}

.dest-card:hover .dest-bg {
    transform: scale(1.05);
}

.dest-bg-belek {
    background: linear-gradient(160deg, #1a2a1a 0%, #2d4a2d 50%, #3d6a3d 100%);
}

.dest-bg-side {
    background: linear-gradient(160deg, #1a1a2a 0%, #2d2d5a 50%, #3d4d8a 100%);
}

.dest-bg-lara {
    background: linear-gradient(160deg, #2a1a1a 0%, #4a2d2d 50%, #6a4d4d 100%);
}

.dest-bg-kemer {
    background: linear-gradient(160deg, #1a2a2a 0%, #2d4a4a 50%, #3d6a6a 100%);
}

.dest-bg-alanya {
    background: linear-gradient(160deg, #2a2a1a 0%, #4a4a2d 50%, #6a6a3d 100%);
}

.dest-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.dest-pattern-belek {
    background: radial-gradient(circle at 70% 30%, rgba(100, 200, 100, 0.4) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(50, 150, 50, 0.3) 0%, transparent 40%);
}

.dest-pattern-side {
    background: radial-gradient(circle at 50% 20%, rgba(100, 150, 255, 0.5) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(50, 100, 200, 0.3) 0%, transparent 40%);
}

.dest-pattern-lara {
    background: radial-gradient(circle at 30% 60%, rgba(255, 150, 100, 0.4) 0%, transparent 50%), radial-gradient(circle at 70% 20%, rgba(200, 100, 50, 0.3) 0%, transparent 40%);
}

.dest-pattern-kemer {
    background: radial-gradient(circle at 60% 40%, rgba(100, 200, 200, 0.4) 0%, transparent 50%), radial-gradient(circle at 20% 70%, rgba(50, 150, 150, 0.3) 0%, transparent 40%);
}

.dest-pattern-alanya {
    background: radial-gradient(circle at 40% 50%, rgba(200, 200, 100, 0.4) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(150, 150, 50, 0.3) 0%, transparent 40%);
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.dest-distance {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 8px;
}

.dest-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: 4px;
}

.dest-card:first-child .dest-name {
    font-size: 40px;
}

.dest-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.dest-price strong {
    color: var(--c-white);
    font-weight: 500;
}

.dest-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    font-size: 14px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s var(--ease-out);
}

.dest-card:hover .dest-arrow {
    opacity: 1;
    transform: translateX(0);
}

.vehicles {
    padding: 120px 0;
    background: var(--c-grey-100);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}

.vehicle-card {
    background: var(--c-white);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out);
    cursor: pointer;
    border: 1px solid var(--c-grey-200);
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.vehicle-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    margin-bottom: 32px;
}

.vehicle-badge-standard {
    background: var(--c-grey-100);
    color: var(--c-grey-600);
}

.vehicle-badge-business {
    background: rgba(200, 169, 110, 0.1);
    color: var(--c-accent);
    border: 1px solid rgba(200, 169, 110, 0.3);
}

.vehicle-badge-vip {
    background: var(--c-black);
    color: var(--c-white);
}

.vehicle-illustration {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
}

.vehicle-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 12px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
}

.vehicle-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    color: var(--c-black);
    margin-bottom: 8px;
}

.vehicle-capacity {
    font-size: 13px;
    color: var(--c-grey-400);
    margin-bottom: 24px;
}

.vehicle-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.vehicle-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--c-grey-600);
}

.vehicle-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--c-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.vehicle-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.vehicle-price-from {
    font-size: 12px;
    color: var(--c-grey-400);
}

.vehicle-price-amount {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--c-black);
}

.vehicle-price-unit {
    font-size: 12px;
    color: var(--c-grey-400);
}

.how-it-works {
    padding: 80px 0;
    background: var(--c-grey-100);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 80px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(3.5% + 16px);
    right: calc(15.5% + 16px);
    height: 1px;
    background: linear-gradient(90deg, var(--c-grey-200) 0%, var(--c-accent) 50%, var(--c-grey-200) 100%);
    z-index: 0;
}

.step {
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 64px;
    height: 64px;
    background: var(--c-white);
    border: 1px solid var(--c-grey-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s;
}

.step:hover .step-num {
    background: var(--c-black);
    border-color: var(--c-black);
}

.step-num-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 300;
    color: var(--c-grey-400);
    transition: color 0.3s;
}

.step:hover .step-num-text {
    color: var(--c-white);
}

.step-icon {
    font-size: 22px;
    display: none;
}

.step-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--c-black);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--c-grey-600);
    font-weight: 300;
}

.reviews {
    padding: 120px 0;
    background: var(--c-black);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.05) 0%, transparent 70%);
}

.reviews .section-eyebrow-text {
    color: var(--c-accent);
}

.reviews .section-eyebrow-line {
    background: var(--c-accent);
}

.reviews .section-title {
    color: var(--c-white);
}

.reviews .section-title em {
    color: var(--c-grey-600);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
    transition: background 0.3s;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--c-accent);
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    font-style: italic;
    font-family: var(--font-display);
    font-size: 17px;
    margin-bottom: 28px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--c-grey-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--c-accent);
}

.review-author-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-white);
}

.review-author-origin {
    font-size: 11px;
    color: var(--c-grey-600);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.review-platform {
    margin-left: auto;
    font-size: 11px;
    color: var(--c-grey-600);
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
}

.faq {
    padding: 120px 0;
    background: var(--c-grey-100);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-top: 64px;
}

.faq-sidebar-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--c-black);
    margin-bottom: 16px;
}

.faq-sidebar-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--c-grey-600);
    font-weight: 300;
    margin-bottom: 32px;
}

.faq-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--c-grey-600);
}

.faq-contact-item strong {
    font-weight: 500;
    color: var(--c-black);
}

.faq-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-contact-item svg path {
    fill: none;
    stroke: var(--c-accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-badge-icon svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.booking-badge-icon svg path,
.booking-badge-icon svg rect {
    fill: none;
    stroke: #2e7d32;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-top: 1px solid var(--c-grey-200);
    padding: 24px 0;
    cursor: pointer;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--c-grey-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-question-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--c-black);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border: 1px solid var(--c-grey-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--c-grey-600);
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.open .faq-toggle {
    background: var(--c-black);
    color: var(--c-white);
    border-color: var(--c-black);
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 14px;
    line-height: 1.7;
    color: var(--c-grey-600);
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s;
    padding-top: 0;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 16px;
}

.cta-section {
    padding: 120px 0;
    background: var(--c-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(200, 169, 110, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200, 169, 110, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-number {
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 180px);
    font-weight: 200;
    color: var(--c-grey-200);
    line-height: 0.9;
    margin-bottom: -20px;
    letter-spacing: -4px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    color: var(--c-black);
    margin-bottom: 24px;
}

.cta-title em {
    font-style: italic;
    color: var(--c-grey-600);
}

.cta-desc {
    font-size: 15px;
    color: var(--c-grey-600);
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer {
    background: var(--c-black);
    padding: 80px 0 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.footer-social-link:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
}

.footer-col-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    transition: color 0.2s;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-links a:hover {
    color: var(--c-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--c-white);
}

footer .footer-logo-text,
footer .footer-logo-text span {
    color: var(--c-white);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.seo-content {
    padding: 80px 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-grey-200);
}

.seo-content-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 48px;
}

.seo-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--c-black);
    margin-bottom: 16px;
}

.seo-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--c-grey-600);
    font-weight: 300;
    margin-bottom: 16px;
}

.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.seo-keyword {
    font-size: 12px;
    color: var(--c-grey-600);
    border: 1px solid var(--c-grey-200);
    padding: 4px 12px;
    background: var(--c-grey-100);
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        justify-content: center;
    }
    
    
    .mobile-menu-btn span {
        width: 28px;
        height: 2px;
        background: var(--c-black);
        display: block;
        transition: transform 0.3s, opacity 0.3s;
    }
    
    nav.nav-open .mobile-menu-btn span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }
    
    nav.nav-open .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    
    nav.nav-open .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 120px 48px 48px;
        gap: 40px;
    }

    .hero-right {
        height: 400px;
    }

    .hero-left {
        padding: 0;
    }

    .hero-title {
        font-size: clamp(44px, 8vw, 64px);
    }

    .hero-desc {
        max-width: none;
    }

    .hero-actions>.btn-primary {
        padding: 16px 14px;
    }

    .hero-overlay-text {
        bottom: 80px;
        left: 24px;
        right: 24px;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dest-card:first-child {
        grid-row: span 1;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .steps-grid::before {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    nav {
        padding: 0 4px;
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 18px;
        gap: 0;
        z-index: 99;
    }

    nav.nav-open+.nav-links {
        display: flex;
    }

    .nav-links a {
        border-bottom: 1px solid var(--c-grey-200);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 12px 0;
        font-size: 14px;
    }

    .section-header {
        grid-template-columns: 1fr;
    }

    .trust-bar-inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .trust-divider {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links-desktop {
        display: none;
    }
    input,
    select,
    textarea,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    input[type="password"] {
        font-size: 16px !important;
    }
}
@media (max-width: 1300px) {
    .footer-bottom{
        padding-right:48px;
    }
}

@media (max-width: 360px) {
    .footer-bottom-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px 24px;
        justify-items: center;
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-bottom-links a:nth-child(4) {
        grid-column: 2;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 96px 24px 28px;
        gap: 24px;
    }

    .hero-left {
        padding: 0;
    }

    .hero-right {
        height: 320px;
    }

    .floating-buttons{ 
        right:8px;
        bottom:8px;
        gap:8px;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        margin-bottom: 32px;
    }

    .hero-title {
        font-size: clamp(38px, 10vw, 52px);
        margin-bottom: 20px;
    }

    .hero-desc {
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        justify-content: center;
    }

    .booking-header {
        display: block;
    }

    .hero-overlay-text {
        bottom: 32px;
        left: 20px;
        right: 20px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .trust-divider {
        display: none;
    }

    .cta-actions {
        flex-direction: column;
    }

    footer {
        overflow-x: hidden;
    }

    .footer-inner {
        min-width: 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-right: 0px;
    }


    .booking-container {
        padding: 6px;
    }

    .booking-card {
        padding: 16px 24px;
        margin-top: -20px;
    }

    .booking-tabs {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .booking-header {
        margin-bottom: 8px;
    }

    .booking-badge {
        padding: 6px 32px;
        margin-top: 6px;
    }

    .booking-tab {
        padding: 6px 41px;
    }

    footer {
        overflow-x: hidden;
    }

    .footer-inner {
        padding: 0 18px;
        min-width: 0;
        margin-bottom: 100px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 84px 18px 24px;
        gap: 20px;
    }

    nav{
        height: 56px;
    }
    .nav-logo{
        gap:8px;
    }
    .nav-logo-mark{
        height: 46px;
        width: 46px;
        margin-left: 0px;
    }
    .nav-logo-mark span{
        font-size: 46px;
    }
    .nav-links{
        top:58px;
    }

    .hero-left{
        padding: 0;
    }

    .hero-right {
        height: 260px;
    }

    .hero-title {
        font-size: clamp(34px, 11vw, 44px);
    }

    .hero-desc {
        font-size: 14px;
    }
    .booking-tab {
        padding: 6px 16px;
    }

    .booking-tabs {
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .steps-grid {
        gap: 4px;
    }

    .step {
        padding: 0 8px;
    }

    .trust-bar {
        padding-right: 8px;
        padding-left: 28px;
    }

    .footer-top>div:nth-child(n+1):nth-child(-n+2) {
        grid-column: span 2;
    }
}




