


/* ========================================================
   OUR EVENT MANAGEMENT & OPERATIONS SECTION (#000000 & #ed2227)
   ======================================================== */

.events-services-section {
    padding: 80px 0; /* Desktop Padding: 80px */
    background-color: #080808 !important;
}

.bg-black {
    background-color: #080808 !important;
}

.text-red {
    color: #ed2227 !important;
}

/* Red Gradient Text */
.text-gradient-red {
    background: linear-gradient(135deg, #FF5257 0%, #ed2227 60%, #990B0F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ed2227;
    display: inline-block;
}

/* Ambient Radial Background Lights */
.event-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.event-glow-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(237, 34, 39, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

/* Badge Styling */
.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(237, 34, 39, 0.4);
}

.event-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ed2227;
    border-radius: 50%;
    box-shadow: 0 0 10px #ed2227;
}

.event-badge .badge-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #FFFFFF;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.25;
}

.lead-desc {
    font-size: 15px;
    line-height: 1.7;
}

.max-w-700 {
    max-width: 700px;
}

/* ========================================================
   FROSTED GLASS CARDS ENGINE
   ======================================================== */

.event-glass-card {
    position: relative;
    height: 460px;
    border-radius: 18px;
    overflow: hidden;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event-glass-card:hover {
    border-color: #ed2227;
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(237, 34, 39, 0.28);
}

/* Card Image with Scale Animation */
.event-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.75);
}

.event-glass-card:hover .event-card-img {
    transform: scale(1.1);
    filter: brightness(0.45);
}

/* Frosted Glass Overlay */
.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        180deg, 
        rgba(10, 10, 10, 0.15) 0%, 
        rgba(0, 0, 0, 0.82) 50%,
        rgba(0, 0, 0, 0.98) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: all 0.4s ease;
}

.event-glass-card:hover .glass-overlay {
    background: linear-gradient(
        180deg, 
        rgba(17, 17, 17, 0.3) 0%, 
        rgba(17, 17, 17, 0.88) 40%,
        rgba(153, 11, 15, 0.92) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Card Body Content */
.event-card-body {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
}

/* Icon Container */
.card-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ed2227 0%, #990B0F 100%);
    color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(237, 34, 39, 0.4);
    transition: transform 0.3s ease;
}

.event-glass-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(-4deg);
    background: #FFFFFF;
    color: #ed2227;
}

.card-number {
    font-size: 32px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s ease;
}

.event-glass-card:hover .card-number {
    color: #FFFFFF;
}

.service-card-title {
    font-size: 21px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.service-card-desc {
    font-size: 13.5px;
    color: #DDDDDD;
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    font-size: 13px;
    color: #EEEEEE;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: #FF5257;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.event-glass-card:hover .service-link {
    color: #FFFFFF;
    transform: translateX(4px);
}

/* ========================================================
   MOBILE RESPONSIVE ADJUSTMENTS (PADDING 30px)
   ======================================================== */

@media (max-width: 767.98px) {
    .events-services-section {
        padding: 30px 0 !important; /* Mobile Padding: 30px */
    }

    .event-glass-card {
        height: 430px;
    }

    .event-card-body {
        padding: 25px 20px;
    }

    .service-card-title {
        font-size: 19px;
    }
}