/* ═══════════════════════════════════════════════════════════════════════════
   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 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
}

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

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

.nav-links a {
    color: var(--dark);
    font-weight: 500;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   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.9rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.6);
}

.partner-logo {
    height: 30px;
    width: auto;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-normal);
}

.partner-logo:hover {
    color: rgba(255, 255, 255, 1);
}

/* 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-block;
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background var(--transition-fast);
}

.btn-primary:hover {
    background: var(--orange-hover);
    text-decoration: none;
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border-radius: 999px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: background var(--transition-fast);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.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
   ═══════════════════════════════════════════════════════════════════════════ */

footer {
    background: #0b1325;
    color: #ccd1e5;
    font-size: 0.85rem;
    padding: 24px 0 16px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 12px;
}

.footer-col { margin-bottom: 16px; }

.footer-title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }

.footer-col a {
    color: #ccd1e5;
    font-size: 0.9rem;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid #252c3f;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.footer-bottom a { color: #ccd1e5; }

.footer-partners-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.footer-partners-row a {
    color: #8890a5;
    font-size: 0.85rem;
}

.footer-partners-row a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════════════════════
   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;
}
