/* Learn to Row Page Styles */

/* ===== Hero Section ===== */
.learn-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, var(--otrc-navy) 0%, #1a1c3d 100%);
    background-image: url('/images/frontend/slider/slider1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.learn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 37, 80, 0.9) 0%, rgba(26, 28, 61, 0.85) 100%);
    z-index: 1;
}

.learn-hero .container {
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--otrc-gold);
    margin-bottom: 0.5rem;
}

.hero-stats .stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* British Rowing Badge in Hero */
.hero-badge {
    margin-top: 1.5rem;
}

.badge-british-rowing {
    display: inline-block;
    background: linear-gradient(135deg, var(--otrc-gold) 0%, #c9a227 100%);
    color: var(--otrc-navy);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.badge-british-rowing i {
    color: var(--otrc-navy);
}

/* ===== Intro Section ===== */
.intro-section {
    background: white;
}

.intro-text {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
}

/* ===== Story Section ===== */
.story-section {
    padding: 5rem 0;
    background: white;
}

.story-content {
    padding-right: 3rem;
}

.story-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-left: 4px solid var(--otrc-gold);
    border-radius: 8px;
}

.story-quote blockquote {
    margin: 0;
    font-style: italic;
    color: var(--otrc-navy);
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--otrc-gold);
    font-style: normal;
    font-weight: 600;
}

.story-images {
    position: relative;
}

.story-image-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-badge i {
    font-size: 2rem;
    color: var(--otrc-gold);
}

.story-badge span {
    font-weight: 600;
    color: var(--otrc-navy);
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--otrc-gold) 0%, #e5c157 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--otrc-navy);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.benefit-stat {
    margin-top: auto;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.stat-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--otrc-gold) 0%, #e5c157 100%);
    border-radius: 4px;
    transition: width 1.5s ease;
}

/* Comparison Table */
.benefits-comparison {
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.comparison-row {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.sport-name {
    width: 100px;
    font-weight: 600;
    color: var(--otrc-navy);
}

.comparison-bars {
    flex: 1;
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.comparison-bars .bar {
    height: 30px;
    background: linear-gradient(90deg, var(--otrc-navy) 0%, #2a2f5f 100%);
    border-radius: 15px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    width: 0;
    transition: width 1.5s ease;
    overflow: hidden;
    white-space: nowrap;
}

.comparison-bars .bar.cardio {
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 100%);
}

.comparison-bars .bar.strength {
    background: linear-gradient(90deg, #4ecdc4 0%, #44a08d 100%);
}

.comparison-bars .bar.impact {
    background: linear-gradient(90deg, var(--otrc-gold) 0%, #e5c157 100%);
}

/* ===== Journey Section ===== */
.journey-section {
    padding: 5rem 0;
    background: white;
}

.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.timeline-progress {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--otrc-gold) 0%, var(--otrc-navy) 100%);
}

.journey-week {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 100px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.journey-week.visible {
    opacity: 1;
    transform: translateX(0);
}

.week-marker {
    position: absolute;
    left: 30px;
    top: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--otrc-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.week-number {
    font-weight: 700;
    color: var(--otrc-navy);
}

.week-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 3px solid var(--otrc-gold);
}

.week-content h3 {
    color: var(--otrc-navy);
    margin-bottom: 1rem;
}

.week-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

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

.week-activities li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
}

.week-activities li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--otrc-gold);
    font-weight: bold;
}

/* ===== Included Section ===== */
.included-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.included-list {
    margin-top: 2rem;
}

.included-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--otrc-gold) 0%, #e5c157 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
}

.item-content h4 {
    color: var(--otrc-navy);
    margin-bottom: 0.5rem;
}

.item-content p {
    color: #6c757d;
    margin: 0;
}

.included-image {
    position: relative;
}

.included-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--otrc-gold);
    margin-bottom: 0.5rem;
}

.price-text {
    font-weight: 600;
    color: var(--otrc-navy);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: #6c757d;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--otrc-navy) 0%, #2a2f5f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

.testimonial-info h4 {
    margin: 0;
    color: var(--otrc-navy);
    font-size: 1.1rem;
}

.testimonial-role {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: var(--otrc-gold);
}

.testimonial-content p {
    color: #495057;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--otrc-navy);
}

.testimonial-achievement i {
    color: var(--otrc-gold);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--otrc-navy);
    font-weight: 600;
    padding: 1.25rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: var(--otrc-navy);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--otrc-gold);
}

.accordion-button:not(.collapsed)::after {
    content: '−';
}

.accordion-body {
    padding: 1.25rem;
    background: white;
    color: #6c757d;
    line-height: 1.8;
}

