﻿/* 💈 WHAT WE DO Section */
.services-section {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-card {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

    .service-card:hover {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    }

    .service-card .overlay {
        background: rgba(0,0,0,0.7);
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 25px;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .service-card:hover .overlay {
        opacity: 1;
    }

.service-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.price {
    margin-top: 15px;
    font-size: 1.2rem;
    border-top: 1px solid #d4af37;
    padding-top: 8px;
}

.text-gold {
    color: #d4af37 !important;
}
