/* services.css - Services section and fun facts */

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-list {
    margin-bottom: 60px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-item h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   FUN FACTS / VIDEO SECTION
   ============================================= */
.fun-facts.video.section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(243, 85, 37, 0.1));
    position: relative;
}

.fun-facts.video.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/video-bg.jpg') center center/cover;
    z-index: -1;
}

.fun-facts {
    text-align: center;
    margin-top: 125px;
}

.fun-facts .section-heading h6 {
    color: #f35525;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.fun-facts .counter {
    background-color: #ffeee9;
    position: relative;
    border-radius: 10px;
    width: 270px;
    padding: 20px 0px;
    display: inline-block;
}

.fun-facts .counter h2,
.fun-facts .counter p {
    display: inline-flex;
    vertical-align: middle;
}

.fun-facts .counter p {
    text-align: left;
    font-size: 16px;
    color: #1e1e1e;
    font-weight: 600;
    line-height: 28px;
}

.fun-facts .counter h2 {
    font-size: 30px;
    color: #f35525;
}

.fun-facts .counter:after {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #f35525;
    border-radius: 50%;
    content: '';
    right: -25px;
    top: -25px;
}

.fun-facts .wrapper {
    margin-top: 40px;
}

/* =============================================
   SPECIAL COUNTER STYLES
   ============================================= */
.counter-no-number {
    position: relative;
}

.counter-placeholder {
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    margin: 0 !important;
}

.fun-facts .counter-no-number .count-text {
    position: relative;
    z-index: 2;
    color: #1e1e1e;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin-top: 10px;
}
