/* ==========================================================================
   SKYHILL HOLIDAYS - ULTRA LUXURY TRAVEL & VIP TRANSFERS
   Sophisticated Mediterranean Luxury Design System
   ========================================================================== */

:root {
    --primary: #080f1d;
    --primary-deep: #040810;
    --primary-light: #121e36;
    --primary-soft: #1c2b4c;

    --gold: #c8a256;
    --gold-light: #dfc285;
    --gold-dark: #a27e36;
    --gold-gradient: linear-gradient(135deg, #dfc285 0%, #c8a256 50%, #9e7a30 100%);
    --gold-subtle: rgba(200, 162, 86, 0.15);
    --gold-glow: 0 8px 24px rgba(200, 162, 86, 0.28);

    --text-dark: #0f172a;
    --text-muted: #596780;
    --text-light: #f8fafc;
    --text-subtle: #94a3b8;

    --bg-main: #fbfbfa;
    --bg-white: #ffffff;
    --border-color: rgba(200, 162, 86, 0.2);
    --border-light: #eef2f6;

    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-soft: 0 10px 30px rgba(8, 15, 29, 0.05);
    --shadow-hover: 0 20px 40px rgba(8, 15, 29, 0.11);
    --shadow-dark: 0 25px 50px rgba(0, 0, 0, 0.35);

    --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.01em;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --------------------------------------------------------------------------
   HEADER & TOP BAR (STABLE & RESPONSIVE)
   -------------------------------------------------------------------------- */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.top-util-bar {
    background: var(--primary-deep);
    padding: 6px 0;
    font-size: 0.78rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-util-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-util-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-util-left i {
    color: var(--gold);
    margin-right: 4px;
}

.util-sep {
    color: rgba(255, 255, 255, 0.2);
}

.top-util-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vip-hotline-link {
    color: var(--gold-light) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vip-hotline-link i {
    color: #25d366;
    font-size: 0.95rem;
}

.lang-selector {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 2px 4px;
}

.lang-btn {
    border: none;
    background: transparent;
    color: #cbd5e1;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--gold-gradient);
    color: var(--primary);
}

/* Main Navbar */
.main-nav-bar {
    padding: 10px 0;
}

.nav-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-emblem-wrap {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--gold-glow);
}

.brand-logo-text h2 {
    color: #ffffff;
    font-size: 1.25rem;
    letter-spacing: 1.2px;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
}

.brand-logo-text h2 span {
    color: var(--gold);
}

.brand-logo-text small {
    color: #94a3b8;
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
}

.nav-menu li a {
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--gold-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-header-vip {
    background: var(--gold-gradient);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    box-shadow: var(--gold-glow);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.4px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-header-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(200, 162, 86, 0.45);
}

.nav-toggle-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 1.25rem;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1998;
}

.mobile-drawer-overlay.active {
    display: block;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--primary);
    border-left: 1px solid var(--border-color);
    z-index: 1999;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.drawer-close {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 1.6rem;
    cursor: pointer;
}

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

.drawer-links li a {
    color: #f1f5f9;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.drawer-links li a i {
    color: var(--gold);
    width: 20px;
}

.drawer-footer {
    margin-top: auto;
    padding-top: 20px;
}

.btn-drawer-wa {
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
}

/* --------------------------------------------------------------------------
   HERO & SLIDER SECTION (REFINED, ELEGANT, LUXURY)
   -------------------------------------------------------------------------- */
.hero-stage {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(180deg, rgba(8, 15, 29, 0.78) 0%, rgba(8, 15, 29, 0.88) 100%),
        url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=2100&q=85') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
}

.hero-inner {
    max-width: 1040px;
    margin: 0 auto;
}

.hero-elite-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    background: rgba(200, 162, 86, 0.12);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(6px);
}

/* Zarif, Orantılı ve Şık Başlık (Kullanıcı İsteği Doğrultusunda Küçültüldü) */
.hero-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.25;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.hero-title span {
    color: var(--gold-light);
    font-style: italic;
    font-weight: 400;
}

.hero-lead {
    font-size: 0.98rem;
    color: #d1d5db;
    max-width: 680px;
    margin: 0 auto 32px;
    font-weight: 300;
    line-height: 1.6;
}

/* Glassmorphism Booking Engine */
.glass-booking-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-dark);
    padding: 20px 24px;
    text-align: left;
    backdrop-filter: blur(16px);
}

.booking-nav-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    border-bottom: 1.5px solid #edf2f7;
    padding-bottom: 10px;
    overflow-x: auto;
}

.book-tab {
    background: transparent;
    border: none;
    padding: 8px 18px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    white-space: nowrap;
}

.book-tab.active {
    background: var(--primary);
    color: #ffffff;
}

.book-tab.active i {
    color: var(--gold);
}

.booking-fields-row {
    display: grid;
    grid-template-columns: 1.3fr 1.3fr 1.1fr 0.9fr 0.9fr 1.3fr;
    gap: 12px;
    align-items: end;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field-group label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-group label i {
    color: var(--gold-dark);
}

.field-input,
.field-select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-dark);
    background: #f8fafc;
    outline: none;
    font-weight: 500;
    transition: var(--transition);
    height: 42px;
}

