/* ============================================
   TAXI SARI – Base Stylesheet
   Mobile-First | DSGVO-Compliant | No External Resources
   ============================================ */

/* --------------------------------------------
   CSS Variables
   -------------------------------------------- */
:root {
    /* Colors - Light Mode (Default) */
    --color-primary: #1a1a2e;
    --color-secondary: #f4c430;
    --color-accent: #e63946;
    --color-white: #ffffff;
    --color-gray-100: #f8f9fa;
    --color-gray-200: #e9ecef;
    --color-gray-300: #dee2e6;
    --color-gray-600: #6c757d;
    --color-gray-900: #212529;
    --color-whatsapp: #25D366;
    --color-success: #28a745;

    /* Theme-specific colors */
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-text: #212529;
    --color-text-muted: #6c757d;
    --color-border: #e9ecef;
    --color-card-bg: #ffffff;
    --color-header-bg: #ffffff;
    --color-footer-bg: #1a1a2e;

    /* Typography */
    --font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --line-height: 1.6;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* Layout */
    --container-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
}

/* --------------------------------------------
   CSS Reset
   -------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    color: var(--color-gray-900);
    background-color: var(--color-white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
    border: none;
    outline: none;
}

/* --------------------------------------------
   Layout
   -------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* --------------------------------------------
   Typography
   -------------------------------------------- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-sm);
}

h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    text-align: center;
}

h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-sm);
}

/* --------------------------------------------
   Buttons
   -------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

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

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(244, 196, 48, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

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

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

.btn-whatsapp:hover {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

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

.btn-email:hover {
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-size-lg);
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-lg svg {
    width: 24px;
    height: 24px;
}

/* --------------------------------------------
   Header / Navigation
   -------------------------------------------- */
/* Header Background - separate layer below street for taxi visibility */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    pointer-events: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background-color: transparent;
    padding: 0 var(--space-sm);
    height: 100px;
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: var(--space-xs);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: -30px 0;
}

.logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
}

/* Mobile Quick Actions - Hidden (CTAs are in Hero) */
.header-quick-actions {
    display: none;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.5rem 0.7rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.quick-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.quick-btn span {
    display: none;
}

.quick-btn--phone {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    animation: phonePulse 2s ease-in-out infinite;
}

.quick-btn--phone:hover {
    box-shadow: 0 4px 12px rgba(244, 196, 48, 0.4);
    animation: none;
}

@keyframes phonePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(244, 196, 48, 0.6);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(244, 196, 48, 0);
    }
}

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

.quick-btn--whatsapp:hover {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

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

.quick-btn--email:hover {
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.4);
}

/* Menu CTA Button */
.nav-menu-cta {
    padding: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.menu-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-secondary);
    color: var(--color-primary);
    font-weight: 700;
    font-size: var(--font-size-base);
    border-radius: var(--border-radius);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.menu-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 196, 48, 0.4);
}

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

/* Navigation Toggle (Mobile) */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Steering wheel icon (default state) */
.steering-icon {
    display: block;
    width: 38px;
    height: 38px;
    color: var(--color-primary);
    transition: opacity var(--transition-fast), transform 0.4s ease;
}

.steering-icon:active {
    transform: rotate(90deg);
}

/* Hamburger lines hidden by default, used for X animation */
.hamburger {
    display: none;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    position: relative;
    transition: background-color var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* When menu is open: hide steering wheel, show X */
.nav-toggle[aria-expanded="true"] .steering-icon {
    display: none;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    display: block;
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Menu */
.nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-header-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: var(--space-sm);
    flex-direction: column;
    gap: 0;
}

.nav-menu.is-open {
    display: flex;
}

.nav-menu > li {
    border-bottom: 1px solid var(--color-border);
}

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

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-sm);
    color: var(--color-text);
    font-weight: 500;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background-color: var(--color-bg-alt);
    color: var(--color-secondary);
}

/* Taxi Lift Animation - items move up when taxi passes underneath */
.nav-menu > li.taxi-lift,
.header-actions > a.taxi-lift {
    transform: translateY(-8px);
    transition: transform 0.15s ease-out;
}

.nav-menu > li:not(.taxi-lift),
.header-actions > a:not(.taxi-lift) {
    transition: transform 0.25s ease-in;
}

/* Nav Link Hover Animation */
@media (min-width: 768px) {
    .nav-menu > li > a {
        position: relative;
    }

    .nav-menu > li > a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--color-secondary);
        transition: width 0.3s ease, left 0.3s ease;
    }

    .nav-menu > li > a:hover::after {
        width: 100%;
        left: 0;
    }
}

/* Dropdown Arrow */
.dropdown-arrow {
    transition: transform var(--transition-fast);
}

.nav-dropdown.is-open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    background-color: var(--color-bg-alt);
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 0.75rem var(--space-sm);
    padding-left: var(--space-lg);
    color: var(--color-text);
    font-size: var(--font-size-sm);
    font-weight: 400;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown-menu li a:hover {
    background-color: var(--color-border);
    color: var(--color-secondary);
}

.nav-dropdown-divider {
    height: 1px;
    background-color: var(--color-border);
    margin: 0.5rem var(--space-sm);
}

/* Header Actions (Contact Buttons) - Hidden on mobile */
.header-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header-btn:hover {
    transform: translateY(-2px);
}

.header-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.header-btn .btn-text {
    display: none;
}

.header-btn--phone {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    animation: phonePulse 2s ease-in-out infinite;
}

.header-btn--phone:hover {
    box-shadow: 0 4px 12px rgba(244, 196, 48, 0.4);
    animation: none;
}

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

.header-btn--email:hover {
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}

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

