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

:root {
    --primary-blue: #1A3E78;
    --accent-gold: #D5A247;
    --neutral-white: #FFFFFF;
    --neutral-light: #F5F5F5;
    --text-dark: #2C3E50;
    --text-light: #666666;
    --shadow: 0 4px 12px rgba(26, 62, 120, 0.12);
    --shadow-hover: 0 8px 24px rgba(26, 62, 120, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--neutral-white);
    overflow-x: hidden;
}

/* Fix scroll offset for anchor links with sticky header */
section[id], #contact {
    scroll-margin-top: 5rem;
}

/* ========== HEADER ========== */
header {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), #e8c980);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
}

nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent-gold);
}

/* CTA Button Style for Buchung Navigation Item */
.nav-cta-button {
    background: var(--accent-gold);
    color: var(--primary-blue) !important;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(213, 162, 71, 0.3);
    transition: all 0.3s ease;
}

.nav-cta-button:hover {
    background: #e0b55e;
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 162, 71, 0.4);
}

.nav-cta-button::after {
    display: none;
}

.lang-switcher {
    background: rgba(213, 162, 71, 0.15);
    border: 1.5px solid var(--accent-gold);
    color: var(--neutral-white);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.lang-switcher:hover {
    background: rgba(213, 162, 71, 0.25);
}

.lang-switcher option {
    background: var(--neutral-white);
    color: var(--text-dark);
    padding: 0.5rem;
}

/* Hamburger Menu Button */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 2rem;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    transform-origin: center;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    /* Show hamburger button on mobile */
    .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    /* Hide navigation by default on mobile */
    nav {
        display: none;
        flex-direction: column;
        gap: 0;
        order: 3;
        width: 100%;
        background: var(--primary-blue);
        padding: 0;
        margin: 0 -1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Show navigation when active */
    nav.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

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

    /* Style navigation links for mobile */
    nav a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
    }

    nav a:hover {
        background: rgba(213, 162, 71, 0.1);
    }

    nav a::after {
        display: none;
    }

    /* CTA button in mobile menu */
    .nav-cta-button {
        background: var(--accent-gold);
        color: var(--primary-blue) !important;
        margin: 0.5rem 1.5rem;
        width: calc(100% - 3rem);
        text-align: center;
        border-bottom: none;
    }

    .nav-cta-button:hover {
        background: #e0b55e;
    }

    /* Language switcher in mobile menu */
    .lang-switcher {
        margin: 0.5rem 1.5rem 1rem 1.5rem;
        width: calc(100% - 3rem);
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f2847 100%);
    color: white;
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-gold);
    opacity: 0.08;
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 1.1rem 2.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: 2px solid var(--accent-gold);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(213, 162, 71, 0.3);
}

.cta-btn:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(213, 162, 71, 0.4);
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ========== USP CARDS ========== */
.usp-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--neutral-light);
}

.usp-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--primary-blue);
}

.usp-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-gold);
}

.usp-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

.usp-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.usp-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========== WHY HUWER ========== */
.why-huwer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.why-huwer-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.why-huwer-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.why-huwer-list {
    list-style: none;
    margin-top: 2rem;
}

.why-huwer-list li {
    padding: 0.9rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
}

.why-huwer-list li:hover {
    padding-left: 3rem;
    color: var(--primary-blue);
}

.why-huwer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 900;
}

.why-huwer-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-huwer-image .owners-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

@media (max-width: 768px) {
    .why-huwer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-huwer-content h2 {
        font-size: 1.8rem;
    }

    .why-huwer-image {
        gap: 1.5rem;
    }
}

/* ========== APARTMENTS ========== */
.apartments-section {
    padding: 3rem 2rem;
    background: var(--neutral-light);
}

.apartments-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    font-weight: 800;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2.2rem;
    border: 2px solid var(--primary-blue);
    background: white;
    color: var(--primary-blue);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.tab-btn.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 62, 120, 0.3);
}

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

