/* ===========================
   Global Styles & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Corporate Colors */
    --color-primary-gold: #B89B5C;
    --color-primary-teal: #36A099;
    --color-background: #FAFAFA;
    --color-white: #FFFFFF;
    --color-text-dark: #1A1A1A;
    --color-text-light: #6B7280;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 0 30px rgba(184, 155, 92, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-dark);
    background: linear-gradient(135deg, #FAFAFA 0%, #F0F0F0 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Animated Background Orbs */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

body::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary-gold), transparent);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

body::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary-teal), transparent);
    bottom: -300px;
    left: -300px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* ===========================
   Header
   =========================== */
#header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(184, 155, 92, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-md);
}

.logo img {
    height: 50px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(184, 155, 92, 0.2));
}

.logo img:hover {
    transform: scale(1.08) rotate(2deg);
}

#nav ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

#nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 155, 92, 0.1), transparent);
    transition: left 0.5s ease;
}

#nav a:hover::before {
    left: 100%;
}

#nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-gold), var(--color-primary-teal));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

#nav a:hover {
    color: var(--color-primary-teal);
}

#nav .cta-button {
    background: linear-gradient(135deg, var(--color-primary-gold), var(--color-primary-teal));
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

#nav .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#nav .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

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

#nav .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    color: var(--color-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 6px;
    margin-left: var(--spacing-md);
    background: rgba(184, 155, 92, 0.08);
    padding: 4px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--color-text-dark);
    padding: 6px 12px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(184, 155, 92, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.lang-btn:hover::before {
    width: 100px;
    height: 100px;
}

.lang-btn:hover {
    transform: translateY(-1px);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--color-primary-gold), var(--color-primary-teal));
    color: white;
    box-shadow: 0 4px 12px rgba(184, 155, 92, 0.25);
}

/* ===========================
   Hero Section
   =========================== */
#hero {
    background: linear-gradient(135deg, rgba(184, 155, 92, 0.05), rgba(54, 160, 153, 0.05));
    padding: calc(var(--spacing-xl) * 1.5) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(184, 155, 92, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(54, 160, 153, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite 4s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

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

.hero-title {
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-primary-gold), var(--color-primary-teal), var(--color-primary-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite, fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, var(--color-primary-gold), var(--color-primary-teal));
    color: var(--color-white);
    padding: 18px 48px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button-large:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* ===========================
   Über uns Section
   =========================== */
#ueber-uns {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 155, 92, 0.2), rgba(54, 160, 153, 0.2));
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 155, 92, 0.15), rgba(54, 160, 153, 0.15));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(184, 155, 92, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.image-placeholder:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(184, 155, 92, 0.3);
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-dark);
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-gold), var(--color-primary-teal));
    border-radius: 2px;
}

.about-text p {
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(184, 155, 92, 0.08), rgba(54, 160, 153, 0.08));
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary-gold);
    margin-top: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-box:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   Angebote Section
   =========================== */
#angebote {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-background), var(--color-white));
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-dark);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-gold), var(--color-primary-teal));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(184, 155, 92, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-gold), var(--color-primary-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 155, 92, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(184, 155, 92, 0.15);
    border-color: rgba(184, 155, 92, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(184, 155, 92, 0.15), rgba(54, 160, 153, 0.15));
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-teal);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(184, 155, 92, 0.25), rgba(54, 160, 153, 0.25));
    box-shadow: 0 8px 20px rgba(184, 155, 92, 0.2);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.service-focus {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary-teal);
    background: rgba(54, 160, 153, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-focus {
    background: rgba(54, 160, 153, 0.2);
    transform: translateX(4px);
}

/* ===========================
   Kontakt Section
   =========================== */
#kontakt {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.telegram-button svg {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.telegram-button:hover svg {
    transform: rotate(20deg) scale(1.15);
}

.telegram-info {
    background: linear-gradient(135deg, rgba(184, 155, 92, 0.05), rgba(54, 160, 153, 0.05));
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184, 155, 92, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.telegram-info:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.telegram-info h3 {
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-gold);
}

