/* CSS Design System & Theme for CAMP & GAS | Wohnmobilpark & Gasprüfzentrum */
/* SIMPLIFIED VERSION - COOKIE-FREE (LOCAL SYSTEM FONTS) - NO ABOUT/TEAM/PHILOSOPHY SECTIONS */

:root {
    /* Color Palette */
    --bg-dark: #070B0E;
    --bg-card: #0E141B;
    --bg-card-hover: #141C25;
    
    --primary: #10B981; /* Nature Green */
    --primary-rgb: 16, 185, 129;
    --secondary: #06B6D4; /* Gas/Safety Cyan Blue */
    --secondary-rgb: 6, 182, 212;
    --accent: #F59E0B; /* Warm Amber */
    
    --text-white: #FFFFFF;
    --text-gray: #94A3B8;
    --text-muted: #64748B;
    
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(16, 185, 129, 0.25);
    --glass: rgba(14, 20, 27, 0.85);
    --glass-blur: blur(16px);
    
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --max-width: 1200px;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    /* Local System Font Stack - 100% GDPR compliant, zero third-party calls */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Focus outline for accessibility */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}

/* Typography & Utilities */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tag {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-top: 10px;
}

/* Glass Header */
.glass-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: clamp(12px, 3vw, 24px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    background: rgba(7, 11, 14, 0.4);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-inner {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    opacity: 0;
    animation: fadeInLogo 0.8s ease forwards;
    animation-delay: 0.2s;
}

.brand:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.logo-text {
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1.3rem;
    color: var(--text-white);
}

.logo-text span {
    color: var(--primary);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    opacity: 0.8;
    transition: var(--transition);
    text-transform: uppercase;
}

.desktop-nav a:hover {
    opacity: 1;
    color: var(--primary);
}

.wa-header-btn {
    background: #25D366;
    color: white !important;
    padding: 12px 24px;
    border-radius: 14px;
    opacity: 1 !important;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wa-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Hamburger menu trigger */
.menu-trigger {
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition);
    border-radius: 3px;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    padding: 20px;
}

.overlay-content a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    transition: var(--transition);
}

.overlay-content a:hover {
    color: var(--primary);
    transform: scale(1.05);
}

.wa-overlay-btn {
    color: #25D366 !important;
    font-size: 1.4rem !important;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800 !important;
}

/* Hamburger animations */
.menu-trigger.open .bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}
.menu-trigger.open .bar:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    .menu-trigger {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background: linear-gradient(180deg, rgba(7, 11, 14, 0.75) 0%, rgba(7, 11, 14, 0.88) 100%),
                url('bilder/wohnmobilpark_windmuehle.png') no-repeat center center / cover;
}

.hero-inner {
    max-width: var(--max-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-dark);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

/* Hero Visual card stack */
.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-glass-card {
    background: rgba(14, 20, 27, 0.6);
    border: 1px solid var(--border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.hero-glass-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(6, 182, 212, 0) 60%);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.card-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.card-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 10px;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.card-feature-item:nth-child(2) .feature-icon-wrapper {
    color: var(--secondary);
}

.card-feature-item h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.card-feature-item p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Bento Grid Features - Wohnmobilpark */
.features-section {
    padding: clamp(60px, 10vw, 120px) 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: 15px;
    grid-auto-flow: dense;
}

.bento-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.08);
}

.bento-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
    transition: var(--transition);
}

.bento-card:hover .bento-card-bg {
    opacity: 0.35;
    transform: scale(1.04);
}

.bento-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 11, 14, 0.95) 40%, rgba(7, 11, 14, 0.4));
    z-index: 2;
}

.bento-card-content {
    position: relative;
    z-index: 3;
}

.bento-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
}

.bento-card:nth-child(2n) .bento-card-icon {
    color: var(--secondary);
}

.bento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 800;
}

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

/* Bento size modifiers */
.span-w2 { grid-column: span 2; }
.span-h2 { grid-row: span 2; }

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 190px;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .span-w2 { grid-column: span 2; }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    .bento-card {
        padding: 20px;
    }
}

/* Gasabnahme Section */
.gas-section {
    padding: clamp(60px, 10vw, 120px) 20px;
    background: linear-gradient(180deg, rgba(7, 11, 14, 0.82) 0%, rgba(7, 11, 14, 0.94) 100%),
                url('bilder/gaspruefung_lotz.png') no-repeat center center / cover;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gas-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.gas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 1024px) {
    .gas-grid {
        grid-template-columns: 0.95fr 1.05fr;
    }
}