.tab-content {
    display: none;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

/* Auto-Scrolling Apartment Image Carousel */
.apartment-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
}

.apartment-track-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.apartment-track {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
}

/* Separate animation speeds for each apartment */
#apt1-track {
    animation: scrollApartmentImages 56s linear infinite;
}

#apt2-track {
    animation: scrollApartmentImages 88s linear infinite;
}

/* Pause animation on hover */
.apartment-track-wrapper:hover .apartment-track {
    animation-play-state: paused;
}

/* Auto-scroll animation */
@keyframes scrollApartmentImages {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.apartment-image-slide {
    flex: 0 0 600px;
    min-width: 600px;
    max-width: 600px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--neutral-light);
}

.apartment-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Arrows */
.apartment-nav {
    background: rgba(26, 62, 120, 0.1);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.apartment-nav:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

/* Apartment Details Below Carousel */
.apartment-details {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 1200px;
    margin: 0 auto;
}

.apartment-details h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 800;
}

.apartment-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem;
    background: var(--neutral-light);
    border-radius: 6px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(26, 62, 120, 0.05);
    transform: translateX(5px);
}

.feature-item .icon {
    font-size: 1.4rem;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cleaning-info {
    background: linear-gradient(135deg, var(--accent-gold), rgba(213, 162, 71, 0.85));
    color: white;
    padding: 1.8rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 0.96rem;
    line-height: 1.8;
}

.cleaning-info strong {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.price-tag {
    background: linear-gradient(135deg, var(--primary-blue), #0f2847);
    color: white;
    padding: 1.3rem;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

.price-tag .small-text {
    font-size: 0.85rem;
    margin-top: 0.6rem;
    opacity: 0.95;
    font-weight: 500;
}

@media (max-width: 768px) {
    .apartments-section {
        padding: 2rem 1rem;
    }

    .apartments-section h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .tabs {
        margin-bottom: 1.5rem;
    }

    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Mobile Carousel - Horizontal with Navigation */
    .apartment-carousel-container {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
    }

    /* Show navigation arrows on mobile - smaller size */
    .apartment-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Enable horizontal carousel on mobile */
    .apartment-track-wrapper {
        flex: 1;
        overflow: hidden;
        overflow-x: hidden;
        border-radius: 8px;
        position: relative;
        /* Prevent touch scrolling and overscroll */
        touch-action: pan-y pinch-zoom;
        -webkit-overflow-scrolling: auto;
        overscroll-behavior-x: none;
    }

    .apartment-track,
    #apt1-track,
    #apt2-track {
        display: flex;
        gap: 0;
        animation: none !important;
        transition: transform 0.5s ease;
        /* Prevent any scrolling on the track itself */
        overflow: visible;
        will-change: transform;
    }

    .apartment-image-slide {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        height: 250px;
        /* Prevent image dragging */
        user-select: none;
        -webkit-user-drag: none;
    }

    .apartment-image-slide img {
        pointer-events: none;
        user-select: none;
        -webkit-user-drag: none;
    }

    .apartment-details {
        padding: 1.5rem;
    }

    .apartment-details h3 {
        font-size: 1.4rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

/* ========== PRICING ========== */
.pricing-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.pricing-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    margin-bottom: 2.5rem;
}

.pricing-table th {
    background: linear-gradient(135deg, var(--primary-blue), #0f2847);
    color: white;
    padding: 1.4rem 1.5rem;
    text-align: left;
    font-weight: 700;
}

.pricing-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--neutral-light);
}

.pricing-table tr:hover {
    background: rgba(26, 62, 120, 0.03);
}

.pricing-highlight {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.05rem;
}

.pricing-extras {
    background: var(--neutral-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.pricing-extras h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.pricing-extras ul {
    list-style: none;
}

.pricing-extras li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.pricing-extras li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 900;
}

/* Mobile Styles for Pricing Table */
@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 1rem;
    }

    .pricing-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .pricing-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    /* Create scrollable container for table */
    .pricing-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        margin-bottom: 2rem;
        border-radius: 8px;
        /* Add scroll shadow indicators */
        background:
            linear-gradient(to right, white 30%, rgba(255,255,255,0)),
            linear-gradient(to right, rgba(255,255,255,0), white 70%) 0 100%,
            radial-gradient(farthest-side at 0% 50%, rgba(26,62,120,0.2), rgba(0,0,0,0)),
            radial-gradient(farthest-side at 100% 50%, rgba(26,62,120,0.2), rgba(0,0,0,0)) 0 100%;
        background-repeat: no-repeat;
        background-color: white;
        background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
        background-position: 0 0, 100%, 0 0, 100%;
        background-attachment: local, local, scroll, scroll;
    }

    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .pricing-table thead {
        width: calc(100% - 17px); /* Account for scrollbar width */
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .pricing-table th {
        padding: 0.9rem 0.5rem;
        font-size: 0.85rem;
    }

    /* Set minimum column widths for readability */
    .pricing-table th:first-child,
    .pricing-table td:first-child {
        min-width: 80px;
        font-size: 0.75rem;
    }

    .pricing-table th:nth-child(2),
    .pricing-table td:nth-child(2),
    .pricing-table th:nth-child(3),
    .pricing-table td:nth-child(3) {
        min-width: 100px;
        text-align: center;
    }

    .pricing-highlight {
        font-size: 0.85rem;
    }

    .pricing-extras {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .pricing-extras h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .pricing-extras li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 5rem 2rem;
    background: var(--neutral-light);
    overflow: hidden;
}

.testimonials-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3.5rem;
    font-weight: 800;
}

/* Carousel Container with Navigation Arrows */
.testimonials-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Navigation Arrows */
.testimonial-nav {
    background: rgba(26, 62, 120, 0.1);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.testimonial-nav:active {
    transform: scale(0.95);
}

/* Track Wrapper - Overflow Container */
.testimonials-track-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
}

/* Scrolling Track - Horizontal Layout */
.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 28s linear infinite;
    width: fit-content;
}

/* Pause animation on hover */
.testimonials-track-wrapper:hover .testimonials-track {
    animation-play-state: paused;
}

/* Keyframes for Auto-Scroll Animation */
@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Individual Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-gold);
    transition: all 0.3s;
    flex: 0 0 380px;
    min-width: 380px;
    max-width: 380px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue);
    font-style: normal;
    margin-bottom: 0.5rem;
}

