/* ═══════════════════════════════════════════════════════════════════════════
   CSS FÜR EXPRESSVERSAND-USA.DE
   ═══════════════════════════════════════════════════════════════════════════
   
   Basierend auf: expressversand-china.de
   Angepasst für: USA-Versand mit USA-Farbschema
   
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   1. CSS VARIABLEN & RESET
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Hauptfarben - USA Theme */
    --blue: #002868;
    --blue-dark: #001a4d;
    --blue-hover: #003d99;
    --red: #bf0a30;
    --red-light: #d41c4a;
    --red-hover: #e02040;
    --orange: #f39200;
    --orange-light: #f7941d;
    --orange-hover: #ff9c26;
    
    /* Neutrale Farben */
    --dark: #0a1020;
    --text-primary: #222;
    --text-secondary: #555;
    --text-light: #666;
    
    /* Hintergrundfarben */
    --light-bg: #f5f7fb;
    --white: #ffffff;
    --grey-light: #f5f5f5;
    --carousel-bg: #e8f4fc;
    
    /* Schatten */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(102, 126, 234, 0.15);
    
    /* Übergänge */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   2. BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    text-decoration: underline;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   3. LAYOUT & CONTAINER
   ═══════════════════════════════════════════════════════════════════════════ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

section {
    padding: 40px 0;
}

