/* ====================================
   CSS VARIABLES & COLOR SCHEME
   ==================================== */
:root {
    /* Primary Colors */
    --primary-color: #0071e3;
    --secondary-color: #86c3ff;
    
    /* Accent Colors */
    --accent-color: #ff6b35;
    --accent-light: #ff8c5a;
    --accent-dark: #e55a2b;
    
    /* Status Colors */
    --warning-color: #ffa726;
    --success-color: #66bb6a;
    
    /* Light Theme Colors */
    --bg-light: #f5f5f7;
    --text-light: #1d1d1f;
    --text-secondary-light: #86868b;
    --card-light: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    
    /* Dark Theme Colors */
    --bg-dark: #000000;
    --text-dark: #f5f5f7;
    --text-secondary-dark: #a1a1a6;
    --card-dark: #1d1d1f;
    --shadow-dark: rgba(255, 255, 255, 0.05);
    
    /* Default Theme (Light) */
    --bg-color: var(--bg-light);
    --text-color: var(--text-light);
    --text-secondary: var(--text-secondary-light);
    --card-bg: var(--card-light);
    --shadow: var(--shadow-light);
    
    /* Transition Speeds */
    --transition-speed: 0.3s;
    --micro-transition: 0.2s;
    --smooth-transition: 0.4s;
}

[data-theme="dark"] {
    --bg-color: var(--bg-dark);
    --text-color: var(--text-dark);
    --text-secondary: var(--text-secondary-dark);
    --card-bg: var(--card-dark);
    --shadow: var(--shadow-dark);
}


/* ====================================
   RESET & BASE STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


/* ====================================
   ANIMATIONS & KEYFRAMES
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.animate-on-scroll {
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ====================================
   ACCESSIBILITY & FOCUS STYLES
   ==================================== */
a:focus, 
button:focus, 
input:focus, 
select:focus, 
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-to-content:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    z-index: 2000;
    border-radius: 0 0 5px 0;
}


/* ====================================
   LAYOUT COMPONENTS
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
    transform: translateZ(0);
    will-change: transform;
    transition: background-color var(--transition-speed);
}

.page-container {
    max-width: 800px;
    margin: auto;
    margin-bottom: 100px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


/* ====================================
   HEADER & NAVIGATION
   ==================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
    transition: background-color var(--transition-speed), box-shadow var(--micro-transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(255, 107, 53, 0.1);
}

[data-theme="dark"] header {
    background-color: rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(255, 107, 53, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    animation: slideInLeft 0.8s ease-out;
}

/* Logo Styles */
.logo {
    height: 40px;
    width: 160px;
    background-color: #b6b6b6;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--micro-transition) ease;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.4), transparent);
    transition: left 0.5s;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover::before {
    left: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250%;
    height: 250%;
    text-decoration: none;
    transition: opacity var(--micro-transition) ease;
}

.logo a img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo a:hover {
    opacity: 0.8;
}

.logo a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all var(--micro-transition) ease;
    padding: 8px 0;
    position: relative;
    display: inline-block;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 90, 0.08));
    border-radius: 6px;
    transform: scaleX(0);
    transition: transform var(--micro-transition) ease;
    z-index: -1;
}

nav ul li a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

nav ul li a:hover::after {
    visibility: visible;
    width: 100%;
}

nav ul li a:hover::before {
    transform: scaleX(1);
}

nav ul li a.active {
    color: var(--accent-color);
    font-weight: 500;
}

nav ul li a.active::after {
    visibility: visible;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-color));
}

[data-theme="dark"] nav ul li a:hover {
    color: var(--accent-light);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 24px;
    transition: color var(--transition-speed);
}

.mobile-menu-btn:hover, 
.mobile-menu-btn:focus {
    color: var(--primary-color);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    padding: 20px;
    z-index: 99;
    box-shadow: 0 10px 20px var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    display: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px 15px;
    transition: all var(--transition-speed);
    border-radius: 8px;
}

