/* 
 * FKK Point Bruchsal - Gutschein-Seite Styling
 * Verbesserte und ansprechendere Gestaltung für das Gutscheinsystem
 */

/* Hero-Sektion */
.voucher-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../img/voucher-hero.webp') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Platz für den festen Header */
}

.voucher-hero .hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
    animation: fadeInUp 1s ease-out;
}

.voucher-hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.voucher-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Animierter CTA-Button */
.pulse-animation {
    animation: pulse 2s infinite;
    transform: scale(1);
}

@keyframes pulse {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(209, 10, 16, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(209, 10, 16, 0);
    }
    
    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(209, 10, 16, 0);
    }
}

/* Hintergrundkreise für den Hero-Bereich */
.voucher-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: var(--primary-red);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    left: -100px;
    z-index: 1;
    animation: floatAnimation 15s ease-in-out infinite;
}

.voucher-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--gold);
    border-radius: 50%;
    opacity: 0.1;
    bottom: -100px;
    right: -50px;
    z-index: 1;
    animation: floatAnimation 12s ease-in-out infinite reverse;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(15px, -15px);
    }
    50% {
        transform: translate(0, 25px);
    }
    75% {
        transform: translate(-15px, -10px);
    }
}

/* Vorteile-Sektion */
.voucher-benefits {
    background-color: var(--white);
    color: var(--black);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background-color: var(--light-gray);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom-color: var(--primary-red);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(209, 10, 16, 0.3);
    position: relative;
    z-index: 1;
}

.benefit-card h3 {
    color: var(--primary-red);
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.benefit-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--primary-red));
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Hintergrunddekorationen für Vorteile-Sektion */
.voucher-benefits::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(209, 10, 16, 0.03);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.voucher-benefits::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(212, 175, 55, 0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
}

/* Gutschein-Ersteller-Sektion */
.voucher-creator {
    background-color: var(--light-gray);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-red);
    position: relative;
    padding-bottom: 15px;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary-red));
}

.voucher-creation-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

/* Vorschaubereich */
.voucher-preview-container {
    flex: 1;
    min-width: 300px;
}

.voucher-preview-container h3 {
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.voucher-preview {
    background-color: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 400px;
    margin-bottom: 20px;
    perspective: 1000px;
}

.voucher-preview-inner {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    background-image: radial-gradient(circle at 10% 90%, rgba(209, 10, 16, 0.03) 0%, transparent 30%),
                     radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.03) 0%, transparent 30%);
    border-radius: 10px;
    border: 2px solid var(--gold);
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    min-height: 400px;
    overflow: hidden;
}

.voucher-preview-inner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: rgba(240, 240, 240, 0.5);
    border-top: 1px dashed rgba(150, 150, 150, 0.2);
    z-index: 0;
}

.voucher-preview:hover .voucher-preview-inner {
    transform: rotateY(5deg);
    box-shadow: -10px 10px 20px rgba(0,0,0,0.2);
}

