/*
Theme Name: Fleet Data - Dioneli Apartment Nordic Luxury Edition
Theme URI: https://www.fleet-data.de
Author: Fleet Data & Systems Consulting UG
Description: Nordic Luxury Design inspired by Nordicia - Elegant minimalist design with soft neutrals, warm ivory, and deep charcoal accents
Version: 2.0 - Nordic Luxury Edition
Text Domain: fleet-data
*/

:root {
    /* Nordic Luxury Color Palette - Nordicia Inspired */
    --color-ivory: #FAF8F3;
    --color-warm-ivory: #F5F1E8;
    --color-stone: #D4CFC5;
    --color-muted-stone: #B8B3A8;
    --color-charcoal: #2C2C2C;
    --color-deep-charcoal: #1A1A1A;
    --color-soft-white: #FFFFFF;
    --color-accent-warm: #C9B896;
    --color-text-dark: #3A3A3A;
    --color-text-muted: #6B6B6B;

    /* Legacy compatibility aliases */
    --primary-blue: #2C2C2C;
    --dark-blue: #1A1A1A;
    --light-blue: #B8B3A8;
    --accent-blue: #C9B896;
    --text-dark: #3A3A3A;
    --text-white: #FAF8F3;
    --bg-light: #F5F1E8;
    --border-color: rgba(212, 207, 197, 0.3);
    --link-accent: #C9B896;

    /* Typography - Nordic Luxury */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing - Nordic Minimalism */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;

    /* Transitions - Smooth & Elegant */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows - Subtle Nordic */
    --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-ivory);
    color: var(--color-text-dark);
    line-height: 1.7;
    font-size: 16px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Nordic Luxury Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--color-charcoal);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
    line-height: 1.8;
}

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

a:hover {
    color: var(--color-charcoal);
    opacity: 0.8;
}

/* ============================================
   HEADER - NORDIC LUXURY
   ============================================ */
.header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-stone), transparent);
    opacity: 0.3;
    z-index: 1001;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    background: rgba(250, 248, 243, 0.98);
    box-shadow: var(--shadow-soft);
    border-bottom-color: var(--color-stone);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 1rem 2rem 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 180px;
}

.logo {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0.5rem 0 0.5rem 0;
    margin: 0;
}

.logo img {
    height: 100%;
    width: auto;
    max-height: none;
    object-fit: contain;
    margin-left: 0;
    border-radius: 0;
    background: transparent;
    padding: 8px;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    color: var(--color-charcoal);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-warm);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent-warm);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Search/Info Button */
.info-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-size: 1.3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Info Dropdown */
.info-dropdown {
    position: fixed;
    top: 200px;
    right: 2rem;
    width: 400px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(90, 110, 127, 0.3);
    padding: 2.5rem;
    z-index: 2000;
    display: none;
    animation: slideDown 0.3s ease;
}

.info-dropdown.active {
    display: block;
}

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

.info-dropdown h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
}

.info-dropdown h4 {
    color: var(--dark-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-dropdown p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-dropdown ul {
    list-style: none;
    padding: 0;
}

.info-dropdown ul li {
    padding: 0.3rem 0;
    color: var(--text-dark);
}

.info-dropdown ul li::before {
    content: "\2713 ";
    color: var(--light-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.info-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.info-close:hover {
    color: var(--primary-blue);
}

/* Search Input */
.search-input-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-blue);
}

.search-submit {
    padding: 0.8rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quick-link {
    padding: 0.8rem;
    background: var(--bg-light);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quick-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    color: white;
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.search-result-item {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: var(--primary-blue);
    color: white;
}

.search-result-item h5 {
    margin-bottom: 0.3rem;
    color: inherit;
}

.search-result-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
}

/* ============================================
   HERO SECTION - NORDIC LUXURY
   ============================================ */
.hero {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, var(--color-warm-ivory) 0%, var(--color-ivory) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 184, 150, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 179, 168, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--text-white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-shadow: none;
    line-height: 1.1;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
}

.hero-content p {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    text-shadow: none;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h2 {
    font-family: var(--font-serif);
    color: var(--color-accent-warm);
    font-weight: 300;
    font-style: italic;
}

/* ============================================
   BUTTONS - NORDIC LUXURY
   ============================================ */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-charcoal);
    color: var(--color-ivory);
    text-decoration: none;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.btn:hover {
    background-color: var(--color-accent-warm);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--color-charcoal);
}

.btn.secondary {
    background-color: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
    box-shadow: none;
}

.btn.secondary:hover {
    background-color: var(--color-charcoal);
    border-color: var(--color-charcoal);
    color: var(--color-ivory);
    box-shadow: var(--shadow-soft);
}

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.125rem);
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   SERVICES GRID - NORDIC LUXURY
   ============================================ */
.services {
    background-color: var(--color-warm-ivory);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: var(--color-soft-white);
    padding: 3rem 2rem;
    border-radius: 0;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    color: var(--color-text-dark);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent-warm);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--color-accent-warm);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
    font-weight: 400;
}

