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

body {
    padding-top: 180px; /* Space for fixed header */
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Bildergalerie/f18.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.4;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    z-index: -1;
    pointer-events: none;
}

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

/* Certification Images */
.certifications {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.vod-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.membership-certificate {
    height: 50px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.membership-certificate:hover {
    transform: scale(1.05);
}

.certification-item span {
    font-size: 14px;
    color: #333;
    flex: 1;
}

/* Children Symbol in Service Card */
.service-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.children-symbol {
    height: 50px;
    width: 50px;
    object-fit: contain;
    font-size: 2rem;
}

/* Header VOD Logos */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-vod-logo {
    height: 38px;
    width: 38px;
    object-fit: contain;
}

.header-vod-logo.left {
    margin-right: auto;
}

.header-vod-logo.right {
    margin-left: auto;
}

/* Footer VOD Logo */
.footer-vod-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-top: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-section a:hover .footer-vod-logo {
    transform: scale(1.05);
    opacity: 0.8;
}

.footer-section:last-child {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Qualification Membership */
.membership-section {
    margin-top: 20px;
    text-align: center;
}

.qualification-membership {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.qualification-membership:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Important Notice */
.important-notice {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e) !important;
    color: white !important;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.notice-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notice-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: white !important;
}

.notice-content strong {
    font-weight: 700;
    color: white !important;
}

/* Booking Info Notice */
.booking-info-notice {
    background: #ffebee !important;
    border: 1px solid #f44336 !important;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.booking-info-notice i {
    color: #f44336 !important;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.booking-info-notice p {
    margin: 0;
    color: #d32f2f !important;
    font-size: 14px;
    line-height: 1.4;
}

.booking-info-notice strong {
    font-weight: 600;
    color: #d32f2f !important;
}

/* Treatment Preparation */
.treatment-preparation {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    border-left: 4px solid #00b8e0;
}

.treatment-preparation h4 {
    margin-bottom: 10px;
    color: #00b8e0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.treatment-preparation p {
    margin: 0;
    color: #495057;
    line-height: 1.5;
}

/* Treatment Sections */
.treatment-section {
    margin-bottom: 40px;
}

.treatment-section h3 {
    color: #00b8e0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

/* Notices Grid */
.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.notice-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-top: 4px solid #00b8e0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.notice-card.first-visit {
    border-top-color: #28a745;
}

.notice-card.preparation {
    border-top-color: #ffc107;
}

.notice-card.legal {
    border-top-color: #dc3545;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.notice-header i {
    font-size: 1.2rem;
    color: #00b8e0;
}

.notice-card.first-visit .notice-header i {
    color: #28a745;
}

.notice-card.preparation .notice-header i {
    color: #ffc107;
}

.notice-card.legal .notice-header i {
    color: #dc3545;
}

.notice-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.notice-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
    position: relative;
    padding-left: 25px;
}

.notice-card li:last-child {
    border-bottom: none;
}

.notice-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.notice-card p {
    margin: 0;
    line-height: 1.5;
    color: #666;
}

/* Contact Section Redesign */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-essential {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-primary {
    background: linear-gradient(135deg, #00b8e0, #0099cc);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 184, 224, 0.2);
}

.contact-main-info {
    margin-bottom: 25px;
}

.address-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.address-section i {
    font-size: 1.5rem;
    color: white;
    margin-top: 5px;
}

.address-section h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    color: white;
}

.address-section p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-method .label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2px;
}

.contact-method .value {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}

.appointment-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.appointment-info i {
    font-size: 1.3rem;
}

.appointment-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.appointment-info p {
    margin: 0;
    opacity: 0.9;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.info-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #00b8e0;
}

.info-card i {
    font-size: 1.2rem;
    color: #00b8e0;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-card strong {
    display: block;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.info-card span {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

/* Enhanced Welcome Message */
.hero-welcome-message.enhanced {
    margin: 30px auto 0 auto;
    max-width: 450px;
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(0, 184, 224, 0.08);
    opacity: 0;
    animation: subtleFadeIn 2s ease-out 1.5s forwards;
}

.hero-welcome-message.enhanced .address-highlight {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.5;
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-welcome-message.enhanced .address-highlight strong {
    color: #000000;
    font-weight: 800;
}

/* Subtle Animation */
@keyframes subtleFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1003;
    background: transparent;
    border: none;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #00b8e0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Insurance Link Styling */
.insurance-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #00b8e0, #0099cc);
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 184, 224, 0.2);
}

.insurance-link:hover {
    background: linear-gradient(135deg, #0099cc, #007aa3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 224, 0.3);
}

.insurance-link i {
    font-size: 0.8rem;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .navbar .nav-container {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 130px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 3px solid #00b8e0;
        z-index: 1002;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem;
        margin: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(0, 184, 224, 0.1);
        transform: translateY(-2px);
    }
    
    .nav-menu .booking-link {
        background: linear-gradient(135deg, #00b8e0, #0099cc);
        color: white !important;
        margin: 1rem;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0, 184, 224, 0.3);
    }
    
    .nav-menu .booking-link:hover {
        background: linear-gradient(135deg, #0099cc, #007aa3);
        box-shadow: 0 6px 20px rgba(0, 184, 224, 0.4);
    }

    /* Other mobile styles */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        gap: 12px;
    }
    
    .contact-method {
        padding: 12px;
    }
    
    .hero-welcome-message.enhanced .address-highlight {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-welcome-message.enhanced {
        margin-top: 25px;
        padding: 12px 15px;
        max-width: 95%;
    }
}

/* Enhanced Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) rotateY(10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px) rotateY(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotateY(180deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(120px) scale(0.9);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Animation Classes */
.animate-zoom {
    opacity: 0;
    transform: scale(0.5) rotate(5deg);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-zoom.animated {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(100px) rotateX(15deg);
    transition: all 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.animate-slide-up.animated {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.animate-children > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-children.animated > * {
    opacity: 1;
    transform: translateY(0);
}

.animate-children.animated > *:nth-child(1) { transition-delay: 0.1s; }
.animate-children.animated > *:nth-child(2) { transition-delay: 0.2s; }
.animate-children.animated > *:nth-child(3) { transition-delay: 0.3s; }
.animate-children.animated > *:nth-child(4) { transition-delay: 0.4s; }
.animate-children.animated > *:nth-child(5) { transition-delay: 0.5s; }
.animate-children.animated > *:nth-child(6) { transition-delay: 0.6s; }


/* Google Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 184, 224, 0.3), transparent);
}

.google-reviews-widget {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-logo {
    width: 80px;
    height: auto;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    font-size: 24px;
    line-height: 1;
}

.rating-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.rating-count {
    font-size: 14px;
    color: #64748b;
}

.write-review-btn {
    background: #4285f4;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.write-review-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

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

.review-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(0, 184, 224, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00b8e0, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 184, 224, 0.1);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b8e0, #0099cc);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.reviewer-name {
    font-weight: 600;
    color: #2c3e50;
}

.review-stars {
    font-size: 16px;
}

.review-text {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    color: #94a3b8;
    font-size: 14px;
    margin-top: auto;
}

.reviews-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 184, 224, 0.1);
}

.all-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4285f4;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid transparent;
}

.all-reviews-link:hover {
    background: rgba(66, 133, 244, 0.1);
    border-color: #4285f4;
    transform: translateY(-1px);
}

/* Blog Styles */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #00b8e0 0%, #0099cc 100%);
    color: white;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.blog-categories {
    padding: 40px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover {
    background: #00b8e0;
    color: white;
    border-color: #00b8e0;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #00b8e0;
    color: white;
    border-color: #00b8e0;
}

.blog-posts {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 184, 224, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 184, 224, 0.15);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 184, 224, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.4;
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #94a3b8;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00b8e0;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #0099cc;
    transform: translateX(5px);
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: #00b8e0;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background: #0099cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 184, 224, 0.3);
}

.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.form-group {
    display: flex;
    gap: 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    outline: none;
}

.form-group button {
    background: #00b8e0;
    color: white;
    border: none;
    padding: 15px 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background: #0099cc;
}

.privacy-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.privacy-note a {
    color: #00b8e0;
    text-decoration: none;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-hero-subtitle {
        font-size: 1rem;
    }
    
    .categories-grid {
        gap: 10px;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .form-group button {
        border-radius: 0 0 10px 10px;
    }
    
    .form-group input {
        border-radius: 10px 10px 0 0;
    }
}

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


/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        text-align: center;
    }
    
    .google-reviews-widget {
        padding: 25px 20px;
        margin: 0 15px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
        width: 140px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    overflow-x: hidden;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #34495e;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-accent {
    color: #00b8e0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: background 0.3s ease;
    transform: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
}

.header-top {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0 0.5rem;
}

.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.navbar .nav-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-top .nav-container {
    justify-content: center;
}

.navbar .nav-container {
    justify-content: center;
}

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

.logo-img {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
}

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

.nav-logo h1 {
    color: #00b8e0;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.nav-logo h2 {
    color: #00b8e0;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 184, 224, 0.15);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.nav-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.nav-link:last-child {
    border-right: none;
}

.nav-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #00b8e0 0%, #0099cc 100%);
    font-weight: 600;
}

.nav-link:hover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00b8e0, #0099cc);
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #00b8e0 0%, #0099cc 100%);
    font-weight: 600;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00b8e0, #0099cc);
}

.nav-link.booking-link {
    background: linear-gradient(135deg, #00b8e0 0%, #0099cc 100%);
    color: white;
    font-weight: 700;
    position: relative;
}

.nav-link.booking-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.nav-link.booking-link:hover {
    background: linear-gradient(135deg, #0099cc 0%, #007aa3 100%);
    font-weight: 700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0099cc;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: #0099cc;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.cta-button:hover {
    background: #9eb0a5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}


/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #00b8e0;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #0099cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 224, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00b8e0;
    border: 2px solid #0099cc;
}

.btn-secondary:hover {
    background: #0099cc;
    color: white;
    transform: translateY(-2px);
}

.hero-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0099cc, #9eb0a5);
}

.hero-card i {
    font-size: 3rem;
    color: #00b8e0;
    margin-bottom: 1.5rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.hero-card p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Profile Image Styles */
.profile-image-container {
    margin-bottom: 2rem;
}

.profile-image {
    width: 400px;
    height: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.profile-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

.about-practice-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.practice-reception-image {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

.practice-gallery {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.gallery-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

.practice-reception-image,
.gallery-image {
    cursor: pointer;
}

/* Image Popup Styles */
.image-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.popup-content {
    position: relative;
    margin: 5% auto;
    max-width: 80%;
    max-height: 80%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.popup-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.popup-caption {
    background: white;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    color: #333;
    border-top: 1px solid #eee;
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Popup Styles */
@media (max-width: 768px) {
    .popup-content {
        margin: 10% auto;
        max-width: 95%;
        max-height: 85%;
    }
    
    .popup-image {
        max-height: 60vh;
    }
    
    .popup-caption {
        padding: 15px;
        font-size: 14px;
    }
    
    .popup-close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.qualifications-list {
    list-style: none;
    margin-bottom: 2rem;
}

.qualifications-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1.1rem;
}

.qualifications-list i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #0099cc;
}

.stat-card i {
    font-size: 2.5rem;
    color: #00b8e0;
    margin-bottom: 1rem;
}

.stat-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.stat-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-image {
    text-align: center;
    margin: 3rem 0 4rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.osteopathy-bg-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.osteopathy-bg-image:hover {
    transform: scale(1.02);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.service-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-bg {
    opacity: 0.15;
}

.service-card > *:not(.service-bg-image) {
    position: relative;
    z-index: 2;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0099cc, #9eb0a5);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0099cc, #9eb0a5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #64748b;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '•';
    color: #00b8e0;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Treatments Section */
.treatments {
    padding: 80px 0;
    background: #ffffff;
}

.treatments-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.treatment-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #0099cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
}

/* Treatment Description Styles */
.treatment-description {
    margin-bottom: 2rem;
}

.treatment-description p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.important-info {
    background: linear-gradient(135deg, #ffffff 0%, #E8E1D5 100%);
    border: 1px solid #0099cc;
    border-left: 4px solid #0099cc;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(180, 195, 186, 0.15);
    position: relative;
    overflow: hidden;
}

.important-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0099cc, #9eb0a5);
    opacity: 0.1;
    border-radius: 0 12px 0 100%;
}

.important-info h4 {
    color: #0099cc;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.important-info h4 i {
    color: #0099cc;
    font-size: 1.4rem;
}

.important-info p {
    color: #8a9690;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.legal-notice {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #00b8e0;
    border-left: 4px solid #00b8e0;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(196, 164, 132, 0.15);
    position: relative;
    overflow: hidden;
}

.legal-notice::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00b8e0, #B89968);
    opacity: 0.1;
    border-radius: 0 12px 0 100%;
}

.legal-notice p {
    color: #8B7355;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.cost-description {
    margin-bottom: 2rem;
}

.cost-description p {
    color: #64748b;
    font-style: italic;
    text-align: center;
}

.insurance-info {
    margin-top: 3rem;
}

.insurance-info h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.insurance-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.pricing-cards {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.pricing-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #0099cc, #9eb0a5);
    color: white;
    transform: scale(1.05);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card h4 {
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00b8e0;
}

.pricing-card.featured .price {
    color: white;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

/* Quick Contact Bar */
.quick-contact-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-contact-item.phone {
    background: linear-gradient(135deg, #00b8e0 0%, #0099cc 100%);
    color: white;
}

.quick-contact-item.phone:hover {
    background: linear-gradient(135deg, #0099cc 0%, #007aa3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 184, 224, 0.4);
}

.quick-contact-item.email {
    background: linear-gradient(135deg, #6c63ff 0%, #5848cc 100%);
    color: white;
}

.quick-contact-item.email:hover {
    background: linear-gradient(135deg, #5848cc 0%, #453999 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 99, 255, 0.4);
}


.quick-contact-item i {
    font-size: 1.2rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 184, 224, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card.primary {
    border-left: 4px solid #00b8e0;
}

.contact-card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card-header i {
    font-size: 1.5rem;
    color: #00b8e0;
}

.contact-card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-card-content {
    padding: 2rem;
}

.address {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.address-highlight {
    background: linear-gradient(135deg, #00b8e0 0%, #0099cc 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-style: italic;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 184, 224, 0.3);
    animation: highlight-pulse 3s ease-in-out infinite;
    text-align: center;
    line-height: 1.4;
}

.hero-welcome-message {
    margin: 1.5rem 0;
    text-align: center;
}

@keyframes highlight-pulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(0, 184, 224, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 20px rgba(0, 184, 224, 0.5);
        transform: scale(1.02);
    }
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #64748b;
}

.detail-item i {
    color: #00b8e0;
    width: 16px;
}

.opening-hours {
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.weekend {
    color: #64748b;
}

.day {
    font-weight: 500;
}

.time {
    color: #00b8e0;
    font-weight: 600;
}

.appointment-note {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #0369a1;
    margin: 0;
}

.appointment-note i {
    color: #0284c7;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.transport-item i {
    font-size: 1.3rem;
    color: #00b8e0;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.transport-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.transport-item p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-card i {
    font-size: 2rem;
    color: #00b8e0;
    margin-bottom: 1rem;
}

.info-card h4 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.info-card a {
    color: #00b8e0;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Map Container */
.contact-map-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 184, 224, 0.1);
}

.map-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.map-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-header h3 i {
    color: #00b8e0;
}

.map-header p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.contact-map {
    position: relative;
    padding: 1rem;
}

.contact-map iframe {
    width: 100%;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-map:hover iframe {
    filter: none;
}

.map-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 100;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 184, 224, 0.9);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.map-link:hover {
    background: rgba(0, 153, 204, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 184, 224, 0.3);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #0099cc, #9eb0a5);
    color: white;
}

.booking-calendar {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin: 3rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.booking-calendar iframe {
    border-radius: 8px;
    width: 100%;
    min-height: 800px;
    border: none;
}

.booking-alternatives {
    margin-top: 3rem;
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.booking-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.booking-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.booking-method {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.booking-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.booking-method i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* QR Code Styles */
.qr-code-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.qr-code-container:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.qr-code-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qr-code-container p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    margin: 0 auto;
}

.qr-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.qr-placeholder p {
    text-align: center;
    font-size: 0.9rem;
}

/* Downloads Section */
.downloads {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.download-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.download-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.download-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.download-info {
    flex: 1;
}

.download-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.download-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.download-details {
    display: flex;
    gap: 1rem;
}

.file-type, .file-size {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.download-action {
    flex-shrink: 0;
}

.download-btn {
    background: linear-gradient(135deg, #00b8e0 0%, #0099cc 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 184, 224, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 224, 0.4);
    text-decoration: none;
    color: white;
}

.downloads-note {
    margin-top: 3rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    padding: 2rem;
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.note-content i {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.note-content p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .download-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .note-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 1.5rem 0 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 0.8fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.75rem;
    color: #00b8e0;
    font-size: 1rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.4;
    font-size: 0.9rem;
}

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

.footer-section li {
    margin-bottom: 0.25rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #00b8e0;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 0.75rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-container {
        padding: 0 30px;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .floating-buttons {
        bottom: 80px;
        right: 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Blog specific for tablet */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .categories-grid {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-container,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-practice-image {
        order: 2;
    }
    
    .about-stats {
        order: 3;
    }
    
    .practice-reception-image {
        width: 250px;
        height: 300px;
    }
    
    .treatments-content,
    .contact-content,
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-image {
        width: 320px;
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .booking-calendar {
        padding: 15px;
        margin: 2rem 0;
    }
    
    .booking-calendar iframe {
        min-height: 700px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-logo h1,
    .nav-logo h2 {
        font-size: 1.8rem;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        padding: 0.8rem 0 0.5rem;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    /* Mobile Hero Section */
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    /* Mobile floating buttons */
    .floating-buttons {
        bottom: 80px;
        right: 15px;
        gap: 8px;
    }
    
    .floating-booking-btn,
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .floating-booking-btn:hover,
        width: 50px;
        border-radius: 50%;
    }
    
    .floating-booking-btn .btn-text,
        display: none;
    }
    
    /* Contact Mobile Styles */
    .quick-contact-bar {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .quick-contact-item {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card-header {
        padding: 1.25rem 1.5rem;
    }
    
    .contact-card-content {
        padding: 1.5rem;
    }
    
    .transport-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .transport-item i {
        margin-top: 0;
    }
    
    .map-header {
        padding: 1.25rem 1.5rem;
    }
    
    .map-overlay {
        position: static;
        padding: 0 1rem 1rem 1rem;
        text-align: center;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    .booking-info-box {
        padding: 1.5rem;
        margin: 1.5rem 0 2rem 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contract-download {
        grid-column: 1;
    }
    
    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .info-header h3 {
        font-size: 1.2rem;
    }
    
    .nav-logo {
        gap: 0.5rem;
    }
    
    /* Touch-friendly navigation */
    .nav-link {
        padding: 1rem 0.5rem;
        font-size: 1.1rem;
        display: block;
        min-height: 44px;
    }
    
    .cta-button {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        margin: 1rem 0;
    }
    
    /* Better text readability on mobile */
    h1, h2, h3 {
        line-height: 1.3;
    }
    
    p, li {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .btn, .btn-primary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 44px;
    }
    
    /* Better spacing for touch */
    .impressum-section {
        padding: 160px 0 60px;
    }
    
    .impressum-block {
        margin-bottom: 2rem;
    }
    
    .impressum-block h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile image styling */
    .services-image {
        margin: 2rem 0 3rem 0;
        border-radius: 15px;
    }
    
    .osteopathy-bg-image {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .nav-logo h1,
    .nav-logo h2 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .logo-img {
        height: 90px;
    }
    
    .nav-logo {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        padding: 0;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 184, 224, 0.15);
        margin: 0 15px;
        overflow: hidden;
    }
    
    .nav-link {
        border-right: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: none;
        padding: 0.8rem 0.8rem;
        min-height: 50px;
        font-size: 0.85rem;
        flex: 1;
    }
    
    .nav-link:last-child {
        border-right: none;
    }
    
    .nav-link:hover::before,
    .nav-link.active::before {
        height: 3px;
        width: 100%;
        left: 0;
        bottom: 0;
        top: auto;
    }
    
    /* Mobile Blog Styles */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .category-btn {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}



    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 2.2rem;
        font-weight: 800;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .about-stats {
        margin-top: 2rem;
    }

    .pricing-cards {
        margin-top: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .insurance-cards {
        flex-direction: column;
        align-items: center;
    }

    .booking-text h2 {
        font-size: 2rem;
    }
    
    .booking-calendar {
        padding: 10px;
        margin: 1.5rem 0;
    }
    
    .booking-calendar iframe {
        min-height: 600px;
    }
    
    .booking-methods {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .qr-code-container {
        max-width: 200px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero {
        padding: 100px 0 60px;
    }

    .section-title {
        font-size: 1.9rem;
        font-weight: 800;
    }

    .btn {
        padding: 0.8rem 1.5rem;
    }

    .service-card,
    .hero-card {
        padding: 1.5rem;
    }

    .step {
        padding: 1rem;
    }

    .info-card {
        padding: 1.5rem;
    }
    
    .profile-image {
        width: 280px;
        height: 350px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Extra Small Mobile (iPhone SE, etc.) */
@media (max-width: 480px) {
    .nav-logo h1,
    .nav-logo h2 {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .header-top {
        padding: 0.6rem 0 0.4rem;
    }
    
    .impressum-block h3 {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        top: 120px;
    }
    
    .impressum-section {
        padding: 140px 0 50px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    padding: 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.cookie-header h3 {
    color: #00b8e0;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.cookie-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.cookie-categories {
    margin-bottom: 2rem;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category-header h4 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.toggle-label {
    color: #00b8e0;
    font-weight: 500;
    font-size: 0.9rem;
}

.cookie-category-description p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #64748b;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #00b8e0;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    flex: 1;
    min-width: 150px;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-links {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-links a {
    color: #00b8e0;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-links a:hover {
    text-decoration: underline;
}

/* Floating Booking Button */
/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-booking-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00b8e0 0%, #0099cc 100%);
    color: white;
    border: none;
    border-radius: 25px 0 0 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    z-index: 1001;
    box-shadow: -4px 0 20px rgba(0, 184, 224, 0.4);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    min-height: 60px;
    text-decoration: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

.floating-booking-btn:hover {
    transform: translateY(-50%) translateX(-5px);
    background: linear-gradient(135deg, #0099cc 0%, #007aa3 100%);
    box-shadow: -8px 0 30px rgba(0, 184, 224, 0.6);
}

.floating-booking-btn .btn-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.floating-booking-btn i {
    font-size: 1.3rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Floating Cookie Settings Button */
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #00b8e0;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 184, 224, 0.3);
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.cookie-settings-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 184, 224, 0.4);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: -4px 0 20px rgba(0, 184, 224, 0.4);
    }
    50% {
        box-shadow: -4px 0 25px rgba(0, 184, 224, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* Mobile Floating Button */
@media (max-width: 768px) {
    .floating-booking-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        min-height: 50px;
        gap: 0.5rem;
    }
    
    .floating-booking-btn .btn-text {
        font-size: 0.9rem;
    }
    
    .floating-booking-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .floating-booking-btn {
        font-size: 0.8rem;
        padding: 0.7rem 1rem;
        min-height: 45px;
        right: 0;
        border-radius: 20px 0 0 20px;
    }
    
    .floating-booking-btn .btn-text {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .floating-booking-btn i {
        font-size: 1rem;
    }
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        padding: 1.5rem;
    }
    
    .cookie-header h3 {
        font-size: 1.3rem;
    }
    
    .cookie-category {
        padding: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions .btn {
        min-width: auto;
        width: 100%;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Booking Popup Styles */
.booking-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.booking-popup-container {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.booking-popup-header {
    background: linear-gradient(135deg, #00b8e0 0%, #0099cc 100%);
    color: white;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.booking-popup-header h3 {
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.popup-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.booking-popup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.booking-calendar-popup {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.booking-calendar-popup iframe {
    flex: 1;
    border: none;
    width: 100%;
}

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

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Popup Styles */
@media (max-width: 768px) {
    .booking-popup-overlay {
        padding: 1rem;
    }
    
    .booking-popup-container {
        height: 90vh;
        max-width: none;
        border-radius: 15px;
    }
    
    .booking-popup-header {
        padding: 1rem;
        border-radius: 15px 15px 0 0;
    }
    
    .booking-popup-header h3 {
        font-size: 1.2rem;
    }
    
    .popup-close-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .booking-popup-overlay {
        padding: 0.5rem;
    }
    
    .booking-popup-container {
        height: 95vh;
        border-radius: 12px;
    }
    
    .booking-popup-header {
        padding: 0.8rem;
        border-radius: 12px 12px 0 0;
    }
    
    .booking-popup-header h3 {
        font-size: 1.1rem;
    }
}

/* Scroll Animations */
/* Impressum Section */
.impressum-section {
    padding: 180px 0 80px;
    background: #ffffff;
    min-height: 100vh;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.impressum-content h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
}

.impressum-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.impressum-block h3 {
    color: #00b8e0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 0.5rem;
}

.impressum-block p {
    color: #64748b;
    margin-bottom: 1rem;
}

.impressum-block p:last-child {
    margin-bottom: 0;
}

.impressum-block a {
    color: #00b8e0;
    text-decoration: none;
    word-break: break-all;
}

.impressum-block a:hover {
    text-decoration: underline;
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Booking Information Box */
.booking-info-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2rem 0 3rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.info-header i {
    font-size: 2rem;
    color: #0099cc;
    animation: pulse 2s infinite;
}

.info-header h3 {
    color: #00b8e0;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.info-content {
    color: #333;
    line-height: 1.6;
}

.move-notice {
    background: linear-gradient(135deg, #0099cc, #9eb0a5);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(180, 195, 186, 0.25);
}

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

.info-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0099cc;
}

.info-item i {
    font-size: 1.5rem;
    color: #0099cc;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: #0099cc;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: #8a9690;
    line-height: 1.6;
}

.info-item ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.2rem;
    color: #8a9690;
    line-height: 1.5;
}

.info-item li {
    margin-bottom: 0.25rem;
}

/* Contract Download Styles */
.contract-download {
    grid-column: 1 / -1; /* Span full width */
    background: linear-gradient(135deg, #0099cc, #9eb0a5);
    color: white;
    border-left: 4px solid #8a9690;
}

.contract-download h4 {
    color: white;
}

.contract-download p {
    color: rgba(255, 255, 255, 0.9);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download-btn i {
    font-size: 1.2rem;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}