/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #6c757d;
    --primary-dark: #495057;
    --primary-light: #adb5bd;
    --secondary-color: #1a1a2e;
    --secondary-light: #16213e;
    --accent-color: #ffd700;
    --logo-blue: #0a1e4a;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f5f5f5;
    --bg-dark: #0f0f1e;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-subtitle {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.section-title .accent {
    color: var(--logo-blue);
    position: relative;
}

.section-title .accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #0a1e4a 0%, #1a3a7a 100%);
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(108, 117, 125, 0.5));
}

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: 2px;
}

.logo-text small {
    font-size: 0.8rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* WordPress nav menu integration */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li {
    list-style: none;
}

.nav-link,
.nav-menu a {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu .current-menu-item a::before,
.nav-link.active::before {
    width: 100%;
}

.nav-menu a.cta-btn,
.nav-menu .cta-btn a {
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 10px 25px;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.4);
}

.nav-menu a.cta-btn::before,
.nav-menu .cta-btn a::before {
    display: none;
}

.nav-menu a.cta-btn:hover,
.nav-menu .cta-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.6);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/karate.jpg');
    background-size: cover;
    background-position: center;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(108, 117, 125, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 5px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: 5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .accent {
    color: var(--logo-blue);
    text-shadow: 0 0 30px rgba(10, 30, 74, 0.8);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

/* ===================================
   Scroll Indicator
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ===================================
   Section Header
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===================================
   News Section
   =================================== */
.news-section {
    padding: 100px 0;
    background: var(--text-light);
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 100px 0;
    background: var(--text-light);
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.highlight-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: grayscale(50%);
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.highlight-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   Angebote Section
   =================================== */
.angebote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.angebot-card {
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 3px solid transparent;
}

.angebot-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.angebot-header {
    background: var(--gradient-secondary);
    padding: 25px;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.angebot-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.angebot-badge {
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.angebot-badge.popular {
    background: var(--accent-color);
    color: var(--text-dark);
}

.angebot-image {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.angebot-icon {
    font-size: 5rem;
    filter: grayscale(30%);
    transition: var(--transition);
}

.angebot-card:hover .angebot-icon {
    filter: grayscale(0%);
    transform: scale(1.15);
}

.angebot-content {
    padding: 30px;
}

.angebot-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.angebot-features {
    list-style: none;
}

.angebot-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===================================
   Kontakt Section
   =================================== */
.kontakt-section {
    padding: 100px 0;
    background: var(--text-light);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kontakt-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.kontakt-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.kontakt-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.kontakt-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.kontakt-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.kontakt-card a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.kontakt-card a:hover {
    color: var(--primary-dark);
}

.kontakt-form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.kontakt-form .form-group {
    margin-bottom: 25px;
}

.kontakt-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.kontakt-form input,
.kontakt-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1);
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.5s ease;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-loader {
    display: none;
}

.kontakt-form button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Honeypot field */
.atlas-hp-field {
    display: none !important;
    position: absolute;
    left: -9999px;
}

/* ===================================
   Membership Page
   =================================== */
.membership-header {
    position: relative;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.membership-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
}

.membership-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/karate.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.membership-header .container {
    position: relative;
    z-index: 2;
}

.membership-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.membership-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.membership-form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.form-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.membership-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--text-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--bg-light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-section-description {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--text-light);
    box-shadow: 0 0 0 4px rgba(108, 117, 125, 0.1);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.radio-label:hover,
.checkbox-label:hover {
    background: #e8e8e8;
    border-color: var(--primary-color);
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.radio-custom,
.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-top: 3px;
}

.checkbox-custom {
    border-radius: 6px;
}

input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.radio-text,
.checkbox-text {
    flex: 1;
}

.radio-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.radio-text small {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.form-note {
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.info-box {
    max-width: 900px;
    margin: 50px auto 0;
    padding: 40px;
    background: var(--text-light);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
}

.info-box h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-box ol {
    padding-left: 20px;
}

.info-box li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ===================================
   Price Display & Calculator
   =================================== */
.price-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    margin-top: 20px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.price-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.price-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.price-description {
    font-size: 1rem;
    color: var(--text-gray);
}

.price-breakdown {
    padding-top: 20px;
    border-top: 2px solid rgba(108, 117, 125, 0.2);
}

.price-breakdown h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 10px;
    border-top: 2px solid var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(108, 117, 125, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.price-note strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.price-note ul {
    list-style: none;
    padding-left: 0;
}

.price-note li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.price-note li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===================================
   Wizard Styles (Multi-Step Forms)
   =================================== */
.form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.progress-container {
    background: #f8f9fa;
    padding: 30px 20px;
    border-bottom: 2px solid #e9ecef;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e9ecef;
    z-index: 1;
}

.progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #c41e3a, #e63950);
    transition: width 0.3s ease;
    width: 0%;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.progress-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
    color: #adb5bd;
    transition: all 0.3s ease;
}

.progress-step.active .progress-circle {
    border-color: #c41e3a;
    background: #c41e3a;
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .progress-circle {
    border-color: #28a745;
    background: #28a745;
    color: white;
}

.progress-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.progress-step.active .progress-label {
    color: #c41e3a;
    font-weight: bold;
}

.form-content {
    padding: 40px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.step-title {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.step-description {
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

/* Wizard error messages */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

input.error,
select.error {
    border-color: #dc3545 !important;
}

/* Wizard price card */
.price-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #c41e3a;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.price-row:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.2rem;
    color: #c41e3a;
    padding-top: 15px;
}

/* Summary table */
.summary-table {
    width: 100%;
    margin: 20px 0;
}

.summary-table td {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-table td:first-child {
    color: #6c757d;
    width: 40%;
}

.summary-table td:last-child {
    font-weight: 500;
    color: #1a1a2e;
}

/* Message Box (wizard) */
.message-box {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.message-box.success { background: linear-gradient(135deg, #28a745, #20813a); }
.message-box.error { background: linear-gradient(135deg, #dc3545, #c82333); }
.message-box.show { display: block; }

/* Family member cards */
.family-member-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #c41e3a;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
}

.family-member-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.family-member-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #c41e3a;
}

.btn-remove-member {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-remove-member:hover { background: #c82333; }

.btn-add-member {
    background: linear-gradient(135deg, #28a745, #20813a);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s;
}

.btn-add-member:hover {
    background: linear-gradient(135deg, #20813a, #1e7437);
    transform: translateY(-2px);
}

/* Amount selection (Fördermitgliedschaft) */
.amount-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.amount-option {
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-option:hover {
    border-color: #c41e3a;
    transform: translateY(-3px);
}

.amount-option.selected {
    border-color: #c41e3a;
    background: linear-gradient(135deg, #fff5f7, #ffe6ea);
}

.amount-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a2e;
}

.amount-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

/* ===================================
   Loading Overlay
   =================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loading-content {
    text-align: center;
    color: var(--text-light);
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-content p {
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===================================
   Page Header (Impressum, Datenschutz)
   =================================== */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-secondary);
    text-align: center;
    color: var(--text-light);
}

.page-header h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--accent-color);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col ul,
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li,
.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-col a,
.footer-nav-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col a:hover,
.footer-nav-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links,
.legal-nav {
    display: flex;
    gap: 20px;
}

.legal-nav a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.legal-nav a:hover {
    color: var(--primary-color);
}

/* ===================================
   Animation Utilities (AOS-like)
   =================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }

[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        padding: 30px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .membership-form {
        padding: 30px 20px;
    }

    .membership-header h1 {
        font-size: 2.5rem;
    }

    .form-content {
        padding: 30px 20px;
    }

    .progress-label {
        font-size: 0.7rem;
    }

    .progress-circle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .form-buttons {
        flex-direction: column-reverse;
    }

    .form-buttons .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .highlights-grid,
    .angebote-grid {
        grid-template-columns: 1fr;
    }
}
