/* Future Programs Section */
.future-programs {
    padding: 100px 0;
    background-color: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.future-programs .container {
    position: relative;
    width: 100%;
}

.future-programs .section-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 80px;
    max-width: 600px;
    line-height: 1.2;
}

.program-list-wrapper {
    position: relative;
    overflow: hidden;
}

.program-list {
    display: flex;
    transition: transform 0.5s ease;
}

.program-page {
    flex: 0 0 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.program-item {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background-color: transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.program-item:hover {
    background-color: var(--secondary-color);
    border-radius: 12px;
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 59, 0.8);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    border-radius: 12px;
}

.program-item.past-program:hover .program-overlay {
    opacity: 1;
}

.program-info {
    flex: 1;
}

.program-subtitle {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.program-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.program-date {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-left: 30px;
    white-space: nowrap;
}

.future-programs .navigation-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 40px;
}

.future-programs .nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.future-programs .nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.future-programs .nav-arrow i {
    font-size: 1.2rem;
}

.belveb-promo-card {
    background: linear-gradient(135deg, #999999, #0826EF);
    border-radius: 25px;
    margin-top: 80px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.promo-card-content {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.promo-card-info {
    color: #ffffff;
}

.promo-card-info h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #ffffff;
}

.promo-card-percent {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
}

.percent-number {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.percent-text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.percent-subtext {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
}

.promo-card-terms {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 40px;
}

.promo-card-link {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.promo-card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.promo-card-link:hover {
    color: var(--secondary-color); /* Blue on hover */
}

.promo-card-link:hover::before {
    opacity: 0; /* Hide bracket */
}

.promo-card-link:hover::after {
    transform: scaleX(0); /* Hide underline */
}

/* Specific override for this link's corner bracket */
.promo-card-link.link-decorated::before {
    top: -20px; /* Higher than the default -10px */
}

.promo-card-logo {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    height: 100%;
    position: static;
}

.promo-card-logo img {
    width: auto;
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
}

.promo-card-logo p {
    font-family: 'HelveticaNeueCyr', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: static;
    padding-left: 0;
} 