:root {
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-glow: rgba(245, 158, 11, 0.4);
    --club-purple: #8b5cf6;
    --club-pink: #ec4899;
    --club-neon-glow: rgba(236, 72, 153, 0.35);
    --bg-dark: #080c16;
    --bg-card: #0f172a;
    --bg-card-hover: #1e293b;
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(8, 12, 22, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo {
    height: 38px;
    width: auto;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.btn-portal-back {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-portal-back:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2px 4px;
    gap: 2px;
}

.lang-switcher-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.lang-switcher-btn:hover {
    color: #ffffff;
}

.lang-switcher-btn.active {
    background: var(--accent);
    color: #0b1120;
}

.btn-call-club {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0b1120 !important;
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    text-decoration: none;
    box-shadow: 0 4px 14px var(--accent-glow);
    transition: all 0.2s !important;
}

.btn-call-club:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* HERO SECTION */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.25) 0%, rgba(8, 12, 22, 0.98) 100%), linear-gradient(180deg, rgba(8, 12, 22, 0.6) 0%, #080c16 100%);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
    max-width: 880px;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.35);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5.5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #ffffff;
    text-shadow: 0 4px 25px rgba(236, 72, 153, 0.4);
}

.hero p {
    font-size: clamp(15px, 2vw, 19px);
    color: #cbd5e1;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0b1120;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px var(--accent-glow);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-tg {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.35);
    transition: all 0.2s;
}

.btn-tg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

.btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.2s;
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* CONTAINER & SECTIONS */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-subtitle {
    color: #f472b6;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* CARDS GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    border-color: rgba(236, 72, 153, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--club-neon-glow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
}

/* CONTACT & BOOKING BANNER */
.booking-banner {
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.3) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(236, 72, 153, 0.4);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--club-neon-glow);
    margin-top: 30px;
}

.booking-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    color: #ffffff;
    margin-bottom: 12px;
}

.booking-banner p {
    color: #cbd5e1;
    font-size: 15px;
    max-width: 680px;
    margin: 0 auto 26px;
}

.contacts-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.phone-big {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.4);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.2s;
}

.phone-big:hover {
    transform: scale(1.05);
    background: var(--accent);
    color: #0b1120;
}

/* FOOTER */
footer {
    background: #050811;
    border-top: 1px solid var(--border-glass);
    padding: 50px 20px 30px;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 16px;
}

.footer-info {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-nav a {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    transition: 0.2s;
}

.footer-nav a:hover {
    background: var(--accent);
    color: #0b1120;
}

.copyright {
    color: #64748b;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    section {
        padding: 40px 0;
    }
}


/* CONTACT BUTTONS */
.contacts-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}
.btn-tg {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%) !important;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 136, 204, 0.35);
    transition: all 0.2s;
}
.btn-tg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}
.btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.2s;
}
.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.btn-mail {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #e2e8f0 !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-mail:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    transform: translateY(-2px);
}


/* UNIFIED LUXURY BOOKING BANNER & BUTTONS */
.booking-banner {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(20, 30, 50, 0.92) 100%) !important;
    border: 1px solid rgba(245, 158, 11, 0.35) !important;
    border-radius: 24px !important;
    padding: 38px 24px !important;
    text-align: center !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.15) !important;
    max-width: 920px !important;
    margin: 40px auto 20px !important;
    position: relative !important;
    z-index: 10 !important;
}

.booking-banner h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(22px, 3.5vw, 30px) !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
}

.booking-banner p {
    color: #cbd5e1 !important;
    font-size: 14.5px !important;
    max-width: 680px !important;
    margin: 0 auto 20px !important;
    line-height: 1.6 !important;
}

.contacts-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 20px 0 10px !important;
}

.phone-big {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #0b1120 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    border: 1px solid rgba(245, 158, 11, 0.5) !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35) !important;
    transition: all 0.2s !important;
}

.phone-big:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5) !important;
    color: #000 !important;
}

.btn-tg {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%) !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 14px rgba(0, 136, 204, 0.35) !important;
    transition: all 0.2s !important;
}

.btn-tg:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5) !important;
    color: #ffffff !important;
}

.btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35) !important;
    transition: all 0.2s !important;
}

.btn-wa:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
    color: #ffffff !important;
}

.btn-mail {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #f1f5f9 !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.2s !important;
}

.btn-mail:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    background: rgba(245, 158, 11, 0.12) !important;
    transform: translateY(-2px) !important;
}


