/**
 * Program Landing Page Styles
 * Chương Trình Học Landing Page
 * 
 * @package Flatsome Child
 * @since 1.0.0
 */

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --program-primary: #1154af;
    --program-primary-dark: #4d99fc;
    --program-secondary: #FF6B6B;
    --program-accent: #FFE66D;
    --program-purple: #A78BFA;
    --program-blue: #60A5FA;
    --program-pink: #F472B6;
    --program-orange: #FB923C;
    --program-text: #2D3748;
    --program-text-light: #718096;
    --program-text-muted: #A0AEC0;
    --program-bg: #FFFFFF;
    --program-bg-light: #F7FAFC;
    --program-bg-alt: #EDF2F7;
    --program-border: #E2E8F0;
    --program-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --program-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --program-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --program-radius: 12px;
    --program-radius-lg: 20px;
    --program-transition: all 0.3s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
.program-landing-page {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    color: var(--program-text);
    line-height: 1.7;
    overflow-x: hidden;
}

.program-landing-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.program-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.program-section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--program-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.program-section__title .title-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFA500, #daa84d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.program-section__subtitle {
    font-size: 1.15rem;
    color: var(--program-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.program-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.program-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.program-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(78, 205, 196, var(--overlay-opacity)) 0%,
        rgba(255, 107, 107, var(--overlay-opacity)) 100%
    );
}

.program-hero .container {
    position: relative;
    z-index: 10;
}

.program-hero__content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.program-hero__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.program-hero__badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.program-hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.program-hero__subtitle {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.program-hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.program-hero__actions .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--program-transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-hero__actions .btn-primary {
    background: white;
    color: #FFA500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.program-hero__actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.program-hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--program-transition);
    animation: bounce 2s infinite;
}

.program-hero__scroll-link:hover {
    opacity: 1;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Hero Shapes */
.program-hero__shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.program-hero__shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.program-hero__shapes .shape--1 {
    width: 300px;
    height: 300px;
    background: white;
    top: 10%;
    left: -150px;
}

.program-hero__shapes .shape--2 {
    width: 200px;
    height: 200px;
    background: white;
    bottom: 20%;
    right: -100px;
}

.program-hero__shapes .shape--3 {
    width: 150px;
    height: 150px;
    background: var(--program-accent);
    top: 50%;
    right: 10%;
}

/* ==========================================================================
   Philosophy Section
   ========================================================================== */
.program-philosophy {
    padding: 100px 0;
    background: var(--program-bg-light);
}

.program-philosophy__main {
    margin-bottom: 60px;
}

.program-philosophy__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.program-philosophy__image {
    position: relative;
}

.program-philosophy__image img {
    border-radius: var(--program-radius-lg);
    box-shadow: var(--program-shadow-xl);
    width: 100%;
    height: auto;
}

.philosophy-image__decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--program-primary);
    border-radius: var(--program-radius-lg);
    top: 20px;
    left: 20px;
    z-index: -1;
}

.program-philosophy__content {
    font-size: 1.1rem;
    line-height: 1.9;
}

.program-philosophy__content h3 {
    font-size: 1.5rem;
    color: var(--program-text);
    margin-bottom: 15px;
}

.program-philosophy__content p {
    margin-bottom: 20px;
    color: var(--program-text-light);
}

/* Philosophy Pillars */
.program-philosophy__pillars {
    margin-top: 60px;
}

.pillars-grid {
    display: grid;
    gap: 30px;
}

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

.pillars-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.pillars-grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

.pillar-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--program-radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--program-shadow);
    transition: var(--program-transition);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--program-shadow-xl);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--pillar-color);
}

.pillar-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--pillar-color), var(--pillar-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.pillar-card__icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--pillar-color);
    opacity: 0.2;
    transform: scale(1.3);
    z-index: -1;
}

.pillar-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--program-text);
}

.pillar-card__description {
    font-size: 0.95rem;
    color: var(--program-text-light);
    line-height: 1.7;
}

.pillar-card__number {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--pillar-color);
    opacity: 0.1;
}

/* ==========================================================================
   Timeline Section
   ========================================================================== */
.program-timeline {
    padding: 100px 0;
    background: white;
}

.program-timeline__content {
    max-width: 1100px;
    margin: 0 auto;
}

