/* =========================================
   PREMIUM SECTIONS - SLS FOREX
   ========================================= */

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-card .icon-box {
    width: 90px;
    height: 90px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .icon-box {
    background: white;
    color: #10b981;
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.service-card:hover h3 {
    color: white;
}

.service-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    transition: color 0.4s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Why Choose Us Section */
.bg-soft-blue {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #10b981;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-card .icon-box {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.4s ease;
    transform: rotate(45deg);
}

.feature-card .icon-box i {
    transform: rotate(-45deg);
}

.feature-card:hover .icon-box {
    background: #10b981;
    color: white;
    transform: rotate(45deg) scale(1.1);
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* How We Work Section */
.bg-dark-section {
    background: #0f172a;
    color: white;
    padding: 5rem 0;
}

.steps-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 4rem;
    gap: 2rem;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    flex: 1;
    z-index: 1;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1e293b;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px #0f172a;
    border: 2px solid #10b981;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background: #10b981;
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: white;
}

.step-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .feature-card {
        padding: 2rem 1.5rem;
    }

    .steps-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .steps-grid::before {
        width: 4px;
        height: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}