/* ========================================
   Premium Service Layouts (Recreated)
   ======================================== */

.service-hero-premium {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: var(--bg-white);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    z-index: 1;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-premium-content {
    z-index: 2;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-dark a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.breadcrumb-dark a:hover {
    color: var(--color-primary);
}

.breadcrumb-dark span {
    color: var(--text-tertiary);
}

.hero-title-premium {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-lead-premium {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-separator {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-premium-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Service-Specific Visual Backgrounds */
/* .theme-marketing .hero-premium-visual {
    background-image: url('../hero_3d.png');
} */

/* Try to map other images if they exist */
/* .theme-strategy .hero-premium-visual {
    background-image: url('../strategy_3d.png');
}

.theme-analysis .hero-premium-visual {
    background-image: url('../analysis_3d.png');
} */

/* 3D Card / Chart Styles */
.card-chart {
    width: 280px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.card-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ef4444;
}

.dot.yellow {
    background: #f59e0b;
}

.dot.green {
    background: #22c55e;
}

.card-stat {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
}

.card-stat span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card-stat strong {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-premium-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .service-breadcrumb {
        justify-content: flex-start;
        align-self: flex-start;
    }

    .hero-title-premium {
        font-size: 2.5rem;
        text-align: left;
    }

    .hero-lead-premium {
        text-align: left;
    }

    .hero-stats-row {
        justify-content: flex-start;
    }

    .hero-cta-group {
        justify-content: flex-start;
    }

    .hero-premium-visual {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-title-premium {
        font-size: 2rem;
    }

    .hero-lead-premium {
        font-size: 1rem;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 16px;
    }

    .stat-separator {
        display: none;
    }
}