.mobile-menu ul li a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 113, 227, 0.1);
    transform: translateX(5px);
}

/* Theme Switch */
.theme-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-left: 20px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.theme-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    box-sizing: border-box;
}

.theme-icon-light {
    color: #ff9d00;
    font-size: 12px;
}

.theme-icon-dark {
    color: #3333ff;
    font-size: 12px;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}


/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    opacity: 0.8;
    z-index: -1;
    transform: translateZ(-1px) scale(1.5);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 1px 30px rgba(255, 255, 255, 0.1);
    animation: scaleIn 0.8s ease-out 0.5s both;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
    animation: slideInLeft 0.6s ease-out 1s both;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.scroll-indicator:hover svg {
    transform: translateY(5px);
}


/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all var(--smooth-transition) cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    animation: scaleIn 0.6s ease-out 1.2s both;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover, 
.btn:focus {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
}

.btn:hover::before, 
.btn:focus::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.1s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--text-secondary);
}

.btn-secondary:hover, 
.btn-secondary:focus {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}


/* ====================================
   SECTIONS & CONTENT
   ==================================== */
.trailers {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.legal-section, 
.contact-section {
    flex: 1;
    padding: 100px 0 60px;
    min-height: calc(100vh - 160px);
}

.legal-header, 
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.legal-header h1, 
.contact-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block;
}

.legal-header h1 {
    color: var(--text-color);
}

.contact-header h1 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.legal-header h1::after, 
.contact-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 2px;
}

.legal-header h1::after {
    background: var(--text-color);
}

.contact-header h1::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.legal-content, 
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all var(--micro-transition) ease;
    border: 1px solid transparent;
}

.back-btn:hover, 
.back-btn:focus {
    color: var(--accent-color);
    background-color: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateX(-3px);
}


/* ====================================
   TRAILER GRID & CARDS
   ==================================== */
.trailer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trailer-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    transition: all var(--smooth-transition) cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    display: block;
    text-decoration: none;
    color: inherit;
}

.trailer-card:hover, 
.trailer-card:focus-within {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px var(--shadow);
    border-color: rgba(0, 113, 227, 0.2);
}

.trailer-img {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.trailer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--smooth-transition) ease;
}

.trailer-card:hover .trailer-img img, 
.trailer-card:focus-within .trailer-img img {
    transform: scale(1.05);
}

.trailer-info {
    padding: 30px;
    position: relative;
}

.trailer-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: color var(--micro-transition) ease;
}

.trailer-info p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.price-item {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1), rgba(134, 195, 255, 0.1));
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    transition: all var(--micro-transition) ease;
    border: 1px solid transparent;
}

.trailer-card:hover .price-item {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.15), rgba(134, 195, 255, 0.12));
    border-color: rgba(0, 113, 227, 0.2);
    transform: translateY(-2px);
}

.price-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    transition: color var(--micro-transition) ease;
}

.trailer-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.trailer-link:hover,
.trailer-link:focus {
    text-decoration: none;
    color: inherit;
}


/* ====================================
   INFO SECTIONS
   ==================================== */
.info-section {
    margin-bottom: 30px;
}

.info-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content .info-section {
    background-color: var(--card-bg);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all var(--smooth-transition) ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.legal-content .info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transition: width var(--micro-transition) ease;
}

.legal-content .info-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: rgba(255, 107, 53, 0.1);
}

.legal-content .info-section:hover::before {
    width: 6px;
}

.legal-content .info-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
}

.legal-content .info-section p {
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
    transition: color var(--transition-speed);
}

.legal-content .info-section p:last-child {
    margin-bottom: 0;
}

.legal-content .info-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--micro-transition) ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.legal-content .info-section a:hover, 
.legal-content .info-section a:focus {
    color: var(--accent-color);
    background-color: rgba(255, 107, 53, 0.1);
    text-decoration: underline;
}