.testimonial-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.local-guide-badge {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-stats {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 768px) {
    .testimonials-carousel-container {
        flex-direction: column;
    }

    /* Hide navigation arrows on mobile */
    .testimonial-nav {
        display: none;
    }

    /* Vertical stacking on mobile */
    .testimonials-track-wrapper {
        width: 100%;
        overflow: visible;
    }

    .testimonials-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        animation: none;
        width: 100%;
    }

    .testimonial-card {
        flex: none;
        min-width: auto;
        max-width: 100%;
        width: 100%;
    }

    /* Show only original 2 cards on mobile (hide duplicates) */
    .testimonial-card:nth-child(n+3) {
        display: none;
    }
}

/* ========== ABOUT ========== */
.about-section {
    padding: 5rem 2rem;
    background: var(--neutral-light);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--primary-blue), #0f2847);
    height: 420px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0 2rem;
}

.team-member {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-member-image-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(213, 162, 71, 0.25);
}

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

/* Specific positioning for Rudolf's photo */
.rudolf-image {
    object-position: center 30%;
}

/* Specific positioning for Melanie's photo */
.team-member-image[alt="Melanie Diendorf"] {
    object-position: 60% center;
}

.team-member-content {
    text-align: center;
}

.team-member-content strong {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.team-member-content span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    display: block;
}