/* SPOTLIGHT CARD & OVERLAY */
.spotlight-card {
    background: linear-gradient(135deg, rgba(26, 38, 62, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(236, 72, 153, 0.35);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(236, 72, 153, 0.25);
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.spotlight-img-box {
    position: relative;
    min-height: 400px;
    cursor: pointer;
    overflow: hidden;
}

.spotlight-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spotlight-img-box:hover img {
    transform: scale(1.05);
}

.spotlight-overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.45);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.spotlight-img-box:hover .spotlight-overlay-btn {
    background: rgba(11, 17, 32, 0.25);
}

.tour-icon-pulse {
    width: 60px;
    height: 60px;
    background: #ec4899;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.6);
    animation: pulse 2s infinite;
}

.spotlight-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-badge {
    display: inline-block;
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.35);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.spotlight-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 34px);
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.spotlight-text {
    color: #cbd5e1;
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.spotlight-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.spotlight-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 11.5px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.spotlight-chip i {
    color: #f472b6;
}

@media (max-width: 900px) {
    .spotlight-card {
        grid-template-columns: 1fr;
    }
    .spotlight-body {
        padding: 24px;
    }
}

/* VERTICAL FEED MODAL */
.vertical-tour-modal {
    position: fixed;
    inset: 0;
    background: #080d1a;
    z-index: 3000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.vertical-tour-modal.active {
    display: flex;
}

.vtour-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(236, 72, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 3100;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.vtour-back-btn {
    background: rgba(236, 72, 153, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.35);
    color: #f472b6;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.vtour-back-btn:active {
    background: #ec4899;
    color: #fff;
    transform: scale(0.96);
}

.vtour-center-info {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    overflow: hidden;
    padding: 0 6px;
}

.vtour-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vtour-counter {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
    padding: 3px 9px;
    border-radius: 14px;
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
}

.vtour-close-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.vtour-close-btn:active {
    background: #ef4444;
    color: #fff;
}

.vtour-feed {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 14px 10px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vtour-card {
    position: relative;
    background: #111827;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.vtour-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.vtour-img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 240px;
    background: #1e293b;
    object-fit: cover;
}

.vtour-end-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(236, 72, 153, 0.35);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vtour-end-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
}

.vtour-end-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
}

.vtour-end-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
}

.vtour-floating-bar {
    position: fixed;
    bottom: 20px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3100;
}

.vtour-fab-close {
    background: rgba(11, 17, 32, 0.92);
    border: 1px solid rgba(236, 72, 153, 0.35);
    color: #ffffff;
    height: 44px;
    padding: 0 18px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    transition: all 0.2s;
}

.vtour-fab-close:active {
    background: #ec4899;
}

.vtour-fab-top {
    background: rgba(11, 17, 32, 0.92);
    border: 1px solid rgba(236, 72, 153, 0.35);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    transition: all 0.2s;
}

.vtour-fab-top:active {
    background: #ec4899;
}


/* FLOATING LUXURY MUSIC PLAYER WIDGET */
.audio-player-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 40px;
    padding: 8px 16px 8px 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(236, 72, 153, 0.25);
    max-width: 380px;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}

.audio-player-widget:hover {
    border-color: rgba(236, 72, 153, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 30px rgba(236, 72, 153, 0.4);
}

.player-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.player-toggle-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

.equalizer-bars {
    display: none;
    align-items: flex-end;
    gap: 2.5px;
    height: 18px;
    width: 18px;
}

.equalizer-bars .bar {
    width: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    height: 4px;
    transition: height 0.2s;
}

.audio-playing .equalizer-bars {
    display: flex;
}

.audio-playing #pauseIcon {
    display: none !important;
}

.audio-playing .bar-1 { animation: eq1 0.8s infinite ease-in-out; }
.audio-playing .bar-2 { animation: eq2 0.6s infinite ease-in-out; }
.audio-playing .bar-3 { animation: eq3 0.9s infinite ease-in-out; }
.audio-playing .bar-4 { animation: eq4 0.7s infinite ease-in-out; }

@keyframes eq1 { 0%, 100% { height: 4px; } 50% { height: 16px; } }
@keyframes eq2 { 0%, 100% { height: 16px; } 50% { height: 6px; } }
@keyframes eq3 { 0%, 100% { height: 8px; } 50% { height: 18px; } }
@keyframes eq4 { 0%, 100% { height: 14px; } 50% { height: 5px; } }

.player-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 150px;
    flex-grow: 1;
}

.player-badge {
    font-size: 9.5px;
    font-weight: 700;
    color: #f472b6;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.player-track-name {
    font-size: 12px;
    font-weight: 600;
    color: #f8fafc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.player-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.player-btn:hover {
    background: rgba(236, 72, 153, 0.25);
    border-color: #ec4899;
    color: #ffffff;
    transform: scale(1.08);
}

.player-vol-box {
    width: 55px;
    display: flex;
    align-items: center;
}

.player-vol-box input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.15);
    height: 4px;
    border-radius: 2px;
    outline: none;
}

.player-vol-box input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ec4899;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(236, 72, 153, 0.8);
}

@media (max-width: 600px) {
    .audio-player-widget {
        bottom: 12px;
        left: 8px;
        right: 8px;
        max-width: calc(100% - 16px);
        padding: 6px 10px 6px 6px;
        gap: 8px;
        border-radius: 30px;
    }
    .player-toggle-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    .player-info {
        max-width: 95px;
    }
    .player-badge {
        font-size: 8.5px;
    }
    .player-track-name {
        font-size: 10.5px;
    }
    .player-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    .player-controls {
        gap: 6px;
    }
    .player-vol-box {
        display: flex !important;
        width: 48px;
    }
    .player-vol-box input[type="range"] {
        height: 4px;
    }
}
    .player-vol-box {
        display: none;
    }
    .player-info {
        max-width: 120px;
    }
}
