/* Beauty Services Cards */
.services-cards {
    padding: 80px 0;
    background: #fdfcf8;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-item:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 30px;
    text-align: center;
    background: white;
}

.service-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 15px;
}

.btn-more {
    display: inline-block;
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.btn-more:hover {
    color: #B8941F;
    transform: translateX(5px);
}

/* Interior Gallery */
.interior-gallery {
    padding: 100px 0;
    background: #f8f7f3;
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.interior-photo {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.interior-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.interior-photo:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-content h3 {
        font-size: 0.9rem;
    }
    
    .interior-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .interior-photo {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card-image {
        height: 150px;
    }
    
    .service-card-content h3 {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .btn-more {
        font-size: 0.85rem;
    }
}
