/* =================================================================
   VIP LUXURY PAGE STYLES
   Premium design for VIP Services page
   ================================================================= */

/* =================================================================
   LUXURIOUS HERO SECTION
   ================================================================= */

.vip-hero-luxury {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(45, 55, 72, 0.93) 100%),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2070') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.vip-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.vip-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.vip-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #d4af37;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #d4af37;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.vip-hero-badge i {
    font-size: 1.2rem;
}

.vip-hero-title {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
}

.vip-hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.vip-hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.vip-hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vip-hero-feature:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-5px);
}

.vip-hero-feature i {
    font-size: 2rem;
    color: #d4af37;
}

.vip-hero-feature span {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.vip-hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-vip-primary,
.btn-vip-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-vip-primary {
    background: #d4af37;
    color: #1a2332;
    border-color: #d4af37;
}

.btn-vip-primary:hover {
    background: #c9a02f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-vip-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-vip-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Scroll Indicator */
.vip-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 2s ease 1.5s both;
}

.vip-scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================================================
   VIP INTRODUCTION SECTION
   ================================================================= */

.vip-introduction {
    background: #ffffff;
}

.vip-label {
    display: inline-block;
    color: #d4af37;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.vip-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vip-intro-content h2 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.vip-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 1.5rem;
}

.vip-intro-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vip-highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.vip-highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a02f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.vip-highlight-text strong {
    display: block;
    color: #1a2332;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.vip-highlight-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #5a6b7d;
}

.vip-stats-card {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.vip-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vip-stat:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    transform: translateY(-5px);
}

.vip-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.vip-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =================================================================
   VIP LUXURY PACKAGE SECTION
   ================================================================= */

.vip-luxury-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vip-luxury-package-item h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.vip-luxury-package-item ul {
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    list-style: none;
    padding: 0;
}

/* =================================================================
   VIP CATEGORY SECTIONS
   ================================================================= */

.vip-category {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.vip-category:last-child {
    border-bottom: none;
}

.vip-category h2 {
    font-size: 2rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vip-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3d4852;
    margin-bottom: 1.5rem;
}

/* =================================================================
   RESPONSIVE STYLES
   ================================================================= */

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
    .vip-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .vip-hero-title {
        font-size: 3rem;
    }

    .vip-hero-subtitle {
        font-size: 1.2rem;
    }

    .vip-hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-hero-content {
        padding: 1.5rem;
    }

    .vip-scroll-indicator {
        bottom: 2rem;
    }

    .vip-category h2 {
        font-size: 1.75rem;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .vip-hero-luxury {
        min-height: 100vh;
        background-attachment: scroll;
        padding: 2rem 0;
    }

    .vip-hero-luxury .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .vip-hero-content {
        padding: 1rem 0.5rem;
        max-width: 100%;
    }

    .vip-hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .vip-hero-badge i {
        font-size: 1rem;
    }

    .vip-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .vip-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .vip-hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .vip-hero-feature {
        padding: 1.25rem;
    }

    .vip-hero-feature i {
        font-size: 1.75rem;
    }

    .vip-hero-feature span {
        font-size: 0.9rem;
    }

    .vip-hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-vip-primary,
    .btn-vip-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .vip-scroll-indicator {
        bottom: 1.5rem;
        font-size: 0.75rem;
    }

    .vip-scroll-line {
        height: 30px;
    }

    /* Introduction Section */
    .vip-intro-content h2 {
        font-size: 2rem;
    }

    .vip-intro-content p {
        font-size: 1rem;
    }

    .vip-highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .vip-highlight-text strong {
        font-size: 1rem;
    }

    .vip-highlight-text p {
        font-size: 0.9rem;
    }

    .vip-stats-card {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .vip-stat {
        padding: 1.25rem;
    }

    .vip-stat-number {
        font-size: 2.5rem;
    }

    .vip-stat-label {
        font-size: 0.9rem;
    }

    /* Category Sections */
    .vip-category {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .vip-category h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .vip-content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    /* Luxury Package Section */
    .vip-luxury-package-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vip-luxury-package-item h4 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }

    .vip-luxury-package-item ul {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    /* Ensure all inline-styled sections are responsive */
    section[style*="padding"] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Fix container overflow on mobile */
    .section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .vip-hero-title {
        font-size: 2rem;
    }

    .vip-hero-subtitle {
        font-size: 1rem;
    }

    .vip-intro-content h2 {
        font-size: 1.75rem;
    }

    .vip-stat-number {
        font-size: 2rem;
    }

    .vip-category h2 {
        font-size: 1.35rem;
    }

    .btn-vip-primary,
    .btn-vip-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* =================================================================
   ANIMATIONS
   ================================================================= */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