.telegram-info ol {
    padding-left: var(--spacing-md);
    color: var(--color-text-light);
}

.telegram-info li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.8;
}

.important-notice {
    background: linear-gradient(135deg, var(--color-primary-gold), var(--color-primary-teal));
    color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.important-notice::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.important-notice h3 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.important-notice p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ===========================
   Testimonials Section
   =========================== */
#testimonials {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-background), var(--color-white));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(184, 155, 92, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 155, 92, 0.05), rgba(54, 160, 153, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(184, 155, 92, 0.15);
}

.testimonial-quote {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--color-primary-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: var(--color-text-light);
    font-style: italic;
    line-height: 1.9;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary-teal);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ===========================
   Footer
   =========================== */
#footer {
    background: linear-gradient(135deg, rgba(184, 155, 92, 0.05), rgba(54, 160, 153, 0.05));
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(184, 155, 92, 0.15);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    text-align: center;
}

.footer-logo img {
    height: 60px;
    filter: drop-shadow(0 2px 8px rgba(184, 155, 92, 0.2));
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-gold), var(--color-primary-teal));
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

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

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    max-width: 800px;
    margin: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(184, 155, 92, 0.1);
}

.footer-disclaimer h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary-gold);
    margin-bottom: var(--spacing-sm);
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: 0;
}

.footer-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

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

.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-card,
.testimonial-card,
.about-content {
    opacity: 0;
}

.service-card.fade-in,
.testimonial-card.fade-in,
.about-content.fade-in {
    opacity: 1;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    #nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-md);
        padding: var(--spacing-md);
    }
    
    #nav.active {
        display: block;
    }
    
    #nav ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .language-switcher {
        margin-left: 0;
        order: 2;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .cta-button-large {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}


:root{
  --color-primary-gold:#c7a144;
  --color-primary-teal:#0f7a7a;
  --spacing-sm:.5rem;
  --spacing-md:1rem;
  --spacing-lg:2rem;
  --spacing-xl:3rem;
}




.important-notice { text-align:center; }

