body {
    background-color: #fff0e62b;
}

.course-hero {
    padding: 100px 0;
    overflow: hidden;
}

.course-hero__content {
    padding-right: 30px;
}

.course-hero__badge {
    background: var(--Light-Secondary-50);
    color: var(--Light-Primary-20);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.course-hero__title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--Light_mode-Gray_Scale-5);
    margin-bottom: 30px;
}

.course-hero__title .text--highlight {
    color: var(--Light-Primary-50);
}

.course-hero__desc {
    font-size: 17px;
    color: var(--Light_mode-Gray_Scale-30);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
}

.course-hero__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-hero__bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-5);
}

.course-hero__bullets li i {
    color: var(--Light-Secondary-50);
    font-size: 18px;
}

.course-hero__info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.info-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 2px solid var(--Light-Primary-95);
    border-radius: 50px;
    background: var(--Light_mode-Gray_Scale-100);
    transition: 0.3s;
}

.info-tag i {
    color: var(--Light-Primary-50);
    font-size: 18px;
}

.info-tag span {
    font-weight: 700;
    font-size: 14px;
    color: var(--Light_mode-Gray_Scale-5);
}

.info-tag:hover {
    border-color: var(--Light-Tertiary-50);
    transform: translateY(-2px);
}

.course-hero__actions .c-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--Light-Senary-50);
    color: #000;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 207, 71, 0.3);
    transition: 0.3s;
}

.course-hero__actions .c-button-primary i {
    font-size: 18px;
}

.course-hero__actions .c-button-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 207, 71, 0.4);
}

/* Media (Video) Section */
.course-hero__media-wrapper {
    position: relative;
    margin-top: 140px;
}

.course-hero__media-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    z-index: 1;
    pointer-events: none;
    /* Create starburst effect with multiple layered pseudo-elements or clip-path */
}

/* Simple starburst background using pseudo-elements */
.course-hero__media-wrapper::before,
.course-hero__media-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    background: var(--Light-Senary-95);
    z-index: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 20px;
    opacity: 0.6;
}

.course-hero__media-wrapper::after {
    transform: translate(-50%, -50%) rotate(15deg);
    background: var(--Light-Senary-90);
    width: 105%;
    height: 105%;
}

.course-hero__media-bg::before,
.course-hero__media-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--Light-Primary-95);
    transform: rotate(-15deg);
    border-radius: 20px;
}

.course-hero__media-bg::after {
    transform: rotate(-45deg);
    background: var(--Light-Tertiary-95);
}

.course-hero__video {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
}

.course-hero__video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .course-hero__title {
        font-size: 40px;
    }
}

/* Course Goals Section */
.course-goals {
    padding: 60px 0;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.course-goals__wrapper {
    background: var(--Light_mode-Gray_Scale-100);
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(134, 59, 0, 0.08);
    position: relative;
    text-align: center;
}

.course-goals__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--Light-Secondary-50);
    margin-bottom: 50px;
}

.goal-card {
    padding: 40px 20px;
    border-radius: 35px;
    height: 100%;
    transition: 0.3s;
}

.goal-card__icon {
    width: 80px;
    height: 80px;
    background: var(--Light_mode-Gray_Scale-100);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.goal-card__icon i {
    font-size: 32px;
    color: var(--Light-Senary-50);
}

.goal-card__name {
    font-size: 20px;
    font-weight: 800;
    color: var(--Light-Primary-50);
    margin-bottom: 15px;
}

.goal-card__desc {
    font-size: 14px;
    color: var(--Light_mode-Gray_Scale-30);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Card variants based on design */
.goal-card--1 {
    background-color: #fff1ed;
}

/* Light reddish/pink */
.goal-card--2 {
    background-color: var(--Light-Senary-95);
}

/* Very light yellow */
.goal-card--3 {
    background-color: var(--Light-Tertiary-95);
}

/* Very light peach */
.goal-card--4 {
    background-color: var(--Light-Senary-90);
}

/* Light yellow */

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Decor Icons */
.course-goals__decor {
    position: absolute;
    color: var(--Light-Senary-50);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.course-goals__decor--cloud {
    top: 40px;
    right: 40px;
    font-size: 40px;
}

.course-goals__decor--star {
    bottom: 40px;
    left: 40px;
    font-size: 35px;
}

@media (max-width: 991px) {
    .course-goals {
        padding: 40px 0;
        margin-top: 0;
    }

    .course-goals__wrapper {
        padding: 40px 20px;
    }

    .goal-card {
        margin-bottom: 25px;
    }

    .course-goals__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .course-hero {
        padding: 60px 0;
        text-align: center;
    }

    .course-hero__content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .course-hero__desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .course-hero__info-tags {
        justify-content: center;
    }

    .course-hero__media-wrapper {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .course-hero__title {
        font-size: 32px;
    }

    .course-hero__desc {
        font-size: 15px;
    }

    .info-tag {
        padding: 8px 15px;
        font-size: 13px;
    }

    .course-hero__actions .c-button-primary {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
        font-size: 16px;
    }
}

/* Course Special Section */
.course-special {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.course-special__main-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--Light-Secondary-50);
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.course-special__card {
    background: var(--Light_mode-Gray_Scale-100);
    border-radius: 50px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(134, 59, 0, 0.05);
}

.special-content {
    padding: 0 20px;
}

.special-content__image {
    margin-bottom: 30px;
    padding: 0 20px;
    animation: float 6s ease-in-out infinite;
}

.special-content__image img {
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
    width: 100%;
}


.special-content__subtitle {
    font-size: 22px;
    font-weight: 800;
    color: var(--Light-Primary-50);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--Light-Senary-90);
}

.special-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.special-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-10);
    line-height: 1.5;
}

.special-list li i {
    color: var(--Light-Senary-50);
    font-size: 18px;
    margin-top: 3px;
}

.special-content--outcome .special-list li {
    background: var(--Light_mode-Gray_Scale-100);
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--Light_mode-Gray_Scale-95);
}

