/* Marketing Dashboard Page Styles */

/* ===== PAGE INTRO ===== */
.marketing-dashboard .page-intro {
    padding: 70px 0 80px;
    text-align: center;
}

.marketing-dashboard .hero-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #181717;
    margin-bottom: 20px;
    line-height: 1.2;
}

.marketing-dashboard .hero-subtitle {
    font-size: 1.1rem;
    color: #797979;
    margin-bottom: 44px;
    line-height: 1.85;
}

/* ===== DASHBOARD HERO IMAGE ===== */
.dashboard-hero-img {
    position: relative;
    max-height: 560px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
    margin-bottom: 50px;
}

.dashboard-hero-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
    pointer-events: none;
}

.dashboard-hero-img img {
    width: 100%;
    display: block;
}

/* ===== SECTION NAV ===== */
.section-nav {
    margin-top: 10px;
}

.section-nav-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.section-nav-list a {
    display: inline-block;
    padding: 10px 26px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #181717;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.25s ease;
    background-color: #fff;
}

.section-nav-list a:hover {
    border-color: #da2d26;
    color: #da2d26;
    background-color: #fff8f8;
}

/* ===== SECTION LABEL ===== */
.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #da2d26;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 26px;
    height: 1.5px;
    background: currentColor;
    flex-shrink: 0;
}

/* ===== DASHBOARD SECTIONS ===== */
.dashboard-section {
    padding: 100px 0;
}


.dashboard-section.alt-bg {
    background-color: #f8f8f8;
}

/* ===== DARK SECTION ===== */
.dashboard-section.dark-section {
    background-color: #333;
    color: #fff;
}

.dark-section .global_title {
    color: #fff;
}

.dark-section .section-desc {
    color: rgba(255, 255, 255, 0.90);
}

.dark-section .feature-highlight h3 {
    color: #fff;
}

.dark-section .feature-highlight p {
    color: rgba(255, 255, 255, 0.90);
}

.dark-section .feature-list li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* ===== SECTION HEADER ===== */
.dashboard-section .section-header {
    margin-bottom: 56px;
}

.section-desc {
    font-size: 1.05rem;
    color: #797979;
    line-height: 1.8;
    margin-top: 14px;
    margin-bottom: 0;
}

/* ===== CONTROLS CALLOUT ===== */
.controls-callout {
    margin-bottom: 60px;
}

.controls-callout-text {
    font-size: 0.92rem;
    color: #999;
    margin-bottom: 14px;
    letter-spacing: 0.1px;
}

.controls-img-wrapper {
    display: inline-block;
    max-width: 760px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.controls-img-wrapper img {
    display: block;
    width: 100%;
}

/* ===== FEATURE HIGHLIGHT ===== */
.feature-highlight {
    align-items: center;
}

.feature-highlight h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #181717;
    margin-bottom: 14px;
    line-height: 1.3;
}

.feature-highlight p {
    font-size: 1rem;
    color: #797979;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: #797979;
    padding: 9px 0 9px 24px;
    position: relative;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: #da2d26;
    border-radius: 50%;
    opacity: 0.3;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.feature-list li:hover {
    color: #666;
}

.feature-list li.is-active {
    font-weight: 700;
    color: #181717;
}

.feature-list li.is-active::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.25);
}

/* Dark section feature list */
.dark-section .feature-list li {
    color: rgba(255, 255, 255, 0.65);
}

.dark-section .feature-list li:hover {
    color: rgba(255, 255, 255, 0.95);
}

.dark-section .feature-list li.is-active {
    color: #fff;
}

/* ===== SCREENSHOT WRAPPER ===== */
.screenshot-wrapper {
    border-radius: 10px;
    padding:10px;
    overflow: hidden;
    box-shadow: 0 6px 36px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 48px rgba(0, 0, 0, 0.15);
}

.screenshot-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

/* Fixed-height centered images inside slider — prevents section height from shifting */
.interactive-slider .screenshot-wrapper {
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.07);
    cursor: default;
    transition: none;
    margin:5px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    overflow: hidden;
}