.btn-telegram{
  display:inline-flex; align-items:center; gap:.55rem;
  margin-top: .8rem;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  color:#fff; text-decoration:none;
  background: linear-gradient(135deg, #b9a447, #3aa580);
  box-shadow: 0 12px 24px rgba(58,165,128,.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-telegram__icon{ width:20px; height:20px; fill: currentColor; opacity:.95; }
.btn-telegram:hover{ transform: translateY(-2px); box-shadow: 0 16px 28px rgba(58,165,128,.34); }
.btn-telegram:focus-visible{ outline: 3px solid rgba(58,165,128,.45); outline-offset: 3px; }
.btn-telegram:active{ transform: translateY(0); box-shadow: 0 10px 18px rgba(58,165,128,.22); }
































.cta-header:hover{ background:#009e8e; transform:translateY(-1px); }

/* Header Layout (falls nicht vorhanden) */
#header .header-content{
  display:flex; align-items:center; gap:16px;
}
#header .logo img{ height:40px; }
#header nav ul{ display:flex; gap:20px; list-style:none; margin:0; padding:0; }
#header nav a{ text-decoration:none; color:#222; font-weight:500; }
#header .mobile-menu-toggle{ margin-left:auto; display:none; background:none; border:0; }
@media (max-width: 900px){
  #header nav ul{ display:none; }           /* einfache Mobile-Variante */
  #header .mobile-menu-toggle{ display:block; }
}
















#header .cta-button-large {
  padding: 10px 26px;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}
#header .cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}










/* === Testimonials Slider (ohne Bilder) === */
.t-slider{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.t-track{
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.t-slide{
  min-width: 100%;
  padding: var(--spacing-lg);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(184,155,92,.12);
  box-shadow: var(--shadow-sm);
}
.t-quote{
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
}
.t-quote::before{
  content: "“";
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary-gold);
  opacity: .3;
  position: absolute;
  left: -8px; top: -6px;
  transform: translate(-100%, -20%);
}
.t-author{
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary-teal);
}

/* Navigation */
.t-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 44px;
  text-align: center;
  user-select: none;
}
.t-prev{ left: 8px; }
.t-next{ right: 8px; }
.t-nav:hover{ box-shadow: var(--shadow-md); }

/* Dots */
.t-dots{
  display:flex; gap:8px;
  justify-content:center;
  margin-top: var(--spacing-md);
}
.t-dots button{
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(184,155,92,.35);
  cursor: pointer;
}
.t-dots button[aria-selected="true"]{
  background: linear-gradient(135deg, var(--color-primary-gold), var(--color-primary-teal));
}

/* Responsive: mehrere Slides auf großen Screens (optional) */
@media (min-width: 1100px){
  .t-slide{ min-width: 50%; } /* 2 Slides sichtbar */
}
@media (min-width: 1500px){
  .t-slide{ min-width: 33.3333%; } /* 3 Slides sichtbar */
}









.about-photo {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
































/* ========================================
   Newsletter-Stil wie im Screenshot
   ======================================== */

/* Reset und Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e8e8e8;
    padding: 20px 0;
}

/* Hauptcontainer - Newsletter Card */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    border-radius: 0;
}

/* Alle direkten Kinder bekommen Padding */
.legal-content > *:not(.back-link) {
    padding-left: 60px;
    padding-right: 60px;
}

/* Zurück-Button */
.back-link {
    display: inline-block;
    background-color: #2fa09d;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin: 40px 0 40px 60px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-link:hover {
    background-color: #26837f;
    transform: translateX(-5px);
}

/* Hauptüberschrift */
.legal-content h1 {
    text-align: center;
    color: #c9a961;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 50px 0;
    padding: 0 60px;
    line-height: 1.3;
}

/* Sektionsüberschriften (h3) */
.legal-content h3 {
    color: #2fa09d;
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    line-height: 1.4;
}

/* Unterüberschriften (h4) */
.legal-content h4 {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

/* Paragraphen */
.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.legal-content p strong {
    font-weight: 700;
    color: #000;
}

/* Listen */
.legal-content ul {
    margin: 20px 0;
    padding-left: 0;
}

.legal-content li {
    margin-bottom: 12px;
    margin-left: 25px;
    line-height: 1.7;
    color: #333;
}

/* Important Notice Boxen */
.important-notice {
    background-color: #f9f9f9;
    border-left: 4px solid #c9a961;
    padding: 30px;
    margin: 30px 0;
    border-radius: 0;
}

.important-notice h4 {
    color: #c9a961;
    margin-top: 0;
    margin-bottom: 20px;
}

.important-notice p {
    margin-bottom: 15px;
}

.important-notice p:last-child {
    margin-bottom: 0;
}

.important-notice ul {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Links */
.legal-content a:not(.back-link) {
    color: #2fa09d;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:not(.back-link):hover {
    color: #26837f;
    text-decoration: underline;
}

/* Footer-Bereich am Ende */
.legal-content > p:last-of-type {
    background-color: #f4f4f4;
    padding: 30px 60px;
    margin: 60px 0 0 0;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

/* Abstand vor letzter Section */
.legal-content section:last-of-type {
    margin-bottom: 60px;
}

/* Responsive für Tablets */
@media only screen and (max-width: 900px) {
    .legal-content {
        max-width: 90%;
    }
    
    .legal-content > *:not(.back-link) {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .back-link {
        margin-left: 40px;
    }
    
    .legal-content h1 {
        font-size: 32px;
        padding: 0 40px;
    }
    
    .legal-content > p:last-of-type {
        padding: 25px 40px;
    }
}

/* Responsive für Mobile */
@media only screen and (max-width: 600px) {
    body {
        padding: 0;
        background-color: #ffffff;
    }
    
    .legal-content {
        max-width: 100%;
        box-shadow: none;
    }
    
    .legal-content > *:not(.back-link) {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .back-link {
        margin: 25px 0 30px 25px;
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .legal-content h1 {
        font-size: 26px;
        padding: 0 25px;
        margin-bottom: 35px;
    }
    
    .legal-content h3 {
        font-size: 18px;
        margin: 30px 0 15px 0;
    }
    
    .legal-content h4 {
        font-size: 16px;
    }
    
    .legal-content p {
        font-size: 15px;
    }
    
    .important-notice {
        padding: 20px;
        margin: 20px 0;
    }
    
    .legal-content > p:last-of-type {
        padding: 20px 25px;
        margin-top: 40px;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: #ffffff;
        padding: 0;
    }
    
    .legal-content {
        box-shadow: none;
        max-width: 100%;
    }
    
    .back-link {
        display: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Text Selection */
::selection {
    background-color: #c9a961;
    color: #ffffff;
}

::-moz-selection {
    background-color: #c9a961;
    color: #ffffff;
}



.testimonial-note {
  text-align: center;          /* Text zentrieren */
  display: flex;               /* Flexbox-Ausrichtung */
  justify-content: center;     /* Horizontal zentrieren */
  align-items: center;         /* Vertikal zentrieren (optional, falls gewünschte Höhe definiert ist) */
  width: 100%;                 
  min-height: 100px;           /* Optional – Höhe anpassen nach Bedarf */
  font-size: 1rem;             /* Responsive Schriftgröße */
  color: #333;
}



/* ===== Mobile Header: Kontakt zentriert, Sprache rechts ===== */
@media (max-width: 900px){
  /* 3-Spalten-Grid im Header */
  #header .header-content{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
  }

  /* Logo links */
  #header .logo{
    order: 1;
    justify-self: start;
  }

  /* Nav sichtbar lassen (nur Button), ohne Overlay-Stile */
  #nav{
    order: 2;
    display: block !important;            /* überschreibt dein früheres display:none */
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  /* Nur den Kontakt-Button zeigen, Rest ausblenden */
  #nav ul{
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 0;                               /* keine Lücken von versteckten Links */
    margin: 0;
    padding: 0;
  }
  #nav ul li{ margin: 0; }
  #nav ul li a:not(.cta-button){          /* „Angebote“ & „Über uns“ ausblenden */
    display: none !important;
  }

  /* Kontakt-Button mittig und kompakter */
  #nav .cta-button{
    display: inline-block !important;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  /* Sprachumschalter rechts */
  .language-switcher{
    order: 3;
    justify-self: end;
    margin-left: 0;
  }

  /* Burger-Icon ausblenden (nicht mehr nötig) */
  .mobile-menu-toggle{
    display: none !important;
  }
}


/* ===== Mobile: Kontakt mittig sichtbar, Sprache ganz rechts ===== */
@media (max-width: 900px){
  /* Header: 3 Spalten -> Logo | Kontakt | Sprache */
  #header .header-content{
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center;
    gap: 12px;
  }

  /* Logo links */
  #header .logo{
    order: 1;
    justify-self: start;
  }

  /* Nur den Kontakt-Button zeigen – mittig */
  #nav{
    order: 2;
    display: block !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  #nav ul{
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 0 !important;
    margin: 0; padding: 0;
  }
  /* Alle Links außer dem CTA ausblenden */
  #nav ul li a:not(.cta-button){
    display: none !important;
  }
  /* CTA kompakt und immer sichtbar */
  #nav .cta-button{
    display: inline-block !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 0.95rem !important;
    white-space: nowrap;
  }

  /* Sprachumschalter ganz rechts */
  .language-switcher{
    order: 3;
    justify-self: end !important;
    margin-left: 0 !important;
  }

  /* Burger-Icon ausblenden (nicht nötig) */
  .mobile-menu-toggle{
    display: none !important;
  }
}

