/* Modern Services Section */
.services-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

/* Modern Service Card */
.service-modern-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fff 0%, #888 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modern-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-modern-card:hover::before {
    transform: scaleX(1);
}

/* Icon */
.service-modern-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-modern-icon i {
    font-size: 2rem;
    color: #fff;
    transition: all 0.4s ease;
}

.service-modern-card:hover .service-modern-icon {
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    transform: rotate(360deg) scale(1.1);
}

.service-modern-card:hover .service-modern-icon i {
    color: #000;
}

/* Title */
.service-modern-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 60px;
}

/* Divider */
.service-modern-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
    margin-bottom: 25px;
}

/* List */
.service-modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modern-list li {
    color: #aaa;
    font-size: 0.95rem;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.service-modern-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #666;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-modern-list li:hover {
    color: #fff;
    padding-left: 30px;
}

.service-modern-list li:hover::before {
    color: #fff;
    left: 5px;
}

/* Modern Statistics */
.stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-modern-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-modern-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-modern-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-modern-label {
    font-size: 0.95rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Responsive Philosophy Text */
.philosophy__text {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    line-height: 1.5 !important;
}

.philosophy__subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem) !important;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .service-modern-card {
        padding: 35px 25px;
    }

    .stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-modern {
        padding: 80px 0;
    }

    .services-header {
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-modern-card {
        padding: 30px 20px;
    }

    .service-modern-title {
        font-size: 1.2rem;
        min-height: auto;
    }

    .service-modern-icon {
        width: 60px;
        height: 60px;
    }

    .service-modern-icon i {
        font-size: 1.5rem;
    }

    .stats-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-modern-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-subtitle {
        font-size: 1rem;
    }

    .service-modern-list li {
        font-size: 0.9rem;
        padding: 8px 0;
        padding-left: 20px;
    }
}