.course-special__footer {
    text-align: center;
    margin-top: 50px;
}

.c-button-special {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--Light-Primary-50);
    color: var(--Light_mode-Gray_Scale-100);
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.c-button-special i {
    font-size: 18px;
}

.c-button-special:hover {
    background: var(--Light-Tertiary-50);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(241, 126, 1, 0.3);
}

@media (max-width: 1199px) {
    .special-content__title {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .course-special {
        padding: 40px 0;
    }

    .course-special__card .row {
        display: block;
    }

    .course-special__card {
        padding: 40px 20px;
    }

    .special-image {
        margin-bottom: 50px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .special-content {
        padding: 0;
        text-align: left;
        margin-bottom: 40px;
    }

    .special-content:last-child {
        margin-bottom: 0;
    }

    .special-content__subtitle {
        text-align: center;
    }

    .special-list li {
        justify-content: flex-start;
    }
}

/* Course Roadmap Section */
.course-roadmap {
    padding: 100px 0;
    position: relative;
}

.course-roadmap__title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--Light-Secondary-50);
    margin-bottom: 80px;
}

.roadmap-container {
    position: relative;
    padding: 0 50px;
}

/* Course Method Section */
.course-method {
    padding: 100px 0;
    background: var(--Light-Senary-95);
    position: relative;
    overflow: hidden;
}

.course-method__header {
    text-align: center;
    margin-bottom: 60px;
}

.course-method__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--Light-Secondary-50);
    margin-bottom: 15px;
}

.course-method__desc {
    font-size: 18px;
    color: var(--Light_mode-Gray_Scale-30);
    font-weight: 600;
}

.method-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px 25px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--Light-Senary-90);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: var(--Light-Secondary-50);
    box-shadow: 0 20px 50px rgba(134, 59, 0, 0.1);
}

.method-card__number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 900;
    color: var(--Light-Senary-90);
    line-height: 1;
    z-index: 0;
}

.method-card__icon {
    width: 70px;
    height: 70px;
    background: var(--Light-Senary-95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.method-card__icon i {
    font-size: 30px;
    color: var(--Light-Secondary-50);
}

.method-card__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--Light-Primary-50);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.method-card__content p {
    font-size: 15px;
    color: var(--Light_mode-Gray_Scale-20);
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 500;
}

.method-card__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .course-method {
        padding: 60px 0;
    }

    .method-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .course-roadmap {
        padding: 40px 0;
    }

    .course-roadmap__title {
        font-size: 28px;
    }

    .roadmap-step,
    .roadmap-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .roadmap-point {
        width: 120px;
        height: 120px;
    }
}

/* Course Philosophy Section */
.course-philosophy {
    padding: 100px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.course-philosophy__header {
    text-align: center;
    margin-bottom: 70px;
}

.philosophy-badge {
    background: var(--Light-Senary-95);
    color: var(--Light-Primary-50);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px dashed var(--Light-Senary-50);
}

.philosophy-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--Light-Secondary-50);
    line-height: 1.2;
}

.philosophy-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(134, 59, 0, 0.08);
    border-color: var(--Light-Senary-50);
}

.philosophy-card__icon {
    width: 80px;
    height: 80px;
    background: var(--Light-Senary-95);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: var(--Light-Secondary-50);
    transform: rotate(-5deg);
    transition: 0.3s;
}

.philosophy-card:hover .philosophy-card__icon {
    transform: rotate(0deg);
    background: var(--Light-Secondary-50);
    color: #fff;
}

