/* /var/www/html/FRANCHISE/FR.css – Basisstyles + Erweiterungen */
.franchise-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.fr-hero {
    background: linear-gradient(135deg, #1e2937 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.fr-hero h1 {
    font-size: 3.2em;
    color: #00d4ff;
    margin: 0 0 20px;
}

.fr-subtitle {
    font-size: 1.35em;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.fr-btn {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1em;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    color: white;
    border: none;
    cursor: pointer;
}

.fr-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

/* ===== ROTIERENDE VORTEILE ===== */
.fr-rotating-benefits {
    position: relative;
    height: 180px;
    margin: 2rem 0;
}
.fr-benefit-rotating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}
.fr-benefit-rotating.active {
    opacity: 1;
    pointer-events: auto;
}
.fr-benefit-rotating i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    display: inline-block;
}
.fr-benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.fr-benefit-desc {
    font-size: 1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== MODAL ===== */
.fr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fr-modal-container {
    background: #1e2937;
    border-radius: 1.5rem;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 35px rgba(0,0,0,0.5);
}
.fr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #334155;
}
.fr-modal-header h2 {
    margin: 0;
    color: #00d4ff;
}
.fr-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #94a3b8;
    line-height: 1;
}
.fr-modal-close:hover {
    color: #ef4444;
}
.fr-modal-body {
    padding: 1.5rem;
}

/* ===== FORMULAR ===== */
.fr-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}
.fr-form-group {
    flex: 1;
}
.fr-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #cbd5e1;
}
.fr-form-group input,
.fr-form-group select,
.fr-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #334155;
    border-radius: 12px;
    background: #0f172a;
    color: #e2e8f0;
    font-size: 1em;
}
.fr-form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.fr-success {
    text-align: center;
    padding: 40px;
    color: #10b981;
}

/* ===== MOBIL ===== */
@media (max-width: 640px) {
    .fr-form-row {
        flex-direction: column;
        gap: 0.5rem;
    }
}