.section-light { background: var(--white); }
.section-grey { background: #fdf0f0; } /* Zartes Rot */
.section-red { background: #fdf0f0; } /* Zartes Rot - abwechselnd mit weiß */

.section-title {
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 0.98rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 680px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .section-title { font-size: 1.6rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════════════════
   4. HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

header {
    background: var(--white);
    border-bottom: 1px solid #e1e4ec;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.topbar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 6px 0;
    gap: 16px;
}

.topbar a {
    color: var(--white);
    font-weight: 500;
}

.topbar a:hover {
    text-decoration: none;
    opacity: 0.9;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
}

.logo-flag {
    width: 28px;
    height: 18px;
    min-width: 28px;
    max-width: 28px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    display: block;
}

.logo-text {
    color: var(--blue);
    white-space: nowrap;
}

.logo:hover { text-decoration: none; }
.logo:hover .logo-flag {
    transform: scale(1.08);
    transition: transform 0.2s ease;
}

.nav-links {
    display: flex;
    gap: 16px;
    font-size: 0.95rem;
    list-style: none;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a:hover {
    color: var(--blue);
    text-decoration: none;
}

/* Dropdown Styles */
.has-dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.nav-links .dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-links .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .dropdown li {
    padding: 0;
    position: static;
}

.nav-links .dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text-primary);
    font-weight: 400;
    transition: all 0.15s ease;
}

.nav-links .dropdown a:hover {
    background: var(--light-bg);
    color: var(--blue);
    padding-left: 20px;
}

/* Nav CTA Button */
.nav-cta a.btn-nav {
    background: var(--orange);
    color: white !important;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-cta a.btn-nav:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   5. HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    background: linear-gradient(135deg, var(--blue) 0%, #001233 40%, var(--red) 100%);
    color: var(--white);
    padding: 60px 0 50px;
}

.hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
}

.hero-text { flex: 1 1 320px; }

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero p {
    font-size: 1rem;
    max-width: 540px;
    margin-bottom: 16px;
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.92rem;
}

.hero-bullets span::before {
    content: "✓ ";
    color: var(--white);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

/* Hero Sidebox */
.hero-sidebox {
    flex: 1 1 280px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px 18px 16px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.hero-sidebox-header {
    background: var(--blue);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 14px;
    text-align: center;
}

.hero-sidebox h2 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-sidebox ul {
    list-style: none;
    margin-bottom: 16px;
}

.hero-sidebox li {
    margin-bottom: 6px;
}

.hero-sidebox li::before {
    content: "• ";
    color: var(--orange);
    font-weight: 700;
}

/* Zoll Badge */
.zoll-badge-container { text-align: center; padding: 16px 0; }

.zoll-badge-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.zoll-badge-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.zoll-badge-icon .checkmark {
    font-size: 2.5rem;
    color: #00a651;
}

.zoll-badge-label {
    background: #00a651;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 6px;
}

.zoll-badge-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Partners */
.hero-partners {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.partner-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.partner-logo {
    width: auto;
    filter: invert(1) opacity(0.9);
    transition: all var(--transition-normal);
}

.partner-logo:hover {
    filter: invert(1) opacity(1);
    transform: scale(1.05);
}

/* Spezifische Logo-Größen (Desktop) */
.partner-logo-dhl {
    height: 100px;
}

.partner-logo-fedex {
    height: 70px;
}

.partner-logo-ups {
    height: 35px;
}

/* Partner-Logos Tablet */
@media (max-width: 768px) {
    .partner-logo-dhl {
        height: 70px;
    }
    
    .partner-logo-fedex {
        height: 50px;
    }
    
    .partner-logo-ups {
        height: 28px;
    }
    
    .partner-logos {
        gap: 20px;
    }
}

/* Partner-Logos Mobile */
@media (max-width: 600px) {
    .hero-partners {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .partner-label {
        font-size: 0.85rem;
    }
    
    .partner-logos {
        gap: 15px;
    }
    
    .partner-logo-dhl {
        height: 50px;
    }
    
    .partner-logo-fedex {
        height: 35px;
    }
    
    .partner-logo-ups {
        height: 22px;
    }
}

/* Partner-Logos sehr kleine Screens */
@media (max-width: 400px) {
    .partner-logo-dhl {
        height: 40px;
    }
    
    .partner-logo-fedex {
        height: 28px;
    }
    
    .partner-logo-ups {
        height: 18px;
    }
    
    .partner-logos {
        gap: 12px;
    }
}

/* Arrival Box / Live-Rechner */
.arrival-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #00c853;
    padding: 15px;
    margin: 20px 0;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #fff;
    max-width: 500px;
}

.arrival-header { font-weight: bold; margin-bottom: 5px; display: block; }
.arrival-icon { margin-right: 5px; }

.arrival-select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 8px 0;
    cursor: pointer;
    width: 100%;
    max-width: 320px;
}

.arrival-select option { 
    background: #1a1a2e; 
    color: #fff;
    padding: 8px;
}

.arrival-select optgroup {
    background: #0d0d1a;
    color: #f39200;
    font-weight: bold;
    font-style: normal;
}
.arrival-date { font-weight: bold; color: #00c853; font-size: 1.1rem; }
.arrival-sub { display: block; font-size: 0.75rem; opacity: 0.8; margin-top: 8px; font-style: italic; }

/* ═══════════════════════════════════════════════════════════════════════════
   6. BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    box-shadow: 0 4px 20px rgba(191, 10, 48, 0.5);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--white);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 999px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--white);
}

.btn-submit {
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background var(--transition-fast);
}

.btn-submit:hover { background-color: var(--red-hover); }

/* ═══════════════════════════════════════════════════════════════════════════
   7. WARUM SECTION (Weißer Hintergrund mit roten Akzenten)
   ═══════════════════════════════════════════════════════════════════════════ */

#warum-express-usa { 
    padding: 60px 0; 
    background: var(--white);
}

.warum-express-grid {
    display: grid;
    gap: 2.5rem;
    align-items: flex-start;
}

@media (min-width: 900px) {
    .warum-express-grid {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    }
}

/* Text-Bereich (links) */
.warum-express-text h2 {
    color: var(--blue);
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.warum-express-text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.warum-express-text a {
    color: var(--red);
    font-weight: 500;
    text-decoration: none;
}

.warum-express-text a:hover {
    text-decoration: underline;
}

.warum-express-text strong {
    color: var(--text-primary);
}

/* Highlight Box (rechts) */
.warum-express-highlight {
    background: #fef8f8;
    border-radius: 14px;
    border: 1px solid rgba(191, 10, 48, 0.12);
    padding: 28px 28px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.warum-express-highlight h3 {
    margin: 0 0 1.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    color: var(--blue-dark);
}

.warum-express-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.warum-express-highlight li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.warum-express-highlight li:last-child {
    margin-bottom: 0;
}

/* Checkmark Kreis - USA Blau */
.check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    font-size: 12px;
    font-weight: bold;
    margin-top: 1px;
}

/* CTA Button in Highlight Box - USA ROT */
.cta-button-highlight {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
    transition: all var(--transition-fast);
    margin-top: 0.5rem;
}

.cta-button-highlight:hover {
    background: #a00828;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 10, 48, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. ABLAUF / PROCESS STEPS
   ═══════════════════════════════════════════════════════════════════════════ */

#ablauf {
    padding: 50px 0;
    background: var(--light-bg);
}

.section-header-left {
    margin-bottom: 30px;
}

.section-header-left .section-title {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 10px;
}

.section-header-left .section-subtitle {
    font-size: 0.98rem;
    color: var(--text-secondary);
    max-width: 700px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid #e1e4ec;
    transition: all var(--transition-normal);
    position: relative;
}

.step-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 25px rgba(0, 40, 104, 0.12);
    transform: translateY(-4px);
}

.step-number {
    width: 40px;
    height: 40px;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    transition: all var(--transition-normal);
}

.step-card:hover .step-number {
    background: var(--blue);
    color: var(--white);
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--blue);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. FAQ SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

#faq { padding: 50px 0; }

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-accordion-item {
    background: var(--white);
    border: 1px solid #e1e4ec;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-accordion-item:hover { border-color: var(--blue); }

.faq-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-accordion-header:hover { background: var(--grey-light); }

.faq-accordion-icon {
    font-size: 1.3rem;
    color: var(--blue);
    transition: transform var(--transition-normal);
}

.faq-accordion-item.active .faq-accordion-icon { transform: rotate(45deg); }

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 22px;
}

.faq-accordion-item.active .faq-accordion-body {
    max-height: 400px;
    padding-bottom: 18px;
}

.faq-accordion-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   10. DESTINATIONS GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.destination-card {
    background: var(--white);
    border: 1px solid #e1e4ec;
    border-radius: 12px;
    padding: 20px;
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
    display: block;
}

.destination-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    text-decoration: none;
}

.destination-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.destination-icon { font-size: 1.8rem; }

.destination-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue);
    margin: 0;
}

.destination-region {
    font-size: 0.85rem;
    color: var(--text-light);
}

.destination-info {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.info-item { text-align: center; }

.info-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-weight: 700;
    color: var(--blue);
    font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   11. KONTAKT / FORMULAR
   ═══════════════════════════════════════════════════════════════════════════ */

#kontakt {
    padding: 50px 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-col { flex: 1 1 400px; }
.contact-info-col { flex: 1 1 300px; }

.contact-box {
    background: var(--white);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #e1e4ec;
}

.contact-box h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--blue);
}

.contact-box p { font-size: 0.95rem; }

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

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox { margin-right: 10px; }
.honigtopf-feld { display: none; }

.contact-trust-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #00a651;
}

