/* ===== CSS Variables ===== */
:root {
    --color-black: #1a1a1a;
    --color-eggshell: #f5f5f0;
    --color-gold: #c9a962;
    --color-gold-light: #d4b978;
    --color-gray: #6b6b6b;
    --color-gray-light: #e8e8e3;
    --color-white: #ffffff;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-black);
    background-color: var(--color-eggshell);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-black);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-secondary {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 55%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: none;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.4s ease, 
                backdrop-filter 0.4s ease,
                border-bottom 0.3s ease;
}

.header.scrolled {
    width: 100%;
    background-color: rgba(245, 245, 240, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-light);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    transition: padding 0.4s ease;
}

.header.scrolled .nav {
    padding: 1rem 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    min-width: auto;
    width: auto;
    transition: height 0.4s ease, min-height 0.4s ease, max-height 0.4s ease;
    object-fit: contain;
}

.header.scrolled .logo img {
    height: 60px;
    min-height: 60px;
    max-height: 60px;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 1;
    flex-wrap: nowrap;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-black);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    left: 55%;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    background-size: 100% 300%;
    background-position: 0% var(--gold-line-position, 50%);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.7), 0 0 40px rgba(201, 169, 98, 0.4), 0 0 60px rgba(201, 169, 98, 0.2);
    transition: background-position 0.1s ease-out;
    z-index: 10;
    transform: translateX(-50%);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 4rem 4rem 4rem;
    background-color: var(--color-eggshell);
    position: relative;
}


.hero-logo {
    margin-bottom: 3rem;
}

.hero-logo img {
    height: 80px;
    width: auto;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: clamp(0.2em, 2vw, 0.4em);
    color: var(--color-gold);
    margin-bottom: 1rem;
    word-spacing: 0.1em;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-black);
    margin: 1.5rem auto 2rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
    font-style: italic;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-gray);
    max-width: 420px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-text {
    color: var(--color-black);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--color-gold);
}

.btn-text svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-text:hover svg {
    transform: translateX(5px);
}

.hero-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}

.hero-contact-phone {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-black);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.hero-contact-phone:hover {
    color: var(--color-gold);
}

/* Hero Contact Icons */
.hero-contact-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-contact-icons .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--color-gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.05));
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.2), 0 0 30px rgba(201, 162, 39, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-contact-icons .contact-icon:hover {
    color: #d4af37;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.4), 0 0 40px rgba(201, 162, 39, 0.2);
    transform: scale(1.1);
}

.hero-contact-icons .contact-icon svg {
    filter: drop-shadow(0 0 2px rgba(201, 162, 39, 0.4));
}

/* Behandlungen Button - Eye-catching style */
.btn-treatments {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    background-color: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    transition: all 0.4s ease;
}

.btn-treatments svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-treatments:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-treatments:hover svg {
    transform: translateX(5px);
}

/* Golden glow effect when scrolled */
.btn-treatments.glow {
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.5), 0 0 40px rgba(201, 169, 98, 0.3);
    border-color: var(--color-gold);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.5), 0 0 40px rgba(201, 169, 98, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(201, 169, 98, 0.7), 0 0 60px rgba(201, 169, 98, 0.4);
    }
}

/* Hero Right - Image Side */
.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    padding: clamp(1rem, 3vw, 2.5rem);
    background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 100%);
}

.hero-features {
    display: flex;
    gap: clamp(0.75rem, 3vw, 2.5rem);
    flex-wrap: wrap;
}

.hero-feature {
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-feature-icon {
    color: var(--color-gold);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    margin-bottom: 0.5rem;
}

.hero-feature h4 {
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 2vw, 1rem);
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-white);
}

.hero-feature p {
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* ===== About Section ===== */
.about {
    padding: 8rem 0;
    background-color: var(--color-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-eggshell), transparent);
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.about-text h2 {
    color: var(--color-black);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--color-gray);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 400;
}

.feature-icon {
    color: var(--color-gold);
    font-size: 1.4rem;
}

