.section-badge span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-badge::before,
.section-badge::after {
    content: "";
    width: 60px;
    height: 3px;
    border-radius: 20px;
    background: var(--gradient-main);
}

.section-title {
    /* font-size: 3rem; */
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-text);
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    color: var(--gray-text);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* =========================
   HERO SECTION
========================= */

.voucher-hero {
    background-image: url("../images/traning/banners/banner4.jpg");
    padding: 80px 0 100px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 36px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .12;
}

.hero-shape-1 {
    width: 350px;
    height: 350px;
    background: #fff;
    top: -120px;
    left: -120px;
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    right: -80px;
    bottom: -80px;
}

.hero-content {
    color: var(--white);
}

.aws-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.aws-badge img {
    width: 32px;
}

.aws-badge span {
    font-weight: 600;
    color: var(--white);
}

.hero-title {
    /* font-size: 4rem; */
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 25px;
}

.hero-description {
    color: rgba(255, 255, 255, .85);
    font-size: 1.08rem;
    line-height: 2;
    margin-bottom: 35px;
}

/* HERO FEATURES */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 16px;
}

.hero-feature i {
    color: var(--accent);
}

.hero-feature span {
    font-weight: 600;
}

/* CTA */
.hero-btn-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 16px;
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.primary-btn:hover {
    transform: translateY(-5px);
    color: var(--primary-dark);
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
}

/* =========================
   HERO FORM
========================= */

.hero-form-wrapper {
    position: relative;
}

.hero-form-card {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-radius: 32px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(6, 187, 204, .04),
            transparent);
}

.form-content {
    position: relative;
    z-index: 2;
}

.form-top {
    text-align: center;
    margin-bottom: 30px;
}

.form-top h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.form-top p {
    color: var(--gray-text);
    line-height: 1.8;
    margin: 0;
}

/* FORM */
.custom-form .form-control,
.custom-form .form-select {
    height: 60px;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    padding: 15px 20px;
    font-size: 15px;
    box-shadow: none;
    transition: var(--transition);
}

.custom-form textarea.form-control {
    height: 140px;
    resize: none;
    padding-top: 18px;
}

.custom-form .form-control:focus,
.custom-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(6, 187, 204, .12);
}

.submit-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 16px;
    background: var(--gradient-main);
    color: var(--white);
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* TRUST */
.form-trust {
    margin-top: 25px;
    text-align: center;
    color: var(--gray-text);
    font-size: 14px;
}

.form-trust i {
    color: var(--primary);
    margin-right: 6px;
}

/* =========================
   EXAM OVERVIEW
========================= */

.exam-overview {
    /* padding: 60px 0; */
    background: var(--white);
}