/* ═══════════════════════════════════════════════════════════════════════════
   12. FIXED CTA BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.fixed-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.fixed-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.fixed-btn-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.fixed-btn-text {
    line-height: 1;
}

.fixed-btn-book {
    background: var(--blue);
}

.fixed-btn-book:hover {
    background: var(--blue-hover);
}

.fixed-btn-whatsapp {
    background-color: #25D366;
}

.fixed-btn-whatsapp:hover {
    background-color: #20bd5a;
}

.fixed-btn-call {
    background-color: var(--orange);
}

.fixed-btn-call:hover {
    background-color: var(--orange-hover);
}

.fixed-btn:hover {
    text-decoration: none;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .fixed-cta {
        right: 10px;
        bottom: 10px;
        gap: 8px;
    }
    
    .fixed-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   13. FOOTER - Wird durch neuen Footer am Ende der Datei ersetzt
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   14. CAROUSEL
   ═══════════════════════════════════════════════════════════════════════════ */

#weitere-informationen {
    background: var(--carousel-bg);
    padding: 50px 0;
}

.info-carousel-wrapper {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0 50px;
}

.info-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.info-carousel::-webkit-scrollbar { display: none; }

.info-card {
    flex: 0 0 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
    display: block;
}

.info-card:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-4px);
}

.info-card:hover h3,
.info-card:hover p { color: var(--white); }

.info-card h3 {
    font-size: 1.05rem;
    color: var(--blue);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-carousel-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--blue);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.info-carousel-nav:hover {
    background: var(--blue);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   15. RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .nav-links { display: none; }
    .topbar-inner { justify-content: center; flex-wrap: wrap; }
    .hero { padding-top: 40px; }
    .hero h1 { font-size: 1.75rem; }
    .hero-sidebox { max-width: 100%; }
    .fixed-cta { right: 10px; bottom: 10px; }
    .info-carousel-wrapper { padding: 0 40px; }
    .info-card { flex: 0 0 240px; }
}

@media (max-width: 576px) {
    .info-carousel-wrapper { padding: 0 35px; }
    .info-card { flex: 0 0 220px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   16. 3-BOXEN (Online versenden, Tracking, Tarifrechner)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Variablen für 3-Boxen (USA-Rot als Akzent) */
.action-boxes-section {
    --box-accent-color: #bf0a30;
    --box-accent-hover: #a00828;
    --box-bg: #ffffff;
    --box-border: #e5e7eb;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
    --box-text-primary: #1a1a1a;
    --box-text-secondary: #6b7280;
    --box-input-bg: #f3f4f6;
    --box-input-border: #d1d5db;
    --box-radius: 12px;
}

.action-boxes-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 100;
}

.action-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .action-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .action-boxes-grid {
        grid-template-columns: 1fr;
    }
    
    .action-boxes-section {
        margin-top: -20px;
    }
}

