/* Course Page Styles */

/* Course Hero Section */
.course-hero-section {
    padding: 140px 0 100px;
    /* background: linear-gradient(135deg, #fffceb 0%, #fff8e1 50%, #ffffff 100%); */
    min-height: 80vh;
    overflow: hidden;
}

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

.course-hero-grid::before {
    content: '';
    position: absolute;
    width: 391px;
    height: 391px;
    left: -152px;
    bottom: -100px;
    background: #FFD946;
    border-radius: 50%;
    filter: blur(300px);
    z-index: -1;
    pointer-events: none;
}

.course-hero-grid::after {
    content: '';
    position: absolute;
    width: 334px;
    height: 334px;
    right: -150px;
    bottom: -100px;
    background: #F49E0D;
    border-radius: 50%;
    filter: blur(300px);
    z-index: -1;
    pointer-events: none;
}

/* Left Content */
.course-hero-content {
    padding: 30px 0;
}

.course-tag-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.course-label {
    font-size: 28px;
    font-weight: 400;
    color: #1C1D1F;
    letter-spacing: -0.03em;
    line-height: 100%;
}

.course-badge {
    background: #F59C00;
    color: #FBF8E8;
    padding: 16px 10px;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 57%;
    text-align: center;
    min-width: 90px;
}

.course-hero-title {
    font-size: 45px;
    font-weight: 600;
    color: #E27A01;
    line-height: 120%;
    letter-spacing: -0.05em;
    margin-bottom: 12px;
}

.course-hero-title .highlight {
    color: #E27A01;
    font-weight: 600;
}

.course-hero-subtitle {
    font-size: 20px;
    color: #1c1d1f;
    margin-bottom: 30px;
}

.course-hero-subtitle .subtitle-italic {
    font-style: italic;
}

.course-hero-subtitle .highlight-italic {
    color: #f49e0d;
    font-weight: 500;
}

/* Duration Row */
.course-duration-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.duration-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: #FFEA85;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
}

.duration-number {
    font-size: 26px;
    font-weight: 800;
    color: #7D360C;
}

.duration-text {
    font-size: 12px;
    font-weight: 500;
    color: #7D360C;
}

.duration-separator {
    font-size: 20px;
    color: #242323;
}

.course-features-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.course-features-list li {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* Course Info Row */
.course-info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #F49E0D;
    border-radius: 12px;
    padding: 12px 20px;
}

.rating-number {
    font-size: 42px;
    font-weight: 700;
    color: #1c1d1f;
}

.rating-details {
    display: flex;
    flex-direction: column;
}

.rating-label {
    font-size: 12px;
    color: #0f0f0f;
    font-weight: 500;
}

.rating-stars {
    color: #f49e0d;
    font-size: 22px;
    letter-spacing: 2px;
}

.course-delivery {
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.delivery-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-label {
    font-size: 12px;
    color: #0f0f0f;
}

.delivery-value {
    font-size: 14px;
    font-weight: 700;
    color: #1c1d1f;
}

/* Download Brochure Button */
.btn-download-brochure {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #BB5503, #F59C00);
    color: #fff;
    padding: 8px 28px 8px 8px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(244, 158, 13, 0.3);
}

.btn-download-brochure:hover {
    background: linear-gradient(90deg, #9a4502, #e08d00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 158, 13, 0.4);
}

.btn-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
}

.btn-icon-circle svg {
    stroke: #F59C00;
}

/* Right Media */
.course-hero-media {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.course-hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}


/* Where Are We Section */
.where-are-we-section {
    background-color: #F5F6F6;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.where-are-we-section::before {
    content: '';
    position: absolute;
    width: 803px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/static/images/bg-map.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.where-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #292929;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.where-title .highlight {
    color: #E27A01;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 10px;
    max-width: fit-content;
    margin: 0 auto;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 220px;
    height: 70px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #F49E0D;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #292929;
    line-height: 1.4;
}


/* Placement Goals Section */
.placement-goals-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.placement-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 180px;
    color: rgba(244, 158, 13, 0.08);
    letter-spacing: 20px;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.placement-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 43px;
    color: #292929;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    padding: 70px 0 20px 0;
}

.placement-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 50px);
    background-image: url('/static/images/Placed.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: -1;
}

.placement-title .highlight {
    color: #E27A01;
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
    padding-bottom: 120px;
}

.placement-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background-image: url('/static/images/Placed1.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    z-index: 0;
    pointer-events: none;
}

.placement-card {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.placement-card-top {
    background: #FFF4C6;
    padding: 34px 20px;
    min-height: 80px;
    border-radius: 16px 16px 0 0;
}

.placement-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #292929;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.placement-company {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0f0f0f;
    margin: 0;
    line-height: 1.4;
}