@media (max-width: 768px) {
    .about-content h2 {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0 1.5rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .team-member-image-wrapper {
        width: 120px;
        height: 120px;
    }
}

/* ========== CONTACT FORM ========== */
.contact-section {
    padding: 0.5rem 2rem 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-blue), #2a5398);
    padding: 2rem;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    border: 3px solid var(--primary-blue);
    border-bottom: none;
}

.form-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.form-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

#contactForm {
    background: white;
    padding: 2.5rem;
    border: 3px solid var(--primary-blue);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(26, 62, 120, 0.15);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--neutral-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 62, 120, 0.1);
}

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

/* Radio Group Styling */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 1rem;
    border: 2px solid var(--neutral-light);
    border-radius: 8px;
    background: white;
    transition: all 0.3s;
}

.radio-label:hover {
    border-color: var(--primary-blue);
    background: rgba(26, 62, 120, 0.02);
}

.radio-label input[type="radio"] {
    width: auto;
    cursor: pointer;
    min-width: 20px;
    height: 20px;
    accent-color: var(--accent-gold);
}

.radio-label input[type="radio"]:checked + span {
    font-weight: 600;
    color: var(--primary-blue);
}

.radio-label span {
    flex: 1;
    font-size: 1rem;
    color: var(--text-dark);
}

.language-notice {
    display: block;
    margin-top: 0.6rem;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
}

/* GDPR Privacy Consent Checkbox */
.privacy-consent-group {
    background: linear-gradient(135deg, rgba(213, 162, 71, 0.08), rgba(26, 62, 120, 0.03));
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 2rem;
}

.privacy-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    margin: 0;
}

.privacy-consent-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    min-width: 20px;
    height: 20px;
    accent-color: var(--accent-gold);
}

.privacy-consent-label span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.privacy-consent-label span a {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.privacy-consent-label span a:hover {
    color: var(--primary-blue);
}

.privacy-notice {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 62, 120, 0.1);
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    font-style: italic;
}

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

