/* Services Section */
.services-section {
    background-color: #0B0B0B;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(200, 169, 81, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.section-header h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: #D4AF37;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #F2F2F2, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Cards */
.service-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(200, 169, 81, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(200, 169, 81, 0.3);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 11, 11, 0.2), rgba(11, 11, 11, 0.8));
}

.service-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #D4AF37;
    font-size: 1.5rem;
    border: 1px solid rgba(200, 169, 81, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(200, 169, 81, 0.2);
    transform: rotate(10deg);
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F2F2F2;
}

.service-content p {
    color: rgba(242, 242, 242, 0.7);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: #D4AF37;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #F2E5C4;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .services-section {
        padding: 80px 0;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
}