/* Box Styling */
.action-box {
    background: var(--box-bg);
    border-radius: var(--box-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.action-box:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-4px);
}

.action-box-content {
    padding: 28px 24px 24px;
    text-align: center;
}

.action-box-border {
    height: 4px;
    background: var(--box-accent-color);
    transition: height 0.3s ease;
}

.action-box:hover .action-box-border {
    height: 6px;
}

/* Box Icon */
.action-box-icon {
    margin-bottom: 16px;
}

.action-box-icon i {
    font-size: 2.2rem;
    color: var(--box-accent-color);
}

/* Box Text */
.action-box-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--box-text-primary);
    margin: 0 0 6px 0;
}

.action-box-subtitle {
    font-size: 0.9rem;
    color: var(--box-text-secondary);
    margin: 0 0 12px 0;
}

/* Box Link */
.action-box-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--box-accent-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.action-box-link:hover {
    color: var(--box-accent-hover);
    gap: 10px;
}

.action-box-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.action-box-link:hover i {
    transform: translateX(3px);
}

/* Box Form */
.action-box-form {
    display: flex;
    gap: 0;
    margin-top: 12px;
}

.action-input {
    flex: 1;
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 1px solid var(--box-input-border);
    border-right: none;
    border-radius: var(--box-radius) 0 0 var(--box-radius);
    background: var(--box-input-bg);
    color: var(--box-text-primary);
    outline: none;
    transition: all 0.2s ease;
}

.action-input:focus {
    border-color: var(--box-accent-color);
    background: #fff;
}

.action-input::placeholder {
    color: var(--box-text-secondary);
}

.action-select {
    flex: 1;
    padding: 12px 14px;
    font-size: 0.95rem;
    border: 1px solid var(--box-input-border);
    border-right: none;
    border-radius: var(--box-radius) 0 0 var(--box-radius);
    background: var(--box-input-bg);
    color: var(--box-text-primary);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    transition: all 0.2s ease;
}

.action-select:focus {
    border-color: var(--box-accent-color);
    background-color: #fff;
}