.form-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.form-buttons button {
    padding: 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-buttons .submit-btn {
    background: var(--accent-gold);
    color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(213, 162, 71, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.submit-btn .submit-icon {
    transition: transform 0.3s ease;
}

.form-buttons .submit-btn:hover {
    background: var(--primary-blue);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.form-buttons .submit-btn:hover .submit-icon {
    transform: translateX(4px) rotate(-10deg);
}

.form-buttons .download-btn {
    background: var(--primary-blue);
    color: white;
}

.form-buttons .download-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
}

.success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    padding: 1.3rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
    border-left: 4px solid #28a745;
}

.success-message.show {
    display: block;
}

/* Google Maps Container */
.maps-container {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--neutral-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.maps-container h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.maps-contact {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.maps-contact p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.maps-contact strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.maps-contact a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.maps-embed {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.maps-embed iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    display: block;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .maps-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== FOOTER ========== */
footer {
    background: var(--primary-blue);
    color: white;
    padding: 3.5rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.3rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.9rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-contact {
    font-size: 0.98rem;
    line-height: 1.6;
}

.footer-contact strong {
    display: inline;
    margin-right: 0.5rem;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transition: all 0.3s;
    font-weight: 600;
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.scroll-to-top:hover {
    background: var(--primary-blue);
    color: var(--accent-gold);
    transform: translateY(-5px);
}

/* ========== BOOKING & AGB SECTION ========== */
.booking-info-section {
    padding: 2.5rem 2rem;
    background: white;
}

.booking-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-weight: 800;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.booking-card {
    background: linear-gradient(135deg, var(--primary-blue), #0f2847);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(26, 62, 120, 0.2);
}

.booking-step {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.booking-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* AGB Info */
.agb-info {
    background: var(--neutral-light);
    padding: 3rem;
    border-radius: 12px;
    border-left: 6px solid var(--accent-gold);
}

.agb-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.agb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.agb-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    transition: all 0.3s;
}

.agb-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.agb-item h4 {
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.agb-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.agb-footer-note {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(26, 62, 120, 0.1);
    color: var(--text-light);
    font-size: 0.95rem;
}

.agb-footer-note a {
    text-decoration: none;
    transition: all 0.3s;
}

.agb-footer-note a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .booking-info-section {
        padding: 3rem 1.5rem;
    }

    .booking-info-section h2 {
        font-size: 1.8rem;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .agb-info {
        padding: 1.5rem;
    }

    .agb-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== GOOGLE RATING ========== */
.google-rating-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f2847 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.google-rating-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.google-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-logo svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
}

.rating-info {
    text-align: left;
}

.rating-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.rating-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0.4rem 0 0 0;
}

.google-review-link {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
    border: 2px solid var(--accent-gold);
}

.google-review-link:hover {
    background: transparent;
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .google-rating-container {
        gap: 1rem;
    }

    .rating-info h3 {
        font-size: 1.4rem;
    }

    .google-rating-section {
        padding: 2rem 1.5rem;
    }
}

/* ========== GOOGLE MAPS ========== */
.location-map-container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.location-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.directions-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.directions-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.location-info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    border-left: 6px solid var(--accent-gold);
}

.location-info-box h4 {
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.location-info-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0.8rem 0;
}

.location-info-box p strong {
    color: var(--primary-blue);
    font-weight: 700;
}

@media (max-width: 768px) {
    .location-map-container {
        height: 350px;
    }

    .location-info-box {
        padding: 1.5rem;
    }

    .location-info-box h4 {
        font-size: 1.1rem;
    }
}
.faq-section {
    padding: 5rem 2rem;
    background: var(--neutral-light);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 800;
}

.faq-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 2px solid var(--neutral-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-blue), #0f2847);
    color: white;
    font-weight: 700;
    transition: all 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--accent-gold), #c9913a);
    color: var(--primary-blue);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--neutral-light);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.faq-answer li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

/* Details Accordion Styles */
.details-accordion {
    background: var(--neutral-light);
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-gold);
    overflow: hidden;
    transition: all 0.3s ease;
}

.details-accordion:hover {
    box-shadow: var(--shadow);
}

.details-toggle {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--neutral-light);
    transition: all 0.3s ease;
    user-select: none;
}

.details-toggle:hover {
    background: rgba(213, 162, 71, 0.1);
}

.details-toggle-icon {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.details-accordion.active .details-toggle-icon {
    transform: rotate(45deg);
}

.details-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--neutral-light);
}

.details-accordion.active .details-content {
    max-height: 1200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 1.1rem;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    border: 3px solid white;
}

.whatsapp-button:hover {
    background: #20BA5A;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--primary-blue);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    bottom: 50%;
    transform: translateY(50%);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .whatsapp-tooltip {
        right: 70px;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1.5rem;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
}

/* ========================
   IMPRESSUM & PRIVACY PAGES
   ======================== */

.impressum-page,
.privacy-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--neutral-light);
}

.content-section {
    background: white;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.content-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-gold);
}

.content-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.content-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

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

.content-section a:hover {
    color: var(--accent-gold);
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.impressum-content p,
.privacy-content p {
    margin-bottom: 1rem;
}

.impressum-content strong,
.privacy-content strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* AGB Section Styling */
.agb-section h3 {
    background: linear-gradient(135deg, rgba(26, 62, 120, 0.05), rgba(213, 162, 71, 0.05));
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Rights List Styling (for GDPR rights) */
.rights-list {
    list-style: none;
    margin-left: 0;
}

.rights-list li {
    background: var(--neutral-light);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.rights-list li strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Responsive Design for Content Pages */
@media (max-width: 768px) {
    .impressum-page,
    .privacy-page {
        padding-top: 80px;
    }

    .content-section {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .content-section h1 {
        font-size: 1.8rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    .content-section h3 {
        font-size: 1.1rem;
    }
}
