/* ============================================
   Wohnmobilvermietung - Chausson 510 Welcome
   ============================================ */

:root {
    --primary: #3D5A4A;
    --primary-light: #5A7A68;
    --primary-dark: #2D3D33;
    --accent: #B07A6A;
    --accent-light: #C99585;
    --dark: #2D3D33;
    --dark-light: #3D5A4A;
    --cream: #F7F5F3;
    --white: #FFFFFF;
    --gray: #6C757D;
    --light-bg: #F3F1EE;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-dark);
}

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

.text-accent-warm {
    color: var(--accent);
}

.section-padding {
    padding: 100px 0;
}

.section-label {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-desc {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 50px;
    padding: 12px 36px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 90, 74, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 36px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-accent:hover {
    background-color: #BD7530;
    border-color: #BD7530;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 136, 62, 0.3);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: all 0.4s;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(45, 61, 51, 0.97);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    height: 60px;
    width: auto;
    vertical-align: middle;
    transition: height 0.4s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar.scrolled .navbar-logo {
    height: 40px;
}

.navbar-tagline {
    font-family: 'Dancing Script', cursive;
    color: var(--accent) !important;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.navbar.scrolled .navbar-tagline {
    font-size: 1rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    margin-left: 20px;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

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

.hero-logo {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('images/hintergrund.jpeg') center center / cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 61, 51, 0.85) 0%, rgba(45, 61, 51, 0.4) 50%, rgba(61, 90, 74, 0.25) 100%);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-light);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    font-size: 1.05rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-badge i {
    font-size: 1.4rem;
    color: var(--accent);
}

/* About / Fahrzeug Section */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 0.375rem;
    z-index: -1;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

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

/* Features / Ausstattung */
.bg-light {
    background-color: var(--light-bg) !important;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Pricing */
.price-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 35px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(61, 90, 74, 0.15);
    transform: scale(1.03);
}

.price-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.price-label {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.price-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.price-details {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.price-details li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-details li i {
    color: var(--primary);
    font-size: 1rem;
}

/* Coverflow Gallery */
.coverflow-wrapper {
    position: relative;
    perspective: 1200px;
    overflow: hidden;
    padding: 40px 0 20px;
    max-width: 100%;
}

.coverflow-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 380px;
    position: relative;
}

.cf-slide {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.cf-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cf-slide.active {
    transform: translateX(-50%) scale(1) rotateY(0deg);
    left: 50%;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cf-slide.prev-1 {
    transform: translateX(-130%) scale(0.75) rotateY(35deg);
    left: 50%;
    z-index: 8;
    opacity: 0.85;
    filter: brightness(0.8);
}

.cf-slide.prev-2 {
    transform: translateX(-190%) scale(0.6) rotateY(40deg);
    left: 50%;
    z-index: 6;
    opacity: 0.6;
    filter: brightness(0.65);
}

.cf-slide.prev-3 {
    transform: translateX(-230%) scale(0.5) rotateY(42deg);
    left: 50%;
    z-index: 4;
    opacity: 0.35;
    filter: brightness(0.5);
}

.cf-slide.next-1 {
    transform: translateX(30%) scale(0.75) rotateY(-35deg);
    left: 50%;
    z-index: 8;
    opacity: 0.85;
    filter: brightness(0.8);
}

.cf-slide.next-2 {
    transform: translateX(90%) scale(0.6) rotateY(-40deg);
    left: 50%;
    z-index: 6;
    opacity: 0.6;
    filter: brightness(0.65);
}

.cf-slide.next-3 {
    transform: translateX(130%) scale(0.5) rotateY(-42deg);
    left: 50%;
    z-index: 4;
    opacity: 0.35;
    filter: brightness(0.5);
}

.cf-slide.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(0.3);
    left: 50%;
    z-index: 0;
}

.coverflow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.coverflow-nav:hover {
    background: var(--primary);
    color: #fff;
}

.coverflow-prev { left: 20px; }
.coverflow-next { right: 20px; }

.coverflow-label {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 10px;
    transition: opacity 0.3s;
}

.coverflow-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.coverflow-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s;
}

.coverflow-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .cf-slide { width: 260px; height: 260px; }
    .coverflow-track { height: 300px; }
    .coverflow-nav { width: 40px; height: 40px; font-size: 1rem; }
    .coverflow-prev { left: 8px; }
    .coverflow-next { right: 8px; }
}

@media (max-width: 480px) {
    .cf-slide { width: 220px; height: 220px; }
    .coverflow-track { height: 260px; }
}

/* Legacy Gallery (unused but kept for subpages) */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 61, 51, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transform: translateY(10px);
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Info Items (Hunde, Regeln etc.) */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s;
}

.info-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.info-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.info-card h5 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.info-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact & Booking */
.bg-dark {
    background-color: var(--dark) !important;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent);
    min-width: 30px;
    text-align: center;
    margin-top: 3px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
}

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

.text-muted-light {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Booking Calendar */
.calendar-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-header h4 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--dark);
}

.calendar-nav {
    background: none;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--dark);
    font-size: 1.1rem;
}

.calendar-nav:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--cream);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.cal-day.empty {
    background: none;
}