.info-list {
    list-style: none;
}

.info-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
}

.price-section {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1), rgba(134, 195, 255, 0.1));
    padding: 20px;
    border-radius: 10px;
}

.price-section h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.detail-price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.license-requirement {
    margin-top: 20px;
    padding: 12px 15px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 165, 0, 0.05));
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    color: #ff8c00;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
}

.deposit-info {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 16px;
    text-align: center;
}

.contact-action {
    margin-top: 30px;
    text-align: center;
}

.contact-btn-container {
    text-align: center;
    margin-top: 60px;
}


/* ====================================
   GALLERY COMPONENTS
   ==================================== */
.gallery-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(255, 140, 90, 0.8));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--micro-transition) ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gallery-arrow:hover, 
.gallery-arrow:focus {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.gallery-arrow.prev {
    left: 10px;
}

.gallery-arrow.next {
    right: 10px;
}

.gallery-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    z-index: 2;
}


/* ====================================
   LIGHTBOX & MODALS
   ==================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    border: 2px solid white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2001;
}

.lightbox-close:hover, 
.lightbox-close:focus {
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2001;
}

.lightbox-nav:hover, 
.lightbox-nav:focus {
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2001;
}

.detail-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 1000;
    overflow-y: auto;
    display: block;
    transition: background-color var(--transition-speed);
}

.detail-container {
    max-width: 1000px;
    margin: 80px auto 40px;
    padding: 40px;
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
    transition: background-color var(--transition-speed);
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    transition: color var(--transition-speed);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover, 
.close-btn:focus {
    color: var(--primary-color);
    background-color: rgba(0, 113, 227, 0.1);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.detail-info h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.modal {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: auto;
    overflow-y: auto;
    display: block;
    transition: background-color var(--transition-speed);
    margin-top: 70px;
}

.modal-container {
    max-width: 600px;
    margin: 80px auto 40px;
    padding: 40px;
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
    transition: background-color var(--transition-speed);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-content {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}


/* ====================================
   FORMS
   ==================================== */
.contact-form {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: auto;
    overflow-y: auto;
    display: block;
    transition: background-color var(--transition-speed);
    margin-top: 70px;
}

.contact-form::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85), rgba(58, 58, 58, 0.8));
    z-index: -1;
}

.form-container {
    max-width: 600px;
    margin: 80px auto 40px;
    padding: 40px;
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow);
    transition: background-color var(--transition-speed);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all var(--micro-transition) ease;
    box-sizing: border-box;
    min-height: 48px;
    line-height: 1.4;
}

/* Date Input Styles */
input[type="date"].form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

input[type="date"].form-control::-webkit-datetime-edit {
    display: block;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.form-control:focus:valid {
    border-color: var(--success-color);
    box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.1);
}

.form-control:valid {
    border-color: #ddd;
}

.form-control.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    animation: shake 0.3s ease-in-out;
}

.form-control.success {
    border-color: #66bb6a !important;
}

.form-error, 
.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
    animation: slideInLeft 0.3s ease-out;
}

.error-message {
    color: #d32f2f;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.error-message.hide {
    display: none;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-actions, 
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

#vehicle-count-group {
    display: none;
    animation: fadeInUp 0.3s ease-out;
}

#vehicle-count-group.visible {
    display: block;
}

.response-message {
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
}

.response-message.success {
    background-color: rgba(102, 187, 106, 0.2);
    color: #27ae60;
    border: 1px solid #2ecc71;
    border-left: 4px solid var(--success-color);
}

.response-message.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #c0392b;
    border: 1px solid #e74c3c;
    border-left: 4px solid #e74c3c;
}

.response-message.info {
    background-color: rgba(255, 107, 53, 0.2);
    color: var(--accent-dark);
    border: 1px solid var(--accent-color);
    border-left: 4px solid var(--accent-color);
}