.btn-action-go {
    padding: 12px 18px;
    background: var(--box-accent-color);
    color: #fff;
    border: none;
    border-radius: 0 var(--box-radius) var(--box-radius) 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-action-go:hover {
    background: var(--box-accent-hover);
}

.btn-action-go i {
    font-size: 1rem;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ═══════════════════════════════════════════════════════════════════════════ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.legal-section {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8eaed;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue);
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section h2 i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px 0;
}

.legal-section h3:first-of-type {
    margin-top: 0;
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-address {
    background: #f8f9fa;
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--blue);
    margin: 16px 0;
}

.legal-address strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.legal-highlight {
    color: var(--blue);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Legal Contact Grid */
.legal-contact-grid {
    display: grid;
    gap: 12px;
}

.legal-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.legal-contact-item .contact-label {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 140px;
}

.legal-contact-item a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
}

.legal-contact-item a:hover {
    text-decoration: underline;
}

/* Legal Info Grid */
.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.legal-info-item {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.legal-info-item .info-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.legal-info-item .info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Legal Disclaimer */
.legal-disclaimer {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border-color: #f0d78c;
}

.legal-disclaimer h2 {
    color: #8a6d00;
    border-bottom-color: #d4a900;
}

.legal-disclaimer h3 {
    color: #5c4a00;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 50%, var(--red) 100%);
    padding: 60px 20px;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0 0 12px 0;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin: 0 0 28px 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: var(--blue);
}

.cta-buttons .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Mobile Legal */
@media (max-width: 600px) {
    .legal-section {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    .legal-section h2 {
        font-size: 1.1rem;
    }
    
    .legal-contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .legal-contact-item .contact-label {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER - Hochmodern mit USA-Design
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
    position: relative;
    background: linear-gradient(180deg, var(--blue) 0%, #001233 60%, #0a0a1a 100%);
    color: #fff;
    margin-top: 0;
}

/* Wave Divider */
.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    color: var(--blue);
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer Main */
.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* Footer Brand Column */
.footer-brand {
    padding-right: 24px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo-flag {
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    max-width: 320px;
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}

.trust-badge i {
    color: var(--orange);
    flex-shrink: 0;
}

/* Carrier Logos */
.footer-carriers {
    margin-top: 16px;
}

.carriers-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carriers-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.carrier-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.carrier-dhl {
    background: linear-gradient(135deg, #FFCC00 0%, #D40511 100%);
    color: #000;
}

.carrier-fedex {
    background: linear-gradient(135deg, #4D148C 0%, #FF6600 100%);
    color: #fff;
}

.carrier-ups {
    background: linear-gradient(135deg, #351C15 0%, #FFB500 100%);
    color: #fff;
}

/* Footer Columns */
.footer-col {
    min-width: 0;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title i {
    color: var(--orange);
    font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-links a i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
    color: var(--orange);
    opacity: 0.7;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.15);
}

.contact-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--orange);
}

.contact-item.whatsapp .contact-icon {
    color: #25D366;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
}

/* Footer Address */
.footer-address {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-address i {
    color: var(--orange);
    font-size: 1rem;
    margin-top: 2px;
}

.footer-address strong {
    color: rgba(255,255,255,0.9);
}

/* Footer Partners */
.footer-partners {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.partners-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.partners-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.partners-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.partners-links a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.partners-links a i {
    color: var(--orange);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-copyright .separator {
    color: rgba(255,255,255,0.3);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* Fixed CTA Buttons */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.fixed-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.fixed-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.fixed-btn-book {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hover) 100%);
    color: #fff;
}

.fixed-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.fixed-btn-call {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-hover) 100%);
    color: #fff;
}

.fixed-btn i {
    font-size: 1.1rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
    
    .footer-trust-badges {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-wave {
        top: -30px;
        height: 30px;
    }
    
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-trust-badges {
        flex-wrap: wrap;
    }
    
    .partners-links {
        gap: 12px;
    }
    
    .partners-links a {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        justify-content: center;
    }
    
    .footer-legal {
        gap: 16px;
    }
    
    /* Fixed CTA Mobile */
    .fixed-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
        flex-direction: row;
        justify-content: center;
    }
    
    .fixed-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .fixed-btn-text {
        display: none;
    }
    
    .fixed-btn {
        padding: 12px;
        border-radius: 50%;
    }
}

/* =========================================
   DESIGN-UPDATE: Dark Premium / USA Style
   ========================================= */

/* 1. Der Hintergrund für die Haupt-Sektion (Der Farbverlauf) */
/* Wir erzwingen hier den Verlauf, damit das Weiß verschwindet */
#main-content {
    background: linear-gradient(135deg, #021B35 0%, #0f2b4d 40%, #4a0e23 100%);
    min-height: 100vh; /* Damit der Verlauf über den ganzen Screen geht */
    color: #ffffff;
    padding-bottom: 60px;
}

/* 2. Das Grid Layout (Bleibt gleich) */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* 3. Die Karten im "Glassmorphism" Look (Transparent & Leuchtend) */
.legal-card {
    /* Halbtransparenter, dunkler Hintergrund */
    background: rgba(255, 255, 255, 0.05);
    
    /* Der "Milchglas"-Effekt */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    /* Feine weiße Linie als Rahmen (wie im Screenshot) */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px; /* Stärker abgerundet */
    
    padding: 2rem;
    
    /* Schatten für Tiefe */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    
    /* Textfarbe */
    color: #e2e8f0; /* Leichtes Grau für gute Lesbarkeit auf Dunkel */
    
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover-Effekt: Karte leuchtet leicht auf */
.legal-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

/* 4. Überschriften in den Karten */
.legal-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.2rem;
    color: #ffffff;
    /* Optional: Ein kleiner Strich unter der Überschrift */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
}

/* 5. Listen & Text Styling */
.legal-card p {
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.legal-card ul {
    list-style: none; /* Standard-Punkte entfernen */
    padding-left: 0;
}

.legal-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #cbd5e1;
}

/* Eigene Aufzählungszeichen (Grüne Haken oder Punkte) */
.legal-card ul li::before {
    content: "•"; /* Oder "\2713" für Haken */
    color: #22c55e; /* Das Grün aus Ihrem Design */
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

/* 6. Links (z.B. E-Mail) in Signalfarbe */
.legal-card a {
    color: #fb923c; /* Ein Orange passend zum Button, oder #22c55e für Grün */
    text-decoration: none;
    font-weight: 600;
}
.legal-card a:hover {
    text-decoration: underline;
}

/* 7. Breite Karte (Unten) */
.legal-card-wide {
    grid-column: 1 / -1;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}