/* Timeline Navigation */
.timeline-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.timeline-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: var(--program-bg-light);
    border: 2px solid transparent;
    border-radius: var(--program-radius);
    cursor: pointer;
    transition: var(--program-transition);
    min-width: 140px;
}

.timeline-nav__item:hover,
.timeline-nav__item.active {
    background: white;
    border-color: #FFA500;
    box-shadow: var(--program-shadow-lg);
}

.timeline-nav__item.active {
    transform: translateY(-5px);
}

.timeline-nav__icon {
    width: 50px;
    height: 50px;
    background: var(--stage-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: var(--program-transition);
}

.timeline-nav__item:hover .timeline-nav__icon,
.timeline-nav__item.active .timeline-nav__icon {
    transform: scale(1.1);
}

.timeline-nav__age {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--stage-color);
}

.timeline-nav__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--program-text);
}

/* Timeline Stages */
.timeline-stages {
    position: relative;
}

.timeline-stage {
    display: none;
    animation: fadeIn 0.5s ease;
}

.timeline-stage.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.timeline-stage__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--program-bg-light);
    padding: 50px;
    border-radius: var(--program-radius-lg);
    border-left: 6px solid #FFA500;
}

.timeline-stage__image {
    position: relative;
}

.timeline-stage__image img {
    border-radius: var(--program-radius-lg);
    width: 100%;
    height: auto;
    box-shadow: var(--program-shadow-lg);
}

.stage-image__badge {
    position: absolute;
    bottom: -15px;
    left: 30px;
    background: var(--stage-color);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--program-shadow);
}

.timeline-stage__content {
    padding: 20px 0;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.stage-icon {
    width: 70px;
    height: 70px;
    background: #FFA500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.stage-title-group {
    flex: 1;
}

.stage-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--program-text);
    margin-bottom: 5px;
}

.stage-age {
    font-size: 1rem;
    color: var(--stage-color);
    font-weight: 600;
}

.stage-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--program-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stage-section-title i {
    color: #FFA500;
}

.stage-goals {
    margin-bottom: 25px;
}

.stage-goals p {
    color: var(--program-text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.stage-skills {
    margin-bottom: 30px;
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.skills-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--program-text-light);
}

.skills-list li i {
    color: var(--stage-color);
    font-size: 0.8rem;
}

.stage-action .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid #FFA500;
    color: #FFA500;
    background: transparent;
    transition: var(--program-transition);
}

.stage-action .btn:hover {
    background: var(--stage-color);
    color: white;
}

/* Mobile Timeline */
.timeline-mobile {
    display: none;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.program-features {
    padding: 100px 0;
    background: var(--program-bg-light);
}

/* Grid Layout */
.features-grid {
    display: grid;
    gap: 30px;
}

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

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--program-radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--program-transition);
    box-shadow: var(--program-shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--program-shadow-xl);
}

.feature-card__icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.feature-card__icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #FFA500, #f5b94c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin: 0 auto;
    transition: var(--program-transition);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card__number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--program-accent);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--program-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__image {
    margin-bottom: 20px;
    border-radius: var(--program-radius);
    overflow: hidden;
}

.feature-card__image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: var(--program-transition);
}

.feature-card:hover .feature-card__image img {
    transform: scale(1.1);
}

.feature-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--program-text);
    margin-bottom: 15px;
}

.feature-card__description {
    font-size: 0.95rem;
    color: var(--program-text-light);
    line-height: 1.7;
}

.feature-card__hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--feature-color), var(--program-secondary));
    transform: scaleX(0);
    transition: var(--program-transition);
}

.feature-card:hover .feature-card__hover-effect {
    transform: scaleX(1);
}

/* Alternating Layout */
.features-alternating {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row--reversed {
    direction: rtl;
}

.feature-row--reversed > * {
    direction: ltr;
}

.feature-row__image {
    border-radius: var(--program-radius-lg);
    overflow: hidden;
    box-shadow: var(--program-shadow-xl);
}

.feature-row__image img {
    width: 100%;
    height: auto;
    transition: var(--program-transition);
}

.feature-row:hover .feature-row__image img {
    transform: scale(1.05);
}

.feature-row__content {
    position: relative;
    padding: 20px 0;
}

.feature-row__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--feature-color), var(--program-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
}

.feature-row__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--program-text);
    margin-bottom: 20px;
}

