/* Spa Experience Styles */
.spa-experience-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.spa-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #fff, #f8f8f8);
    border: 2px solid #f1f1f1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spa-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: width 0.3s ease;
}

.spa-tab:hover::before,
.spa-tab.active::before {
    width: 100%;
}

.spa-tab.active {
    background: #fff;
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.spa-tab i {
    font-size: 24px;
    color: #d4af37;
    margin-bottom: 8px;
}

.spa-tab span {
    font-weight: 600;
    color: #333;
}

.spa-experience-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
}

.spa-description {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.spa-description.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.spa-description h3 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.spa-description p {
    color: #666;
    line-height: 1.8;
}

.spa-experience-content {
    display: none;
}

.spa-experience-content.active {
    display: block;
    animation: fadeIn 0.6s ease forwards;
}

/* Video Tour Styles */
.video-tour-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #000;
}

.spa-tour-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-play-button:hover {
    background-color: rgba(212, 175, 55, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.video-caption {
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    color: #000;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.caption-icon i {
    font-size: 20px;
}

/* Photo Gallery Enhancements */
.gallery-carousel-container {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: white;
    padding: 20px 15px 15px;
    font-weight: 600;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .spa-experience-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .spa-tab {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
    }
    
    .spa-tab i {
        margin-bottom: 0;
    }
    
    .video-frame {
        height: 350px;
    }
}
