/* --- Program Overview: horizontal day cards --- */
.program-section { padding: 90px 0 100px; }
.program-section .container { padding-bottom: 40px; }

.day-scroll-wrap {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

.day-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.day-scroll::-webkit-scrollbar { display: none; }

.day-card {
    flex: 0 0 260px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 26px 22px;
    scroll-snap-align: start;
}

.day-scroll { scroll-snap-type: x mandatory; }

.day-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.day-card-label {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.day-card h3 {
    color: var(--dark-blue);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.day-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.day-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.day-scroll-btn.prev { left: 0; }
.day-scroll-btn.next { right: 0; }

@media (max-width: 768px) {
    .day-scroll-wrap { padding: 0 44px; }
    .day-card { flex: 0 0 220px; }
    .day-scroll-btn { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
    .day-scroll-wrap { padding: 0; }
    .day-scroll-btn { display: none; }
    .day-scroll { padding: 0 16px 4px; }
}



/* --- Visual Journey --- */
.visual-journey {
    background: #fff;
    padding: 90px 20px;
}

.vj-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.vj-left h2 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    line-height: 1.2;
    margin: 0 0 24px;
}

.vj-cta {
    display: inline-block;
    background: var(--dark-blue);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 24px;
    margin-bottom: 32px;
    transition: background 0.2s ease;
}

.vj-cta:hover { 
    background: #b63806; 
}

.vj-left-img img {
    width: 100%;
    max-width: 380px;
    border-radius: 6px;
    display: block;
}

.vj-main-img img {
    width: 100%;
    border-radius: 6px;
    display: block;
    margin-bottom: 24px;
}

.vj-intro {
    font-size: 1.02rem;
    line-height: 1.65;
    color: #444;
    margin: 0 0 28px;
}

.vj-quote {
    border-left: 4px solid var(--orange);
    padding-left: 20px;
    margin: 0 0 36px;
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--dark-blue);
    line-height: 1.5;
}

.vj-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vj-card {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 22px;
}

.vj-card h3 {
    color: var(--dark-blue);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.vj-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 900px) {
    .vj-container {
        grid-template-columns: 360px 1fr;
        gap: 70px;
        align-items: start;
    }
}

@media (max-width: 600px) {
    .visual-journey { padding: 60px 16px; }
    .vj-cards { grid-template-columns: 1fr; }
    .vj-quote { font-size: 1.05rem; }
}



/* --- Section Styling --- */
section {
    padding: 90px 0;
    background-color: white;
}
section:nth-child(even) {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    color: var(--dark-blue);
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.section-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 640px;
    margin: 0 auto;
}

/* --- Timeline --- */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
}

.timeline-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.timeline-content { flex: 1; }

.timeline-date {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 14px;
    margin-bottom: 10px;
}

.timeline-item h3 {
    color: var(--dark-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.timeline-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* --- Awards --- */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.award-card {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 34px 28px;
    text-align: center;
}

.award-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.award-card h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 12px;
}

.award-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* --- Visual Journey --- */
.showcase-section {
    background: var(--light-bg);
}

.showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.showcase-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--dark-blue);
}

.showcase-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.showcase-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
    color: #fff;
}

.showcase-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.showcase-description {
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* ================= RESPONSIVE ================= */
/* Each breakpoint below is standalone — none are nested inside another,
   which is invalid CSS and was silently breaking most of this section's
   responsive behavior in the previous version of this file. */

@media (max-width: 900px) {
    .feature-hero-content {
        padding: 0 20px 45px;
    }
    .feature-hero-toggle {
        gap: 30px;
        padding: 18px 16px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 80px 0 60px;
        text-align: center;
    }
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.3;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        margin: 0 auto;
        display: inline-block;
        text-align: center;
    }
    .cta-button i {
        margin-right: 8px;
        font-size: 1rem;
    }

    section { padding: 60px 0; }

    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.9rem; }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .award-card {
        max-width: 100%;
        width: 100%;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .showcase-item img { height: 300px; }
}

@media (max-width: 480px) {
    .feature-hero {
        min-height: 78vh;
    }
    .feature-hero-content h1 {
        font-size: 1.7rem;
    }
    .feature-hero-content p {
        font-size: 0.95rem;
    }

    .hero-section {
        min-height: 60vh;
        padding: 60px 0 40px;
    }
    .hero-content {
        padding: 0 10px;
    }
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        margin: 20px auto;
        display: block;
    }

    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 1.6rem; }
    .section-header p { font-size: 1rem; }

    .timeline-item h3 { font-size: 1.15rem; }
    .timeline-item p { font-size: 0.95rem; }

    .awards-grid { gap: 18px; }
    .award-card { padding: 26px 20px; }
    .award-icon { font-size: 2.2rem; }

    .showcase-container {
        padding: 0 10px;
        gap: 22px;
    }
    .showcase-item img { height: 240px; }
    .showcase-content { padding: 20px; }
    .showcase-title { font-size: 1.2rem; }
}

@media (max-width: 375px) {
    .hero-content h1 { font-size: 1.6rem; }
    .hero-content p { font-size: 0.95rem; }
    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 240px;
    }
    .cta-button i {
        margin-right: 5px;
        font-size: 0.75rem;
    }
    .section-header h2 { font-size: 1.5rem; }
    .award-card { padding: 20px; }
    .award-icon { font-size: 2rem; }
    .showcase-item img { height: 220px; }
    .showcase-content { padding: 18px; }
    .showcase-title { font-size: 1.1rem; }
}

@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .cta-button {
        padding: 8px 16px;
        font-size: 0.8rem;
        max-width: 200px;
        letter-spacing: 0px;
    }
    .cta-button i {
        margin-right: 4px;
        font-size: 0.65rem;
    }
    .section-header h2 { font-size: 1.4rem; }
    .section-header p { font-size: 0.85rem; }
    .hero-section { padding: 50px 0 30px; }
}


.sa-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.sa-hero-img {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% 0%;   /* was: 50% 10% — shifted right toward the face, and up to the very top */
    display: block;
    filter: grayscale(15%);
}

.sa-hero-shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(7,17,39,0.92) 0%, rgba(7,17,39,0.55) 45%, rgba(7,17,39,0.15) 75%);
}

.sa-hero-body {
    position: relative;
    z-index: 5;
    max-width: 680px;
    padding: 0 40px 60px;
}

.sa-hero-tag {
    display: inline-block;
    background: #b63806;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    margin-bottom: 22px;
}

.sa-hero-body h1 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 0 0 20px;
}

.sa-hero-body p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    margin: 0 0 30px;
    max-width: 560px;
}

.sa-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0a1a3f;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 26px;
}

.sa-hero-btn:hover {
    background: #b63806;
    color: #fff;
}

@media (min-width: 1400px) {
    .sa-hero-img {
        object-position: 50% 0%;
    }
}

@media (max-width: 900px) {
    .sa-hero {
        min-height: 90vh;
    }
    .sa-hero-body {
        padding: 0 24px 45px;
    }
}

@media (max-width: 480px) {
    .sa-hero {
        min-height: 78vh;
    }
    .sa-hero-body h1 {
        font-size: 1.7rem;
    }
    .sa-hero-body p {
        font-size: 0.95rem;
    }
}