.feature-row__description {
    font-size: 1.05rem;
    color: var(--program-text-light);
    line-height: 1.9;
}

.feature-row__number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 6rem;
    font-weight: 900;
    color: var(--feature-color);
    opacity: 0.1;
    line-height: 1;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.program-gallery {
    padding: 100px 0;
    background: white;
}

/* Masonry Layout */
.gallery-masonry {
    display: grid;
    gap: 20px;
}

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

.gallery-masonry--col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-masonry__item {
    border-radius: var(--program-radius);
    overflow: hidden;
}

.gallery-masonry__item--featured {
    grid-row: span 2;
}

.gallery-item {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.gallery-item__image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: var(--program-transition);
}

.gallery-masonry__item--featured .gallery-item__image {
    min-height: 520px;
}

.gallery-item:hover .gallery-item__image {
    transform: scale(1.1);
}

.gallery-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        transparent 50%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: var(--program-transition);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA500;
    font-size: 1.2rem;
    transition: var(--program-transition);
}

.gallery-item__zoom:hover {
    background: #FFA500;
    color: white !important;
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-item__caption {
    color: white;
    font-size: 0.9rem;
    text-align: center;
}

/* Grid Layout */
.gallery-grid {
    display: grid;
    gap: 20px;
}

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

.gallery-grid--col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-grid__item {
    border-radius: var(--program-radius);
    overflow: hidden;
}

.gallery-grid__item .gallery-item__image {
    min-height: 200px;
}

/* Slider Layout */
.gallery-slider {
    position: relative;
}

.gallery-slider__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.gallery-slider__track::-webkit-scrollbar {
    display: none;
}

.gallery-slider__item {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
}

.gallery-slider__item .gallery-item {
    border-radius: var(--program-radius);
    overflow: hidden;
}

.gallery-slider__item .gallery-item__image {
    height: 300px;
}

.gallery-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--program-text);
    cursor: pointer;
    box-shadow: var(--program-shadow-lg);
    transition: var(--program-transition);
    z-index: 10;
}

.gallery-slider__nav:hover {
    background: var(--program-primary);
    color: white;
}

.gallery-slider__nav--prev {
    left: -25px;
}

.gallery-slider__nav--next {
    right: -25px;
}

/* Gallery Video */
.gallery-video {
    margin-top: 60px;
    position: relative;
}

.gallery-video__wrapper {
    border-radius: var(--program-radius-lg);
    overflow: hidden;
    box-shadow: var(--program-shadow-xl);
}

.gallery-video__wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.gallery-video__decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--program-accent);
    border-radius: 50%;
    opacity: 0.2;
    top: -50px;
    right: -50px;
    z-index: -1;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.program-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.program-cta--gradient {
    background: linear-gradient(135deg, #FFA500 0%, #f1c36f 100%);
}

.program-cta--banner {
    background-size: cover;
    background-position: center;
}

.program-cta--boxed {
    background: var(--program-bg-light);
}

.program-cta--boxed .program-cta__inner {
    background: linear-gradient(135deg, #FFA500 0%, #f3c776 100%);
    border-radius: var(--program-radius-lg);
    padding: 60px;
}

.program-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.program-cta__inner {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.program-cta__decoration {
    margin-bottom: 25px;
}

.program-cta__decoration i {
    font-size: 4rem;
    opacity: 0.8;
}

.program-cta__highlight {
    margin-bottom: 25px;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.program-cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fff;
}

.program-cta__text {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 35px;
    line-height: 1.8;
}

.program-cta__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.program-cta__actions .btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--program-transition);
    color: #fff;
}

.btn-white {
    background: white;
    color: #FFA500 !important;
}

.btn-white:hover {
    background: var(--program-bg-light);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--program-primary);
}

.program-cta__trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-item i {
    font-size: 1.2rem;
}

/* CTA Shapes */
.program-cta__shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.program-cta__shapes .shape--circle-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.program-cta__shapes .shape--circle-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

/* ==========================================================================
   Posts Section
   ========================================================================== */
.program-posts {
    padding: 100px 0;
    background: var(--program-bg-light);
}

/* Posts Filter */
.program-posts__filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--program-border);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--program-text-light);
    cursor: pointer;
    transition: var(--program-transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--program-primary);
    border-color: var(--program-primary);
    color: white;
}