.info-box {
    background: var(--bg-color);
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid var(--accent-color);
}

.info-box h3 {
    margin-top: 0;
    color: var(--accent-color);
    font-size: 16px;
}

.info-box p {
    margin: 5px 0;
    color: var(--text-color);
}


/* ====================================
   PRICE CALCULATION
   ==================================== */
.price-calculation, 
.price-summary {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.08), rgba(134, 195, 255, 0.05));
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 113, 227, 0.2);
    animation: scaleIn 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

.price-summary {
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
}

.price-summary h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.price-calculation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.1), transparent);
    transition: left 0.8s ease;
}

.price-calculation:hover::before {
    left: 100%;
}

.calculation-row, 
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 113, 227, 0.1);
    transition: all var(--micro-transition) ease;
}

.price-row {
    padding: 10px 0;
}

.calculation-row:hover {
    background-color: rgba(0, 113, 227, 0.05);
    border-radius: 4px;
    margin: 0 -5px;
    padding: 8px 5px;
}

.calculation-row:last-child, 
.price-row:last-child {
    border-bottom: none;
}

.calculation-row.total-row, 
.price-row.total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1), rgba(134, 195, 255, 0.05));
    border-radius: 6px;
    padding: 12px 8px;
}

.price-row.total {
    font-weight: bold;
    font-size: 18px;
}

.calculation-label {
    color: var(--text-color);
    font-size: 14px;
}

.calculation-value {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--micro-transition) ease;
}

.calculation-row:hover .calculation-value {
    transform: scale(1.05);
    color: #005bb5;
}

.total-row .calculation-value, 
.price-row.total .value {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.price-row.total .value {
    color: var(--accent-color);
    font-size: 18px;
}


/* ====================================
   GOOGLE MAPS SECTION
   ==================================== */
.maps-section {
    width: 100%;
    height: 450px;
    position: relative;
    margin-top: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    transition: filter var(--micro-transition) ease;
}

.map-expand-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all var(--micro-transition) ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.map-expand-btn:hover, 
.map-expand-btn:focus {
    background: rgba(255, 255, 255, 1);
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity var(--smooth-transition) ease;
}

.map-modal.active {
    display: flex;
    opacity: 1;
}

.map-modal-content {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    max-width: 95%;
    max-height: 95%;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform var(--smooth-transition) ease;
}

.map-modal.active .map-modal-content {
    transform: scale(1);
}

.map-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--card-bg);
}

[data-theme="dark"] .map-modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.map-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
}

.map-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--micro-transition) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-modal-close:hover, 
.map-modal-close:focus {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--accent-color);
}

[data-theme="dark"] .map-modal-close:hover,
[data-theme="dark"] .map-modal-close:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.map-modal-body {
    height: 700px;
    position: relative;
}

.map-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* ====================================
   FOOTER
   ==================================== */
footer {
    background-color: var(--card-bg);
    padding: 20px 0;
    text-align: center;
    transition: background-color var(--transition-speed);
    margin-top: auto;
    flex-shrink: 0;
}

.footer-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    ;
}

.footer-logo {
    height: 40px;
    width: 160px;
    background-color: #ddd;
    border-radius: 6px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 12px;
}

.footer-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 15px;
    font-size: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 113, 227, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: all var(--smooth-transition) cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.social-icon:hover, 
.social-icon:focus {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.copyright {
    font-size: 12px;
    color: var(--text-secondary);
}


/* ====================================
   PARALLAX EFFECTS
   ==================================== */
.parallax-wrapper {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    perspective: 10px;
    perspective-origin: 50% 50%;
}

.parallax-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    z-index: -1;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    transform: translateZ(-10px) scale(2.1);
}

.parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85), rgba(58, 58, 58, 0.8));
    z-index: 1;
}

.hero-content {
    transform: translateZ(-1px) scale(1.1);
    position: relative;
    z-index: 2;
}