/* Sicherstellen, dass Desktop unverändert bleibt */
@media (min-width: 901px){
  #nav ul li a{ display: inline-block; }
}


/* ===== Mobile Header: Logo links | Kontakt mittig | Sprache rechts ===== */
@media (max-width: 900px){

  /* 3-Spalten-Grid erzwingen */
  #header .header-content{
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important; /* links | mitte | rechts */
    align-items: center;
    gap: 8px;
    padding: 10px 0;  /* kompakter Header */
  }

  /* Logo wirklich links halten und etwas kleiner */
  #header .logo{
    order: 1;
    justify-self: start !important;
  }
  #header .logo img{
    height: 36px !important;
  }

  /* NAV nur als Platzhalter für den einen CTA verwenden */
  #nav{
    order: 2;
    position: static !important;
    display: block !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  #nav ul{
    display: flex !important;
    justify-content: center !important;  /* exakt mittig */
    align-items: center;
    gap: 0 !important;
    margin: 0; padding: 0;
  }

  /* Alle Links außer dem CTA ausblenden */
  #nav ul li a:not(.cta-button){
    display: none !important;
  }

  /* Kontakt-CTA komprimieren & nicht umbrechen */
  #nav .cta-button{
    display: inline-block !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 0.95rem !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    box-shadow: var(--shadow-md);
  }

  /* Sprachumschalter ganz rechts ausrichten */
  .language-switcher{
    order: 3;
    justify-self: end !important;  /* ganz rechts */
    margin-left: 0 !important;
    gap: 6px;
  }
  .lang-btn{
    padding: 6px 10px;             /* kompakter */
    font-size: 0.85rem;
  }

  /* Burger ausblenden (nicht benötigt) */
  .mobile-menu-toggle{
    display: none !important;
  }
}

