/* ===========================================================================
   DC Section Header — dc-section-header
   =========================================================================== */

.dc-section-header {
    --dc-primary: #ef7a17;
    --dc-secondary: #032038;
}

.dc-section-header * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.dc-section-header {
    text-align: center;
    position: relative;
}
.dc-section-header--left {
    text-align: left;
}

.dc-section-header__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dc-section-header--left .dc-section-header__inner {
    align-items: flex-start;
}

.dc-section-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
    flex-direction: column;
}
.dc-section-header--left .dc-section-header__row {
    align-items: flex-end;
    flex-direction: row;
}

.dc-section-header--left .dc-section-header__content {
    flex: 1;
    min-width: 0;
}

/* Badge */
.dc-section-header .dc-section-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(239, 122, 23, 0.1), rgba(239, 122, 23, 0.05));
    border: 1px solid rgba(239, 122, 23, 0.2);
    border-radius: 50px;
    margin-bottom: 20px;
    animation: dc-sh-fade-in 0.6s ease-out forwards;
}

@keyframes dc-sh-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dc-section-header__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--dc-primary);
    border-radius: 50%;
    animation: dc-sh-pulse 2s ease-in-out infinite;
}

@keyframes dc-sh-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.dc-section-header__badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--dc-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Title */
.dc-section-header__title {
    font-family: 'Poppins', 'DM Sans', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--dc-secondary);
    line-height: 1.2;
    margin: 0;
    animation: dc-sh-fade-in 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.dc-section-header__highlight {
    color: var(--dc-primary);
    position: relative;
}

.dc-section-header__highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, rgba(239, 122, 23, 0.25), rgba(239, 122, 23, 0.1));
    border-radius: 4px;
    z-index: -1;
}

/* Subtitle */
.dc-section-header__subtitle {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
    margin: 18px 0 0 0;
    max-width: 600px;
    animation: dc-sh-fade-in 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

/* Navigation */
.dc-section-header__nav {
    flex-shrink: 0;
    animation: dc-sh-fade-in 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.dc-section-header__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dc-primary);
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--dc-primary);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.dc-section-header__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dc-primary);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.dc-section-header__link:hover::before {
    transform: translateX(0);
}

.dc-section-header__link:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 122, 23, 0.3);
}

.dc-section-header__link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.dc-section-header__link:hover svg {
    transform: translateX(5px);
}

/* Decorative line */
.dc-section-header__decoration {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    animation: dc-sh-fade-in 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.dc-section-header__line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--dc-primary), rgba(239, 122, 23, 0.3));
    border-radius: 2px;
}
.dc-section-header__line--flip {
    transform: scaleX(-1);
}

.dc-section-header__dots {
    display: flex;
    gap: 6px;
}

.dc-section-header__dot {
    width: 6px;
    height: 6px;
    background: var(--dc-primary);
    border-radius: 50%;
    opacity: 0.5;
}

.dc-section-header__dot:first-child {
    opacity: 1;
}

@media (max-width: 768px) {
    .dc-section-header__row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .dc-section-header--left .dc-section-header__row {
        align-items: flex-start;
    }
}
