/* Premium Section Headers - v2.0 */
:root {
    /* Light Mode Colors */
    --landing-primary: #e83e8c;
    --landing-secondary: #0ea5e9;
    --landing-text-primary: #000000;
    --landing-text-secondary: #343a40;
    --landing-text-muted: #343a40;
    --landing-border-color: #dee2e6;
    --landing-hover-bg: #fff5f7;
    --landing-kicker-bg-odd: linear-gradient(135deg, #fff5f7, #ffe0e6);
    --landing-kicker-bg-even: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    --landing-kicker-border-odd: rgba(232, 62, 140, 0.2);
    --landing-kicker-border-even: rgba(14, 165, 233, 0.2);
    --landing-gradient-odd: linear-gradient(90deg, #e83e8c, #d63384);
    --landing-gradient-even: linear-gradient(90deg, #0ea5e9, #38bdf8);
}

 :root[data-bs-theme="light"],
 :root[data-theme="light"] {
     --landing-primary: #e83e8c;
     --landing-secondary: #0ea5e9;
     --landing-text-primary: #000000;
     --landing-text-secondary: #343a40;
     --landing-text-muted: #343a40;
     --landing-border-color: #dee2e6;
     --landing-hover-bg: #fff5f7;
     --landing-kicker-bg-odd: linear-gradient(135deg, #fff5f7, #ffe0e6);
     --landing-kicker-bg-even: linear-gradient(135deg, #f0f9ff, #e0f2fe);
     --landing-kicker-border-odd: rgba(232, 62, 140, 0.2);
     --landing-kicker-border-even: rgba(14, 165, 233, 0.2);
     --landing-gradient-odd: linear-gradient(90deg, #e83e8c, #d63384);
     --landing-gradient-even: linear-gradient(90deg, #0ea5e9, #38bdf8);
 }

.landing-section {
    position: relative;
}
.landing-section-head {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}
.landing-section-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--landing-gradient-odd);
    border-radius: 2px;
}

@media (min-width: 992px) {
    .landing-section-head {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        gap: 14px;
    }
    .landing-section-head::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .landing-section-head > div {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .landing-section-head .landing-kicker {
        justify-content: center;
    }
    .landing-section-head h2 {
        justify-content: center;
    }
    .landing-section-head .text-secondary {
        margin-left: auto;
        margin-right: auto;
    }
    .landing-section-head > .d-flex {
        width: 100%;
        justify-content: center !important;
    }
}
.landing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    color: var(--landing-primary);
    background: var(--landing-kicker-bg-odd);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--landing-kicker-border-odd);
    margin-bottom: 0.75rem !important;
}
.landing-kicker::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--landing-primary);
    border-radius: 50%;
}
.landing-section-head h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--landing-text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.landing-section-head h2 i {
    color: var(--landing-primary) !important;
    opacity: 1 !important;
}
.landing-section-head .text-secondary {
    font-size: 1rem;
    color: var(--landing-text-secondary);
    max-width: 600px;
    line-height: 1.6;
}
.landing-section-head .btn-outline-secondary {
    border-color: var(--landing-border-color);
    color: var(--landing-text-primary);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.landing-section-head .btn-outline-secondary:hover {
    border-color: var(--landing-primary);
    color: var(--landing-primary);
    background: var(--landing-hover-bg);
}

/* Landing muted text */
.landing-muted {
    font-size: 0.95rem;
    color: var(--landing-text-muted);
    opacity: 1;
}

/* Alternatif renk şemaları */
.landing-section:nth-child(even) .landing-kicker {
    background: var(--landing-kicker-bg-even);
    color: var(--landing-secondary);
    border-color: var(--landing-kicker-border-even);
}
.landing-section:nth-child(even) .landing-kicker::before {
    background: var(--landing-secondary);
}
.landing-section:nth-child(even) .landing-section-head h2 i {
    color: var(--landing-secondary) !important;
}
.landing-section:nth-child(even) .landing-section-head::after {
    background: var(--landing-gradient-even);
}

/* Dark Mode Support - Auto detection */
@media (prefers-color-scheme: dark) {
    :root:not([data-bs-theme="light"]):not([data-theme="light"]) {
        --landing-text-primary: #f8f9fa;
        --landing-text-secondary: #adb5bd;
        --landing-text-muted: #adb5bd;
        --landing-border-color: #495057;
        --landing-hover-bg: rgba(232, 62, 140, 0.15);
        --landing-kicker-bg-odd: linear-gradient(135deg, rgba(232, 62, 140, 0.15), rgba(214, 51, 132, 0.1));
        --landing-kicker-bg-even: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(56, 189, 248, 0.1));
        --landing-kicker-border-odd: rgba(232, 62, 140, 0.3);
        --landing-kicker-border-even: rgba(14, 165, 233, 0.3);
    }
    .landing-section-head h2 {
        color: var(--landing-text-primary);
    }
    .landing-section-head .text-secondary,
    .landing-muted {
        color: var(--landing-text-secondary);
    }
    .landing-kicker {
        background: var(--landing-kicker-bg-odd);
        border-color: var(--landing-kicker-border-odd);
    }
    .landing-section-head .btn-outline-secondary {
        border-color: var(--landing-border-color);
        color: var(--landing-text-primary);
    }
    .landing-section-head .btn-outline-secondary:hover {
        border-color: var(--landing-primary);
        color: var(--landing-primary);
        background: var(--landing-hover-bg);
    }
    .landing-section:nth-child(even) .landing-kicker {
        background: var(--landing-kicker-bg-even);
        border-color: var(--landing-kicker-border-even);
    }
}

 :root[data-bs-theme="dark"],
 :root[data-theme="dark"] {
    --landing-text-primary: #f8f9fa;
    --landing-text-secondary: #adb5bd;
    --landing-text-muted: #adb5bd;
    --landing-border-color: #495057;
    --landing-hover-bg: rgba(232, 62, 140, 0.15);
    --landing-kicker-bg-odd: linear-gradient(135deg, rgba(232, 62, 140, 0.15), rgba(214, 51, 132, 0.1));
    --landing-kicker-bg-even: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(56, 189, 248, 0.1));
    --landing-kicker-border-odd: rgba(232, 62, 140, 0.3);
    --landing-kicker-border-even: rgba(14, 165, 233, 0.3);
}

 :root[data-bs-theme="dark"] .landing-section-head h2,
 :root[data-theme="dark"] .landing-section-head h2 {
    color: var(--landing-text-primary);
}
 :root[data-bs-theme="dark"] .landing-section-head .text-secondary,
 :root[data-bs-theme="dark"] .landing-muted,
 :root[data-theme="dark"] .landing-section-head .text-secondary,
 :root[data-theme="dark"] .landing-muted {
    color: var(--landing-text-secondary);
}
 :root[data-bs-theme="dark"] .landing-kicker,
 :root[data-theme="dark"] .landing-kicker {
    background: var(--landing-kicker-bg-odd);
    border-color: var(--landing-kicker-border-odd);
}
 :root[data-bs-theme="dark"] .landing-section-head .btn-outline-secondary,
 :root[data-theme="dark"] .landing-section-head .btn-outline-secondary {
    border-color: var(--landing-border-color);
    color: var(--landing-text-primary);
}
 :root[data-bs-theme="dark"] .landing-section-head .btn-outline-secondary:hover,
 :root[data-theme="dark"] .landing-section-head .btn-outline-secondary:hover {
    border-color: var(--landing-primary);
    color: var(--landing-primary);
    background: var(--landing-hover-bg);
}
 :root[data-bs-theme="dark"] .landing-section:nth-child(even) .landing-kicker,
 :root[data-theme="dark"] .landing-section:nth-child(even) .landing-kicker {
    background: var(--landing-kicker-bg-even);
    border-color: var(--landing-kicker-border-even);
}
