/* VIP Services Section */

.vip-services {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2c5282 100%);
    position: relative;
    overflow: hidden;
}

.vip-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(243, 156, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-diamond, .floating-crown {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-diamond {
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    transform: rotate(45deg);
}

.floating-diamond:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-diamond:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-diamond:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-crown {
    font-size: 30px;
    color: var(--secondary-color);
}

.floating-crown:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 1s;
}

.floating-crown:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.vip-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.vip-services .section-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vip-services .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.vip-item {
    position: relative;
    padding: 50px 30px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
}

.vip-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(243, 156, 18, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.vip-item:hover .vip-card-bg {
    opacity: 1;
}

.vip-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.vip-item.featured {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.vip-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.vip-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vip-icon i {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vip-item:hover .vip-icon {
    transform: scale(1.1) rotateY(15deg);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.vip-item h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vip-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
}

.vip-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.vip-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.vip-features i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .vip-services .section-title {
        font-size: 2.5rem;
    }
    
    .vip-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vip-item {
        padding: 40px 25px;
    }
    
    .vip-icon {
        width: 80px;
        height: 80px;
    }
    
    .vip-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .vip-services {
        padding: 80px 0;
    }
    
    .vip-services .section-title {
        font-size: 2rem;
    }
    
    .vip-services .section-subtitle {
        font-size: 1.1rem;
    }
    
    .vip-item {
        padding: 30px 20px;
    }
}