:root {
    --pma-primary: #07a169;
    --pma-secondary: #ffb800;
    --pma-navy: #0a2540;
    --pma-light-bg: #f4f7fa;
    --pma-text: #475569;
    --pma-border: #e2e8f0;
}

body {
    background-color: var(--pma-light-bg);
}

.modern-hero-section {
    position: relative;
    margin-top: 141px;
    padding: 80px 0 70px;
    overflow: hidden;
    background-color: #051525;
    min-height: 320px;
    display: flex;
    align-items: center;
}

@keyframes cinematicZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(5, 21, 37, 0.95) 0%,
        rgba(5, 21, 37, 0.8) 45%,
        rgba(5, 21, 37, 0.3) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-breadcrumb-wrapper {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--pma-primary);
    padding: 8px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb-item a i {
    color: var(--pma-primary);
    font-size: 12px;
    margin-right: 4px;
}

.breadcrumb-item.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.hero-meta-badge i {
    color: var(--pma-secondary);
}

.package-body-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 100px;
}

.content-block {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--pma-border);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.block-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pma-navy);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--pma-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.block-title i {
    color: var(--pma-primary);
}

.pkg-course-card {
    background: #f8fafc;
    border: 1px solid var(--pma-border);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.pkg-course-card:hover {
    border-color: var(--pma-primary);
    box-shadow: 0 10px 25px rgba(7, 161, 105, 0.05);
}

.pkg-course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.pkg-course-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--pma-navy);
    margin: 0;
}

.pkg-course-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--pma-text);
    font-weight: 600;
    margin-top: 8px;
}

.pkg-course-meta i {
    color: var(--pma-primary);
}

.batch-selector-wrap {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 20px;
}

.batch-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--pma-navy);
    margin-bottom: 8px;
    display: block;
}

.form-select-pma {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid #cbd5e1;
    background: #fff;
    font-weight: 600;
    color: var(--pma-navy);
    transition: 0.3s;
    cursor: pointer;
}

.form-select-pma:focus {
    border-color: var(--pma-primary);
    box-shadow: 0 0 0 4px rgba(7, 161, 105, 0.1);
    outline: none;
}

.form-select-pma.is-valid {
    border-color: #07a169;
    background-color: #f0fdf4;
}

.sidebar-overlap {
    margin-top: -60px;
    position: sticky;
    top: 140px;
    z-index: 20;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 30px 60px rgba(10, 37, 64, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-huge {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--pma-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.price-strike {
    font-size: 1.2rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.btn-dynamic-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 800;
    border: none;
    transition: all 0.3s ease;
}

.btn-dynamic-cart:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

.btn-dynamic-cart.active {
    background: linear-gradient(135deg, var(--pma-primary) 0%, #058855 100%);
    color: #fff;
    box-shadow: 0 10px 25px rgb(10 37 64 / 69%);
}

.btn-dynamic-cart.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(10 37 64 0.4);
}

.progress-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px dashed #cbd5e1;
}

.progress-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--pma-navy);
}

@media (max-width: 991px) {
    .modern-hero-section {
        padding: 60px 0 40px;
        margin-top: 100px;
        min-height: 280px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .sidebar-overlap {
        margin-top: 40px;
        position: static;
    }

    .package-body-wrapper {
        margin-top: -20px;
    }

    .content-block {
        padding: 25px;
    }
}