.interactive-slider .screenshot-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.interactive-slider .screenshot-wrapper:hover {
    transform: none;
    box-shadow: none;
}

.dark-section .interactive-slider .screenshot-wrapper {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.07);
}

/* ===== SLIDER CONTAINER & CUSTOM NAV ===== */
.slider-container {
    position: relative;
}

.slider-btn {
    position: absolute;
    top: 225px; /* half of the fixed 450px screenshot height */
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid #e0e0e0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 0.82rem;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
    padding: 0;
    line-height: 1;
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}

.slider-btn:hover {
    background: #da2d26;
    border-color: #da2d26;
    color: #fff;
    box-shadow: 0 4px 16px rgba(218, 45, 38, 0.3);
}

/* Dark section custom nav */
.dark-section .slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
    box-shadow: none;
}

.dark-section .slider-btn:hover {
    background: #da2d26;
    border-color: #da2d26;
    color: #fff;
    box-shadow: 0 4px 16px rgba(218, 45, 38, 0.4);
}

/* ===== SLIDER DOTS ===== */
.interactive-slider.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 18px;
    line-height: 1;
}

.interactive-slider.owl-carousel .owl-dots .owl-dot {
    display: inline-block !important;
    padding: 4px !important;
    cursor: pointer;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.interactive-slider.owl-carousel .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    background: #ccc !important;
    border-radius: 50%;
    display: block;
    margin: 0;
    transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.interactive-slider.owl-carousel .owl-dots .owl-dot.active span,
.interactive-slider.owl-carousel .owl-dots .owl-dot:hover span {
    background: #da2d26 !important;
    width: 20px;
    border-radius: 4px;
}

.dark-section .interactive-slider.owl-carousel .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.25) !important;
}

.dark-section .interactive-slider.owl-carousel .owl-dots .owl-dot.active span,
.dark-section .interactive-slider.owl-carousel .owl-dots .owl-dot:hover span {
    background: #da2d26 !important;
}

/* ===== QUARTERLY FUNNEL FEATURE ===== */
.funnel-feature {
    margin-top: 80px;
    padding-top: 70px;
    border-top: 1px solid #e8e8e8;
    align-items: center;
}

.funnel-feature .section-label {
    margin-bottom: 12px;
}

.funnel-feature h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #181717;
    margin-bottom: 16px;
    line-height: 1.3;
}

.funnel-feature p {
    font-size: 1rem;
    color: #797979;
    line-height: 1.8;
    margin-bottom: 12px;
}

.funnel-feature p:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .marketing-dashboard .page-intro {
        padding: 60px 0;
    }

    .marketing-dashboard .hero-heading {
        font-size: 2.3rem;
    }

    .dashboard-hero-img {
        max-height: 400px;
        margin-bottom: 36px;
    }

    .dashboard-section {
        padding: 70px 0;
    }

    .dashboard-section .section-header {
        margin-bottom: 40px;
    }

    .controls-callout {
        margin-bottom: 44px;
    }

    .feature-highlight h3 {
        font-size: 1.35rem;
        margin-top: 28px;
    }

    .funnel-feature {
        margin-top: 70px;
        padding-top: 54px;
    }

    .funnel-feature h3 {
        font-size: 1.35rem;
        margin-top: 28px;
    }
}

@media (max-width: 767.98px) {
    .marketing-dashboard .hero-heading {
        font-size: 1.85rem;
    }

    .marketing-dashboard .hero-subtitle {
        font-size: 0.97rem;
    }

    .dashboard-section {
        padding: 50px 0;
    }

    .dashboard-hero-img {
        max-height: 300px;
        margin-bottom: 28px;
    }

    .section-nav-list a {
        font-size: 0.82rem;
        padding: 8px 16px;
    }

    .controls-callout {
        margin-bottom: 36px;
    }

    .funnel-feature {
        margin-top: 40px;
        padding-top: 40px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}