.header-btn--whatsapp:hover {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.nav-cta {
    display: none;
}

/* Desktop Header Styles */
@media (min-width: 768px) {
    .header {
        height: 90px;
    }

    .logo-img {
        height: 176px;
    }

    .logo {
        margin: -45px 0;
    }

    /* Hide mobile quick actions on desktop */
    .header-quick-actions {
        display: none;
    }

    /* Show desktop header actions */
    .header-actions {
        display: flex;
    }

    .header-btn {
        padding: 0.6rem 1rem;
    }

    .header-btn .btn-text {
        display: inline;
    }

    /* Hide burger menu on desktop */
    .nav-toggle {
        display: none;
    }

    /* Show nav menu inline on desktop */
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: var(--space-sm);
    }

    .nav-menu > li {
        border: none;
    }

    .nav-menu > li > a {
        padding: 0.5rem var(--space-sm);
    }

    /* Hide menu CTA on desktop */
    .nav-menu-cta {
        display: none;
    }

    /* Dropdown for desktop */
    .nav-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background-color: var(--color-header-bg);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: var(--border-radius);
        padding: var(--space-xs) 0;
        z-index: 250;
    }

    .nav-dropdown-menu li a {
        padding-left: var(--space-sm);
    }
}

@media (min-width: 480px) {
    .quick-btn span {
        display: inline;
    }

    .quick-btn {
        padding: 0.5rem 0.8rem;
    }
}

/* --------------------------------------------
   Street Section & Taxi Animation
   -------------------------------------------- */
.street-section {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 150;
    pointer-events: none;
    overflow: visible;
}

.street {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(180deg, #5a5a5a 0%, #4a4a4a 50%, #3a3a3a 100%);
    border-top: none;
    border-bottom: 3px solid #222;
}

.street-lane {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #f4c430 0px,
        #f4c430 25px,
        transparent 25px,
        transparent 40px
    );
    transform: translateY(-50%);
}

.street-marking {
    display: none;
}