.cal-day.past {
    color: rgba(0, 0, 0, 0.2);
}

.cal-day.available {
    background: rgba(61, 90, 74, 0.08);
    color: var(--dark);
    cursor: pointer;
}

.cal-day.available:hover {
    background: rgba(61, 90, 74, 0.2);
    transform: scale(1.1);
}

.cal-day.booked {
    background: rgba(220, 53, 69, 0.1);
    color: rgba(220, 53, 69, 0.6);
    text-decoration: line-through;
    cursor: not-allowed;
}

.cal-day.selected {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.calendar-legend {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    display: inline-block;
}

.legend-dot.available {
    background: rgba(61, 90, 74, 0.15);
    border: 1px solid rgba(61, 90, 74, 0.3);
}

.legend-dot.booked {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.legend-dot.selected {
    background: var(--primary);
}

/* Inquiry Form */
.inquiry-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.inquiry-form-wrapper h4 {
    color: var(--dark);
}

.inquiry-form-wrapper .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.inquiry-form-wrapper .form-control,
.inquiry-form-wrapper .form-select {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.inquiry-form-wrapper .form-control:focus,
.inquiry-form-wrapper .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(61, 90, 74, 0.15);
}

/* Price Preview */
.price-preview {
    background: var(--cream);
    border-radius: 12px;
    padding: 15px 20px;
    border: 1px solid rgba(61, 90, 74, 0.15);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.cta-section .lead {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* FAQ */
.faq-accordion .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    padding: 20px 25px;
    background: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--primary);
}

.faq-accordion .accordion-button::after {
    filter: none;
}

.faq-accordion .accordion-body {
    color: var(--gray);
    font-size: 0.95rem;
    padding: 0 25px 20px;
}

/* Footer */
.footer {
    background: #1E2A22;
    padding: 40px 0 25px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 20px;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 25px 0 15px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(61, 90, 74, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 37, 48, 0.97);
    color: rgba(255, 255, 255, 0.85);
    padding: 18px 0;
    z-index: 10000;
    font-size: 0.9rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner .btn-outline-light {
    border-radius: 50px;
    font-size: 0.85rem;
}

.cookie-banner .btn-primary {
    font-size: 0.85rem;
    padding: 6px 20px;
}

.btn-outline-light {
    border-radius: 50px;
}

/* Standort / Map */
.map-container {
    overflow: hidden;
    border-radius: 12px;
}

.map-container iframe {
    display: block;
}

.standort-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.standort-item i {
    font-size: 1.3rem;
    color: var(--primary);
    min-width: 25px;
    text-align: center;
    margin-top: 3px;
}

.standort-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
}

.standort-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Spec Items (Technische Daten) */
.spec-item {
    background: var(--cream);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.spec-label {
    color: var(--gray);
    font-weight: 400;
}

.spec-value {
    font-weight: 600;
    color: var(--dark);
}

.badge-extra {
    background: var(--cream);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(61, 90, 74, 0.2);
}

.badge-extra i {
    margin-right: 4px;
}

/* Über uns */
.about-portrait {
    background: var(--cream);
    border-radius: 20px;
    padding: 60px 30px;
    border: 2px dashed rgba(61, 90, 74, 0.2);
}

.about-portrait img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Route Cards (Reisetagebuch) */
.route-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    height: 100%;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.route-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.route-content {
    padding: 25px;
}

.route-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 600;
}

.route-content h4 {
    margin: 5px 0 10px;
    font-size: 1.2rem;
}

.route-stops {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.route-stops i {
    margin-right: 4px;
}

.route-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.route-thumbs img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.85;
    transition: all 0.3s;
    cursor: pointer;
}

.route-thumbs img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.route-cta {
    background: var(--cream);
    border: 2px dashed rgba(61, 90, 74, 0.2);
    border-radius: 16px;
    padding: 40px 20px;
    transition: all 0.3s;
}

.route-cta:hover {
    border-color: var(--primary);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background: #1EBE57;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Booking Progress Steps */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: var(--primary);
    color: #fff;
}

.progress-step.completed .step-number {
    background: var(--primary);
    color: #fff;
}

.step-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-align: center;
    max-width: 100px;
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e9ecef;
    margin: 0 10px;
    margin-bottom: 20px;
    max-width: 80px;
}

.progress-line.active {
    background: var(--primary);
}

/* Booking Summary */
.booking-summary {
    background: var(--cream);
    border-radius: 12px;
    padding: 20px 25px;
    border-left: 4px solid var(--primary);
}

.booking-summary h5 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1rem;
}

.booking-summary .row > div {
    padding: 4px 12px;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.legal-page h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.legal-page p, .legal-page li {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .navbar-collapse {
        background: rgba(45, 61, 51, 0.97);
        border-radius: 10px;
        padding: 15px 20px;
        margin-top: 10px;
    }

    .nav-link {
        margin-left: 0;
        padding: 8px 0 !important;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .gallery-item img {
        height: 180px;
    }

    .about-image-wrapper::before {
        display: none;
    }

    .hero-badges {
        gap: 15px;
    }

    .hero-badge {
        font-size: 0.85rem;
    }
}
