/* ===== VARIABLES ===== */
:root {
    --primary-dark: #0d2137;
    --primary: #1a3a5c;
    --primary-light: #2a6496;
    --accent: #4a9bd9;
    --accent-light: #7bb8e3;
    --white: #ffffff;
    --light-bg: #f0f5fa;
    --gray: #6c757d;
    --dark-text: #212529;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --navbar-bg: rgba(255, 255, 255, 0.97);
    --navbar-text: #1a3a5c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(74, 155, 217, 0.15);
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 160px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo img {
    height: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navbar-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 12px rgba(74, 155, 217, 0.3);
}

.nav-cta:hover {
    background: var(--primary-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(74, 155, 217, 0.4) !important;
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--navbar-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 155, 217, 0.4);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 155, 217, 0.5);
}

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

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

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* ===== SECTIONS GENERAL ===== */
.section {
    padding: 5rem 2rem;
    overflow: hidden;
}

.section .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

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

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

.subtitle {
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

/* ===== PAGE HEADER (Unterseiten) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 10rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--white);
    clip-path: ellipse(60% 80% at 50% 100%);
}

.page-hero.bg-image {
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO (Startseite) ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.82), rgba(26, 58, 92, 0.75)),
                url('IMG_0707.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--white);
    clip-path: ellipse(60% 80% at 50% 100%);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 12rem 2rem 5rem;
    position: relative;
    z-index: 1;
}

/* Mobile Hero Logo - hidden on desktop */
.hero-mobile-logo {
    display: none;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-mobile-logo .mobile-logo-badge {
    height: 180px;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
}

.hero-mobile-logo .mobile-logo-text {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-top: 0.3rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-mobile-logo .mobile-logo-sub {
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0.15rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(74, 155, 217, 0.2);
    border: 1px solid var(--accent);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== PRICE BANNER ===== */
.price-banner {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.price-banner-inner {
    max-width: 800px;
    margin: 0 auto;
}

.price-banner h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price-big {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
}

.price-banner .price-details {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.price-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-featured {
    padding-top: 0;
}

.service-card-image {
    margin: 0 -2rem 1.5rem -2rem;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.service-card.featured {
    border: 2px solid var(--accent);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-feature i {
    color: var(--accent);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 280px;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,33,55,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

/* ===== AREA MAP ===== */
.area-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 5rem 2rem;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.area-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.area-content p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.area-tag {
    background: rgba(74, 155, 217, 0.2);
    border: 1px solid var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.area-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.area-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.review-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.review-name {
    font-weight: 600;
    color: var(--primary-dark);
}

.review-source {
    font-size: 0.85rem;
    color: var(--gray);
}

.google-review-btn {
    text-align: center;
    margin-top: 3rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    outline: none;
}

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

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

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

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 155, 217, 0.4);
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== HOMEPAGE SECTIONS ===== */
.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-about-grid.reverse {
    direction: rtl;
}

.home-about-grid.reverse > * {
    direction: ltr;
}

.home-about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.home-about-text h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.home-about-text p {
    color: var(--gray);
    font-size: 1.02rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.home-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.home-area-tag {
    background: var(--light-bg);
    border: 1px solid #d0dce8;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
}

.home-area-tag i {
    color: var(--accent);
    margin-right: 0.3rem;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-service-item {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.home-service-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.home-service-item h3 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

.home-service-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-gallery-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.home-gallery-4 .gallery-item img {
    height: 200px;
}

/* ===== HERO BACKGROUNDS FOR SUBPAGES ===== */
.hero-leistungen {
    background: linear-gradient(rgba(13, 33, 55, 0.7), rgba(13, 33, 55, 0.7)), url('IMG_0707.jpg') center/cover no-repeat !important;
}

.hero-ueber-uns {
    background: linear-gradient(rgba(13, 33, 55, 0.7), rgba(13, 33, 55, 0.7)), url('IMG_0706.jpg') center/cover no-repeat !important;
}

/* ===== CONTACT CARDS ===== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

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

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-card-icon.phone {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.contact-card-icon.email {
    background: linear-gradient(135deg, #e74c3c, #e67e22);
}

.contact-card-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

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

.contact-card .btn {
    display: inline-block;
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
}

/* ===== OSMOSE SECTION ===== */
.osmose-section {
    background: linear-gradient(135deg, var(--light-bg), #e4eff8);
    padding: 5rem 2rem;
    overflow: hidden;
}

.osmose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.osmose-content .subtitle {
    margin-bottom: 0.8rem;
}

.osmose-content h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.osmose-content > p {
    color: var(--gray);
    font-size: 1.02rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.osmose-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.osmose-benefit {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.osmose-benefit i {
    color: var(--accent);
    font-size: 1.1rem;
}

.osmose-uses {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.osmose-use-tag {
    background: var(--white);
    border: 1px solid var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.osmose-use-tag i {
    color: var(--accent);
    margin-right: 0.3rem;
}

.osmose-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.home-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 4rem 2rem;
}

.home-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.home-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FOOTER (Kompakt & Zentriert) ===== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0;
}

.footer-compact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.footer-brand-compact {
    text-align: center;
    flex: 0 0 auto;
}

.footer-brand-compact img {
    height: 70px;
    margin-bottom: 0.5rem;
}

.footer-brand-compact p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.footer-nav-compact {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.footer-nav-compact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav-compact a:hover {
    color: var(--accent);
}

.footer-contact-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.footer-contact-compact a,
.footer-contact-compact span {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-contact-compact i {
    color: var(--accent);
    width: 18px;
    margin-right: 0.4rem;
}

.footer-bottom-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    opacity: 0.6;
}

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

.footer-legal-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent);
}

/* Legacy footer (for subpages) */
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 2.5rem 2rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    height: 70px;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    max-width: 280px;
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2.5px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--accent);
    width: 18px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 1.2rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner p {
    font-size: 0.9rem;
    opacity: 0.9;
    flex: 1;
}

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

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}

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

.legal-content h3 {
    font-size: 1.15rem;
    color: var(--primary-light);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
    margin-bottom: 0.8rem;
    color: #444;
}

.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }

.legal-content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-content a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-logo img {
        height: 120px;
    }
    .navbar.scrolled .nav-logo img {
        height: 80px;
    }
    .hero-container {
        text-align: center;
        padding: 11rem 2rem 4rem;
    }
    .hero-content p {
        margin: 0 auto 2rem;
    }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .about-grid,
    .area-grid,
    .contact-grid,
    .home-about-grid {
        grid-template-columns: 1fr;
    }
    .home-about-grid.reverse {
        direction: ltr;
    }
    .home-about-text {
        text-align: center;
    }
    .home-area-tags {
        justify-content: center;
    }
    .home-about-text .btn {
        margin-left: auto;
        margin-right: auto;
    }
    .home-services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .home-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .home-gallery-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .osmose-grid {
        grid-template-columns: 1fr;
    }
    .osmose-content {
        text-align: center;
    }
    .osmose-benefits {
        justify-content: center;
    }
    .osmose-uses {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-brand {
        text-align: center;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-brand .social-links {
        justify-content: center;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    /* Compact footer responsive */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-contact-compact {
        text-align: center;
        align-items: center;
    }
    .footer-nav-compact {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }

    .nav-links a {
        color: var(--white) !important;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Mobile: Logo aus Header raus, in Hero rein */
    .nav-logo {
        display: none !important;
    }
    .nav-container {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    .navbar {
        padding: 0.8rem 0;
    }
    .navbar.scrolled {
        padding: 0.5rem 0;
    }
    .hamburger {
        position: static;
        margin: 0 auto;
    }
    /* Mobile Hero Logo */
    .hero-mobile-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto 2rem;
        width: 100%;
    }
    .hero h1,
    .hero p,
    .hero .hero-badge,
    .hero .stat-number,
    .hero .stat-label {
        color: #ffffff;
    }
    .page-hero h1,
    .page-hero p {
        color: #ffffff;
    }
    .hero {
        min-height: auto;
        flex-direction: column;
        padding: 1rem 1rem 2rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    /* Startseite Hero bleibt groß */
    .hero:has(.hero-container) {
        min-height: 100vh;
    }
    .hero::before {
        height: 80px;
        bottom: -30px;
    }
    .hero-container {
        padding: 1rem 0 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    .hero-content {
        width: 100%;
        box-sizing: border-box;
        padding: 0 0.5rem;
    }
    .hero-content h1 { font-size: 1.8rem; word-wrap: break-word; }
    .hero-content p { font-size: 1rem; }
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .price-big { font-size: 3rem; }
    .section-header h2 { font-size: 1.8rem; }
    .page-hero {
        padding: 1rem 1.5rem 2rem;
    }
    .page-hero::before {
        height: 60px;
        bottom: -25px;
    }
    .page-hero .hero-mobile-logo {
        margin-bottom: 2rem;
    }
    .page-hero h1 { font-size: 2rem; }
    .home-about-text h2 { font-size: 1.6rem; }
    .home-cta h2 { font-size: 1.6rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .home-gallery-grid { grid-template-columns: 1fr 1fr; }
    .home-gallery-4 { grid-template-columns: 1fr 1fr; }
    .home-gallery-4 .gallery-item img { height: 150px; }
    .home-services-grid { grid-template-columns: 1fr; }
    .osmose-benefits { grid-template-columns: 1fr; }

    .section {
        padding: 3.5rem 1.5rem;
    }

    .osmose-section {
        padding: 3.5rem 1.5rem;
    }

    .price-banner {
        padding: 2.5rem 1.5rem;
    }

    .home-cta {
        padding: 3rem 1.5rem;
    }
    .about-features { grid-template-columns: 1fr; }

    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .footer-bottom-compact {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }

    .footer-nav-compact {
        gap: 1rem;
    }

    .footer-nav-compact a {
        font-size: 0.85rem;
    }

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