/* commision.css */
/* 3D Swiper Styles */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 420px;
    /* Slightly taller for content */
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.swiper-slide h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.swiper-slide .commission-rate {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

.swiper-slide p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
    margin-bottom: 0;
}

.slide-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Gradients */
.g-1 {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
}

.g-2 {
    background: linear-gradient(135deg, #10B981, #3B82F6);
}

.g-3 {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.g-4 {
    background: linear-gradient(135deg, #6366F1, #EC4899);
}

.g-5 {
    background: linear-gradient(135deg, #8B5CF6, #F472B6);
}

.g-6 {
    background: linear-gradient(135deg, #EC4899, #EF4444);
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-category {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

.service-rate {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary, #3B82F6);
    margin: 8px 0;
}

.info-box {
    background: #EFF6FF;
    border-left: 4px solid var(--primary, #3B82F6);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 30px;
}