.voucher-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(209, 10, 16, 0.3);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.voucher-logo::after {
    content: 'FKK POINT';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.voucher-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.voucher-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.voucher-serial {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 10px;
    color: var(--gray);
    opacity: 0.6;
    transform: rotate(5deg);
    font-family: 'Courier New', monospace;
}

.voucher-header h4 {
    font-size: 28px;
    color: var(--primary-red);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
}

.voucher-header h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.voucher-value {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 10px;
    padding: 5px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.voucher-message {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    font-style: italic;
    margin: 20px 0;
    padding: 20px 15px;
    border-top: 1px dashed var(--light-gold);
    border-bottom: 1px dashed var(--light-gold);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.voucher-message::before, 
.voucher-message::after {
    content: '❝';
    position: absolute;
    font-size: 30px;
    color: var(--gold);
    opacity: 0.3;
}

.voucher-message::before {
    top: 5px;
    left: 10px;
}

.voucher-message::after {
    content: '❞';
    bottom: 5px;
    right: 10px;
}

.voucher-footer {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.voucher-contact-info {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    color: var(--primary-red);
    font-weight: 500;
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px dashed rgba(209, 10, 16, 0.2);
    z-index: 1;
}

.voucher-contact-info span {
    display: inline-block;
    margin: 0 5px;
}

.voucher-qr-placeholder {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: white;
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.qr-code-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(7, 1fr);
    width: 90%;
    height: 90%;
    gap: 1px;
}

.qr-code-cell {
    background-color: transparent;
}

.qr-code-cell.filled {
    background-color: var(--primary-red);
}

.qr-code-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 8px;
    background-color: var(--primary-red);
    color: white;
    padding: 2px 0;
    font-weight: bold;
}

.voucher-size-note {
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    opacity: 0.7;
}

/* Formular-Container */
.voucher-form-container {
    flex: 1.5;
    min-width: 400px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.voucher-form h3 {
    color: var(--primary-red);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--gray);
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Verbesserte Eingabefelder */
.form-control {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #333;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.form-control::placeholder {
    color: #aaa;
    opacity: 0.8;
    font-style: italic;
}

.form-control:hover {
    border-color: var(--primary-red);
    background-color: #fafafa;
}

select.form-control {
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d10a10' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    cursor: pointer;
    font-weight: 500;
    background-color: #ffffff;
}

select.form-control:hover {
    background-color: #fafafa;
}

select.form-control option {
    padding: 15px;
    background-color: #fff;
    color: #333;
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(209, 10, 16, 0.2);
    outline: none;
    background-color: #fff;
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
    line-height: 1.5;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(209, 10, 16, 0.2);
    outline: none;
}

/* Verbesserter Stil für fokussierte Felder */
.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--gray);
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
    color: var(--primary-red);
}

/* Animation für Eingabefelder */
@keyframes focusField {
    0% { box-shadow: 0 0 0 0 rgba(209, 10, 16, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(209, 10, 16, 0); }
    100% { box-shadow: 0 0 0 0 rgba(209, 10, 16, 0); }
}

.form-control:focus {
    animation: focusField 1s ease-out;
}

.character-counter {
    text-align: right;
    font-size: 12px;
    color: var(--gray);
    margin-top: 5px;
}

/* Design-Auswahl */
.design-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.design-option input[type="radio"] {
    display: none;
}

.design-preview {
    height: 80px;
    border-radius: 10px;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.design-preview span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 0 5px;
}

.design-option input[type="radio"]:checked + label .design-preview {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.design-option input[type="radio"]:checked + label .design-preview::after {
    content: '✓';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Lieferoptionen und Zahlungsmethoden */
.delivery-options,
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.delivery-option,
.payment-method {
    flex: 1;
    min-width: 150px;
}

.delivery-option input[type="radio"],
.payment-method input[type="radio"] {
    display: none;
}

.delivery-option label,
.payment-method label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.delivery-option input[type="radio"]:checked + label,
.payment-method input[type="radio"]:checked + label {
    border-color: var(--primary-red);
    background-color: rgba(209, 10, 16, 0.05);
}

.delivery-option label i,
.payment-method label i {
    font-size: 24px;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.delivery-option label span,
.payment-method label span {
    text-align: center;
    font-weight: 600;
    color: var(--gray);
}

/* Zusammenfassung */
.form-summary {
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span:first-child {
    font-weight: 500;
    color: #555;
}

.summary-row span:last-child {
    font-weight: 600;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 6px;
}

.summary-total {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid rgba(209, 10, 16, 0.2);
}

.summary-total span:last-child {
    font-size: 1.3rem;
    color: var(--primary-red);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Checkbox für AGB */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin: 25px 0;
}

.checkbox-group input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 3px;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-group label {
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkbox-group a:hover {
    color: var(--secondary-red);
    text-decoration: underline;
}

/* Bestell-Button */
.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-actions .cta-button {
    padding: 16px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(209, 10, 16, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    position: relative;
    overflow: hidden;
}

.form-actions .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(209, 10, 16, 0.4);
}

.form-actions .cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(209, 10, 16, 0.3);
}

/* FAQ-Sektion */
.voucher-faq {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.voucher-faq .section-title {
    color: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255,255,255,0.05);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255,255,255,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--light-gold);
    font-weight: 600;
}

.faq-toggle {
    color: var(--gold);
    font-weight: 300;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Hintergrunddekorationen für FAQ-Sektion */
.voucher-faq::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: rgba(209, 10, 16, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 1;
}

.voucher-faq::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: 1;
}

/* Responsive Styling */
@media (max-width: 1200px) {
    .voucher-creation-container {
        flex-direction: column;
    }
    
    .voucher-preview-container,
    .voucher-form-container {
        width: 100%;
        min-width: auto;
    }
    
    .voucher-preview {
        max-width: 500px;
        margin: 0 auto 20px;
    }
}

@media (max-width: 992px) {
    .voucher-hero {
        min-height: 350px;
    }
    
    .voucher-hero h1 {
        font-size: 3rem;
    }
    
    .voucher-hero .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .delivery-options,
    .payment-methods {
        flex-direction: column;
    }
    
    .delivery-option,
    .payment-method {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .voucher-hero {
        min-height: 300px;
    }
    
    .voucher-hero h1 {
        font-size: 2.5rem;
    }
    
    .voucher-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .voucher-form-container {
        padding: 30px 20px;
    }
    
    .design-selector {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .voucher-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .voucher-preview-inner {
        padding: 20px;
    }
    
    .voucher-header h4 {
        font-size: 24px;
    }
    
    .voucher-value {
        font-size: 28px;
    }
    
    .voucher-message {
        font-size: 16px;
    }
}

/* Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spezielle Effekte und Verbesserungen */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.cta-button:hover::after {
    animation: shine 1.5s ease;
}

@keyframes shine {
    100% {
        left: 150%;
    }
}