/* Services Section Enhanced Styles */
.our-services {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 164, 37, 0.2) 0%, rgba(245, 164, 37, 0.1) 100%);
    border: 2px solid #f5a425;
    color: #f5a425;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.section-badge:hover::before {
    left: 100%;
}

/* Service Cards */
.service-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-radius: 20px;
    border: 1px solid rgba(245, 164, 37, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f5a425, #ff8c00, #f5a425);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(245, 164, 37, 0.5);
    box-shadow: 0 20px 60px rgba(245, 164, 37, 0.2);
}

.service-card-inner {
    padding: 40px 30px;
    position: relative;
    z-index: 1;
}

/* Icon Styling */
.service-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.service-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 164, 37, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover .service-icon-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.service-icon {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(245, 164, 37, 0.1) 0%, rgba(245, 164, 37, 0.05) 100%);
    border: 2px solid rgba(245, 164, 37, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #f5a425;
    transition: all 0.4s ease;
    transform: rotate(0deg);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(245, 164, 37, 0.2) 0%, rgba(245, 164, 37, 0.1) 100%);
    border-color: #f5a425;
    transform: rotate(360deg) scale(1.1);
}

/* Content */
.service-content {
    text-align: center;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: #f5a425;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #f5a425;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link:hover {
    color: #ff8c00;
    transform: translateX(5px);
}

.service-link i {
    transition: transform 0.3s;
}

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

/* Number Badge */
.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(245, 164, 37, 0.1);
    line-height: 1;
    transition: all 0.3s;
}

.service-card:hover .service-number {
    color: rgba(245, 164, 37, 0.2);
    transform: scale(1.2);
}

/* Load More Button */
.btn-load-more {
    position: relative;
    background: linear-gradient(135deg, #f5a425 0%, #ff8c00 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(245, 164, 37, 0.3);
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-load-more:hover::before {
    left: 100%;
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 164, 37, 0.5);
}

.btn-load-more:active {
    transform: translateY(-1px);
}

.btn-icon {
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-load-more:hover .btn-icon {
    transform: translateY(3px);
}

/* Stats Section */
.services-stats {
    background: linear-gradient(145deg, rgba(245, 164, 37, 0.05) 0%, rgba(245, 164, 37, 0.02) 100%);
    border: 1px solid rgba(245, 164, 37, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.services-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 164, 37, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f5a425 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    margin-left: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .service-card-inner {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 1.6rem;
    }
    
    .service-icon-wrapper,
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .btn-load-more {
        padding: 15px 40px;
        font-size: 0.9rem;
    }
}