.philosophy-card__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--Light-Primary-50);
    margin-bottom: 15px;
}

.philosophy-card__desc {
    font-size: 15px;
    color: var(--Light_mode-Gray_Scale-30);
    line-height: 1.6;
    margin-bottom: 0;
}

.philosophy-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
}

.philosophy-decor--1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--Light-Senary-50) 0%, transparent 70%);
}

.philosophy-decor--2 {
    bottom: 5%;
    right: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--Light-Secondary-50) 0%, transparent 70%);
}

@media (max-width: 991px) {
    .philosophy-title {
        font-size: 32px;
    }

    .philosophy-card {
        margin-bottom: 30px;
    }
}

/* Course Gallery Section Redesign */
.course-gallery {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fff, #fffbf0);
    position: relative;
    overflow: hidden;
}

.course-gallery__header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.gallery-badge {
    background: #ffe8d7;
    color: #b45309;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 25px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-gallery__title {
    font-size: 44px;
    font-weight: 900;
    color: #6d3311;
    line-height: 1.2;
    margin-bottom: 25px;
}

.course-gallery__desc {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-video-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    z-index: 2;
}

.gallery-video-container {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(134, 59, 0, 0.15);
    border: 12px solid #fff;
    aspect-ratio: 16/9;
    background: #000;
}

/* Decorative Icons */
.gallery-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.gallery-decor img {
    width: 60px;
    height: auto;
}

.gallery-decor--sun {
    top: 50px;
    left: 5%;
    transform: rotate(-15deg);
}

.gallery-decor--plant {
    top: 120px;
    right: 5%;
    transform: rotate(15deg);
}

.gallery-decor--star {
    bottom: -30px;
    right: -30px;
    z-index: 3;
}

.gallery-decor--star img {
    width: 80px;
}

@media (max-width: 991px) {
    .course-gallery__title {
        font-size: 32px;
    }

    .course-gallery__desc br {
        display: none;
    }

    .gallery-decor--sun,
    .gallery-decor--plant {
        width: 40px;
    }
}

@media (max-width: 767px) {
    .course-gallery {
        padding: 60px 0;
    }

    .gallery-video-container {
        border-width: 6px;
        border-radius: 25px;
    }

    .gallery-decor--star {
        bottom: -15px;
        right: -15px;
    }

    .gallery-decor--star img {
        width: 50px;
    }
}

/* Course Section Separation */
.course-section-container {
    padding-bottom: 150px;
    border-bottom: 1px dashed var(--Light-Secondary-50);
    position: relative;
    scroll-margin-top: 100px;
    /* Offset for sticky header */
}

.course-section-container:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Background variations for sections to break visual monotony */
.course-section-container:nth-child(even) {
    background-color: rgba(255, 126, 20, 0.02);
}

.course-section-container:nth-child(odd) {
    background-color: rgba(241, 126, 1, 0.01);
}

/* Course Pricing Section */
.pricing-card {
    background: var(--Light_mode-Gray_Scale-100);
    border-radius: 30px;
    padding: 40px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid var(--Light-Senary-90);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--Light-Senary-50);
}

.pricing-card--hero {
    padding: 20px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: var(--Light-Senary-95);
    border: 1px solid var(--Light-Senary-80);
    max-width: 400px;
}

.pricing-card--hero::before {
    display: none;
}

.pricing-card__icon {
    width: 80px;
    height: 80px;
    background: var(--Light-Senary-95);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card--hero .pricing-card__icon {
    width: 50px;
    height: 50px;
}

.pricing-card__icon i {
    font-size: 36px;
    color: var(--Light-Senary-50);
}

.pricing-card--hero .pricing-card__icon i {
    font-size: 24px;
}

.pricing-card__content {
    flex-grow: 1;
}

.pricing-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-30);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 5px;
}

.pricing-card--hero .pricing-card__price {
    margin-bottom: 2px;
}

.pricing-card__price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--Light-Primary-50);
}

.pricing-card--hero .pricing-card__price .currency {
    font-size: 18px;
}

.pricing-card__price .amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--Light-Primary-50);
    line-height: 1;
}

.pricing-card--hero .pricing-card__price .amount {
    font-size: 32px;
}

.pricing-card__price .period {
    font-size: 18px;
    color: var(--Light_mode-Gray_Scale-30);
    font-weight: 600;
}

.pricing-card--hero .pricing-card__price .period {
    font-size: 15px;
}

.pricing-card__note {
    font-size: 14px;
    color: var(--Light_mode-Gray_Scale-40);
    margin-bottom: 0;
}

.pricing-card__action {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .pricing-card--hero {
        margin-left: auto;
        margin-right: auto;
    }
}