/* ===== Services Section ===== */
.services {
    padding: 6rem 0 5rem;
    background-color: var(--color-eggshell);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    pointer-events: none;
}

.services h2 {
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--color-gray);
    font-size: 1.1rem;
}

/* Services Filter */
.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: transparent;
    color: var(--color-gray);
    border: 1px solid var(--color-gray-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-black);
}

.filter-btn.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.service-card.filter-hidden {
    display: none;
}

.service-card.filter-show {
    display: block;
}

.service-card.hidden {
    display: none !important;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.services-grid .service-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    max-width: calc(33.333% - 1.34rem);
}

.services-show-more {
    display: none;
    margin-top: 2rem;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.4), 0 0 40px rgba(201, 169, 98, 0.2);
    animation: btn-glow 2s ease-in-out infinite;
}

.services-show-more:hover {
    background-color: var(--color-gold-light);
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.6), 0 0 60px rgba(201, 169, 98, 0.3);
    color: var(--color-black);
}

@keyframes btn-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(201, 169, 98, 0.4), 0 0 40px rgba(201, 169, 98, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(201, 169, 98, 0.6), 0 0 60px rgba(201, 169, 98, 0.35);
    }
}

.services .container {
    text-align: center;
}

.service-card {
    display: block;
    background-color: var(--color-white);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card.animate-in {
    animation: cardJumpGlow 0.3s ease forwards;
}

@keyframes cardJumpGlow {
    0% {
        opacity: 0;
        transform: translateY(20px);
        box-shadow: none;
    }
    60% {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(201, 169, 98, 0.15);
    }
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== CTA Section ===== */
.cta {
    padding: 5rem 0 3rem;
    background-color: var(--color-eggshell);
    text-align: center;
    position: relative;
    margin-bottom: 0;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta::before {
    display: none;
}


.cta h2 {
    color: var(--color-black);
}

.cta p {
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Contact Section ===== */
.contact {
    padding: 2rem 0 6rem;
    background-color: var(--color-eggshell);
    position: relative;
    margin-top: -2px;
    border-top: none;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    left: 25%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('../images/Kosmetik-beo.ch logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.contact .container {
    background-color: transparent;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    background-color: transparent;
}

.contact-info {
    background-color: transparent;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--color-black);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-black);
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--color-black);
}

.contact-item p {
    margin-bottom: 0;
    color: #4a4a4a;
}

.contact-item a {
    color: #4a4a4a;
}

.contact-item a:hover {
    color: var(--color-gold);
}

.contact-map {
    border: none;
}

.contact-map iframe {
    display: block;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-black);
    color: var(--color-gray-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--color-gray);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact p {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--color-gray);
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-bottom p a {
    color: rgba(201, 169, 98, 0.4) !important;
    -webkit-text-fill-color: rgba(201, 169, 98, 0.4) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom p a:hover {
    color: rgba(201, 169, 98, 0.7) !important;
    -webkit-text-fill-color: rgba(201, 169, 98, 0.7) !important;
}

.footer-credit {
    margin-top: 0.5rem !important;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.footer-credit a {
    color: rgba(201, 169, 98, 0.4) !important;
    -webkit-text-fill-color: rgba(201, 169, 98, 0.4) !important;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    color: rgba(201, 169, 98, 0.7) !important;
    -webkit-text-fill-color: rgba(201, 169, 98, 0.7) !important;
}

.footer-heart {
    display: inline-block;
    font-size: 0.75rem;
    line-height: 1;
    color: rgba(201, 169, 98, 0.35);
    animation: heartGlow 4s ease-in-out infinite;
}

@keyframes heartGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.55;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: 100vh;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero-left {
        padding: 12rem 2rem 4rem;
        min-height: 60vh;
    }
    
    .hero-left::after {
        display: none;
    }
    
    .hero-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 2.5rem;
    }
    
    .hero-right {
        min-height: 40vh;
    }
    
    .hero-features {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    /* Buttons besser anordnen auf Tablets */
    .hero-actions {
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-treatments {
        width: 100%;
        justify-content: center;
    }
    
    .hero-contact {
        margin-top: 2.5rem;
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1100px) {
    .header {
        width: 100%;
        position: absolute;
        background-color: transparent;
    }
    
    .header.scrolled {
        position: fixed;
        background-color: rgba(245, 245, 240, 0.98);
    }
    
    .nav {
        padding: 2rem 2rem;
    }
    
    .logo {
        position: relative;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-eggshell);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 20px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-left {
        padding: 12rem 1.5rem 2rem;
        min-height: 60vh;
    }
    
    .hero-right {
        min-height: 40vh;
    }
    
    .hero-logo img {
        height: 60px;
    }
    
    .hero-features {
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .hero-feature {
        flex: 1;
        min-width: 0;
    }
    
    .hero-feature h4 {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .hero-feature p {
        font-size: 0.6rem;
        line-height: 1.3;
    }
    
    .hero-image-overlay {
        padding: 1rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-grid .service-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    
    .service-card.mobile-hidden {
        display: none;
    }
    
    .services-show-more {
        display: inline-block;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    .services {
        padding-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .services-grid .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Mobile Header & Logo */
    .header {
        position: absolute;
        background-color: transparent;
    }
    
    .header.scrolled {
        position: fixed;
        background-color: rgba(245, 245, 240, 0.98);
    }
    
    .nav {
        padding: 2.5rem 1.5rem 1.5rem;
        justify-content: center;
    }
    
    .logo {
        margin: 0 auto;
    }
    
    .logo img {
        height: 90px;
        min-height: 90px;
        max-height: 90px;
    }
    
    .header.scrolled .logo img {
        height: 60px;
        min-height: 60px;
        max-height: 60px;
    }
    
    .nav-toggle {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Mobile Hero Optimizations */
    .hero-left {
        padding: 12rem 1.5rem 4rem;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
        margin-top: 0;
    }
    
    .hero-logo img {
        height: 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        margin-bottom: 0.5rem;
    }
    
    .hero-divider {
        width: 40px;
        margin: 0.75rem auto 1rem;
    }
    
    .hero-text {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    /* Buttons untereinander auf Mobile */
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .btn-treatments {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 0.7rem;
    }
    
    /* Hero Contact Section - sichtbar auf Mobile */
    .hero-contact {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
        gap: 0.75rem;
        width: 100%;
        padding-bottom: 1rem;
    }
    
    .hero-contact-phone {
        font-size: 1.2rem;
        letter-spacing: 0.03em;
    }
    
    .hero-contact-label {
        font-size: 0.6rem;
    }
    
    .hero-contact-icons {
        gap: 0.75rem;
        margin-top: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-contact-icons .contact-icon {
        width: 38px;
        height: 38px;
    }
    
    /* Ensure hero section shows all content */
    .hero {
        min-height: 100vh;
        height: auto;
    }
    
    .hero-right {
        display: none;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* ===== Smooth Scroll Offset for Fixed Header ===== */
section[id] {
    scroll-margin-top: 100px;
}

/* ===== Service Page Styles ===== */
.header-service {
    width: 100%;
    background-color: rgba(245, 245, 240, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-light);
}

.service-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    overflow: hidden;
}

.service-hero::after {
    content: '';
    position: absolute;
    left: 55%;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    background-size: 100% 300%;
    background-position: 0% 50%;
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.7), 0 0 40px rgba(201, 169, 98, 0.4), 0 0 60px rgba(201, 169, 98, 0.2);
    z-index: 10;
    transform: translateX(-50%);
}

.service-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 4rem 4rem 4rem;
    background-color: var(--color-eggshell);
    position: relative;
}

.service-hero-right {
    position: relative;
    overflow: hidden;
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.service-hero-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-gray);
    max-width: 420px;
    margin: 0 auto 2.5rem;
}

.service-hero-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.service-hero-phone {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: 0.05em;
}

/* Service Details */
.service-details {
    padding: 8rem 0;
    background-color: var(--color-white);
    position: relative;
}

.service-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-eggshell), transparent);
    pointer-events: none;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

.service-info h2 {
    margin-bottom: 1.5rem;
    color: var(--color-black);
}

.service-info h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-black);
    font-size: 1.3rem;
}

.service-info p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
}

.benefit-icon {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.treatment-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.area-tag {
    background-color: var(--color-eggshell);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 2px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 120px;
}

.service-card-info {
    background-color: var(--color-eggshell);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.service-card-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--color-black);
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.info-value {
    color: var(--color-black);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-cta-card {
    background-color: var(--color-gold);
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.4s ease;
}

.service-cta-card.glow {
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.6), 0 0 60px rgba(201, 169, 98, 0.3);
}

.service-cta-card h3 {
    color: var(--color-black);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-cta-card p {
    color: var(--color-black);
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-cta-card .btn {
    width: 100%;
    margin-bottom: 1rem;
    background-color: var(--color-black);
    color: var(--color-white);
}

.service-cta-card .btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.cta-phone {
    color: var(--color-black);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Service FAQ */
.service-faq {
    padding: 5rem 0;
    background-color: var(--color-eggshell);
}

.service-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background-color: var(--color-white);
    padding: 2rem;
}

.faq-item h4 {
    color: var(--color-black);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Service Page Responsive */
@media (max-width: 992px) {
    .service-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-hero::after {
        display: none;
    }
    
    .service-hero-left {
        padding: 8rem 2rem 3rem;
        order: 1;
    }
    
    .service-hero-right {
        order: 2;
        height: 50vh;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: start;
    }
    
    .service-sidebar .price-card {
        grid-row: span 2;
    }
    
    .service-cta-card,
    .service-sidebar .service-card-info:not(.price-card) {
        height: fit-content;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero-left {
        padding: 7rem 1.5rem 2rem;
    }
    
    .service-hero-right {
        height: 300px;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-sidebar {
        grid-template-columns: 1fr;
    }
    
    .service-details {
        padding: 3rem 0;
    }
    
    .service-faq {
        padding: 3rem 0;
    }
}

/* ===== Floating Contact Button ===== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.floating-contact.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4), 0 0 30px rgba(201, 169, 98, 0.2);
    transition: all 0.3s ease;
    color: var(--color-black);
}

.floating-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(201, 169, 98, 0.5), 0 0 40px rgba(201, 169, 98, 0.3);
}

.floating-contact-btn svg {
    transition: transform 0.3s ease;
}

.floating-contact.expanded .floating-contact-btn svg {
    transform: rotate(135deg);
}

.floating-contact-bubbles {
    position: absolute;
    bottom: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.floating-contact.expanded .floating-contact-bubbles {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-bubble {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: var(--color-white);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--color-black);
    white-space: nowrap;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.floating-contact.expanded .floating-bubble {
    transform: translateX(0);
    opacity: 1;
}

.floating-contact.expanded .floating-bubble:nth-child(1) {
    transition-delay: 0.1s;
}

.floating-contact.expanded .floating-bubble:nth-child(2) {
    transition-delay: 0.15s;
}

.floating-contact.expanded .floating-bubble:nth-child(3) {
    transition-delay: 0.2s;
}

.floating-bubble:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.floating-bubble.whatsapp {
    color: #25D366;
}

.floating-bubble.whatsapp:hover {
    background-color: #25D366;
    color: var(--color-white);
}

.floating-bubble.phone {
    color: var(--color-gold);
}

.floating-bubble.phone:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.floating-bubble.email {
    color: var(--color-black);
}

.floating-bubble.email:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.floating-bubble svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.bubble-label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Mobile adjustments for floating contact */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        left: 20px;
    }
    
    .floating-contact-btn {
        width: 55px;
        height: 55px;
    }
    
    .floating-contact-bubbles {
        bottom: 65px;
    }
    
    .floating-bubble {
        padding: 10px 14px;
    }
    
    .bubble-label {
        font-size: 0.85rem;
    }
}