/* Posts Grid */
.program-posts__grid {
    display: grid;
    gap: 30px;
}

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

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

.posts-grid--list {
    grid-template-columns: 1fr;
}

/* Post Card */
.program-post-card {
    background: white;
    border-radius: var(--program-radius-lg);
    overflow: hidden;
    box-shadow: var(--program-shadow);
    transition: var(--program-transition);
}

.program-post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--program-shadow-xl);
}

.posts-grid--list .program-post-card {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.program-post-card__image {
    position: relative;
    overflow: hidden;
}

.program-post-card__image a {
    display: block;
}

.program-post-card__image img,
.program-post-card__image .post-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--program-transition);
}

.posts-grid--list .program-post-card__image img,
.posts-grid--list .program-post-card__image .post-thumbnail {
    height: 100%;
    min-height: 200px;
}

.program-post-card:hover .program-post-card__image img {
    transform: scale(1.1);
}

.post-thumbnail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    background: linear-gradient(135deg, #f5c161,  #FFA500);
    color: white;
    font-size: 3rem;
}

.post-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4982b;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-post-card__content {
    padding: 25px;
}

.program-post-card__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.program-post-card__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--program-text-muted);
}

.program-post-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.program-post-card__title a {
    color: var(--program-text);
    transition: var(--program-transition);
}

.program-post-card__title a:hover {
    color: var(--program-primary);
}

.program-post-card__excerpt {
    font-size: 0.95rem;
    color: var(--program-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-post-card__excerpt p {
    margin: 0;
}

.program-post-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFA500;
    transition: var(--program-transition);
}

.program-post-card__link:hover {
    gap: 12px;
    color: var(--program-primary-dark);
}

/* Pagination */
.program-posts__pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.program-posts__pagination .page-numbers {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.program-posts__pagination .page-numbers li a,
.program-posts__pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--program-border);
    border-radius: 50%;
    font-weight: 600;
    color: var(--program-text-light);
    transition: var(--program-transition);
}

.program-posts__pagination .page-numbers li a:hover,
.program-posts__pagination .page-numbers li span.current {
    background: #FFA500;
    border-color: #FFA500;
    color: white !important;
}

/* View All */
.program-posts__view-all {
    text-align: center;
    margin-top: 50px;
}

.program-posts__view-all .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
}

/* Empty State */
.program-posts__empty {
    text-align: center;
    padding: 80px 20px;
}

.empty-state {
    max-width: 400px;
    margin: 0 auto;
}

.empty-state i {
    font-size: 4rem;
    color: var(--program-text-muted);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--program-text);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--program-text-light);
    margin-bottom: 25px;
}

/* ==========================================================================
   No Content Fallback
   ========================================================================== */
.program-no-content {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--program-bg-light);
}

.no-content-wrapper {
    text-align: center;
    max-width: 500px;
    padding: 60px 20px;
}