/* ====================================
   HOMEPAGE SECTIONS
   ==================================== */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.02), rgba(134, 195, 255, 0.02));
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-image: url('images/black_textlogo_transparent_background.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    transition: all var(--transition-speed) ease;
}

[data-theme="dark"] .why-choose-us::before {
    background-image: url('images/white_textlogo_transparent_background.png');
    opacity: 0.25;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    opacity: 87%;
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all var(--smooth-transition) ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--smooth-transition) ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: rgba(0, 113, 227, 0.1);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--smooth-transition) ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.how-it-works {
    padding: 80px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background-image: url('images/zeichnung_white.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
    transition: all var(--transition-speed) ease;
}

[data-theme="dark"] .how-it-works::before {
    background-image: url('images/zeichnung_black.png');
    opacity: 0.12;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    flex: 1;
    min-width: 180px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all var(--smooth-transition) ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 14px;
}

.step-arrow {
    color: var(--primary-color);
    margin: 0 10px;
    flex-shrink: 0;
}

.cta-container {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(0, 113, 227, 0.12));
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
    transition: all var(--smooth-transition) ease;
}

.cta-container:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(0, 113, 227, 0.15));
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

[data-theme="dark"] .cta-container {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(0, 113, 227, 0.18));
    border: 1px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .cta-container:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.22), rgba(0, 113, 227, 0.22));
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.cta-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 20px;
}

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.02), rgba(134, 195, 255, 0.02));
    border-top: 1px solid rgba(128, 128, 128, 0.4);
}

.faq-trigger-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all var(--smooth-transition) ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    max-width: 500px;
    margin: 0 auto;
}

.faq-trigger-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--smooth-transition) ease;
}

.faq-trigger-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: rgba(0, 113, 227, 0.1);
}

.faq-trigger-card:hover::before {
    transform: scaleX(1);
}

.faq-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--smooth-transition) ease;
}

.faq-trigger-card:hover .faq-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
}

.faq-trigger-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.faq-trigger-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.expand-arrow {
    color: var(--primary-color);
    transition: transform var(--smooth-transition) ease;
}

.faq-trigger-card.expanded .expand-arrow {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all var(--smooth-transition) ease;
    margin-top: 0;
}

.faq-content.active {
    max-height: 3000px;
    margin-top: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-category {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all var(--smooth-transition) ease;
}

.faq-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.faq-category h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 113, 227, 0.02);
}

.faq-question {
    width: 100%;
    padding: 15px;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--micro-transition) ease;
}

.faq-question:hover {
    background: rgba(0, 113, 227, 0.05);
}

.faq-plus {
    color: rgba(255, 107, 53, 0.767);
    font-size: 18px;
    transition: transform var(--micro-transition) ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-plus {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--smooth-transition) ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 15px 15px 15px;
}

.faq-answer p {
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.5;
}

.faq-answer strong {
    color: var(--primary-color);
}


/* ====================================
   BOOKING SYSTEM
   ==================================== */
.booking-wrapper {
    flex: 1;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.02), rgba(134, 195, 255, 0.02));
    padding: 100px 20px 80px;
    position: relative;
    overflow: visible;
}



.booking-container {
    max-width: 80%;
    margin: 50px auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    opacity: 92%;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h1 {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.steps-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-circle.active {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    transform: scale(1.1);
}

.step-circle.completed {
    background: #66bb6a;
    color: white;
}

.step-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.trailer-option {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--smooth-transition) ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
    overflow: hidden;
}

.trailer-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--smooth-transition) ease;
}

.trailer-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
    border-color: rgba(0, 113, 227, 0.3);
}

.trailer-option:hover::before {
    transform: scaleX(1);
}

.trailer-option.selected {
    border-color: rgba(0, 113, 227, 0.3);
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1), rgba(134, 195, 255, 0.05));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
}

.trailer-option.selected::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.trailer-option h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    transition: color var(--micro-transition) ease;
}