/* Desktop bleibt unverändert */
@media (min-width: 901px){
  #nav ul li a{ display: inline-block; }
}


/* ===== Kontakt im Header als echter Button (Mobile) ===== */
@media (max-width: 900px){
  /* zentriert lassen – du hast bereits das 3-Spalten-Grid */
  #nav .cta-button{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 0.95rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;

    /* echter Button-Look */
    background: linear-gradient(135deg, var(--color-primary-gold), var(--color-primary-teal)) !important;
    color: #fff !important;
    box-shadow: var(--shadow-md);
    border: none !important;
    text-decoration: none !important;
  }

  /* keine Unterstreich-/Hover-Linie aus dem Link-Stil */
  #nav .cta-button::after{ display: none !important; }

  /* beim Hover weiß lassen */
  #nav .cta-button:hover{
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
  }
}




/* ==== Header: "Kontakt" immer als echter Button ==== */
#header #nav a.cta-button{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  padding:10px 18px !important;
  border-radius:999px !important;
  line-height:1 !important;
  font-weight:700 !important;
  color:#fff !important;
  background:linear-gradient(135deg, var(--color-primary-gold), var(--color-primary-teal)) !important;
  box-shadow: var(--shadow-md);
  border:none !important;
  text-decoration:none !important;
}

/* Unterstreich-/Hover-Linie komplett aus für den CTA */
#header #nav a.cta-button::after{ display:none !important; }

/* Hover-Effekt für den CTA */
#header #nav a.cta-button:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  color:#fff !important;
}










/* ==== Header-Kontakt als echter Button ==== */
#header a.header-cta{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  padding:10px 18px !important;
  border-radius:999px !important;
  line-height:1 !important;
  font-weight:700 !important;
  color:#fff !important;
  background:linear-gradient(135deg, var(--color-primary-gold), var(--color-primary-teal)) !important;
  box-shadow: var(--shadow-md);
  border:none !important;
  text-decoration:none !important;
}

/* Linie/Underline aus Link-Regeln abschalten */
#header a.header-cta::after{ display:none !important; }

/* Hover-Effekt */
#header a.header-cta:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  color:#fff !important;
}

#header a.header-cta{
  margin-right: 20px; /* Abstand zum Logo */
}