.placement-card-bottom {
    background: #f59b00;
    height: 240px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    border-radius: 0 0 16px 16px;
    overflow: visible;
}

.placement-student-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    position: relative;
    top: -80px;
    margin-bottom: -80px;
}


/* Course Info Section */
.course-info-section {
    padding: 40px 0;
    background-color: #fff;
}

.course-info-title {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #292929;
    line-height: 1.3;
    margin-bottom: 30px;
}

.course-info-title .highlight {
    color: #E27A01;
    font-weight: 500;
}

.course-info-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Accordion Styles */
.course-accordion {
    margin-top: 50px;
}

.accordion-item {
    background: #F5F6F6;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #292929;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    color: #292929;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-content {
    padding: 0 30px 24px 30px;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

.accordion-content ul {
    margin: 0 0 16px 20px;
    padding: 0;
}

.accordion-content ul li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 6px;
}

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


/* Key Benefits Section */
.key-benefits-section {
    padding: 20px 0;
    margin-bottom: 60px;
    background-color: #fff;
}

.key-benefits-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #292929;
    margin-bottom: 30px;
}

.key-benefits-title .highlight {
    color: #E27A01;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.benefit-card {
    background: #fff;
    border: 1px solid #FFF4C6;
    border-radius: 20px;
    padding: 20px 24px 18px 24px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.benefit-card:hover {
    background: #E27A01;
    box-shadow: 0 20px 50px rgba(226, 122, 1, 0.4);
    z-index: 10;
}

.benefit-icon {
    margin-bottom: 12px;
}

.icon-box {
    width: 58px;
    height: 58px;
    background: url('/static/images/icon1.png') center center / contain no-repeat;
    border-radius: 5px;
    transition: all 0.4s ease;
    /* box-shadow: 0 0 0 6px rgba(244, 158, 13, 0.15), 0 0 0 12px rgba(244, 158, 13, 0.08); */
}

.benefit-card:nth-child(2) .icon-box {
    background: url('/static/images/icon2.png') center center / contain no-repeat;
}

.benefit-card:nth-child(3) .icon-box {
    background: url('/static/images/icon3.png') center center / contain no-repeat;
}

.benefit-card:nth-child(4) .icon-box {
    background: url('/static/images/icon4.png') center center / contain no-repeat;
}

.benefit-card:nth-child(5) .icon-box {
    background: url('/static/images/icon5.png') center center / contain no-repeat;
}

.benefit-card:nth-child(6) .icon-box {
    background: url('/static/images/icon6.png') center center / contain no-repeat;
}

.benefit-card:hover .icon-box {
    filter: brightness(0) invert(1);
}

/* .benefit-card:hover .icon-box {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2), 0 0 0 12px rgba(255, 255, 255, 0.1);
} */

.benefit-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #E27A01;
    margin-bottom: 2px;
    line-height: 1.3;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-name {
    color: #fff;
}

.benefit-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #888;
    line-height: 1.6;
    margin: 0;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-desc {
    color: rgba(255, 255, 255, 0.85);
}


/* Responsive */
@media (max-width: 1024px) {
    .course-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .course-hero-section{
        padding: 200px 0 100px;
    }
    
    .course-hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .course-tag-line {
        justify-content: center;
    }
    
    .course-duration-row {
        justify-content: center;
    }
    
    .course-info-row {
        justify-content: center;
    }
    
    .course-hero-media {
        order: -1;
    }
    
    .course-hero-img {
        max-width: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .placement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .placement-bg-text {
        font-size: 120px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .course-hero-section {
        padding: 120px 0 40px;
    }
    
    .course-hero-title {
        font-size: 32px;
    }
    
    .course-duration-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .course-info-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .course-features-list {
        text-align: left;
        margin-top: 12px;
    }

    .where-are-we-section {
        padding: 60px 0;
    }

    .where-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .stat-number {
        font-size: 20px;
    }

    .placement-goals-section {
        padding: 60px 0;
    }

    .placement-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .placement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .placement-bg-text {
        font-size: 60px;
        letter-spacing: 10px;
    }

    .placement-card-bottom {
        height: 160px;
    }

    .course-info-section {
        padding: 60px 0;
    }

    .course-info-title {
        font-size: 28px;
    }

    .accordion-header {
        padding: 18px 20px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-content {
        padding: 0 20px 18px 20px;
    }

    .key-benefits-section {
        padding: 60px 0;
    }

    .key-benefits-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .benefit-card {
        padding: 20px 16px;
    }
}