.overview-card {
    background: var(--light-bg);
    border-radius: 30px;
    padding: 40px;
    transition: var(--transition);
    height: 100%;
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.overview-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: rgba(6, 187, 204, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.overview-icon i {
    color: var(--primary);
    font-size: 34px;
}

.overview-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.overview-card p {
    color: var(--gray-text);
    line-height: 1.8;
    margin: 0;
}

/* =========================
   INCLUDED SECTION
========================= */

.included-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.included-wrapper {
    background: var(--white);
    border-radius: 35px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.included-list li i {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: rgba(6, 187, 204, .1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.included-list h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.included-list p {
    color: var(--gray-text);
    line-height: 1.8;
    margin: 0;
}

.included-image {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

/* =========================
   CTA
========================= */

.bottom-cta {
    padding: 100px 0;
    background: var(--gradient-main);
    overflow: hidden;
}

.cta-box {
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    max-width: 760px;
    margin: auto;
    line-height: 2;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 35px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px) {

    .hero-title {
        /* font-size: 3.2rem; */
    }

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

}

@media(max-width:991px) {

    .voucher-hero {
        padding: 100px 0 80px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 60px;
    }

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

    .hero-features {
        justify-content: center;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .included-wrapper {
        padding: 40px;
    }

}

@media(max-width:767px) {

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

    .section-title {
        font-size: 1.9rem;
    }

    .hero-form-card {
        padding: 30px 24px;
    }

    .included-wrapper {
        padding: 30px 24px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

}

@media(max-width:576px) {

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

    .section-title {
        font-size: 1.6rem;
    }

    .hero-btn-group {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
    }

}

/* =========================
   ANIMATION
========================= */

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}


.course-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--dark-text);
    font-weight: 500;
}

.our-price-wrapper {
    /* color: var(--gray-text); */
    font-size: 14px;
}

.our-price-wrapper span {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}


.voucher-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 20%, 0.4);
    padding: 90px 0 100px;
    position: relative;
}

/* Ambient colored background orbs for deep premium aesthetic */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.hero-orb-2 {
    width: 450px;
    height: 450px;
    background: #ff9900;
    bottom: -150px;
    right: -100px;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: #008ad7;
    top: 30%;
    left: 40%;
}

/* Breadcrumb Dark Mode */
.custom-breadcrumb-dark {
    background: transparent;
    padding: 0;
}

.custom-breadcrumb-dark .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

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

.custom-breadcrumb-dark .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.custom-breadcrumb-dark .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.aws-badge-premium {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 153, 0, 0.15);
    color: #ff9900;
    border: 1px solid rgba(255, 153, 0, 0.25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.aws-badge-premium i {
    font-size: 16px;
}

.gradient-text {
    background: linear-gradient(90deg, #abffe3, #02c3fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider-y {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-feature-flex {
    margin-top: 25px;
}

.hero-feature-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 18px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
}

.hero-feature-pill i {
    color: #ff9900;
}

/* Redesigned Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-radius: 28px;
    padding: 35px;
}

.form-badge-discount {
    background: rgba(255, 85, 0, 0.1);
    color: #ff5500;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.input-group-custom {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 20px;
    color: #94a3b8;
    font-size: 16px;
    z-index: 10;
}

.input-group-custom .form-control {
    height: 56px;
    border-radius: 14px;
    border: 1.5px solid #e2e8f0;
    padding-left: 48px;
    font-size: 0.95rem;
    background: #fff;
    transition: all 0.3s ease;
}

.input-group-custom textarea.form-control {
    max-height: 80px;
    padding-top: 16px;
    resize: none;
}

.input-group-custom .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(6, 187, 204, 0.1);
}

/* Highlights strip */
.highlights-strip {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    z-index: 10;
    /* margin-top: -30px; */
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}

.highlight-item-card {
    padding: 15px;
    transition: transform 0.3s ease;
}

.highlight-item-card:hover {
    transform: translateY(-4px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(6, 187, 204, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
}

.highlight-item-card h5 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.highlight-item-card p {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Premium tabs list */
.tabs-navigation-card {
    background: #fff;
    border-radius: 18px;
    padding: 8px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.custom-tabs-pills {
    gap: 6px;
}

.custom-tabs-pills .nav-link {
    /* border-radius: 12px; */
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 20px;
    color: var(--gray-text);
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    background-color: var(--white);
}

.custom-tabs-pills .nav-link.active {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 15px rgba(6, 187, 204, 0.25);
}

.custom-tabs-pills .nav-link:hover:not(.active) {
    /* background: rgba(6, 187, 204, 0.05); */
    color: var(--primary);
}

/* Detail card updates */
.detail-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(6, 187, 204, 0.05);
}

.header-line {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--gradient-main);
    border-radius: 10px;
    margin-right: 10px;
    vertical-align: -2px;
}

.lead-text {
    font-size: 1.12rem;
    line-height: 1.8;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 20px;
}

/* Accordion items customization */
.custom-voucher-faq .accordion-item {
    border: 1px solid #f1f5f9;
}

.custom-voucher-faq .accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.syllabus-list {
    padding-left: 20px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.syllabus-list li {
    color: var(--gray-text);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Premium What You Will Learn Card */
.learn-box-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.learn-box-premium:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(6, 187, 204, 0.15);
}

.learn-icon {
    font-size: 20px;
    color: var(--primary);
    margin-top: 2px;
}

.learn-box-premium h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--dark-text);
    margin-bottom: 6px;
}

/* Career pathway card */
.career-pathway-card {
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
}

.career-pathway-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(6, 187, 204, 0.15) !important;
}

.career-path-icon {
    font-size: 30px;
}

.salary-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: #047857;
    background: rgba(16, 185, 129, 0.08);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
}

.career-pathway-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-text);
}

/* Simulator card styles */
.simulator-features li {
    font-size: 0.92rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
}

.simulator-preview-card {
    background: radial-gradient(120% 120% at 50% 10%, #ffffff 0%, #f6fdfd 50%, #eefbfb 100%);
    border: 1.5px dashed rgba(6, 187, 204, 0.25);
}

.simulator-icon {
    font-size: 38px;
    color: var(--primary);
}

.score-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-text);
}

/* Pass assurance details */
.pass-assurance-section {
    background: var(--gradient-main);
}

.assurance-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at 10% 20%, var(--gradient-main) 0%, transparent 60%);
    pointer-events: none;
}

.guarantee-badge {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px dashed rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: #fff;
    gap: 4px;
}

.guarantee-badge i {
    font-size: 30px;
    color: #10b981;
}

.guarantee-badge span {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Sidebar Redesign */
.voucher-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(6, 187, 204, 0.06);
}

.sidebar-img-container {
    position: relative;
    aspect-ratio: 16 / 10;
}

.sidebar-img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.5s ease;
}

.sidebar-card:hover .sidebar-img {
    transform: scale(1.04);
}

.pricing-panel {
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.01);
}

.sidebar-our-price {
    font-size: 2.2rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary) !important;
    letter-spacing: -1px;
}

.sidebar-checklist li i {
    font-size: 15px;
}

/* Purchase actions */
.purchase-btn {
    background: var(--gradient-main);
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.purchase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(6, 187, 204, 0.35) !important;
}

.secondary-btn {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: #fff;
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

/* Related Vouchers */
.related-certifications {
    background: #f8fafc;
}

.related-certifications .cert-card {
    /* background: #fff; */
    height: 100%;
    transition: all 0.3s ease;
}

.related-certifications .cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(6, 187, 204, 0.15) !important;
}

.card-img-wrapper {
    aspect-ratio: 16 / 9;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-certifications h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark-text);
    line-height: 1.4;
    min-height: 48px;
}

.card-img-wrapper img {
    max-width: 70%;
}

.detail-hero-img {
    max-width: 180px;
}

.tabs-navigation-card {
    background-color: #8080801a
}

.detail-hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}