/* Taxi Stand - right side where customers wait */
.taxi-stand {
    position: absolute;
    top: 2px;
    right: 15%;
    z-index: 151;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

/* Only hide customers when picked up, keep the sign */
.taxi-stand.is-picked-up .waiting-customers {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.waiting-customers {
    transition: opacity 0.4s ease;
}

/* Taxi Stand Sign */
.taxi-stand-sign {
    width: 8px;
    height: 50px;
    background: linear-gradient(180deg, #777 0%, #555 100%);
    border-radius: 2px;
    position: relative;
}

.taxi-stand-sign span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #f4c430 0%, #e6b800 100%);
    color: #000;
    font-size: 7px;
    font-weight: 900;
    padding: 3px 5px;
    border-radius: 2px;
    border: 1px solid #c9a000;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Waiting Customers */
.waiting-customers {
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

/* Customer Base */
.customer {
    position: relative;
    width: 18px;
    height: 45px;
}

/* Head */
.customer-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid #a08060;
}

/* Hair */
.customer-hair {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50% 50% 0 0;
}

/* Body */
.customer-body {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 13px;
    height: 18px;
    border-radius: 3px 3px 0 0;
}

/* Legs */
.customer-legs {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 14px;
    background: #3d3d3d;
    border-radius: 0 0 2px 2px;
}

.customer-legs::before,
.customer-legs::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 5px;
    height: 3px;
    background: #2a2a2a;
    border-radius: 2px;
}

.customer-legs::before { left: 0; }
.customer-legs::after { right: 0; }

/* Woman styling */
.customer--woman .customer-head {
    background: linear-gradient(180deg, #e8d4c4 0%, #d4b8a0 100%);
}

.customer--woman .customer-hair {
    width: 13px;
    height: 8px;
    background: linear-gradient(180deg, #c0c0c0 0%, #909090 100%);
}

.customer--woman .customer-body {
    background: linear-gradient(180deg, #8b4570 0%, #6b3050 100%);
    width: 14px;
}

.customer--woman .customer-legs {
    background: linear-gradient(180deg, #2a2a4a 0%, #1a1a2e 100%);
}

/* Woman's handbag */
.customer-bag {
    position: absolute;
    top: 18px;
    right: -4px;
    width: 8px;
    height: 10px;
    background: linear-gradient(180deg, #8b4513 0%, #5d3a1a 100%);
    border-radius: 2px;
    border: 1px solid #4a2a0a;
}

/* Man styling */
.customer--man .customer-head {
    background: linear-gradient(180deg, #e8d4c4 0%, #d4b8a0 100%);
}

.customer--man .customer-hair {
    width: 13px;
    height: 5px;
    background: linear-gradient(180deg, #707070 0%, #505050 100%);
    top: -3px;
    border-radius: 3px 3px 0 0;
    border: 1px solid #404040;
}

.customer--man .customer-body {
    background: linear-gradient(180deg, #3d5c5c 0%, #2a4040 100%);
}

.customer--man .customer-legs {
    background: linear-gradient(180deg, #4a4a4a 0%, #2a2a2a 100%);
}

/* Man's walking cane */
.customer-cane {
    position: absolute;
    bottom: 0;
    right: -6px;
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, #5d3a1a 0%, #3d2a0a 100%);
    border-radius: 2px;
    transform: rotate(10deg);
}

.customer-cane::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 6px;
    height: 5px;
    background: #5d3a1a;
    border-radius: 3px;
}

/* ============================================
   TAXI
   ============================================ */
.scroll-taxi {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 120px;
    height: 50px;
    z-index: 152;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.4));
}

/* Taxi flipped when returning */
.scroll-taxi.is-returning {
    transform: scaleX(-1);
}

.scroll-taxi.is-returning .taxi-number,
.scroll-taxi.is-returning .taxi-sign {
    transform: scaleX(-1);
}

/* Taxi Body - VW Touran style */
.scroll-taxi .taxi-body {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 95px;
    height: 20px;
    background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-radius: 3px 8px 3px 3px;
    border: 1px solid #000;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Front bumper */
.scroll-taxi .taxi-body::before {
    content: '';
    position: absolute;
    right: -6px;
    bottom: 0;
    width: 8px;
    height: 18px;
    background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
    border-radius: 0 4px 4px 0;
    border: 1px solid #000;
    border-left: none;
}

/* Headlight */
.scroll-taxi .taxi-body::after {
    content: '';
    position: absolute;
    right: -4px;
    bottom: 11px;
    width: 4px;
    height: 6px;
    background: linear-gradient(180deg, #fff 0%, #ccc 100%);
    border-radius: 1px;
    box-shadow: 0 0 6px #fff, 0 0 10px rgba(255,255,200,0.8);
}

/* Phone number on body */
.scroll-taxi .taxi-number {
    position: absolute;
    top: 4px;
    left: 28px;
    font-weight: 900;
    color: #f4c430;
    font-family: system-ui, sans-serif;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
    gap: 2px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.scroll-taxi .taxi-number-area {
    font-size: 7px;
    font-weight: 800;
}

.scroll-taxi .taxi-number-main {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.3px;
}

/* Cabin/Windows - Touran style */
.scroll-taxi .taxi-cabin {
    position: absolute;
    bottom: 26px;
    left: 10px;
    width: 68px;
    height: 20px;
    background: linear-gradient(180deg, #6ab0d8 0%, #4a90b8 100%);
    border-radius: 3px 6px 0 0;
    border: 1px solid #3a7090;
    border-bottom: none;
    overflow: hidden;
}

/* Window divider */
.scroll-taxi .taxi-cabin::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #1a1a1a;
}

/* Driver - Mehmet style (front seat = right side of cabin when facing right) */
.scroll-taxi .taxi-driver {
    position: absolute;
    bottom: 28px;
    left: 54px;
    width: 16px;
    height: 18px;
    z-index: 2;
}

.scroll-taxi .driver-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 9px;
    background: linear-gradient(180deg, #d4b8a0 0%, #c4a890 100%);
    border-radius: 50%;
    border: 1px solid #a08060;
}

/* Driver hair - dark */
.scroll-taxi .driver-head::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 1px;
    width: 7px;
    height: 4px;
    background: #2a2a2a;
    border-radius: 4px 4px 0 0;
}

/* Driver body - burgundy jacket like Mehmet */
.scroll-taxi .driver-body {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 11px;
    height: 9px;
    background: linear-gradient(180deg, #8b3a3a 0%, #6b2a2a 100%);
    border-radius: 2px 2px 0 0;
}

/* Passengers in back seat - inside the cabin window */
.taxi-passengers {
    position: absolute;
    top: 4px;
    left: 4px;
    display: flex;
    gap: 1px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.scroll-taxi.has-passengers .taxi-passengers {
    opacity: 1;
}

.passenger {
    width: 9px;
    height: 14px;
    position: relative;
}

/* Passenger head */
.passenger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

/* Passenger body/shoulders */
.passenger::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 7px;
    border-radius: 2px 2px 0 0;
}

/* Woman passenger - gray hair, burgundy top */
.passenger--woman::before {
    background: linear-gradient(180deg, #c0c0c0 0%, #a0a0a0 100%);
}

.passenger--woman::after {
    background: linear-gradient(180deg, #8b4570 0%, #6b3050 100%);
}

/* Man passenger - gray hair, teal top */
.passenger--man::before {
    background: linear-gradient(180deg, #808080 0%, #606060 100%);
}

.passenger--man::after {
    background: linear-gradient(180deg, #3d5c5c 0%, #2a4040 100%);
}

/* Taxi Sign on roof */
.scroll-taxi .taxi-sign {
    position: absolute;
    bottom: 44px;
    left: 26px;
    width: 38px;
    height: 11px;
    background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%);
    border-radius: 3px;
    border: 1px solid #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6px;
    font-weight: 700;
    color: #000;
    font-family: system-ui, sans-serif;
    letter-spacing: -0.3px;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.9);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

/* Besetzt (occupied) - when has passengers */
.scroll-taxi.has-passengers .taxi-sign {
    background: linear-gradient(180deg, #f87171 0%, #ef4444 100%);
    border-color: #dc2626;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.9);
}

/* Speech bubble - appears when taxi returns (behind the car) */
.taxi-speech-bubble {
    position: absolute;
    bottom: 38px;
    left: -75px;
    background: linear-gradient(180deg, #f4c430 0%, #e6b800 100%);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    font-family: system-ui, sans-serif;
    padding: 6px 10px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 1px solid #c9a000;
    opacity: 0;
    transform: scaleX(-1) scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

/* Speech bubble tail pointing to car (right side) */
.taxi-speech-bubble::before {
    content: '';
    position: absolute;
    bottom: 8px;
    right: -8px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #f4c430;
}

/* Show speech bubble when arrived - flip back so text is readable */
.scroll-taxi.has-arrived .taxi-speech-bubble {
    opacity: 1;
    transform: scaleX(-1) scale(1);
}

/* Wheels */
.scroll-taxi .wheel {
    position: absolute;
    bottom: 2px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at center, #444 40%, #222 45%, #666 50%, #333 100%);
    border-radius: 50%;
    border: 2px solid #222;
}

.scroll-taxi .wheel--front {
    right: 8px;
}

.scroll-taxi .wheel--rear {
    left: 10px;
}

/* Wheel hubcaps */
.scroll-taxi .wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, #aaa 0%, #777 100%);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .street-section {
        top: 90px;
        z-index: 199;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-taxi {
        transition: none !important;
    }
}

/* --------------------------------------------
   Hero Section
   -------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-sm);
    padding-top: 180px;
    background-image: linear-gradient(rgba(10, 10, 20, 0.78) 0%, rgba(10, 10, 20, 0.6) 40%, rgba(10, 10, 20, 0.85) 100%), url('../images/Hero.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    color: var(--color-white);
}

.hero-content {
    max-width: 700px;
}

.hero-headline {
    color: var(--color-white);
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    line-height: 1.1;
    text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.9);
}

.hero-city {
    display: block;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--color-secondary);
    font-size: 1.8rem;
    margin-top: 0.2em;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
}

.hero-subline {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: var(--space-lg);
    color: var(--color-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.nowrap {
    white-space: nowrap;
}

.hero p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

@media (min-width: 480px) {
    .hero-headline {
        font-size: 6rem;
    }

    .hero-city {
        font-size: 2.2rem;
    }

    .hero-subline {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 9rem;
    }

    .hero-city {
        font-size: 2.8rem;
    }

    .hero-subline {
        font-size: 1.6rem;
        letter-spacing: 0.12em;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* --------------------------------------------
   Features Section (Trust Signals)
   -------------------------------------------- */
.features {
    padding: var(--space-xl) 0;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.feature-item {
    text-align: center;
    padding: var(--space-md);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-sm);
    background-color: var(--color-secondary);
    border-radius: 50%;
    color: var(--color-primary);
}

.feature-item h3 {
    margin-bottom: var(--space-xs);
}

.feature-item p {
    color: var(--color-gray-600);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* --------------------------------------------
   Google Reviews Section
   -------------------------------------------- */
.reviews-section {
    padding: var(--space-xl) 0 var(--space-lg);
    background-color: var(--color-white);
    overflow: hidden;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.reviews-google-icon {
    width: 24px;
    height: 24px;
}

.reviews-rating {
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--color-primary);
}

.reviews-stars {
    color: #fbbc04;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.reviews-count {
    color: var(--color-gray-600);
    font-size: var(--font-size-sm);
}

.reviews-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews-slider {
    display: flex;
    gap: 1rem;
    animation: reviewsScroll 40s linear infinite;
    width: max-content;
}

.reviews-slider:hover {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--color-gray-100);
    border-radius: var(--border-radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--color-gray-200);
    transition: box-shadow var(--transition-normal);
    cursor: default;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: #fbbc04;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.review-text {
    font-size: var(--font-size-sm);
    color: var(--color-gray-900);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray-600);
}

.reviews-footer {
    text-align: center;
    margin-top: var(--space-md);
    padding: 0 var(--space-sm);
}

.reviews-cta-text {
    font-size: var(--font-size-sm);
    color: var(--color-gray-900);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.reviews-cta-text span {
    font-weight: 400;
    color: var(--color-gray-600);
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 24px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-gray-900);
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-google-review:hover {
    background: var(--color-gray-100);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Reviews slider always auto-scrolls (also with reduced-motion) */

/* --------------------------------------------
   About Section - Trust & Personal Connection
   -------------------------------------------- */
.about-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 50%, #2d1f4e 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-wrapper {
        flex-direction: row;
        align-items: center;
        gap: var(--space-2xl);
    }
}

.about-text {
    flex: 1.5;
    text-align: center;
}

@media (min-width: 768px) {
    .about-text {
        text-align: left;
    }
}

.about-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.about-headline-ihr {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--color-white);
}

.about-headline-name {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--color-secondary);
}

.about-headline-city {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--color-white);
}

.about-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: none;
    display: block;
    letter-spacing: 0.02em;
}

.about-tagline span {
    color: rgba(255, 255, 255, 0.45);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.45);
}

.about-main-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

.about-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xs);
}

@media (min-width: 768px) {
    .about-cta {
        justify-content: flex-start;
    }
}

.about-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* Owner - Trust Element */
.about-owner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.owner-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--space-md);
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.owner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.owner-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.owner-name {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-white);
}

.owner-title {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-xs);
}

.owner-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    margin-top: var(--space-xs);
}

/* --------------------------------------------
   Services Section
   -------------------------------------------- */
.services {
    position: relative;
    padding: var(--space-2xl) 0;
    background: linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 50%, #2d1f4e 100%);
    color: var(--color-white);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Subtle glow */
.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.services-title {
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1.15;
}

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

/* Card Stack */
.card-stack-stage {
    position: relative;
    width: 100%;
    height: 360px;
    margin-top: var(--space-lg);
    perspective: 1100px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.card-stack-stage:active {
    cursor: grabbing;
}

.cs-card {
    position: absolute;
    bottom: 0;
    width: 300px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s ease;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cs-card.cs-active {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(244, 196, 48, 0.1);
    cursor: pointer;
}

.cs-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.98) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-card-icon {
    margin-bottom: 0.8rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.cs-card-icon svg {
    width: 30px;
    height: 30px;
}

.cs-card-inner h3 {
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.cs-card-inner p {
    color: var(--color-gray-600);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.cs-card-link {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: var(--font-size-sm);
    transition: opacity var(--transition-fast);
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d1f4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs-active .cs-card-link {
    opacity: 1;
}

.cs-card:not(.cs-active) .cs-card-link {
    opacity: 0;
}

/* Dots */
.card-stack-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.cs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.cs-dot.cs-dot-active {
    background: var(--color-secondary);
    transform: scale(1.3);
}

/* Services CTA */
.services-cta {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

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

.services-cta .btn-email:hover {
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}

/* Responsive */
@media (min-width: 768px) {
    .card-stack-stage {
        height: 400px;
    }
    .cs-card {
        width: 380px;
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .cs-card {
        width: 440px;
        height: 340px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cs-card {
        transition: none;
    }
}

/* --------------------------------------------
   Metzingen Outletcity – 3D Scroll Gallery
   -------------------------------------------- */
.metzingen-section {
    position: relative;
    padding: 5rem 0 4rem;
    color: var(--color-white);
    overflow: hidden;
}

/* Background image */
.metzingen-bg-image {
    position: absolute;
    inset: 0;
    background: url('../images/metzingen/metzingen-evening.png') center center / cover no-repeat;
    z-index: 0;
}

/* Dark overlay so text & gallery stay readable */
.metzingen-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 20, 0.82) 0%,
        rgba(15, 15, 30, 0.72) 40%,
        rgba(10, 10, 20, 0.85) 100%
    );
    z-index: 0;
}

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

/* Header */
.metzingen-header {
    text-align: center;
    margin-bottom: 3rem;
}

.metzingen-badge {
    display: inline-block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.metzingen-title {
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

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

.metzingen-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Gallery – 3 columns with scroll parallax */
.metzingen-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    height: 420px;
    overflow: hidden;
    border-radius: 16px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.mg-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.1s linear;
    will-change: transform;
}

.mg-column img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 200px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mg-column img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Scroll state: 3D tilt on gallery */
.metzingen-gallery.mg-scrolling {
    transform: perspective(1200px) rotateX(4deg) scale(0.97);
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.metzingen-gallery.mg-resting {
    transform: perspective(1200px) rotateX(0deg) scale(1);
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Fade mask top & bottom */
.metzingen-gallery::before,
.metzingen-gallery::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

.metzingen-gallery::before {
    top: 0;
    background: linear-gradient(to bottom, #0f0f1a, transparent);
}

.metzingen-gallery::after {
    bottom: 0;
    background: linear-gradient(to top, #1a1a2e, transparent);
}

.metzingen-gallery {
    position: relative;
}

/* CTA + Liquid Button */
.metzingen-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn-liquid {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    z-index: 1;
}

/* Liquid blob inside button */
.btn-liquid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.35) 0%, rgba(244, 196, 48, 0.1) 60%, transparent 80%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1), height 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn-liquid:hover::before {
    width: 300px;
    height: 300px;
}

.btn-liquid:hover {
    border-color: rgba(244, 196, 48, 0.4);
    box-shadow: 0 0 30px rgba(244, 196, 48, 0.12), inset 0 0 20px rgba(244, 196, 48, 0.05);
}

.btn-liquid-text {
    position: relative;
    z-index: 1;
}

.btn-liquid-arrow {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn-liquid:hover .btn-liquid-arrow {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .metzingen-section {
        padding: 3rem 0;
    }

    .metzingen-title {
        font-size: 1.6rem;
    }

    .metzingen-gallery {
        grid-template-columns: 1fr 1fr;
        height: 320px;
        gap: 0.75rem;
    }

    .mg-col-3 {
        display: none;
    }

    .mg-column img {
        height: 160px;
    }

    .metzingen-cta {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .metzingen-gallery {
        height: 260px;
    }

    .mg-column img {
        height: 130px;
    }

    .metzingen-title {
        font-size: 1.4rem;
    }

    .metzingen-subtitle {
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mg-column {
        transition: none !important;
    }
    .metzingen-gallery {
        transform: none !important;
        transition: none !important;
    }
}

/* --------------------------------------------
   Map Section
   -------------------------------------------- */
.map-section {
    padding: var(--space-2xl) 0;
    background-color: var(--color-bg-alt);
}

.map-section h2 {
    text-align: center;
    margin-bottom: var(--space-sm);
}

.map-categories {
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #5a5a5a;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.map-cta-text {
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.map-hint {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.service-map-wrapper {
    position: relative;
}

.map-interactive-hint {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    pointer-events: none;
}

.service-map {
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Make map labels brighter */
.service-map .leaflet-tile-pane {
    filter: brightness(1.2) contrast(1.1);
}

@media (min-width: 768px) {
    .service-map {
        height: 600px;
    }
}

/* Custom Map Markers */
.custom-marker {
    background: none;
    border: none;
}

.marker-pin {
    width: 40px;
    height: 40px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marker-pin:hover {
    transform: rotate(-45deg) scale(1.15);
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.marker-home {
    width: 50px;
    height: 50px;
    animation: homePulse 2s ease-in-out infinite;
}

.marker-icon {
    transform: rotate(45deg);
    font-size: 18px;
    line-height: 1;
}

.marker-home .marker-icon {
    font-size: 24px;
}

/* Marker Tooltip on Hover */
.marker-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: rotate(45deg) translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.marker-pin:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Home marker always on top */
.marker-home-wrapper {
    z-index: 9999 !important;
}

.marker-home {
    z-index: 9999 !important;
}

@keyframes homePulse {
    0%, 100% {
        box-shadow:
            0 4px 8px rgba(0, 0, 0, 0.3),
            0 8px 16px rgba(0, 0, 0, 0.2),
            0 0 0 0 rgba(244, 196, 48, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow:
            0 4px 8px rgba(0, 0, 0, 0.3),
            0 8px 16px rgba(0, 0, 0, 0.2),
            0 0 0 15px rgba(244, 196, 48, 0),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
}

@keyframes markerBounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-15px); }
}

.marker-bounce {
    animation: markerBounce 0.5s ease;
}

/* Map Popup */
.map-popup {
    text-align: center;
    padding: 0.5rem;
}

.map-popup strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.map-popup p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0 0 0.75rem 0;
}

.popup-ctas {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-cta svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.popup-cta--phone {
    background: var(--color-secondary) !important;
    color: var(--color-primary) !important;
}

.popup-cta--whatsapp {
    background: var(--color-whatsapp) !important;
    color: #fff !important;
}

.popup-cta--email {
    background: var(--color-primary) !important;
    color: #fff !important;
}

.popup-cta:hover {
    transform: scale(1.05);
}

.popup-cta--phone:hover {
    box-shadow: 0 2px 8px rgba(244, 196, 48, 0.4);
}

.popup-cta--whatsapp:hover {
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
}

.popup-cta--email:hover {
    box-shadow: 0 2px 8px rgba(26, 26, 46, 0.3);
}

/* Leaflet popup overrides */
.leaflet-popup-content-wrapper {
    background: var(--color-card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.leaflet-popup-content-wrapper a {
    color: inherit;
}

.leaflet-popup-tip {
    background: var(--color-card-bg);
}

/* --------------------------------------------
   Contact Section
   -------------------------------------------- */
.contact {
    padding: var(--space-2xl) 0;
    background-color: var(--color-gray-100);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.contact-info p {
    margin-bottom: var(--space-sm);
}

.contact-info a {
    color: var(--color-primary);
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--color-accent);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea {
    padding: var(--space-sm);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-secondary);
}

/* --------------------------------------------
   Footer – Holographic Premium
   -------------------------------------------- */
.footer {
    position: relative;
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-lg);
    overflow: hidden;
}

/* Holographic animated background */
.footer-holo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        160deg,
        #0f0f1a 0%,
        #1a1a2e 20%,
        #2d1f4e 40%,
        #1a2a3e 60%,
        #1f1a3e 80%,
        #0f0f1a 100%
    );
    background-size: 400% 400%;
    animation: holoShift 12s ease infinite;
}

/* Iridescent shimmer overlay */
.footer-holo-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(244, 196, 48, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(100, 80, 200, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(48, 180, 244, 0.04) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: holoGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Subtle noise texture */
.footer-holo-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

@keyframes holoShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes holoGlow {
    0%   { background-position: 0% 0%; opacity: 0.6; }
    100% { background-position: 100% 100%; opacity: 1; }
}

/* Container above holo layer */
.footer > .container {
    position: relative;
    z-index: 1;
}

/* Footer Grid – 3 Columns */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.footer-services h4,
.footer-legal h4,
.footer-contact h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Services nav */
.footer-services-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-services-nav a {
    font-size: var(--font-size-sm);
    opacity: 0.7;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer-services-nav a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

/* Legal nav */
.footer-legal-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-legal-nav a {
    font-size: var(--font-size-sm);
    opacity: 0.7;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer-legal-nav a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

/* Contact */
.footer-contact p {
    margin: var(--space-xs) 0;
    font-size: var(--font-size-sm);
}

.footer-contact a {
    opacity: 0.7;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-sm);
}

.contact-icon {
    flex-shrink: 0;
    opacity: 0.7;
    margin-top: 2px;
}

.contact-item a {
    opacity: 0.7;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.contact-item a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.contact-address address {
    font-style: normal;
    line-height: 1.5;
    opacity: 0.7;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    opacity: 0.5;
    margin: 0;
}

.footer-credit {
    font-size: var(--font-size-xs, 0.75rem);
    opacity: 0.4;
    font-weight: 600;
    margin-top: var(--space-xs);
}

.footer-credit a {
    color: var(--color-secondary);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-credit a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Signature pen animation */
.footer-credit {
    position: relative;
    display: inline-block;
}

.credit-text {
    position: relative;
    z-index: 1;
}

.credit-pen-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 20px;
    pointer-events: none;
}

/* The laser line that grows – glowing magic wand trail */
.credit-line {
    position: absolute;
    left: 0;
    top: 8px;
    height: 2.5px;
    width: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), #fff 30%, #fffbe6 60%, #fff 100%);
    border-radius: 2px;
    box-shadow:
        0 0 6px #fff,
        0 0 12px var(--color-secondary),
        0 0 24px rgba(244, 196, 48, 0.6),
        0 0 40px rgba(244, 196, 48, 0.3);
}

/* Shimmer overlay on line */
.credit-line::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 45%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.6) 55%,
        transparent 100%
    );
    background-size: 200% 100%;
    border-radius: 2px;
    opacity: 0;
}

.pen-animate .credit-line::after {
    opacity: 1;
    animation: laserShimmer 1.5s ease 0.8s forwards;
}

/* The sparkle dot at the end */
.credit-dot {
    position: absolute;
    right: -3px;
    top: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transform: scale(0);
    box-shadow:
        0 0 8px #fff,
        0 0 16px var(--color-secondary),
        0 0 28px rgba(244, 196, 48, 0.7),
        0 0 44px rgba(244, 196, 48, 0.3);
}

/* The wand icon that moves across – glowing */
.credit-pen {
    position: absolute;
    left: -2px;
    top: -6px;
    width: 20px;
    height: 20px;
    opacity: 0;
    transform: rotate(-30deg);
    filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 14px var(--color-secondary)) drop-shadow(0 0 24px rgba(244, 196, 48, 0.5));
}

/* Pen animation – triggered by JS when footer is visible */
.pen-animate .credit-line {
    animation: lineGrow 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.pen-animate .credit-dot {
    animation: dotStamp 0.4s ease 2.1s forwards, dotPulse 1.5s ease 2.5s 3;
}

.pen-animate .credit-pen {
    animation:
        penAppear 0.3s ease 0.2s forwards,
        penMove 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards,
        penStamp 0.15s ease 2.1s forwards,
        penFade 0.5s ease 2.5s forwards;
}

@keyframes lineGrow {
    0%   { width: 0; }
    100% { width: 100%; }
}

@keyframes laserShimmer {
    0%   { background-position: -100% 0; opacity: 1; }
    80%  { background-position: 200% 0; opacity: 1; }
    100% { opacity: 0; }
}

@keyframes dotStamp {
    0%   { opacity: 0; transform: scale(0); }
    40%  { transform: scale(2); opacity: 1; }
    70%  { transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 8px #fff, 0 0 16px var(--color-secondary), 0 0 28px rgba(244, 196, 48, 0.7); }
    50%      { box-shadow: 0 0 14px #fff, 0 0 28px var(--color-secondary), 0 0 48px rgba(244, 196, 48, 0.8), 0 0 60px rgba(244, 196, 48, 0.3); }
}

@keyframes penAppear {
    0%   { opacity: 0; transform: rotate(-30deg) scale(0.3); }
    100% { opacity: 1; transform: rotate(-30deg) scale(1); }
}

@keyframes penMove {
    0%   { left: -2px; }
    100% { left: calc(100% - 10px); }
}

@keyframes penStamp {
    0%   { transform: rotate(-30deg) scale(1); }
    50%  { transform: rotate(-30deg) scale(0.8) translateY(2px); }
    100% { transform: rotate(-30deg) scale(1); }
}

@keyframes penFade {
    0%   { opacity: 1; transform: rotate(-30deg) scale(1); filter: drop-shadow(0 0 6px var(--color-secondary)) drop-shadow(0 0 12px rgba(244, 196, 48, 0.4)); }
    100% { opacity: 0; transform: rotate(-30deg) scale(0.3) translateY(-10px); filter: drop-shadow(0 0 20px var(--color-secondary)) drop-shadow(0 0 30px rgba(244, 196, 48, 0.6)); }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .footer-holo-bg {
        animation: none;
        background: linear-gradient(160deg, #0f0f1a 0%, #1a1a2e 50%, #2d1f4e 100%);
        background-size: 100% 100%;
    }
    .footer-holo-bg::before {
        animation: none;
        opacity: 0.8;
    }
    .credit-line {
        animation: none;
        width: 100%;
    }
    .credit-dot {
        animation: none;
        opacity: 0.8;
        transform: scale(1);
    }
    .credit-pen {
        display: none;
    }
}

/* Desktop */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr auto 1fr;
        text-align: left;
    }

    .footer-services {
        text-align: left;
    }

    .footer-legal {
        text-align: center;
        align-self: start;
    }

    .footer-contact {
        text-align: left;
        justify-self: end;
    }

    .contact-item {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .contact-address address {
        text-align: left;
    }

    .footer-services-nav {
        align-items: flex-start;
    }

    .footer-bottom {
        position: relative;
    }

    .footer-credit {
        position: absolute;
        right: 0;
        bottom: 0;
        margin-top: 0;
    }
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */

/* Subpage Hero */
.subpage-hero {
    padding: calc(90px + var(--space-xl)) var(--space-sm) var(--space-xl);
    background-color: var(--color-primary);
    color: var(--color-white);
}

.subpage-hero--small {
    padding-bottom: var(--space-lg);
}

.subpage-hero--highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d4a 100%);
}

.subpage-hero h1 {
    color: var(--color-white);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-sm);
}

.subpage-hero .hero-subtitle {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.subpage-hero .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Benefits Section */
.benefits-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.benefit-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    background-color: var(--color-success);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
}

.benefit-card h3 {
    margin-bottom: var(--space-xs);
}

.benefit-card p {
    color: var(--color-gray-600);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Content Section */
.content-section {
    padding: var(--space-2xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.content-main h2 {
    text-align: left;
    margin-bottom: var(--space-md);
}

.content-main h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-md);
}

.feature-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-xs);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* Process List */
.process-list {
    list-style: none;
    padding: 0;
    counter-reset: process;
    margin-bottom: var(--space-md);
}

.process-list li {
    position: relative;
    padding-left: calc(var(--space-lg) + var(--space-sm));
    margin-bottom: var(--space-md);
    counter-increment: process;
}

.process-list li::before {
    content: counter(process);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
}

/* Info Highlight */
.info-highlight {
    background-color: var(--color-gray-100);
    border-left: 4px solid var(--color-secondary);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Highlight Box */
.highlight-box {
    background-color: var(--color-gray-100);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    margin: var(--space-lg) 0;
}

.highlight-box h3 {
    margin-top: 0;
}

/* Region Grid (Kurfahrten) */
.region-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.region-card {
    background-color: var(--color-gray-100);
    padding: var(--space-md);
    border-radius: var(--border-radius);
}

.region-card h4 {
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.region-card ul {
    list-style: disc;
    padding-left: var(--space-md);
    color: var(--color-gray-600);
}

.region-card li {
    margin-bottom: var(--space-xs);
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* CTA Box */
.cta-box {
    background-color: var(--color-gray-100);
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.cta-box--highlight {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cta-box--highlight h3 {
    color: var(--color-white);
}

.cta-box h3 {
    margin-bottom: var(--space-sm);
}

.cta-box p {
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
}

.cta-box .btn {
    margin-bottom: var(--space-xs);
}

/* Info Box */
.info-box {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    padding: var(--space-md);
    border-radius: var(--border-radius);
}

.info-box h3 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-secondary);
}

.info-box p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
}

.info-box a {
    color: var(--color-primary);
    font-weight: 600;
}

.info-box a:hover {
    color: var(--color-secondary);
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-sm);
}

.checklist li::before {
    content: '☐';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Distance Info (Metzingen) */
.distance-info {
    text-align: center;
    padding: var(--space-sm) 0;
}

.distance-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.distance-arrow {
    color: var(--color-secondary);
}

.distance-time {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.distance-km {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

/* Related Section */
.related-section {
    padding: var(--space-2xl) 0;
    background-color: var(--color-gray-100);
}

.related-section h2 {
    margin-bottom: var(--space-lg);
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.related-card {
    display: block;
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.related-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.related-card h3 {
    margin-bottom: var(--space-xs);
}

.related-card p {
    color: var(--color-gray-600);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* ============================================
   PRICE PAGE STYLES
   ============================================ */

.price-intro {
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    text-align: center;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.price-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.price-card--featured {
    border: 2px solid var(--color-secondary);
}

.price-card-header {
    background-color: var(--color-gray-100);
    padding: var(--space-lg);
    text-align: center;
}

.price-card--featured .price-card-header {
    background-color: var(--color-secondary);
}

.price-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.price-card-header h2 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
}

.price-card-header p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    margin: 0;
}

.price-card--featured .price-card-header p {
    color: var(--color-primary);
    opacity: 0.8;
}

.price-card-body {
    padding: var(--space-lg);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.price-item:last-of-type {
    border-bottom: none;
}

.price-item--highlight {
    background-color: var(--color-gray-100);
    margin: 0 calc(-1 * var(--space-lg));
    padding: var(--space-sm) var(--space-lg);
}

.price-route {
    font-size: var(--font-size-sm);
}

.price-value {
    font-weight: 700;
    color: var(--color-primary);
}

.price-features {
    list-style: none;
    padding: 0;
    margin-top: var(--space-md);
}

.price-features li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

.price-card-footer {
    padding: 0 var(--space-lg) var(--space-lg);
    text-align: center;
}

/* Tariff Info */
.tariff-info {
    background-color: var(--color-gray-100);
    padding: var(--space-xl);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-2xl);
}

.tariff-info h2 {
    margin-bottom: var(--space-md);
}

.tariff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.tariff-item {
    text-align: center;
}

.tariff-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    margin-bottom: var(--space-xs);
}

.tariff-value {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-primary);
}

.tariff-note {
    text-align: center;
    color: var(--color-gray-600);
    margin: 0;
}

/* Tariff Page (amtliche Taxitarife) */
.tariff-page {
    max-width: 800px;
    margin: 0 auto;
}

.tariff-page-intro {
    font-size: var(--font-size-md);
    color: #555;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.tariff-table-wrapper {
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    font-size: var(--font-size-md);
}

.tariff-table thead {
    background: rgba(0,0,0,0.25);
}

.tariff-table th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-weight: 600;
    color: #fff;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tariff-th-note {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.85;
    margin-top: 2px;
}

.tariff-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
}

.tariff-table td strong {
    color: #fff;
}

.tariff-table tbody tr:hover {
    background: rgba(255,255,255,0.05);
}

.tariff-table tbody tr:first-child td {
    background: rgba(244,196,48,0.1);
}

.tariff-sub {
    display: block;
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.tariff-page-note {
    text-align: center;
    margin-top: var(--space-md);
}

.tariff-page-note small {
    color: #888;
    font-size: var(--font-size-sm);
}

@media (max-width: 600px) {
    .tariff-table th,
    .tariff-table td {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-sm);
    }

    .tariff-table th:first-child,
    .tariff-table td:first-child {
        min-width: 120px;
    }

    .tariff-th-note {
        font-size: 0.65rem;
    }
}

/* Price Info Grid */
.price-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

/* CTA Section */
.cta-section {
    padding: var(--space-2xl) 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
}

/* ============================================
   LEGAL PAGE STYLES
   ============================================ */

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    text-align: left;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-secondary);
}

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

.legal-content h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content ul {
    list-style: disc;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-content li {
    margin-bottom: var(--space-xs);
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-secondary);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(244, 196, 48, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(244, 196, 48, 0.5);
    }
}

/* Hero Animations */
.hero h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

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

/* CTA Button Glow Effect */
.hero .btn-primary {
    animation: glow 2s ease-in-out infinite;
    animation-delay: 1s;
}

/* Section Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animation */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* Enhanced Button Hover Effects */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

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

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* Reviews slider must keep scrolling */
    .reviews-slider {
        animation-duration: 40s !important;
        animation-iteration-count: infinite !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   TABLET (min-width: 768px)
   ============================================ */

@media (min-width: 768px) {
    h1 {
        font-size: var(--font-size-3xl);
    }

    h2 {
        font-size: var(--font-size-2xl);
    }

    .hero h1 {
        font-size: var(--font-size-3xl);
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    /* Hide hero email on desktop (already in header) */
    .hero-cta .btn-email {
        display: none;
    }

    /* Navigation */
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: var(--space-sm);
        flex-direction: row;
        background: transparent;
    }

    .nav-menu > li {
        border-bottom: none;
    }

    .nav-menu > li > a {
        padding: var(--space-xs) var(--space-sm);
        color: var(--color-text);
        font-size: var(--font-size-sm);
        transition: color var(--transition-fast);
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        background-color: transparent;
        color: var(--color-secondary);
    }

    /* Dropdown Desktop */
    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background-color: var(--color-card-bg);
        border-radius: var(--border-radius);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        padding: var(--space-xs) 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all var(--transition-fast);
        z-index: 250;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-dropdown-menu li a {
        padding: 0.6rem var(--space-md);
        padding-left: var(--space-md);
        white-space: nowrap;
    }

    .nav-dropdown-menu li a:hover {
        background-color: var(--color-bg-alt);
    }

    .nav-dropdown-divider {
        margin: 0.25rem 0;
    }

    /* Header Action Buttons */
    .header-actions {
        gap: 0.75rem;
    }

    .header-btn {
        padding: 0.5rem 0.85rem;
    }

    .header-btn .btn-text {
        display: inline;
    }

    .nav-cta {
        display: none;
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Subpage Hero */
    .subpage-hero {
        padding-top: calc(70px + var(--space-2xl));
        padding-bottom: var(--space-2xl);
    }

    .subpage-hero h1 {
        font-size: var(--font-size-3xl);
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Content Grid */
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }

    /* Region Grid */
    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Related */
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Price Grid */
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Price Info Grid */
    .price-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: row;
    }
}

/* ============================================
   DESKTOP (min-width: 1024px)
   ============================================ */

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .region-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card--featured {
        grid-column: span 2;
    }

    .price-card--featured .price-card-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .price-card--featured .price-features {
        margin-top: 0;
    }
}

/* ============================================
   LARGE DESKTOP (min-width: 1200px)
   ============================================ */

@media (min-width: 1200px) {
    .price-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .price-card--featured {
        grid-column: span 2;
    }

    .price-card--featured .price-card-body {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 640px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-grid--small {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .blog-grid--small {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Blog Card */
.blog-card {
    background: var(--color-card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

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

.blog-card-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d4a 100%);
    color: var(--color-secondary);
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.blog-card-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.blog-card-content {
    padding: var(--space-md);
}

.blog-card-category {
    display: inline-block;
    color: var(--color-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.blog-card-excerpt {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.blog-card-author {
    font-weight: 500;
}

/* Blog Categories */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.category-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.category-tag:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.category-tag.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--color-bg-alt);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    list-style: none;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--color-text-muted);
}

.breadcrumb-list a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.breadcrumb-list a:hover {
    color: var(--color-secondary);
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--color-text);
    font-weight: 500;
}

/* Blog Article */
.blog-article {
    padding: var(--space-xl) 0;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.article-category {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
}

.article-header h1 {
    font-size: var(--font-size-2xl);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .article-header h1 {
        font-size: var(--font-size-3xl);
    }
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.article-author {
    font-weight: 500;
}

/* Article Content */
.article-content {
    font-size: var(--font-size-base);
    line-height: 1.8;
}

.article-content p {
    margin-bottom: var(--space-md);
}

.article-content h2 {
    font-size: var(--font-size-xl);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.article-content h3 {
    font-size: var(--font-size-lg);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

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

.article-intro {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.7;
    border-left: 4px solid var(--color-secondary);
    padding-left: var(--space-md);
    margin-bottom: var(--space-lg);
}

/* Article CTA */
.article-cta {
    background: var(--color-bg-alt);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 0.5rem;
}

.article-cta p {
    margin-bottom: var(--space-md);
    color: var(--color-text-muted);
}

.article-cta .cta-buttons {
    justify-content: center;
}

/* Article Footer */
.article-footer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-tags .tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-bg-alt);
    border-radius: 15px;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-size-sm);
}

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

.article-share a {
    color: var(--color-secondary);
    font-weight: 500;
}

.article-share a:hover {
    text-decoration: underline;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Text utilities */
.text-center {
    text-align: center;
}

/* Error Message */
.error-message {
    text-align: center;
    color: var(--color-accent);
    padding: var(--space-lg);
}
