@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root {
    --primary: #ccbaad;
    --primary-dark: #b89c8a;
    --text: #615f54;
    --accent: #f2d9a2;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --bg-light: #fbfbfb;
    --transition: all 0.3s ease;
    --container-width: 1400px;
    --font: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--light);
    color: var(--text);
    line-height: 1.5;
    font-weight: 300;
}

h1,
h2,
h3,
h4 {
    font-weight: 400;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Helpers */
.bold {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons & CTAs */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-sticky-cta {
    background-color: #e27d60;
    /* Alert / Focus Color for contrast */
    color: white;
    font-weight: 500;
    padding: 14px 30px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(226, 125, 96, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* Header & Navigation */
header {
    background: #fff;
    width: 100%;
    position: relative;
    /* Nicht mehr sticky */
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

header .container {
    max-width: 1500px;
    /* Angenehme Breite für MacBook, nicht zu gequetscht aber nicht zu weit */
}

.top-bar {
    background: var(--bg-light);
    padding: 6px 0;
    font-size: 16px;
    /* Schriftgröße auf Wunsch 16px */
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 15px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.top-bar-item:nth-child(1) {
    justify-content: start;
    text-align: left;
}

.top-bar-item:nth-child(2) {
    justify-content: center;
    text-align: center;
}

.top-bar-item:nth-child(3) {
    justify-content: center;
    text-align: center;
}

.top-bar-item:nth-child(4) {
    justify-content: end;
    text-align: right;
}

@media (max-width: 992px) {
    .top-bar .container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}


.top-bar-left,
.top-bar-center,
.top-bar-right {
    display: none;
}

/* Ensuring no conflict, can be removed later */

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #27ae60;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.status-dot.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

.google-stars {
    color: #fbbc04;
    font-weight: 500;
}

.top-bar-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-link {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.top-bar-link:hover {
    color: var(--primary);
}

.top-bar-link.highlight {
    color: #e27d60;
    font-weight: 600;
}

.contact-quick {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-quick a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-main {
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo img {
    width: 170px;
    /* Breite auf Wunsch auf 170 Pixel vergrößert */
    height: auto;
    display: block;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.btn-topbar {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--primary);
    padding: 12px 28px;
    /* Gleiche Größe wie .btn */
    border-radius: 25px;
    font-size: 1rem;
    /* Gleiche Schriftgröße */
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.nav-links {
    display: flex;
    gap: 40px;
    /* Mehr Platz zwischen den Links */
}

.nav-links>li {
    position: relative;
    padding: 15px 0;
}

.nav-links>li>a {
    text-transform: uppercase;
    font-size: 16px;
    /* Schriftgröße auf Wunsch 16px */
    font-weight: 500;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.nav-arrow {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: -2px;
    /* Center adjustment */
    transition: transform 0.3s ease;
}

.nav-links li:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-badge {
    position: absolute;
    bottom: -5px;
    left: 0;
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
    color: var(--primary);
}

/* Dropdown Logic */
.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 20px;
    border-top: 3px solid var(--primary);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dropdown-mega {
    min-width: 600px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.dropdown h5 {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.dropdown-list li {
    margin-bottom: 10px;
}

.dropdown-list a {
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    justify-content: space-between;
}

.dropdown-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.dropdown-benefits {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
}

.dropdown-benefits ul li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-benefits ul li i {
    color: var(--primary);
    width: 14px;
}

/* Hero Section (Full-Width Background) */
.hero-full-bg {
    min-height: 85vh;
    background: url('images/hero-beautyrella-bg.png');
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-full-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.hero-full-bg .hero-box {
    max-width: 650px;
    /* Begrenzt die Breite damit der Text links bleibt */
    background: rgba(255, 255, 255, 0.6);
    /* Leichter Blur/Hintergrund für bessere Lesbarkeit auf Desktop falls nötig, ansonsten nur Padding/Radius */
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}


.hero-box {
    max-width: 100%;
}

.hero-box h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 300;
    color: var(--dark);
}

.hero-box h1 .bold {
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--primary);
}

.hero-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text);
}

.badge-walkin {
    background: var(--primary);
    color: #fff;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.hero-trust-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.trust-tile i {
    color: var(--primary);
    width: 24px;
    height: 24px;
    transition: transform 0.6s ease;
}

.trust-tile:hover i {
    transform: rotateY(360deg);
}

.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    /* in case of longer buttons */
}

.hero-link {
    color: var(--text);
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.95rem;
    margin-left: 10px;
    transition: var(--transition);
}

.hero-link:hover {
    color: var(--primary);
}

.hero-img-box {
    position: relative;
    height: 75vh;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Section 2: Quick Intro --- */
.quick-intro {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.quick-intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-images {
    position: relative;
    padding-bottom: 50px;
    padding-left: 50px;
}

.intro-img-main {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.intro-img-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}

.intro-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    border-radius: 15px;
    overflow: hidden;
    z-index: 3;
    border: 5px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-img-overlay img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn-circle i {
    color: #fff;
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.play-btn-circle:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.intro-bg-text {
    position: absolute;
    bottom: -20px;
    left: 10%;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.intro-content {
    display: flex;
    flex-direction: column;
}

.intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.intro-tag i {
    width: 16px;
    height: 16px;
}

.intro-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 300;
}

.intro-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 40px;
}

.intro-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end;
}

.intro-video-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/5;
}

.intro-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-highlight-grid {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.highlight-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.highlight-box i {
    color: var(--primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-box p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}

.intro-avatars {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.avatar-group {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 15px;
    /* für das negative margin der 1. avatar falls nötig, oder direkt 0*/
}

.avatar-group img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -15px;
}

.rating-badge {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    border: 3px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: -15px;
    font-size: 0.65rem;
    font-weight: 600;
    position: relative;
    z-index: 4;
}

.rating-badge i {
    width: 10px;
    height: 10px;
    color: #fbbc04;
    margin-bottom: 1px;
}

.avatar-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.btn-discover {
    display: inline-flex;
    padding: 14px 35px;
    border-radius: 30px;
}

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

.section-bg {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 1.5rem;
}

.services-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding-bottom: 20px;
}

/* Feature Cards Refinement */
.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.service-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-info {
    padding: 2rem;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

.mini-list {
    margin-bottom: 2rem;
}

.mini-list li {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

/* Training Section */
.training-cta {
    padding: 6rem 0;
    background-color: var(--dark);
    color: var(--light);
}

.training-wrapper {
    display: flex;
    justify-content: center;
}

.training-content {
    max-width: 800px;
    text-align: center;
}

.training-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.training-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.training-item i {
    color: var(--primary);
    width: 40px;
    height: 40px;
}

.training-item h4 {
    font-family: var(--sans-font);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.training-item p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--accent);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.img-frame {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.img-frame img {
    width: 100%;
    display: block;
}

.about-text .subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

h1,
.h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

h2,
.h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary);
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    background-color: var(--dark);
    color: var(--light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p {
    margin: 1.5rem 0 2rem;
    opacity: 0.7;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--sans-font);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    opacity: 0.7;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.footer-contact ul li i {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-bottom a {
    margin: 0 0.5rem;
    border-bottom: 1px solid transparent;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Service Hero - Premium Update */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #f9f7f4 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: var(--bg-light);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
    opacity: 0.5;
}

.service-hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.walk-in {
    background: #e27d60;
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(226, 125, 96, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
}

.hero-main-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }
}

/* FAQ & Care Sections */
.care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.care-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.care-box h4 {
    margin-bottom: 20px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

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

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .quick-intro-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-bg-text {
        font-size: 5rem;
        left: 0;
    }

    .intro-content-split {
        grid-template-columns: 1fr;
    }

    .intro-video-box {
        margin-top: 30px;
    }

    .hero-full-bg {
        background-position: center;
    }

    .hero-full-bg .hero-box {
        max-width: 100%;
        background: rgba(255, 255, 255, 0.85);
        /* Mehr Deckkraft auf Mobile */
    }

    .hero-box h1 {
        font-size: 2.2rem;
    }

    .hero-box h1 .bold {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .intro-images {
        padding-left: 20px;
        padding-bottom: 30px;
    }

    .intro-img-overlay {
        width: 60%;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .hero-full-bg {
        min-height: 70vh;
        /* 70-80vh Mobile */
        padding: 40px 0;
    }

    .hero-trust-tiles {
        grid-template-columns: 1fr 1fr;
    }

    .hero-box h1 {
        font-size: 1.8rem;
    }

    .hero-box h1 .bold {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-link {
        margin-left: 0;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
        width: 120px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    /* Mobile Dropdown Logic */
    .nav-arrow {
        padding: 5px 15px;
        /* Increase touch target */
        margin-left: auto;
    }

    .nav-links li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-links li>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-links li:hover .dropdown {
        /* Disable desktop hover on mobile */
        opacity: 0;
        visibility: hidden;
        display: none;
    }

    .nav-links li.mobile-dropdown-open .dropdown {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 10px 0 10px 10px;
        margin-top: 5px;
        min-width: 100%;
    }

    .dropdown-mega {
        min-width: 100%;
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .hero-text h1 {
        font-size: 2.8rem;
    }

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

/* ===== Consent / Einwilligung Section (v2 – Hero-Box Style) ===== */
.consent-section-v2 {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.consent-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(1.05);
    transform: scale(1.05);
    z-index: 1;
}

.consent-section-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(236, 230, 224, 0.55);
    z-index: 1;
}

.consent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.consent-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
}

.consent-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.consent-box h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.consent-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 12px;
}

.consent-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.7);
    padding: 18px 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
    margin-top: 18px;
}

.consent-notice i {
    color: var(--primary);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.consent-notice div {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
}

.consent-notice strong {
    color: var(--dark);
}

.consent-box-contact {
    justify-content: center;
}

.consent-box-contact h3 {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.consent-box-contact p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 10px;
}

.consent-contact-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.consent-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.consent-contact-btns .btn-outline {
    border-color: var(--dark);
    color: var(--dark);
}

.consent-contact-btns .btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 992px) {
    .consent-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .consent-section-v2 {
        padding: 60px 0;
    }

    .consent-box {
        padding: 30px 25px;
    }

    .consent-box h2 {
        font-size: 1.8rem;
    }
}

/* ===== Team Section ===== */
.team-intro {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f5f0ed;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.team-info {
    padding: 25px 20px 30px;
}

.team-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-role {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== Gallery Teaser ===== */
.gallery-teaser {
    background: #fff;
}

.gallery-intro {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

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

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

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

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

.gallery-overlay span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }
}

/* ===== Pricing Section ===== */
.pricing-section {
    background: #ECE6E0;
    color: var(--dark);
    overflow: hidden;
}

.pricing-container {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 0;
    min-height: 700px;
}

.pricing-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

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

.pricing-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}

.pricing-content h2 {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.pricing-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 15px;
}

.pricing-tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0 35px;
    flex-wrap: wrap;
}

.pricing-tabs .tab-btn {
    padding: 10px 25px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pricing-tabs .tab-btn:hover {
    border-color: var(--primary);
    color: var(--dark);
}

.pricing-tabs .tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInTab 0.4s ease;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
    gap: 10px;
}

.price-item span:first-child {
    font-size: 0.95rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.price-val {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    white-space: nowrap;
}

.pricing-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.pricing-actions .btn-outline {
    border-color: var(--dark);
    color: var(--dark);
}

.pricing-actions .btn-outline:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

@media (max-width: 992px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }

    .pricing-image {
        max-height: 400px;
    }

    .pricing-content {
        padding: 40px 30px;
    }

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

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

    .pricing-content {
        padding: 30px 20px;
    }

    .pricing-tabs {
        margin: 20px 0 25px;
    }

    .pricing-tabs .tab-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

/* ===== Footer Final ===== */
.footer-final {
    background: #fff;
    padding-top: 60px;
}

/* Info Cards (3 cards row) */
.footer-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer-info-card {
    background: #E9E2DD;
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-info-card>i {
    color: var(--primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.footer-info-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 10px;
}

.footer-card-links {
    display: flex;
    gap: 15px;
}

.footer-card-links a {
    font-size: 0.82rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-card-links a:hover {
    opacity: 0.7;
}

.footer-download-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-download-link:hover {
    opacity: 0.7;
}

/* Map Row */
.footer-map-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0d8d2;
    margin-bottom: 40px;
    gap: 0;
}

.footer-address-panel {
    padding: 35px 30px;
    background: var(--bg-light);
    border-right: 1px solid #e0d8d2;
}

.footer-address-panel h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}

.footer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 3px;
    margin-top: 18px;
}

.footer-address-panel p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 0;
}

.footer-address-panel a {
    color: var(--primary);
    text-decoration: none;
}

.footer-address-panel a:hover {
    opacity: 0.7;
}

.footer-map-embed {
    width: 100%;
    min-height: 350px;
}

.footer-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Footer Bar (shared row style) */
.footer-bar {
    border-top: 1px solid #eee;
    padding: 18px 0;
}

/* Info Bar */
.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-brand span {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
}

.footer-bar-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bar-item i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.footer-bar-item span,
.footer-bar-item a {
    font-size: 0.88rem;
    color: var(--dark);
    text-decoration: none;
}

.footer-bar-item a:hover {
    color: var(--primary);
}

/* Partners Row */
.footer-partners-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-social-icons a i {
    width: 17px;
    height: 17px;
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-partner-placeholder {
    width: 100px;
    height: 40px;
    border: 1px dashed #ccc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #bbb;
}

.footer-award-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px dashed #ccc;
    border-radius: 8px;
    color: #bbb;
    font-size: 0.8rem;
}

.footer-award-placeholder i {
    width: 18px;
    height: 18px;
}

/* Copyright */
.footer-copyright-bar {
    border-top: 1px solid #eee;
    padding: 18px 0;
    text-align: center;
}

.footer-copyright-bar p {
    font-size: 0.78rem;
    color: #aaa;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-info-cards {
        grid-template-columns: 1fr;
    }

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

    .footer-address-panel {
        border-right: 0;
        border-bottom: 1px solid #e0d8d2;
    }

    .footer-map-embed {
        min-height: 280px;
    }

    .footer-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bar-contact {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-partners-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .footer-bar-contact {
        flex-direction: column;
        gap: 10px;
    }

    .footer-partners {
        flex-wrap: wrap;
    }
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 10px 0;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        text-align: center;
    }

    .mobile-sticky-item {
        color: var(--text);
        text-decoration: none;
        font-size: 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .mobile-sticky-item i {
        width: 20px;
        height: 20px;
        color: var(--primary);
    }

    .mobile-sticky-item:last-child {
        color: var(--primary);
        font-weight: 600;
    }

    .mobile-sticky-item:not(:last-child) {
        border-right: 1px solid #eee;
    }

    body {
        padding-bottom: 70px;
        /* Space for sticky bar */
    }
}