.service-card p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   PRICING GRID
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(90, 110, 127, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(90, 110, 127, 0.7);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border: 4px solid rgba(255, 255, 255, 0.6);
    background: rgba(90, 110, 127, 0.7);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    font-weight: 600;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.price-period {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.7rem 0;
    color: #ffffff;
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: #ffffff;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
    color: #1a1a1a;
}

.pricing-btn.primary:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.feature-section {
    background: #5A6E7F;
}

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

.feature-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.feature-text p {
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #ffffff;
    opacity: 0.95;
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-visual {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: rgba(90, 110, 127, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.stat-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(90, 110, 127, 0.7);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: #5A6E7F;
    color: white;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    background: rgba(90, 110, 127, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--link-accent);
}

.contact-details p {
    opacity: 0.9;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   FOOTER - NORDIC LUXURY
   ============================================ */
.footer {
    background: var(--color-deep-charcoal);
    color: var(--color-warm-ivory);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 207, 197, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-accent-warm);
    letter-spacing: -0.01em;
}

.footer-section p,
.footer-section address {
    line-height: 1.8;
    color: var(--color-stone);
    font-style: normal;
    font-size: 0.9rem;
}

.footer-section a {
    color: var(--color-stone);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--color-accent-warm);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 207, 197, 0.1);
    color: var(--color-muted-stone);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--color-accent-warm);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-stone);
}

/* ============================================
   IMPRESSUM / DATENSCHUTZ PAGE
   ============================================ */
.legal-section {
    background-color: #4A5A68;
    color: #ffffff;
    padding: 4rem 2rem;
    padding-top: 14rem;
}

.legal-section .container {
    max-width: 1000px;
}

.legal-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content {
    background: rgba(90, 110, 127, 0.3);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #7BA3D0;
}

.legal-content h3:first-child {
    font-size: 1.5rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.legal-content a {
    color: #7BA3D0;
    text-decoration: none;
}

.back-to-top {
    text-align: center;
    margin-top: 2rem;
}

.back-to-top a {
    color: #7BA3D0;
    text-decoration: none;
    font-size: 1.1rem;
}

/* ============================================
   PAGE CONTENT (generic WordPress pages)
   ============================================ */
.page-content {
    background: #5A6E7F;
    padding-top: 14rem;
    padding-bottom: 4rem;
    min-height: 60vh;
}

.page-content .container {
    max-width: 1000px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-content h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.page-content p {
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-content ul, .page-content ol {
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.chatbot-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(90, 110, 127, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.chatbot-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(90, 110, 127, 1);
}

.chatbot-toggle.active {
    background: rgba(90, 110, 127, 1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(90, 110, 127, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.8rem;
    animation: fadeIn 0.3s ease;
}

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

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bot .message-avatar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
}

.user .message-avatar {
    background: var(--accent-blue);
    color: white;
}

.message-bubble {
    max-width: 70%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.bot .message-bubble {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.user .message-bubble {
    background: var(--accent-blue);
    color: white;
}

.chatbot-input-area {
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.8rem;
}

.chatbot-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    font-size: 0.95rem;
    outline: none;
}

.chatbot-input:focus {
    border-color: var(--primary-blue);
}

.chatbot-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-send-btn:hover {
    background: var(--light-blue);
    transform: scale(1.1);
}

/* ============================================
   WORDPRESS OVERRIDES
   ============================================ */
.wp-block-post-content,
.entry-content {
    color: #ffffff;
}

/* Remove WordPress admin bar spacing conflict */
body.admin-bar .header {
    top: 32px;
}

/* ============================================
   LLM QUALITY CHART - Fleet Data Overrides
   ============================================ */
.llm-quality-chart-wrapper {
    --llm-bg: #0f1117;
    --llm-bg-card: #1e2130;
    --llm-border: #2a2d3a;
    --llm-text: #e2e4eb;
    --llm-text-muted: #8b8fa3;
    --llm-text-dim: #5c6078;
    --llm-accent: #818cf8;
    --llm-accent-light: #a5b4fc;
    --llm-accent-soft: rgba(129, 140, 248, 0.15);
    --llm-blue: #60a5fa;
    --llm-purple: #a78bfa;
}

.llm-quality-chart-wrapper .llm-chart-container {
    background: #0f1117;
    border-radius: 12px;
    padding: 24px;
}

.llm-quality-chart-wrapper .llm-card {
    background: #1e2130 !important;
    border-color: #2a2d3a !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 77px;
        left: -100%;
        flex-direction: column;
        background: rgba(84, 104, 125, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .services-grid,
    .pricing-grid,
    .stats-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .chatbot-window {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .pricing-grid,
    .stats-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .logo {
        height: 45px;
    }
}
