/* ================================
   Trust Badges Section
================================ */
.trust-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 40px 0;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.trust-section .trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
}

.trust-section .trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.trust-section .trust-badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.trust-section .badge-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.trust-section .badge-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.trust-section .badge-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* ================================
   Services Section
================================ */
.services-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.services-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-section .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    color: #667eea;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.services-section .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.services-section .section-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Services Grid */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Service Card */
.services-section .service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.services-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.services-section .service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.services-section .service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 16px;
    color: #667eea;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.services-section .service-card:hover .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.services-section .service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.services-section .service-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

/* Service Features List */
.services-section .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.services-section .service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #475569;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.services-section .service-features li:last-child {
    border-bottom: none;
}

.services-section .service-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #10b981;
}

/* Service Link */
.services-section .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-section .service-link:hover {
    gap: 12px;
    color: #764ba2;
}

.services-section .service-link svg {
    rotate: 180deg;
    transition: transform 0.3s ease;
}

.services-section .service-link:hover svg {
    transform: translateX(-3px);
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 1024px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-section .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .trust-section .trust-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-section .section-title {
        font-size: 28px;
    }

    .services-section .section-description {
        font-size: 16px;
    }

    .services-section .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services-section .section-header {
        margin-bottom: 40px;
    }

    .services-section .section-title {
        font-size: 24px;
    }

    .trust-section .trust-badge-item {
        padding: 15px;
    }

    .trust-section .badge-icon {
        width: 50px;
        height: 50px;
    }

    .trust-section .badge-icon svg {
        width: 30px;
        height: 30px;
    }
}
