/* =========================================
   WBA BAYİLİK SİSTEMİ - MODERN TASARIM
========================================= */

.wba-bayi-wrapper {
    font-family: 'Outfit', 'Space Grotesk', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background: #f8fafc;
}

.wba-bayi-hero {
    background: linear-gradient(135deg, #0e1e32, #006c9e);
    padding: 100px 20px;
    text-align: center;
    color: white;
    border-radius: 0 0 40px 40px;
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.wba-bayi-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.wba-bayi-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.wba-bayi-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.wba-bayi-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.wba-bayi-hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.wba-bayi-hero-features span {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
}

.wba-bayi-btn-primary {
    background: #FFD700;
    color: #111;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.wba-bayi-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.wba-bayi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 20;
}

.wba-bayi-section {
    background: white;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.wba-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.wba-section-header h2 {
    font-size: 2.2rem;
    color: #1a202c;
    font-weight: 800;
    margin-bottom: 10px;
}

.wba-section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Steps Grid */
.wba-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.wba-step-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s;
}

.wba-step-card:hover {
    transform: translateY(-10px);
    border-color: #006c9e;
}

.wba-step-icon {
    width: 60px;
    height: 60px;
    background: #006c9e;
    color: white;
    font-size: 28px;
    font-weight: 800;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.wba-step-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Info Box */
.wba-info-box {
    background: #ebf8ff;
    border-left: 5px solid #006c9e;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.wba-info-icon {
    font-size: 2rem;
}

/* 2 Columns Layout */
.wba-grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wba-feature-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.wba-check-list {
    list-style: none;
    padding: 0;
}

.wba-check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.wba-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: #48bb78;
    font-weight: 900;
    font-size: 1.2rem;
    background: #e6ffed;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Ad Card */
.wba-premium-card {
    background: linear-gradient(45deg, #1A202C, #2D3748);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.wba-premium-card h3 {
    color: #A0AEC0;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.wba-premium-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #E2E8F0;
}

.wba-discount-badge {
    display: inline-block;
    background: #ff0055;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
}

/* Rules Section */
.wba-rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.wba-rule-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.wba-rule-header {
    background: #006c9e;
    color: white;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wba-rule-header i {
    font-size: 1.6rem;
    font-style: normal;
}

.wba-rules-list {
    list-style: none;
    padding: 30px;
    margin: 0;
}

.wba-rules-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e2e8f0;
}

.wba-rules-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wba-rules-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #006c9e;
    font-size: 1.5rem;
    top: -5px;
}

/* CTA Footer */
.wba-bayi-cta {
    background: #006c9e;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 108, 158, 0.2);
}

.wba-btn-light {
    background: white;
    color: #006c9e;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.wba-btn-light:hover {
    transform: scale(1.05);
    background: #f1f1f1;
}

/* Responsiveness */
@media (max-width: 991px) {

    .wba-steps-grid,
    .wba-grid-2-col,
    .wba-rules-grid {
        grid-template-columns: 1fr;
    }

    .wba-bayi-section {
        padding: 40px 20px;
    }

    .wba-bayi-hero h1 {
        font-size: 2.2rem;
    }
}