.field-input:focus,
.field-select:focus {
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(200, 162, 86, 0.18);
}

.btn-booking-search {
    background: var(--gold-gradient);
    color: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0 16px;
    font-weight: 700;
    font-size: 0.84rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: var(--gold-glow);
    height: 42px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-booking-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 162, 86, 0.4);
}

/* --------------------------------------------------------------------------
   PAGE HERO BANNER (FOR SUBPAGES)
   -------------------------------------------------------------------------- */
.page-hero-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 50px 0;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero-banner h1 {
    font-size: 2.1rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.page-hero-banner p {
    color: #cbd5e1;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   HIGHLIGHTS STRIP
   -------------------------------------------------------------------------- */
.highlights-bar {
    background: #ffffff;
    padding: 22px 0;
    border-bottom: 1px solid #edf2f7;
    box-shadow: var(--shadow-soft);
}

.highlights-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hl-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold-subtle);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hl-text h4 {
    font-size: 0.92rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.hl-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

/* --------------------------------------------------------------------------
   SECTIONS & TITLES
   -------------------------------------------------------------------------- */
.section-padding {
    padding: 70px 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.head-subtitle {
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.head-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.head-desc {
    color: var(--text-muted);
    font-size: 0.94rem;
}

/* --------------------------------------------------------------------------
   FLEET CARDS (NO CAR BRANDS - SERVICE CLASS BASED)
   -------------------------------------------------------------------------- */
.fleet-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.fleet-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.fleet-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.fleet-media {
    position: relative;
    height: 220px;
    background: #0b1325;
    overflow: hidden;
}

.fleet-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-item:hover .fleet-media img {
    transform: scale(1.05);
}

.fleet-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(8, 15, 29, 0.9);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.8px;
}

.fleet-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fleet-info h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.fleet-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    padding: 12px 0;
    margin: 8px 0 14px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.82rem;
}

.fleet-specs-grid span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-specs-grid i {
    color: var(--gold-dark);
}

.fleet-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
}

.fleet-status-badge span {
    font-size: 0.7rem;
    color: var(--text-subtle);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
}

.fleet-status-badge strong {
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 700;
}

.btn-fleet-book {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-fleet-book:hover {
    background: var(--gold-gradient);
    color: var(--primary);
    box-shadow: var(--gold-glow);
}

/* --------------------------------------------------------------------------
   TOURS CARDS
   -------------------------------------------------------------------------- */
.tours-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.tour-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.tour-thumb {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.tour-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-thumb img {
    transform: scale(1.06);
}

.tour-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(8, 15, 29, 0.88);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-color);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
}

.tour-body {
    padding: 22px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.tour-body h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.tour-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   HOTELS & VILLAS SECTION
   -------------------------------------------------------------------------- */
.dark-luxury-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
}

.dark-luxury-section .head-title {
    color: #ffffff;
}

.dark-luxury-section .head-desc {
    color: #cbd5e1;
}

.hotels-deck {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.hotel-feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(200, 162, 86, 0.22);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hotel-feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.hotel-feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.hotel-card-body {
    padding: 24px;
}

.hotel-card-body h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.hotel-card-body p {
    color: #cbd5e1;
    font-size: 0.86rem;
    margin-bottom: 18px;
}

/* --------------------------------------------------------------------------
   ALANYA OPERATIONAL SPOTLIGHT
   -------------------------------------------------------------------------- */
.alanya-spotlight-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
    margin-top: 50px;
    color: var(--text-dark);
}

.alanya-spotlight-box h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.alanya-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.alanya-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.alanya-bullets li i {
    color: var(--gold-dark);
    font-size: 1rem;
}

.alanya-spotlight-box img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--primary-deep);
    color: #94a3b8;
    padding: 60px 0 20px;
    border-top: 2px solid var(--border-color);
}

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 6px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 9px;
}

.footer-nav a {
    font-size: 0.85rem;
}

.footer-nav a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact-item {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item i {
    color: var(--gold);
}

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

.social-links-wrap a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.95rem;
}

.social-links-wrap a:hover {
    background: var(--gold-gradient);
    color: var(--primary);
}

.footer-base {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 20px;
    font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP & MODAL
   -------------------------------------------------------------------------- */
.floating-vip-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #ffffff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1050;
    transition: var(--transition);
}

.floating-vip-wa:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 8, 16, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-content {
    background: #ffffff;
    border-radius: var(--radius-md);
    max-width: 500px;
    width: 100%;
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 1px solid var(--border-color);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
    .booking-fields-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .fleet-deck,
    .tours-deck {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-flex {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle-btn {
        display: block;
    }

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

    .fleet-deck,
    .tours-deck,
    .hotels-deck {
        grid-template-columns: 1fr;
    }

    .alanya-spotlight-box {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .top-util-flex {
        flex-direction: column;
        gap: 6px;
    }

    .highlights-flex {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: 1fr;
    }

    .brand-logo-text small {
        display: none;
    }

    .btn-header-vip span {
        display: none;
    }

    .btn-header-vip {
        padding: 8px 12px;
    }
}