:root {
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-glow: rgba(245, 158, 11, 0.4);
    --bg-glass: rgba(15, 23, 42, 0.78);
    --bg-glass-hover: rgba(30, 41, 59, 0.92);
    --border-glass: rgba(255, 255, 255, 0.12);
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
    --bg-dark: #0b1120;
}

* {
    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);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding: 20px 16px;
}

/* TOP BAR (LANG SWITCHER & PORTAL BRAND) */
.top-nav-bar {
    max-width: 1080px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 16px;
    z-index: 100;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3px 6px;
    gap: 4px;
}

.lang-switcher-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 18px;
    font-size: 12px;
    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;
    box-shadow: 0 2px 10px var(--accent-glow);
}

/* BACKGROUND VIDEO */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) saturate(1.1);
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 17, 32, 0.55) 0%, rgba(11, 17, 32, 0.92) 100%);
    z-index: -1;
}

/* MAIN WRAPPER */
.portal-wrapper {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

/* HERO HEADER */
.hero {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
}

.badge-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5.5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: clamp(14px, 2.5vw, 17px);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* GRID OF SITES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.service-card {
    background: var(--bg-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 24px;
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    background: var(--bg-glass-hover);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--accent-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent);
    color: #0b1120;
}

.card-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.card-footer i {
    transition: transform 0.3s ease;
}

.service-card:hover .card-footer i {
    transform: translateX(4px);
}

/* SECTION: HISTORY & CONSTRUCTION STAGES */
.history-section {
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.history-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.history-header .badge-loc {
    margin-bottom: 12px;
}

.history-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 36px);
    color: #fff;
    margin-bottom: 14px;
}

.history-intro {
    color: #cbd5e1;
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 30px;
    background: rgba(11, 17, 32, 0.55);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
}

.stage-card {
    background: rgba(11, 17, 32, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
}

.stage-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px var(--accent-glow);
}

.stage-img-box {
    position: relative;
    height: 190px;
    cursor: pointer;
    overflow: hidden;
}

.stage-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.stage-card:hover .stage-img-box img {
    transform: scale(1.06);
}

.stage-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(4px);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.stage-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stage-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
}

.stage-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-tour-stage {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0b1120;
    border: none;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    width: 100%;
}

.btn-tour-stage:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--accent-glow);
}

/* 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(245, 158, 11, 0.25);
    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(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--accent);
    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: var(--accent);
    color: #0b1120;
    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(245, 158, 11, 0.2);
    color: var(--accent);
    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(245, 158, 11, 0.3);
    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: 3200;
}

.vtour-fab-close {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #f8fafc;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.2s;
}

.vtour-fab-close i {
    color: var(--accent);
}

.vtour-fab-close:active {
    background: var(--accent);
    color: #0b1120;
}

.vtour-fab-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

footer strong {
    color: #ffffff;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(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;
}




/* COMPACT SOCIAL SHARE PANEL (BOTTOM RIGHT) */
.vtour-card-header {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    pointer-events: none;
}

.vtour-badge {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    color: #f59e0b;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(245, 158, 11, 0.35);
    pointer-events: auto;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.vtour-card-share {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 24px;
    padding: 3px 6px;
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.vtour-share-label {
    font-size: 11px;
    color: #94a3b8;
    padding-left: 4px;
    padding-right: 2px;
}

.vtour-share-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    text-decoration: none;
}

.vtour-share-btn:hover {
    transform: scale(1.18);
}

.vtour-share-btn.tg { color: #229ED9; }
.vtour-share-btn.tg:hover { background: #229ED9; color: #fff; }

.vtour-share-btn.wa { color: #25D366; }
.vtour-share-btn.wa:hover { background: #25D366; color: #fff; }

.vtour-share-btn.vb { color: #7360F2; }
.vtour-share-btn.vb:hover { background: #7360F2; color: #fff; }

.vtour-share-btn.fb { color: #1877F2; }
.vtour-share-btn.fb:hover { background: #1877F2; color: #fff; }

.vtour-share-btn.vk { color: #0077FF; }
.vtour-share-btn.vk:hover { background: #0077FF; color: #fff; }

.vtour-share-btn.copy { color: #f59e0b; }
.vtour-share-btn.copy:hover { background: #f59e0b; color: #000; }

.vtour-floating-bar {
    position: fixed;
    bottom: 18px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3200;
}

.vtour-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.5);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    z-index: 999999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.vtour-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media (max-width: 480px) {
    .vtour-share-btn {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    .vtour-card-share {
        bottom: 8px;
        right: 8px;
        gap: 4px;
        padding: 2px 4px;
    }
    .vtour-share-label {
        display: none;
    }
}
