/* ==========================================================================
   SERVICES MATRIX SECTION STYLING - BRAND PROMOTIONWALA
   ========================================================================== */

/* Section Wrapper */
.services-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #0B0F19 !important;
    overflow: hidden;
}

.bg-dark-agency {
    background-color: #0B0F19 !important;
}

.max-w-700 {
    max-width: 700px;
}

/* Service Luxury Glass Card */
.service-card-luxury {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 38px 30px;
    height: 100%;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    z-index: 1;
}

/* Card Glow Effect on Hover */
.service-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(249, 115, 22, 0.15), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card-luxury:hover {
    background: rgba(30, 41, 59, 0.85);
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(249, 115, 22, 0.15);
}

.service-card-luxury:hover::before {
    opacity: 1;
}

/* Service Icon Styling */
.service-icon {
    width: 65px;
    height: 65px;
    background: rgba(249, 115, 22, 0.12);
    color: #F97316;
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.service-card-luxury:hover .service-icon {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: #FFFFFF;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35);
}

/* Card Typography */
.service-card-luxury h3 {
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.service-card-luxury p {
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Explore Link Styling */
.service-link {
    color: #F59E0B;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #38BDF8;
}

.service-card-luxury:hover .service-link {
    color: #F97316;
}

.service-card-luxury:hover .service-link i {
    transform: translateX(6px);
}

/* Mobile & Tablet Responsive Adjustments */
@media (max-width: 991.98px) {
    .services-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .service-card-luxury {
        padding: 28px 22px;
    }
}