.glass-header {
    background: var(--glass-strong, rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.promo-banner {
    text-align: center;
    margin-bottom: 40px;
    margin-top: -20px;
}

.promo-banner p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--main-color, #2c3d39);
    letter-spacing: 1px;
}

.promo-banner span {
    color: var(--accent-gold, #c5a059);
    font-size: 0.95rem;
    font-weight: 500;
}

.tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 10px;
}

.tabs-container {
    display: flex;
    justify-content: space-between;
    background: var(--white, #ffffff);
    padding: 5px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft, 0 15px 40px rgba(44, 61, 57, 0.1));
    width: 100%;
    max-width: 500px;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 5px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--main-color, #2c3d39);
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    text-align: center;
}

.tab-btn.active {
    background: var(--main-color, #2c3d39);
    color: var(--white, #ffffff);
    box-shadow: 0 4px 15px rgba(44, 61, 57, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.option-card {
    background: var(--white, #ffffff);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft, 0 15px 40px rgba(44, 61, 57, 0.1));
    text-align: center;
    border-top: 4px solid var(--accent-gold, #c5a059);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.option-card:hover {
    transform: translateY(-8px);
}

.option-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--main-color, #2c3d39);
    margin-bottom: 15px;
}

.option-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--main-color, #2c3d39);
    margin-bottom: 15px;
}

.option-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.schedule-wrapper {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft, 0 15px 40px rgba(44, 61, 57, 0.1));
    border-radius: 30px;
    overflow: hidden;
}

.schedule-card-dark {
    background: var(--main-color, #2c3d39);
    color: white;
    padding: 50px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.schedule-row .dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.3);
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.schedule-special {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--accent-gold, #c5a059);
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.6;
}

.schedule-special strong {
    color: var(--white, #ffffff);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--main-color, #2c3d39);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s ease;
}

.back-link:hover {
    color: var(--hover-color, #73827e);
}

@media (max-width: 768px) {
    .schedule-card-dark { padding: 30px 20px; }
    .schedule-row { font-size: 0.75rem; }
    .tabs-container { padding: 5px; }
    .tab-btn { padding: 8px 2px; font-size: 0.75rem; }
    .back-link { font-size: 0.9rem; }
}