/* ===== VIP REDESIGN 2026 ===== */
.navbar { top: 0 !important; }

/* === HERO === */
.vip-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vip-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 50%, #000 100%),
                linear-gradient(90deg, rgba(0,0,0,0.4), transparent, rgba(0,0,0,0.4));
    z-index: 1;
}
.vip-hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/images/VIP-Table-Area-Papaya-Zrce.jpg') center/cover no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
.vip-hero--sub .vip-hero-bg {
    background-image: url('../assets/images/VIP-Table-Area-Papaya-Zrce.jpg');
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.vip-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}
.vip-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--color-gold);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: eyebrowPulse 3s ease-in-out infinite;
}
@keyframes eyebrowPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(201,168,76,0.12); }
}
.vip-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 18px;
}
.vip-hero .hero-title em {
    font-style: normal;
    color: var(--color-gold);
}
.vip-hero .hero-subtitle {
    font-size: 1.05rem;
    color: var(--color-white-soft);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.vip-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-vip-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.btn-vip-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.35);
}
.btn-vip-primary svg { width: 20px; height: 20px; }
.btn-vip-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s ease;
}
.btn-vip-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
}
/* Trust badges */
.vip-trust-row {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}
.vip-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-white-soft);
    opacity: 0.85;
}
.vip-trust-item svg {
    color: var(--color-gold);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* === STATS BAR === */
.vip-stats {
    padding: 0;
    position: relative;
    z-index: 2;
    margin-top: -60px;
}
.vip-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(20,20,20,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 20px;
    padding: 40px 20px;
    gap: 10px;
}
.vip-stat {
    text-align: center;
    position: relative;
}
.vip-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(201,168,76,0.15);
}
.vip-stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1.2;
}
.vip-stat-label {
    font-size: 0.8rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* === HOW IT WORKS === */
.vip-how {
    padding: 100px 0;
    background: var(--color-bg);
}
.vip-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.vip-step {
    background: rgba(20,20,20,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}
.vip-step:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.vip-step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}
.vip-step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.vip-step h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}
.vip-step p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* === CLUB CARDS (REDESIGNED) === */
.vip-clubs {
    padding: 100px 0 80px;
    background: var(--color-bg-light);
}
.vip-club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.vip-card {
    background: rgba(20,20,20,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    position: relative;
}
.vip-card:hover {
    transform: translateY(-12px);
    border-color: var(--color-gold);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.1);
}
.vip-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}
.vip-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.vip-card:hover .vip-card-img img {
    transform: scale(1.1);
}
.vip-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10,10,10,0.9));
}
.vip-card-img .card-club-name {
    position: absolute;
    bottom: 16px;
    left: 20px;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}
.vip-popular-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePop 2s ease-in-out infinite;
}
@keyframes badgePop {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.vip-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.vip-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--color-gray);
    margin-bottom: 16px;
}
.vip-card-location svg {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
    flex-shrink: 0;
}
.vip-card-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(201,168,76,0.1), rgba(201,168,76,0.18), rgba(201,168,76,0.1));
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
    color: var(--color-gold);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(201,168,76,0.25);
    align-self: flex-start;
    margin-bottom: 8px;
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.vip-card-price-note {
    font-size: 0.75rem;
    color: var(--color-gray);
    margin-bottom: 18px;
    opacity: 0.7;
}
.vip-card-links {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}
.vip-card-link {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.8;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.vip-card-link:hover { opacity: 1; border-color: var(--color-gold); }
.vip-card-features {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}
.vip-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-white-soft);
    margin-bottom: 10px;
    opacity: 0.9;
}
.vip-card-features li::before {
    content: '✦';
    color: var(--color-gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}
.btn-vip-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    letter-spacing: 0.3px;
}
.btn-vip-book:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}
.btn-vip-book svg { width: 18px; height: 18px; }

/* === FAQ ACCORDION === */
.vip-faq {
    padding: 100px 0;
    background: var(--color-bg);
}
.vip-faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}
.vip-faq-item {
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.vip-faq-item.active { border-color: rgba(201,168,76,0.3); }
.vip-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: rgba(20,20,20,0.5);
    transition: background 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
}
.vip-faq-q:hover { background: rgba(30,30,30,0.8); }
.vip-faq-q h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 500;
}
.vip-faq-q .faq-icon {
    color: var(--color-gold);
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.vip-faq-item.active .faq-icon { transform: rotate(45deg); }
.vip-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.vip-faq-item.active .vip-faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}
.vip-faq-a p {
    color: var(--color-white-soft);
    opacity: 0.85;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* === CROSS-SELL === */
.vip-crosssell {
    padding: 80px 0;
    background: var(--color-bg-light);
}
.vip-crosssell-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.vip-crosssell-card {
    background: rgba(20,20,20,0.6);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}
.vip-crosssell-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.vip-crosssell-card .cs-icon { font-size: 2.5rem; margin-bottom: 16px; }
.vip-crosssell-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}
.vip-crosssell-card p {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.5;
    margin-bottom: 16px;
}
.cs-link {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

/* === FINAL CTA === */
.vip-final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg) 50%, var(--color-bg-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.vip-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.vip-final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}
.vip-final-cta p {
    color: var(--color-gray);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* === REVEAL ANIMATION === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .vip-hero { min-height: 90vh; }
    .vip-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 30px 16px; }
    .vip-stat:nth-child(2)::after { display: none; }
    .vip-steps { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .vip-club-grid { grid-template-columns: 1fr; }
    .vip-crosssell-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .vip-hero-buttons { flex-direction: column; align-items: center; }
    .vip-trust-row { gap: 16px; }
}

/* === IMAGE MODAL === */
.vip-image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.vip-image-modal.active {
    display: flex;
    opacity: 1;
}
.vip-image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.15);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.vip-image-modal.active .vip-image-modal-content {
    transform: scale(1);
}
.vip-image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    display: block;
    object-fit: contain;
    border: 1px solid rgba(201,168,76,0.2);
}
.vip-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--color-white-soft);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    line-height: 1;
}
.vip-modal-close:hover {
    color: var(--color-gold);
}
@media (max-width: 768px) {
    .vip-modal-close {
        top: -35px;
        right: -10px;
        font-size: 1.8rem;
    }
}
