/* BRAVOtel - Lokale Styles ohne externe Abhängigkeiten */

:root {
    --primary: #8B1538;
    --primary-dark: #6a0f2b;
    --secondary: #1a365d;
    --secondary-light: #2c5282;
    --accent: #c53030;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* System Font Stack - keine externen Requests */
:root {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ===== ANIMATIONEN ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.5s ease-out forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Scroll animations - initial state */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

/* Header */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.header-top a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s ease;
}

.header-top a:hover {
    opacity: 0.9;
    text-decoration: underline;
}

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

.header-main {
    padding: 1rem 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

nav li {
    position: relative;
}

nav a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

nav a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

nav a.active {
    background: var(--primary);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.mobile-menu-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-menu-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: url('images/header.jpg') center center no-repeat;
    background-size: cover;
    opacity: 0.4;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero .btn-outline {
    animation-delay: 0.5s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 21, 56, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
}

.page-header p {
    opacity: 0;
    font-size: 1.125rem;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    position: relative;
}

/* Features */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.125rem;
}

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

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
    background: var(--bg-white);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(139, 21, 56, 0.3);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.feature-card p {
    color: var(--text-gray);
}

/* Tarife */
.tarife {
    padding: 5rem 0;
    background: var(--bg-light);
}

.tarife-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.tarif-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tarif-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.tarif-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tarif-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.tarif-card:hover .tarif-header::before {
    left: 100%;
}

.tarif-header h3 {
    font-size: 1.5rem;
    position: relative;
}

.tarif-body {
    padding: 2rem;
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
}

.tarif-table th, .tarif-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.3s;
}

.tarif-table tr:hover th,
.tarif-table tr:hover td {
    background-color: var(--bg-light);
}

.tarif-table th {
    color: var(--text-gray);
    font-weight: 500;
}

.tarif-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

.tarif-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Vorteile */
.vorteile {
    padding: 5rem 0;
    background: var(--bg-white);
}

.vorteile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vorteile-text h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.vorteile-list {
    list-style: none;
}

.vorteile-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.vorteile-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.vorteile-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.vorteile-highlight h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.vorteile-highlight p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Kontakt Section */
.kontakt {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: white;
}

.kontakt .section-title h2 {
    color: white;
}

.kontakt .section-title p {
    color: rgba(255,255,255,0.8);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.kontakt-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.kontakt-card h3 {
    margin-bottom: 1rem;
}

.kontakt-card a {
    color: white;
    text-decoration: none;
}

.kontakt-card a:hover {
    text-decoration: underline;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.contact-card h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

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

/* Map Section */
.map-section {
    margin-top: 3rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-section h2 {
    padding: 1.5rem 2rem;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
}

.map-container {
    height: 400px;
    background: var(--bg-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.address-box {
    padding: 2rem;
    background: var(--bg-light);
}

.address-box p {
    margin-bottom: 0.5rem;
}

/* Content Box */
.content {
    padding: 4rem 0;
}

.content-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.content-box h2 {
    color: var(--secondary);
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.content-box h2:first-of-type {
    margin-top: 0;
}

.content-box p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.content-box a {
    color: var(--primary);
}

.company-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.company-info p {
    margin-bottom: 0.5rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.3);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.highlight-box h2 {
    margin-bottom: 1rem;
    color: white;
    position: relative;
}

.highlight-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    position: relative;
}

.highlight-box li {
    padding-left: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.highlight-box li:hover {
    transform: translateX(5px);
}

.highlight-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
}

/* Tarif Section */
.tarif-section {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.tarif-section:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tarif-section-header {
    background: var(--secondary);
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.tarif-section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.tarif-section-header h2 {
    font-size: 1.5rem;
    color: white;
}

.tarif-section-body {
    padding: 2rem;
}

.bonus-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-box h3 {
    color: #b45309;
    margin-bottom: 0.5rem;
}

/* Zone Cards */
.zone-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.zone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.zone-1:hover { border-color: #059669; }
.zone-2:hover { border-color: #0891b2; }
.zone-3:hover { border-color: #7c3aed; }
.zone-4:hover { border-color: #db2777; }
.zone-5:hover { border-color: #ea580c; }
.zone-6:hover { border-color: #dc2626; }

.zone-header {
    padding: 1.25rem 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.zone-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.zone-card:hover .zone-header::before {
    left: 100%;
}

.zone-header h2 {
    font-size: 1.25rem;
    color: white;
    position: relative;
}

.zone-1 .zone-header { background: linear-gradient(135deg, #059669 0%, #047857 100%); }
.zone-2 .zone-header { background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%); }
.zone-3 .zone-header { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); }
.zone-4 .zone-header { background: linear-gradient(135deg, #db2777 0%, #be185d 100%); }
.zone-5 .zone-header { background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%); }
.zone-6 .zone-header { background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); }

.zone-prices {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.zone-price {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.zone-price:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.zone-price strong {
    display: block;
    font-size: 1.125rem;
}

.zone-body {
    padding: 1.5rem;
}

.zone-body h3 {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.zone-countries {
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: var(--secondary);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Values Section */
.intro-section {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.intro-section h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.reason-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.reason-card p {
    color: var(--text-gray);
}

.highlight-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 3rem;
}

.highlight-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.highlight-section p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.values-section {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.values-section h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    top: 1rem;
}

/* AGB specific */
.intro-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        border-top: 3px solid var(--primary);
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 0.5rem;
        gap: 0;
    }

    nav li {
        border-bottom: 1px solid var(--border);
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        padding: 1rem 1.25rem;
        border-radius: 8px;
        margin: 0.25rem 0;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    nav a:hover, nav a.active {
        background: var(--primary);
        color: white;
    }

    .header-top .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .header-top a {
        justify-content: center;
        padding: 0.25rem;
    }

    .hero {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .features, .tarife, .vorteile, .kontakt {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .vorteile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .tarif-table th,
    .tarif-table td {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        text-align: center;
    }

    .content {
        padding: 2rem 0;
    }

    .content-box {
        padding: 1.5rem;
    }

    .content-box h2 {
        font-size: 1.1rem;
    }

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

    .contact-card {
        padding: 1.5rem;
    }

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

    .zone-header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .zone-header h2 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .zone-prices {
        justify-content: center;
    }

    .zone-price {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .zone-body {
        padding: 1rem;
    }

    .zone-countries {
        font-size: 0.9rem;
        line-height: 1.6;
    }

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

    .highlight-box {
        padding: 1.5rem;
    }

    .highlight-box ul {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.25rem;
    }

    .hero::before {
        width: 100%;
        opacity: 0.2;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .map-section h2 {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .address-box {
        padding: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.25rem;
    }

    .page-header h1 {
        font-size: 1.25rem;
    }

    .logo img {
        height: 40px;
    }

    .tarif-section-header h2 {
        font-size: 1.1rem;
    }

    .zone-prices {
        flex-direction: column;
        gap: 0.5rem;
    }

    .intro-section {
        padding: 1.5rem;
    }

    .values-section {
        padding: 1.5rem;
    }
    
    /* Bessere Touch-Targets */
    .btn {
        min-height: 48px;
        min-width: 48px;
        padding: 1rem 1.5rem;
    }
    
    nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .header-top a {
        padding: 0.5rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Tabellen responsive */
    .tarif-table {
        font-size: 0.85rem;
    }
    
    .tarif-table th,
    .tarif-table td {
        padding: 0.5rem 0.25rem;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tarife-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kontakt-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.35rem;
    }

    .container {
        max-width: 1200px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print Styles */
@media print {
    header, footer, .btn, nav {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
    
    .content-box {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
}

/* Reduced Motion für Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary: #8B0000;
        --secondary: #000080;
        --text-gray: #333;
        --border: #000;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

/* Dark Mode Support (optional) */
@media (prefers-color-scheme: dark) {
    /* Hier könnten Dark Mode Styles eingefügt werden */
    /* Aktuell deaktiviert für konsistentes Branding */
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
    z-index: 9999;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.5);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}
