/* ══════════════════════════════════════════════════════════════
   CHAUFFEURDIENST PERFECT - Premium Design System
   Elegant · Seriös · Professionell
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Farbpalette */
    --bg-dark: #0a0d12;
    --bg-panel: #0f1318;
    --bg-card: #13181f;
    --bg-elevated: #1a2029;
    
    --gold: #c9a227;
    --gold-light: #e4c65b;
    --gold-dark: #9a7b1a;
    
    --text-primary: #f4f6f9;
    --text-secondary: #a8b3c4;
    --text-muted: #6b7a8f;
    
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(201, 162, 39, 0.3);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 80px 0;
}

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

.section-header .eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 13, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(10, 13, 18, 0.95);
    box-shadow: var(--shadow-md);
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    height: 52px;
    width: auto;
    transition: transform var(--transition-smooth);
}

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

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

.brand-text strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.brand-text small {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
}

nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav a {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

nav a:hover,
nav a[aria-current="page"] {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

nav a[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS & CTAs
   ═══════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0a0d12;
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-accent);
    padding: 10px 20px;
    font-size: 13px;
}

.btn-ghost:hover {
    background: rgba(201, 162, 39, 0.08);
}

.cta { /* Backward compat */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0a0d12;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-smooth);
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.35);
}

.cta.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    box-shadow: none;
}

.cta.secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.cta.compact {
    padding: 10px 18px;
    font-size: 13px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    transition: all var(--transition-fast);
}

.text-link:hover {
    color: var(--gold);
    border-color: var(--border-accent);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTIONS
   ═══════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 13, 18, 0.92) 0%,
        rgba(10, 13, 18, 0.75) 50%,
        rgba(10, 13, 18, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-text {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 999px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title .accent {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.hero-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
    border-radius: 50%;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    color: var(--gold);
    font-size: 18px;
}

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

.hero-contact-text small {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-contact-text span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.hero-stats {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.hero-stat {
    padding: 20px 32px;
    text-align: center;
    background: var(--bg-card);
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-stat:not(:last-child) {
    border-right: 1px solid var(--border-subtle);
}

.hero-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    text-align: center;
}

.hero-stat .label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
}

/* Hero Variants */
.hero-simple {
    min-height: auto;
    padding: 160px 0 80px;
    text-align: center;
}

.hero-simple .hero-content {
    display: block;
    max-width: 800px;
}

.hero-simple .hero-text {
    max-width: 100%;
}

.hero-simple .hero-actions {
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-smooth);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--gold);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 999px;
}

.card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Fleet Cards */
.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
}

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

.fleet-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-elegant);
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.05);
}

.fleet-card-body {
    padding: 24px;
}

.fleet-card-body h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.fleet-card-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.fleet-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.fleet-card-features span {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-elevated);
    border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */

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

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.testimonial-quote {
    font-size: 40px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 24px;
    right: 28px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-dark);
}

.testimonial-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.testimonial-rating span {
    color: var(--gold);
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS / STEPS
   ═══════════════════════════════════════════════════════════════ */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.process-step {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
}

.process-step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
}

.process-step h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */

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

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-info h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    background: rgba(201, 162, 39, 0.08);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    font-size: 20px;
    color: var(--gold);
}

.contact-method-text {
    flex: 1;
}

.contact-method-text small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-method-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════ */

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

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Honeypot */
.hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   ROUTE TABLE
   ═══════════════════════════════════════════════════════════════ */

.route-table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.route-table th,
.route-table td {
    padding: 18px 24px;
    text-align: left;
}

.route-table th {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.route-table td {
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.route-table tr:last-child td {
    border-bottom: none;
}

.route-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL BOX
   ═══════════════════════════════════════════════════════════════ */

.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.legal-content h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style: disc;
}

.legal-content li {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
    background: var(--bg-panel);
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.footer-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.footer-left span {
    font-size: 13px;
    color: var(--text-muted);
}

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

.footer-center a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-center a:hover {
    color: var(--gold);
}

.footer-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-right a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-right a:hover {
    color: var(--gold);
}

.footer-right a[href^="tel"] {
    font-weight: 600;
    color: var(--gold);
}

@media (max-width: 968px) {
    .footer-bar {
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
        text-align: center;
    }

    .footer-center {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP BUTTON
   ═══════════════════════════════════════════════════════════════ */

.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #25D366;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

/* Legacy class */
.whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #25D366;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-smooth);
}

.whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

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

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

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-01 { transition-delay: 0.1s; }
.delay-02 { transition-delay: 0.2s; }
.delay-03 { transition-delay: 0.3s; }
.delay-04 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.muted { color: var(--text-muted); }

/* Legacy compatibility */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 999px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-copy h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
}

.hero-copy p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Stats compact (legacy) */
.stats.compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stats.compact .stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.stats.compact .stat-card .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
}

.stats.compact .stat-card .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Home hero legacy */
.hero-home .media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-home .media img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-home .media-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    background: rgba(10, 13, 18, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
}

.hero-home .content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.hero-home .hero-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.hero-home .hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.hero-home .hero-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 11px;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
    border-radius: 50%;
}

.hero-home .contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin: 16px 0;
    padding: 16px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
}

.hero-home .contact-inline .label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-home .contact-inline a {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.hero-home .contact-inline a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Page layouts */
.page-home .layout {
    padding: 24px;
}

.page-home .hero {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    max-width: 1280px;
    margin: 100px auto 0;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}

/* Quick links */
.quick-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

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

.quick-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
    background: var(--bg-elevated);
}

.quick-link-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    font-size: 24px;
}

.quick-link-content {
    flex: 1;
    min-width: 0;
}

.quick-link-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.quick-link-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.quick-link-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.08);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.quick-link-card:hover .quick-link-arrow {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   JOBS / STELLENANZEIGEN
   ═══════════════════════════════════════════════════════════════ */

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.jobs-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
}

.jobs-loading .spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.jobs-empty {
    max-width: 500px;
    margin: 0 auto;
}

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-smooth);
}

.job-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.job-card-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.job-type {
    flex-shrink: 0;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 999px;
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.job-location,
.job-date {
    font-size: 13px;
    color: var(--text-muted);
}

.job-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-card .btn-ghost {
    width: 100%;
    justify-content: center;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-contact {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .page-home .hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 12px 16px;
    }
    
    nav ul {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-stats {
        position: static;
        transform: none;
        margin-top: 32px;
        flex-wrap: wrap;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .cards-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stats.compact {
        grid-template-columns: 1fr;
    }
    
    .hero-home .media img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .layout {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stat {
        padding: 16px 20px;
    }
    
    .hero-stat .num {
        font-size: 22px;
    }
    
    .card {
        padding: 24px;
    }
    
    .legal-content {
        padding: 24px;
    }
    
    .footer-cta-inner {
        padding: 24px;
    }
}
