/* ===== LUXURY SERVICES SECTION ===== */
.services {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/peluqueria-belladona-blurr.webp') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services .section-header h2 {
    color: #FFD700;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    text-align: center;
}

/* Luxury Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.luxury-service {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.luxury-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-service:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
}

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

/* Service Icon */
.luxury-service .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.luxury-service .service-icon svg {
    color: #000000;
    width: 35px;
    height: 35px;
}

/* Service Content */
.luxury-service .service-content h3 {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

.luxury-service .service-content p {
    color: #FFFFFF;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Service Details */
.service-details {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateY(-2px);
}

/* Service Pricing */
.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border-left: 3px solid #FFD700;
}

.price-range {
    color: #FFD700;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.price-currency {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 5px;
    opacity: 0.8;
}

.price-consult {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    width: 100%;
}

/* CTA Button */
.services .btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border: 2px solid #FFD700;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.services .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    
    .luxury-service {
        padding: 30px;
    }
    
    .luxury-service .service-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services .section-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .luxury-service {
        padding: 25px;
    }
    
    .luxury-service .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .luxury-service .service-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .luxury-service .service-content h3 {
        font-size: 1.5rem;
    }
    
    .luxury-service .service-content p {
        font-size: 1rem;
    }
    
    .service-features {
        gap: 8px;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .price-range {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services .section-header h2 {
        font-size: 2.2rem;
    }
    
    .luxury-service {
        padding: 20px;
    }
    
    .luxury-service .service-content h3 {
        font-size: 1.4rem;
    }
    
    .luxury-service .service-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-details {
        padding-top: 15px;
    }
    
    .service-price {
        padding: 12px 15px;
    }
    
    .price-range {
        font-size: 1.1rem;
    }
    
    .services .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Animation on scroll */
.luxury-service {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.luxury-service:nth-child(1) { animation-delay: 0.1s; }
.luxury-service:nth-child(2) { animation-delay: 0.2s; }
.luxury-service:nth-child(3) { animation-delay: 0.3s; }
.luxury-service:nth-child(4) { animation-delay: 0.4s; }
.luxury-service:nth-child(5) { animation-delay: 0.5s; }
.luxury-service:nth-child(6) { animation-delay: 0.6s; }

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

/* Premium touch effects */
.luxury-service:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.luxury-service:hover .feature-tag {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.luxury-service:hover .price-range {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}