.trailer-option.selected h3 {
    color: var(--accent-color);
}

.calendar-section {
    margin: 30px 0 40px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #0071e3, #ff6b35);
    border-radius: 12px;
    color: white;
}

.calendar-header button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.calendar-header button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day-name {
    text-align: center;
    font-weight: bold;
    padding: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.calendar-day {
    aspect-ratio: 2.5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    background: var(--bg-color);
    color: var(--text-color);
}

.calendar-day.available:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.calendar-day.booked {
    background: #ffebee;
    color: #c62828;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.past {
    background: var(--shadow);
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: var(--accent-color);
    color: white;
    font-weight: bold;
}

.calendar-day.in-range {
    background: rgba(255, 107, 53, 0.3);
    color: var(--text-color);
}

.calendar-info {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.08), rgba(134, 195, 255, 0.05));
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
}

.calendar-legend {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 13px;
    justify-content: center;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.legend-box.available { 
    background: var(--bg-color); 
    border: 1px solid var(--shadow); 
}

.legend-box.booked { 
    background: #ffebee; 
}

.legend-box.selected { 
    background: var(--accent-color); 
}


/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .legal-header h1, 
    .contact-header h1 {
        font-size: 28px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-img {
        height: 200px;
    }

    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .theme-switch {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .mobile-menu .theme-switch-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    [data-theme="dark"] .mobile-menu .theme-switch-container {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .legal-section, 
    .contact-section {
        padding: 80px 0 40px;
        min-height: calc(100vh - 120px);
    }
    
    .legal-header, 
    .contact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .legal-content .info-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .legal-content .info-section h3 {
        font-size: 18px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .step {
        max-width: 300px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-trigger-card {
        padding: 30px 25px;
    }
    
    .faq-icon, 
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .faq-category {
        padding: 20px;
    }

    .form-actions, 
    .button-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }

    .form-control {
        font-size: 16px;
        min-height: 48px;
    }
    
    input[type="date"].form-control {
        font-size: 16px;
        padding: 12px 15px;
        height: auto;
        min-height: 48px;
        line-height: 1.4;
        text-overflow: ellipsis;
    }
    
    input[type="date"].form-control::-webkit-datetime-edit {
        display: block;
        padding: 0;
        margin: 0;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .maps-section {
        height: 180px;
    }
    
    .map-expand-btn {
        width: 35px;
        height: 35px;
        top: 8px;
        right: 8px;
    }
    
    .map-modal-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .map-modal-header {
        padding: 15px 20px;
    }
    
    .map-modal-header h3 {
        font-size: 18px;
    }
    
    .map-modal-body {
        height: 500px;
    }

    .booking-container {
        padding: 25px 20px;
    }

    .booking-header h1 {
        font-size: 24px;
    }

    .trailer-grid {
        grid-template-columns: 1fr;
    }

    .trailer-option {
        padding: 25px 15px;
    }
    
    .trailer-option h3 {
        font-size: 16px;
    }

    .step-label {
        font-size: 10px;
    }

    .calendar-day {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .legal-header h1, 
    .contact-header h1 {
        font-size: 24px;
    }
    
    .legal-content, 
    .contact-content {
        padding: 0 10px;
    }

    .detail-container {
        margin: 60px auto 20px;
        padding: 20px;
    }
    
    .gallery-container {
        height: 200px;
    }
    
    .detail-price-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .maps-section {
        height: 150px;
    }
    
    .map-modal-body {
        height: 400px;
    }
    
    .map-modal-header {
        padding: 12px 15px;
    }
    
    .map-modal-header h3 {
        font-size: 16px;
    }

    .form-container {
        padding: 20px;
        margin: 60px auto 20px;
    }
    
    .form-control {
        padding: 14px 15px;
        min-height: 50px;
    }
}

@media (max-width: 320px) {
    .form-control {
        font-size: 14px;
        padding: 12px;
        min-height: 44px;
    }
    
    input[type="date"].form-control {
        font-size: 14px;
        min-height: 44px;
    }
}


/* ====================================
   END OF STYLESHEET
   ==================================== */
   /* Styling für das Instagram-Icon im Header */
.logo {
  display: flex;
  align-items: center; /* Richtet Logo und Icon vertikal mittig aus */
  gap: 15px;           /* Abstand zwischen Logo und Instagram-Icon */
}

.header-instagram-link {
  color: var(--text-color, #333); /* Nutzt deine Textfarbe */
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}

.header-instagram-link:hover {
  color: #E1306C; /* Typische Instagram-Farbe beim Drüberfahren */
  transform: scale(1.1); /* Kleiner Zoom-Effekt */
}

/* Anpassung für mobile Endgeräte */
@media (max-width: 768px) {
  .logo {
    gap: 10px;
  }
  
  .header-instagram-link svg {
    width: 24px;
    height: 24px;
  }
}

/* Gruppierung von Logo und Social-Container */
.header-left {
  display: flex;
  align-items: center;
  gap: 20px; /* Abstand zwischen Logo-Container und Instagram-Container */
}

/* Der separate Instagram-Container */
.header-social {
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(0,0,0,0.1); /* Optional: Ein feiner Trennstrich */
  padding-left: 20px;
}

/* Styling für das Icon */
.insta-link {
  color: var(--text-color, #333);
  transition: all 0.3s ease;
  display: flex;
}

.insta-link:hover {
  color: #E1306C; /* Instagram Pink */
  transform: translateY(-2px); /* Kleiner "Hüpfer" nach oben */
}

/* Responsive Anpassung */
@media (max-width: 768px) {
  .header-left {
    gap: 12px;
  }
  .header-social {
    padding-left: 12px;
    border-left: none; /* Trennstrich auf Handy entfernen für mehr Platz */
  }
}
/* Footer Branding: Logo oben, Instagram unten */
.footer-branding {
  display: flex;
  flex-direction: column; /* Stapelt die Elemente vertikal */
  align-items: center;    /* Zentriert beide Elemente horizontal */
  gap: 15px;              /* Abstand zwischen Logo und Icon */
  margin-bottom: 5px;    /* Abstand zum nachfolgenden Text */
}



.footer-logo img {
  max-width: 220px;
  height: auto;
  display: block;
}

.footer-social-box {
  display: flex;
  justify-content: center;
}

.footer-insta-link {
  color: #333; /* Standardfarbe */
  transition: all 0.3s ease;
  display: flex;
  opacity: 0.8;
}

.footer-insta-link:hover {
  color: #E1306C;   /* Instagram Farbe beim Hover */
  transform: scale(1.1);
  opacity: 1;
}

/* Dark Mode Anpassung für das Icon */
[data-theme="dark"] .footer-insta-link {
  color: #ffffff;
}
/* ====================================
   EXTENDED FOOTER - 4-COLUMN LAYOUT
   ==================================== */

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.4);
    padding-top: 40px;
    border-top: 1px solid rgba(128, 128, 128, 0.4);
    margin-bottom: 40px;
    margin-top: -20px;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Headings */
.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li:last-child {
    margin-bottom: 0;
}

/* Footer Links */
.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--micro-transition) ease;
    display: inline-block;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width var(--micro-transition) ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-link:hover::after {
    width: 100%;
}

/* Contact Items with Icons */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}


.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-color);
}

.footer-contact-item span {
    color: var(--text-secondary);
}

/* Opening Hours */
.footer-hours {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px !important;
}

.footer-hours strong {
    color: var(--text-color);
}

/* Footer Social Links */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 113, 227, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--smooth-transition) cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #E1306C, #F77737);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

/* Trust Badges */
.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.1), rgba(102, 187, 106, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(102, 187, 106, 0.2);
    transition: all var(--micro-transition) ease;
}

.trust-badge:hover {
    transform: translateX(5px);
    border-color: rgba(102, 187, 106, 0.4);
}

.trust-badge svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.trust-badge span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
}