.gas-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gas-step {
    display: flex;
    gap: 20px;
}

.step-num {
    width: 44px;
    height: 44px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--text-white);
}

.step-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.gas-badge-card {
    background: rgba(14, 20, 27, 0.85);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(6, 182, 212, 0.08);
    position: relative;
    overflow: hidden;
}

.gas-badge-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.certified-sticker {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 8px solid var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
    position: relative;
}

.sticker-inner {
    font-weight: 900;
    color: var(--secondary);
    text-align: center;
}

.sticker-year {
    font-size: 1.8rem;
    line-height: 1;
}

.sticker-text {
    font-size: 0.55rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gas-badge-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.gas-badge-card p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Schedule & Mobile Tour Section */
.tour-section {
    padding: clamp(60px, 8vw, 100px) 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.tour-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.location-card:hover {
    border-color: rgba(6, 182, 212, 0.25);
}

.next-stop {
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.status-badge {
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 0 0 var(--radius-md) 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-content {
    padding: clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    gap: 30px;
}

.date-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius-md);
    min-width: 95px;
    flex-shrink: 0;
}

.date-box .day {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.date-box .month {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
}

.info-box {
    flex-grow: 1;
}

.info-box h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    margin-bottom: 8px;
}

.address {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.time-pill {
    background: var(--text-white);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
}

.map-link {
    color: var(--primary);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
    text-decoration: none;
}

.map-link:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.05);
}

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

.mini .card-content {
    padding: 25px;
    gap: 20px;
}

.date-mini {
    font-weight: 900;
    color: var(--secondary);
    font-size: 1.1rem;
    white-space: nowrap;
}

.info-mini h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.info-mini p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.info-mini .time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

@media (max-width: 680px) {
    .card-content {
        flex-direction: column;
        text-align: center;
    }
    .map-link {
        margin: 10px auto 0;
    }
    .date-box {
        width: 100%;
    }
    .mini .card-content {
        align-items: center;
    }
}

/* Contact & Online Booking Form */
.booking-section {
    padding: clamp(60px, 10vw, 120px) 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .booking-grid {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.booking-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.booking-info p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

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

.booking-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.booking-info-text h4 {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-info-text p {
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 0;
}

/* Contact/Booking Form styling */
.booking-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(25px, 5vw, 45px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

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

@media (min-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-span-2 {
        grid-column: span 2;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 14px 18px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.02);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.08);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 45px;
}

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

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* WhatsApp Compact Section */
.wa-compact-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.wa-compact-card {
    background: #25D366;
    max-width: 900px;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: clamp(25px, 5vw, 40px) clamp(30px, 6vw, 50px);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.15);
    position: relative;
    overflow: hidden;
}

.wa-content-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.wa-icon-mini {
    background: rgba(255, 255, 255, 0.2);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.wa-text-mini {
    flex-grow: 1;
    color: white;
}

.wa-text-mini h2 {
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 5px;
}

.wa-text-mini .black {
    color: #070B0E;
}

.wa-text-mini p {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    color: white;
    margin-bottom: 0;
}

.wa-btn-narrow {
    background: #070B0E;
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wa-btn-narrow:hover {
    background: white;
    color: #25D366;
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .wa-content-split {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .wa-btn-narrow {
        width: 100%;
        justify-content: center;
    }
}

/* Footer & SEO styling */
.main-footer {
    background: #040608;
    border-top: 1px solid var(--border);
}

.footer-locations {
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-locations h3 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.seo-intro {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 35px;
}

.location-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.location-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.location-links a:hover {
    color: var(--primary);
}

.footer-legal {
    padding: 80px 20px 40px;
    text-align: center;
}

.logo-footer {
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.logo-footer span {
    color: var(--primary);
}

.footer-legal p {
    font-size: 1rem;
    color: var(--text-muted);
}

.legal-links {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.legal-links a {
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.copyright p {
    font-size: 0.85rem !important;
    color: var(--text-muted);
    margin-bottom: 0;
}

.status-dsgvo {
    color: #25D366 !important;
    font-weight: 800;
    font-size: 0.8rem !important;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legal Page Content Layout */
.legal-main {
    padding: 160px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 70vh;
}

.legal-main h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
}

.legal-main h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.legal-main ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-gray);
}

.legal-main li {
    margin-bottom: 8px;
}
