.premium-services {
    background-color: #121212;
    padding: 60px 20px;
    text-align: center;
    color: #f5f5f5;
}

.services-header {
    margin-bottom: 40px;
    text-align: center;
}

.services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #dfb84d;
    line-height: 1.2;
}

.services-header .special-text {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #dfb84d;
    display: block;
    margin-bottom: -20px;
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item {
    text-align: center;
    width: 22%;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(223, 184, 77, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(223, 184, 77, 0.6);
}

.service-item img {
    width: 80%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(223, 184, 77, 0.7));
    transition: transform 0.3s ease-in-out;
}

.service-item img:hover {
    transform: scale(1.05);
}

.service-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    margin-top: 10px;
    color: #dfb84d;
}

@media (max-width: 1024px) {
    .service-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .service-item {
        width: 90%;
    }
}