/* Payment Section */
.footer-payment {
    margin-top: auto;
}

.payment-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
justify-content: space-between;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    background: var(--card-bg);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 8px;
    transition: all var(--micro-transition) ease;
    min-width: 100px;
}

.payment-icon:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.payment-icon svg {
    color: var(--text-secondary);
}

.payment-icon span {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-logo-bottom {
    margin-bottom: 15px;
}

.footer-logo-bottom img {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
    transition: opacity var(--micro-transition) ease;
}

.footer-logo-bottom a:hover img {
    opacity: 1;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Dark Mode Adjustments */
[data-theme="dark"] .footer-contact-item svg,
[data-theme="dark"] .trust-badge svg {
    opacity: 0.9;
}

[data-theme="dark"] .payment-icon {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .trust-badge {
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.15), rgba(102, 187, 106, 0.05));
    border-color: rgba(102, 187, 106, 0.3);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-trust {
        align-items: center;
    }
    
    .trust-badge {
        width: fit-content;
    }
    
    .trust-badge:hover {
        transform: translateY(-2px);
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .footer-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-heading {
        font-size: 15px;
    }
    
    .payment-icons {
        gap: 8px;
    }
    
    .payment-icon {
        padding: 8px 10px;
        min-width: 55px;
    }
}

/* ====================================
   END OF EXTENDED FOOTER STYLES
   ==================================== */

/* --- Spezifische Mobile Optimierung für den Kalender --- */
@media (max-width: 600px) {
    
    /* 1. Den weißen Hauptcontainer anpassen */
    .booking-container { /* Falls dein weißer Kasten so heißt */
        padding: 15px !important;
        margin: 10px !important;
        width: auto !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* 2. Der Header (Blau/Orange) mit Monat & Buttons */
    .calendar-header {
        display: flex !important;
        flex-direction: row !important; /* Buttons nebeneinander behalten */
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px !important;
        height: auto !important; /* Feste Höhe entfernen */
        min-height: 60px;
    }

    /* Verbesserung der Monatsbenennung (Februar 2026) */
    .calendar-header h3, 
    .current-month-display { /* Passe die Klasse an deinen Monats-Tag an */
        font-size: 1.1rem !important;
        margin: 0 !important;
        line-height: 1.2;
        text-align: center;
        flex: 1; /* Nimmt den Platz in der Mitte ein */
    }

    /* Buttons kleiner machen, damit sie nicht quetschen */
    .calendar-header button {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        min-width: 70px !important;
    }

    /* 3. Das Kalender-Raster (Die Tage) */
    .calendar-grid {
        display: grid !important;
        grid-template-columns: repeat(7, 1fr) !important; /* Exakt 7 Spalten */
        gap: 4px !important; /* Lücke verringern */
        width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    .calendar-day {
        aspect-ratio: 1 / 1; /* Quadratisch halten */
        font-size: 0.9rem !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 5px !important;
    }

    /* Wochentage (Mo, Di...) kleiner machen */
    .weekday-header {
        font-size: 0.75rem !important;
        font-weight: bold;
        color: #666;
    }

    /* 4. Abhol- und Rückgabezeiten (unter dem Kalender) */
    .time-selection-container {
        display: flex !important;
        flex-direction: column !important; /* Untereinander auf dem Handy */
        gap: 15px;
    }

    .time-input-group {
        width: 100% !important;
    }
}

/* Platzhalter für blockierte Inhalte (Maps/Instagram) */
.consent-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  border: 1px dashed var(--primary-color);
  margin-bottom: 20px;
}

.consent-placeholder p {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 400px;
}

/* Anpassung für den Dunkelmodus */
[data-theme="dark"] .consent-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border-color: #444;
}