/* ===== CTA Section ===== */
.learn-cta {
    background: linear-gradient(135deg, var(--otrc-navy) 0%, #1a1c3d 100%);
    padding: 5rem 0;
}

.learn-cta .cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.learn-cta .cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.learn-cta .cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.cta-message {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-icon {
    margin-bottom: 1.5rem;
}

.message-icon i {
    font-size: 3rem;
    color: var(--otrc-gold);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-message h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-message .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-contact {
    color: rgba(255, 255, 255, 0.9);
}

.cta-contact strong {
    color: var(--otrc-gold);
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(33, 37, 80, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.overlay-content h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

/* Touch device support */
@media (hover: none) and (pointer: coarse) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 50%, rgba(33, 37, 80, 0.98) 100%);
    }
    
    .gallery-item:hover img {
        transform: none;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    /* Gallery - Always show overlay on mobile */
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 50%, rgba(33, 37, 80, 0.98) 100%);
    }

    .gallery-item:hover img {
        transform: none; /* Disable zoom on mobile */
    }

    /* Hero Section Mobile */
    .learn-hero {
        min-height: 600px;
        padding: 4rem 0;
    }

    .hero-stats {
        gap: 1.5rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero-stats .stat-item {
        min-width: 85px;
        flex: 1;
    }

    .hero-stats .stat-number {
        font-size: 2rem;
    }

    .hero-stats .stat-text {
        font-size: 0.8rem;
    }

    .hero-stats .stat-number {
        font-size: 1.75rem;
    }

    .hero-stats .stat-text {
        font-size: 0.75rem;
    }
    
    .story-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .story-badge {
        position: static;
        margin-top: 2rem;
    }
    
    .comparison-bars {
        flex-direction: column;
        margin-left: 1rem;
    }
    
    .journey-timeline {
        padding-left: 0;
    }
    
    .timeline-progress {
        left: 20px;
    }
    
    .journey-week {
        padding-left: 60px;
    }
    
    .week-marker {
        left: 0;
    }
    
    .price-badge {
        position: static;
        margin-top: 2rem;
    }
    
    .cta-message {
        padding: 1.5rem;
    }

    .cta-message h3 {
        font-size: 1.5rem;
    }

    .cta-message .lead {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .ms-3 {
        margin-left: 0 !important;
    }

    /* Hero section mobile improvements */
    .learn-hero {
        min-height: 600px;
        padding: 4rem 0;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .section-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens */
    .hero-stats {
        gap: 0.75rem;
    }

    .hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .hero-stats .stat-text {
        font-size: 0.7rem;
        letter-spacing: 0;
    }

    .learn-hero {
        min-height: 650px;
    }
}

/* ===== Course Options Section ===== */
.course-options-section {
    background: white;
}

.course-option-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    position: relative;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.option-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    position: relative;
    z-index: 1;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-option-card:hover .option-image img {
    transform: scale(1.05);
}

.option-content {
    padding: 2rem;
}

.course-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.course-option-card.taster {
    border-color: #0891b2;
    background: linear-gradient(180deg, #ecfeff 0%, #ffffff 30%);
}

.course-option-card.taster:hover {
    box-shadow: 0 20px 50px rgba(8, 145, 178, 0.2);
}

.course-option-card.learn-to-row {
    border-color: var(--otrc-navy);
    background: linear-gradient(180deg, #eef2ff 0%, #ffffff 30%);
}

.course-option-card.learn-to-row:hover {
    box-shadow: 0 20px 50px rgba(33, 37, 80, 0.2);
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.option-badge.recommended {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: white;
}

.option-badge.full-course {
    background: linear-gradient(135deg, var(--otrc-navy) 0%, #2d3266 100%);
    color: white;
}

.option-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.course-option-card.taster .option-icon {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: white;
}

.course-option-card.learn-to-row .option-icon {
    background: linear-gradient(135deg, var(--otrc-navy) 0%, #2d3266 100%);
    color: white;
}

.course-option-card h3 {
    text-align: center;
    color: var(--otrc-navy);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.option-tagline {
    text-align: center;
    color: #64748b;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.option-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.option-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #334155;
}

.option-features li:last-child {
    border-bottom: none;
}

.course-option-card.taster .option-features li i {
    color: #0891b2;
}

.course-option-card.learn-to-row .option-features li i {
    color: var(--otrc-navy);
}

.option-ideal {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.option-ideal strong {
    color: var(--otrc-navy);
}

/* Compact features list */
.option-features-compact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.option-features-compact li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #334155;
    font-size: 0.9rem;
}

.course-option-card.taster .option-features-compact li i {
    color: #0891b2;
}

.course-option-card.learn-to-row .option-features-compact li i {
    color: var(--otrc-navy);
}

/* Available Courses Section within cards */
.available-courses {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.course-option-card.taster .available-courses {
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 50%);
}

.course-option-card.learn-to-row .available-courses {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 50%);
}

.available-courses-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--otrc-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(33, 37, 80, 0.1);
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.course-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.course-list-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.course-option-card.taster .course-list-item:hover {
    border-color: #0891b2;
}

.course-option-card.learn-to-row .course-list-item:hover {
    border-color: var(--otrc-navy);
}

.course-list-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 45px;
    padding: 0.5rem;
    border-radius: 8px;
}

.course-option-card.taster .course-list-date {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: white;
}

.course-option-card.learn-to-row .course-list-date {
    background: linear-gradient(135deg, var(--otrc-navy) 0%, #2d3266 100%);
    color: white;
}

.course-list-date .day {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.course-list-date .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.course-list-info {
    flex: 1;
}

.course-list-name {
    font-weight: 600;
    color: var(--otrc-navy);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.course-list-times {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.time-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.time-badge.full {
    background: #f1f5f9;
    color: #94a3b8;
    text-decoration: line-through;
}

.time-badge.more {
    background: #fef3c7;
    color: #92400e;
}

.course-list-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #64748b;
}

.course-list-action {
    color: #94a3b8;
}

.course-list-action .spots-badge {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.no-courses-message {
    text-align: center;
    padding: 1.5rem;
    color: #64748b;
}

.no-courses-message i {
    font-size: 2rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    display: block;
}

.no-courses-message p {
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.no-courses-message small {
    color: #94a3b8;
}

@media (max-width: 768px) {
    .course-list-item {
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        gap: 0.5rem;
        position: relative;
    }

    .course-list-item:hover {
        transform: none;
    }

    .course-list-date {
        flex-direction: row;
        justify-content: center;
        gap: 0.4rem;
        min-width: unset;
        padding: 0.5rem 0.75rem;
        width: 100%;
        border-radius: 6px;
    }

    .course-list-date .day {
        font-size: 1.1rem;
    }

    .course-list-date .month {
        font-size: 0.8rem;
    }

    .course-list-info {
        text-align: left;
    }

    .course-list-name {
        font-size: 1rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
    }

    .course-list-name .age-badge {
        font-size: 0.7rem;
        margin-left: 0 !important;
    }

    .course-list-meta {
        flex-direction: column;
        gap: 0.25rem;
        margin-top: 0.35rem;
    }

    .course-list-action {
        position: absolute;
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .course-list-times {
        gap: 0.25rem;
        margin-top: 0.35rem;
    }

    .time-badge {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }
}

.course-path-suggestion {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    position: relative;
}

.course-path-suggestion .path-arrow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--otrc-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--otrc-navy);
    font-size: 1rem;
}

.course-path-suggestion p {
    color: #92400e;
}

.course-path-suggestion strong {
    color: #78350f;
}

@media (max-width: 991px) {
    .course-option-card {
        margin-bottom: 2rem;
    }
}

/* ===== Upcoming Courses Section ===== */
.courses-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.courses-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(33, 37, 80, 0.2);
}

.courses-feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.courses-image-wrapper:hover .courses-feature-image {
    transform: scale(1.03);
}

.courses-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--otrc-gold);
    color: var(--otrc-navy);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: float 3s ease-in-out infinite;
}

.courses-image-badge i {
    font-size: 1.1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 991px) {
    .courses-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

.course-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.course-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(33, 37, 80, 0.15);
    border-color: var(--otrc-navy);
}

.course-card.learn-course .course-badge {
    background: linear-gradient(135deg, var(--otrc-navy) 0%, #2d3266 100%);
}

.course-card.taster-course .course-badge {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.course-badge {
    color: white;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--otrc-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.course-date {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.course-date i {
    color: var(--otrc-navy);
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-item {
    font-size: 0.9rem;
    color: #475569;
}

.detail-item i {
    color: var(--otrc-gold);
}

.course-spots {
    margin-top: auto;
}

.spots-available {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
}

.spots-available i {
    color: #10b981;
}

.spots-full {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.9rem;
}

.spots-full i {
    color: #ef4444;
}

/* Time slot badges for taster courses */
.course-time-slots {
    border-top: 1px solid #e2e8f0;
    padding-top: 0.75rem;
}

.time-slot-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.time-slot-badge small {
    font-weight: 400;
    opacity: 0.8;
}

.time-slot-badge.full {
    background: #fee2e2;
    color: #dc2626;
    text-decoration: line-through;
}

.course-action {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.btn-register {
    display: block;
    text-align: center;
    color: var(--otrc-navy);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.course-card:hover .btn-register {
    color: var(--otrc-gold);
}

.course-card:hover .btn-register i {
    transform: translateX(4px);
}

.btn-register i {
    transition: transform 0.2s ease;
}

/* Taster course accent */
.course-card.taster-course:hover {
    border-color: #0891b2;
}

.course-card.taster-course .course-date i,
.course-card.taster-course .detail-item i {
    color: #0891b2;
}

.course-card.taster-course:hover .btn-register {
    color: #0891b2;
}

@media (max-width: 768px) {
    .course-card {
        margin-bottom: 1rem;
    }

    .course-content {
        padding: 1.25rem;
    }

    .course-title {
        font-size: 1.1rem;
    }
}