.no-content-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--program-primary), var(--program-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.no-content-wrapper h2 {
    font-size: 2rem;
    color: var(--program-text);
    margin-bottom: 15px;
}

.no-content-wrapper > p {
    color: var(--program-text-light);
    font-size: 1.1rem;
}

.admin-notice {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: var(--program-radius);
    border-left: 4px solid var(--program-primary);
}

.admin-notice p {
    margin: 0 0 15px;
    color: var(--program-text-light);
}

.admin-notice .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .program-section__title {
        font-size: 2rem;
    }
    
    .program-hero__title {
        font-size: 2.8rem;
    }
    
    .program-philosophy__content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pillars-grid--3,
    .pillars-grid--4,
    .pillars-grid--5,
    .pillars-grid--6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-nav__item {
        padding: 15px 20px;
        min-width: 120px;
    }
    
    .timeline-stage__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .features-grid--grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-row--reversed {
        direction: ltr;
    }
    
    .feature-row__number {
        display: none;
    }
    
    .gallery-masonry--col-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-slider__item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .posts-grid--grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .posts-grid--list .program-post-card {
        grid-template-columns: 250px 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .program-section__header {
        margin-bottom: 40px;
    }
    
    .program-section__title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .program-section__title .title-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Hero Mobile */
    .program-hero {
        min-height: 90vh;
    }
    
    .program-hero__title {
        font-size: 2rem;
    }
    
    .program-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .program-hero__badges {
        gap: 8px;
    }
    
    .program-hero__badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    /* Philosophy Mobile */
    .program-philosophy {
        padding: 60px 0;
    }
    
    .pillars-grid--3,
    .pillars-grid--4,
    .pillars-grid--5,
    .pillars-grid--6 {
        grid-template-columns: 1fr;
    }
    
    .pillar-card {
        padding: 30px 20px;
    }
    
    /* Timeline Mobile */
    .program-timeline {
        padding: 60px 0;
    }
    
    .timeline-nav {
        display: none;
    }
    
    .timeline-stages {
        display: none;
    }
    
    .timeline-mobile {
        display: block;
    }
    
    .timeline-mobile__item {
        display: flex;
        gap: 20px;
        padding-bottom: 30px;
        position: relative;
    }
    
    .timeline-mobile__item:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 25px;
        top: 55px;
        bottom: 0;
        width: 2px;
        background: var(--program-border);
    }
    
    .timeline-mobile__marker {
        flex-shrink: 0;
    }
    
    .timeline-mobile__marker .marker-icon {
        width: 50px;
        height: 50px;
        background: var(--stage-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }
    
    .timeline-mobile__content {
        flex: 1;
        background: white;
        padding: 20px;
        border-radius: var(--program-radius);
        box-shadow: var(--program-shadow);
    }
    
    .mobile-stage-header {
        margin-bottom: 15px;
    }
    
    .mobile-stage-age {
        display: inline-block;
        background: var(--stage-color);
        color: white;
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 8px;
    }
    
    .mobile-stage-name {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--program-text);
    }
    
    .mobile-stage-image {
        border-radius: var(--program-radius);
        overflow: hidden;
        margin-bottom: 15px;
    }
    
    .mobile-stage-image img {
        width: 100%;
        height: auto;
    }
    
    .mobile-stage-goals {
        font-size: 0.9rem;
        color: var(--program-text-light);
        margin-bottom: 15px;
    }
    
    .mobile-stage-skills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .skill-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: var(--program-bg-light);
        padding: 5px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        color: var(--program-text-light);
    }
    
    .skill-tag i {
        color: var(--stage-color);
        font-size: 0.7rem;
    }
    
    .skill-tag--more {
        background: var(--stage-color);
        color: white;
    }
    
    .mobile-stage-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--stage-color);
    }
    
    /* Features Mobile */
    .program-features {
        padding: 60px 0;
    }
    
    .features-grid--grid-3,
    .features-grid--grid-2 {
        grid-template-columns: 1fr;
    }
    
    .features-alternating {
        gap: 40px;
    }
    
    /* Gallery Mobile */
    .program-gallery {
        padding: 60px 0;
    }
    
    .gallery-masonry--col-3,
    .gallery-masonry--col-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-masonry__item--featured {
        grid-row: span 1;
    }
    
    .gallery-item__image {
        min-height: 150px;
    }
    
    .gallery-masonry__item--featured .gallery-item__image {
        min-height: 150px;
    }
    
    .gallery-slider__item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .gallery-slider__nav {
        display: none;
    }
    
    /* CTA Mobile */
    .program-cta {
        padding: 60px 0;
    }
    
    .program-cta--boxed .program-cta__inner {
        padding: 40px 25px;
    }
    
    .program-cta__title {
        font-size: 1.8rem;
    }
    
    .program-cta__actions {
        flex-direction: column;
    }
    
    .program-cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .program-cta__trust {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Posts Mobile */
    .program-posts {
        padding: 60px 0;
    }
    
    .program-posts__filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .posts-grid--grid-3,
    .posts-grid--grid-2 {
        grid-template-columns: 1fr;
    }
    
    .posts-grid--list .program-post-card {
        grid-template-columns: 1fr;
    }
    
    .program-post-card__image img,
    .program-post-card__image .post-thumbnail {
        height: 200px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .program-hero__title {
        font-size: 1.7rem;
    }
    
    .program-hero__actions .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .gallery-masonry--col-3,
    .gallery-masonry--col-4 {
        grid-template-columns: 1fr;
    }
    
    .gallery-item__image {
        min-height: 200px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .program-hero__shapes,
    .program-cta__shapes,
    .gallery-slider__nav,
    .program-posts__pagination {
        display: none !important;
    }
    
    .program-hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .program-cta {
        background: #f5f5f5 !important;
        color: #333 !important;
    }
}
