/* Schedule Section */
.schedule {
    background-color: var(--bg-light);
}

.schedule-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.day-block {
    margin-bottom: 4rem;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(142, 68, 173, 0.1);
}

.day-number {
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.schedule-list li {
    display: flex;
    gap: 3rem;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.schedule-list li:hover {
    transform: translateX(10px);
}

.time {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
    min-width: 60px;
}

.event-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-main);
}

.event-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Schedule Section Tweaks */
.speaker-mini {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.speaker-mini img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-list li {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.schedule-list li:last-child {
    border-bottom: none;
}

.multiple-speakers {
    display: flex;
    position: relative;
    width: 90px;
    /* Wider to accommodate overlap */
    height: 60px;
}

.multiple-speakers img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.multiple-speakers img:nth-child(2) {
    position: absolute;
    left: 30px;
    z-index: 1;
}

.event-social {
    background: rgba(108, 92, 231, 0.05);
    border-radius: 15px;
    padding: 1.5rem !important;
    margin-top: 1rem;
}

/* Contrast & Depth Tweaks */
section {
    position: relative;
}

section:nth-child(even) {
    background-color: #f8f6fb;
    box-shadow: inset 0 30px 60px rgba(142, 68, 173, 0.03), inset 0 -30px 60px rgba(142, 68, 173, 0.03);
}

.stat-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.topics-container {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
}

/* Investment Section */
.investment {
    background-color: var(--bg-white);
}

.investment .container {
    max-width: 1400px;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin: 0 auto;
}

.investment-card {
    background: var(--bg-light);
    padding: 4rem 3rem;
    border-radius: 40px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.investment-card.featured {
    background: var(--bg-white);
    border: 2px solid var(--accent-color);
    box-shadow: 0 40px 80px rgba(108, 92, 231, 0.2);
    transform: scale(1.05);
}

.investment-card.featured:hover {
    transform: scale(1.07) translateY(-10px);
}

.investment-card.featured .badge {
    background: var(--accent-gradient);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #636e72;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.investment-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.price-wrapper {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price {
    font-family: var(--font-sans);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.installment {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.benefits-list {
    text-align: left;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.benefit-item i {
    color: #27ae60;
}

.investment-card .btn {
    width: 100%;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Local Section */
.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.local-cta {
    margin-top: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* CTA Final */
.cta-final {
    background: var(--accent-gradient);
    color: white;
    text-align: center;
    padding: 8rem 0;
}

.cta-final .section-title::after {
    background: white;
}

.cta-final h2 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta-final .btn-secondary {
    border-color: white;
    color: white;
}

.cta-final .btn-secondary:hover {
    background: white;
    color: var(--accent-color);
}

/* Footer */
.main-footer {
    padding: 4rem 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .schedule-list li {
        flex-direction: column;
        gap: 0.5rem;
    }

    .investment-card {
        padding: 3rem 1.5rem;
    }

    .price {
        font-size: 3.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .local-grid {
        grid-template-columns: 1fr;
    }

    .cta-final h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}