.vouchers-page {
    background-color: #000;
}

.vouchers-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: url('../assets/images/vouchers/voucher.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 60px;
    box-sizing: border-box;
}

/* Subtle overlay to improve readability */
.vouchers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.vouchers-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.vouchers-title {
    font-family: var(--font-condensed);
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.vouchers-subheader {
    font-family: var(--font-condensed);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px; /* Removed top margin for card-internal placement */
}

.vouchers-subtitle {
    font-family: var(--font-condensed);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    color: #fff; /* Changed to white as requested */
    margin: 0 0 30px;
    text-align: center;
}

/* Placeholder styling */
.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-condensed);
    font-weight: 600;
}

/* FORM CARD */
.voucher-form-card {
    background: rgba(22, 22, 22, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 20px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-family: var(--font-condensed);
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    background: rgba(45, 45, 45, 0.8);
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    font-family: var(--font-condensed);
    font-size: 1.1rem;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

.form-group input:focus {
    outline: 2px solid var(--brand-yellow);
    background: rgba(60, 60, 60, 0.9);
}

/* MISSION SELECTOR */
.mission-selector {
    margin: 30px 0;
    text-align: center;
}

.mission-selector label {
    display: block;
    font-family: var(--font-condensed);
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.mission-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mission-btn {
    background: rgba(45, 45, 45, 0.8);
    border: none;
    padding: 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5); /* Matching placeholder color */
    font-family: var(--font-condensed);
    font-weight: 400; /* Regular weight */
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.mission-btn:hover {
    background: rgba(80, 80, 80, 0.9);
}

.mission-btn.active {
    background: #ffff5a;
    color: #000;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* SUBMIT BUTTON */
.btn-submit {
    height: 50px;
    min-width: 200px;
    background-color: #ffff5a;
    color: #000;
    border: none;
    border-radius: 18px;
    padding: 0 30px;
    font-family: var(--font-condensed);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: #ffffff;
    color: #000;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.8);
    transform: scale(1.02);
}

.form-footer-text {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .form-row.split {
        flex-direction: column;
        gap: 20px;
    }
    
    .voucher-form-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .vouchers-hero {
        padding-top: 100px;
    }
}

/* ANIMATIONS & STATES */
.fade-content {
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
}

.fade-content.active {
    opacity: 1;
}

.hidden {
    display: none !important;
}

/* SUCCESS CARD */
.success-content {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.success-text {
    font-family: var(--font-condensed);
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
}

.btn-ok {
    height: 50px;
    min-width: 120px;
    background-color: #ffff5a;
    color: #000;
    border: none;
    border-radius: 18px;
    padding: 0 40px;
    font-family: var(--font-condensed);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-ok:hover {
    background-color: #ffffff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

/* ENTRANCE ANIMATION */
@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.voucher-form-card {
    opacity: 0;
    animation: fadeInCard 0.8s ease-out forwards;
}
