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

:root {
    /* Color Palette - Medical/Care Theme */
    --primary-color: #02d233;
    --primary-dark: #00b900;
    --primary-light: #ffff;
    --secondary-color: #e8f8e6;
    --secondary-dark: #cceebf;
    --accent-color: #9fff5b;
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #fff4f4;
    --background: #ffffff;
    --surface: #FFFFFF;
    --error: #F44336;
    --shadow: rgba(255, 255, 255, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius - Liquid Design */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows - Material Design */
    --shadow-sm: 0 2px 4px var(--shadow);
    --shadow-md: 0 4px 8px var(--shadow);
    --shadow-lg: 0 8px 16px var(--shadow);
    --shadow-xl: 0 12px 24px var(--shadow-dark);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

/* ===== Accessibility: Skip Link & Focus Styles ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    z-index: 2000;
    border-radius: 0 0 var(--radius-sm) 0;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-dark);
    outline-offset: 2px;
}

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

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    padding: 0;
    margin: 0;
    line-height: 0;
    font-size: 0;
    background: white;
    min-height: 40vh;
    height: auto;
    display: block;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 60vh;
    display: block;
    object-fit: cover;
    object-position: center top;
    margin-top: 0;
    clip-path: none;
}

/* Mobile: show whole hero image without cropping */
@media (max-width: 900px) {
    .hero-section {
        min-height: auto;
        overflow: visible;
        padding-top: 0;
    }

    .hero-img {
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .hero-content {
        position: relative;
        top: 0;
        margin-top: 0.5rem;
    }
    
    /* Remove top padding on the section following the hero to eliminate small gap */
    .about-section {
        padding-top: 0;
        margin-top: 0;
    }
}



.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}



.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 550px;
    width: 90%;
    background: transparent;
    padding: 0;
    position: relative;
    top: -20%;
}

.hero-content .company-name {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-lg);
    position: relative;
    top: -50px;
}

.hero-content .motto {
    font-size: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}



.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-icon {
    font-size: 80px;
    color: var(--primary-color);
    background: var(--primary-light);
    padding: var(--spacing-md);
    border-radius: 50%;
}

.company-name {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    text-align: center;
}

.motto {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease 0.5s both;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--background);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
    max-width: fit-content;
}

.stars {
    font-size: 1.4rem;
    color: #FFC107;
    letter-spacing: 2px;
}

.rating-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.rating-count {
    font-weight: 400;
    color: var(--text-secondary);
}

.rating-link {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

.opening-hours {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 500;
    max-width: fit-content;
}

.opening-hours .material-icons {
    font-size: 20px;
}

/* Liquid Wave Effect */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: transparent;
    clip-path: ellipse(100% 100% at 50% 100%);
    display: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

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

.btn-secondary {
    background: var(--surface);
    color: var(--primary-color);
}

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

/* ===== Sections ===== */
section {
    padding: var(--spacing-xxl) var(--spacing-md);
    margin: 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: var(--spacing-md) auto 0;
    border-radius: var(--radius-sm);
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--background);
    padding: var(--spacing-xxl) var(--spacing-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ===== About Section ===== */
.about-section {
    background: var(--surface);
}

.about-story {
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, var(--background), var(--surface));
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-color);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.story-text h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.story-text p {
    color: #424242;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.story-highlight {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: var(--spacing-lg);
    padding-left: var(--spacing-md);
    border-left: 4px solid var(--primary-color);
}

.story-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.story-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.story-placeholder .material-icons {
    font-size: 100px;
}

.story-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: block;
}

.story-caption {
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.about-card {
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.card-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--background);
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    background: var(--background);
    margin-bottom: var(--spacing-xxl);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.carousel-container::-webkit-scrollbar {
    height: 8px;
}

.carousel-container::-webkit-scrollbar-track {
    background: var(--background);
}

.carousel-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.carousel-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.services-carousel {
    display: flex;
    gap: var(--spacing-lg);
    will-change: transform;
    padding: var(--spacing-lg) 0;
    min-width: min-content;
}

.services-carousel:hover {
    animation-play-state: paused;
}


.service-card {
    background: var(--surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin: 0;
}

.service-card h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.service-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin: var(--spacing-xs) 0;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--surface), var(--background));
}

.service-icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin: var(--spacing-md) 0;
    display: block;
}

/* ===== Booking Section ===== */
.booking-section {
    background: var(--surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin-top: var(--spacing-xl);
}

.booking-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.booking-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 2px solid #E0E0E0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

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

.submit-btn {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    width: 100%;
    justify-content: center;
}

/* ===== Services Divider ===== */
.services-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    margin: var(--spacing-xl) auto;
}

/* ===== Booking Button ===== */
.booking-button-container {
    text-align: center;
    margin-top: var(--spacing-xl);
    display: block;
}

.booking-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
    min-width: 250px;
    display: inline-block;
}

/* ===== Booking Modal Styles ===== */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: var(--spacing-lg);
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.booking-modal-content {
    background: var(--surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    margin: auto;
}

.modal-close-btn {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--primary-color);
}

.booking-modal-content h2 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.booking-modal-content > p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* ===== Service Modal Styles ===== */
.service-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.service-modal.active {
    display: flex;
}

.service-modal-content {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 100%;
    animation: slideUp 0.3s ease;
    position: relative;
}

.service-modal-close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.service-modal-close .material-icons {
    font-size: 28px;
}

.service-modal-body {
    padding: var(--spacing-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.service-modal-icon {
    font-size: 64px;
    color: var(--primary-color);
}

.service-modal-body h2 {
    margin: 0;
    font-size: 2rem;
    color: var(--text-primary);
}

.service-modal-body p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-details {
    text-align: left;
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
}

.service-details ul {
    margin: 0;
    padding-left: var(--spacing-lg);
    list-style: none;
}

.service-details li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.service-details li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-modal-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.service-modal-cta .btn {
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

/* ===== Modal Styles ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal-content {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl);
    border-bottom: 1px solid #E0E0E0;
    background: var(--background);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--text-primary);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-close .material-icons {
    font-size: 28px;
}

.modal-body {
    padding: var(--spacing-xl);
}

.modal-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
}

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

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

/* ===== Contact Section ===== */
.contact-section {
    background: var(--surface);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--background);
    border-radius: var(--radius-md);
    transition: none;
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
}

.contact-item .material-icons {
    font-size: 32px;
    color: var(--primary-color);
}

.contact-item h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 4px 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== Contact Buttons ===== */
.contact-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    min-height: 50px;
    white-space: nowrap;
}

.contact-btn .material-icons {
    font-size: 20px;
}

.call-btn {
    background: white;
    color: var(--text-primary);
}

.call-btn:hover {
    background: #e7e8e7;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.whatsapp-btn {
    background: var(--primary-color);
    color: white !important;
}

.whatsapp-btn:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn .material-icons,
.whatsapp-btn span {
    color: white !important;
}

.contact-number {
    color: var(--text-secondary);
    margin: 8px 0 0 0;
    font-size: 0.95rem;
}

.contact-number a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-number a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== Map ===== */
.map-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

.map-consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    height: 100%;
    padding: var(--spacing-lg);
    text-align: center;
    background: var(--secondary-color);
}

.map-button {
    align-self: flex-start;
}

/* ===== Stats Section ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-title::after {
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
    color: white;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--background);
}

.testimonials-subtitle {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.google-reviews-link {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--surface);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.google-reviews-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    font-size: 1.3rem;
    color: #FFC107;
    letter-spacing: 3px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.testimonial-author {
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid #E0E0E0;
}

.testimonial-author h4 {
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--surface);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--background);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--background), var(--surface));
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--primary-color);
    color: white;
}

.faq-question:hover {
    background: var(--primary-color);
    color: white;
}

.faq-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    font-weight: bold;
}

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

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    flex: 1;
}

.faq-item.active .faq-question h4 {
    color: white;
}

.faq-answer {
    display: none;
    padding: var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: var(--primary-dark);
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ===== Krankenkassen Section ===== */
.krankenkassen-section {
    background: var(--background);
}

.krankenkassen-content {
    max-width: 1000px;
    margin: 0 auto;
}

.krankenkassen-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-lg);
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
}

.krankenkassen-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.krankenkasse-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--surface);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.krankenkasse-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.krankenkasse-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.krankenkasse-item p {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.krankenkassen-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--surface);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--primary-color);
}

.info-box .material-icons {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.info-box h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.info-box p {
    color: var(--text-secondary);
}

.krankenkassen-cta {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    color: white;
}

.krankenkassen-cta a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.krankenkassen-cta a:hover {
    opacity: 0.8;
}

/* ===== Servicegebiet Section ===== */
.servicegebiet-section {
    background: var(--surface);
}

.servicegebiet-content {
    max-width: 900px;
    margin: 0 auto;
}

.servicegebiet-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.servicegebiet-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.servicegebiet-column ul {
    list-style: none;
    padding: 0;
    background: var(--background);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.servicegebiet-column li {
    padding: var(--spacing-xs) 0;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.servicegebiet-column li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

.servicegebiet-contact {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: var(--spacing-lg);
    background: var(--background);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
}

.servicegebiet-contact a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.servicegebiet-contact a:hover {
    color: var(--primary-dark);
}

/* ===== Impressum Section ===== */
.impressum-section {
    background: var(--background);
}

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

.impressum-content h3 {
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.impressum-content h4 {
    color: var(--text-primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.impressum-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* ===== Footer ===== */
.footer {
    background: var(--text-primary);
    color: var(--text-light);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 1;
}

/* ===== Top Navigation ===== */
.top-navigation {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-lg);
    height: 60px;
    overflow-x: auto;
    flex-wrap: wrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-link .material-icons {
    font-size: 20px;
}

/* ===== Top Navigation ===== */
.top-navigation {
    position: static;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 60px;
    margin: 0;
    margin-bottom: 0 !important;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: none;
    width: 100%;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    margin: 0;
}

.nav-contact {
    background: var(--primary-color);
    color: white !important;
    border-radius: 0;
    padding: var(--spacing-sm) var(--spacing-lg) !important;
    border-bottom: 3px solid var(--primary-color);
}

.nav-contact:hover {
    background: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-contact.active {
    background: var(--primary-color) !important;
    border-bottom-color: var(--primary-color) !important;
}

.nav-impressum {
    display: flex;
}

/* ===== Mobile Menu ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    padding: var(--spacing-sm);
    margin-left: var(--spacing-sm);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: var(--background);
}

.nav-link .material-icons {
    font-size: 20px;
}

/* ===== Floating Buttons Container ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* ===== Floating Logo ===== */
.floating-logo {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    padding: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== Sticky Navigation Buttons ===== */
.sticky-nav-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color) !important;
    color: white !important;
    border: none;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-dark) !important;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn .material-icons {
    font-size: 32px;
    color: white;
}

/* ===== Navigation Buttons ===== */
.nav-up-btn,
.nav-down-btn {
    display: none;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    font-size: inherit;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float .material-icons {
    font-size: 32px;
}

/* ===== Dot Navigation ===== */
.dot-navigation {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.dot-nav-item {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.dot-nav-item:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-xl);
    background: var(--primary-dark);
}

.dot-nav-item .material-icons {
    font-size: 24px;
}

.dot-nav-item::after {
    content: attr(title);
    position: absolute;
    right: 70px;
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

.dot-nav-item:hover::after {
    opacity: 1;
}

.dot-nav-item.active {
    background: var(--primary-dark);
    box-shadow: 0 0 0 4px var(--primary-light);
}

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

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
     * {
         -webkit-overflow-scrolling: touch;
     }

     body {
         padding-top: 0;
         overflow-x: hidden;
     }
    
    .top-navigation {
        height: 55px;
    }
    
    .nav-container {
        gap: 0;
        padding: 0 var(--spacing-xs);
    }
    
    .nav-link {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
        gap: 0;
        flex: 1;
        justify-content: center;
        height: 100%;
    }
    
     .nav-link span:last-child {
         display: none;
     }

     .nav-link {
         flex: 0 1 auto;
     }

     .nav-contact {
         display: none;
     }

     .nav-impressum {
         display: none !important;
     }

     .mobile-menu-btn {
         display: flex;
         align-items: center;
         justify-content: center;
     }

      .top-navigation {
          position: static;
          width: 100%;
          height: 55px;
          z-index: 1000;
      }

     .nav-container {
         flex-wrap: wrap;
     }

     .nav-container {
         flex-wrap: nowrap;
         overflow-x: auto;
         overflow-y: hidden;
     }

     .nav-link {
         display: flex;
         padding: var(--spacing-xs) var(--spacing-sm);
         font-size: 0.85rem;
         gap: 0;
         flex: 0 0 auto;
         justify-content: center;
         height: 100%;
     }

     .nav-link span:last-child {
         display: none;
     }

      .nav-contact {
          display: flex !important;
          background: var(--primary-color);
          color: white;
          padding: var(--spacing-xs) var(--spacing-sm);
          border-bottom: 3px solid var(--primary-color);
      }

       .nav-contact:hover {
           background: var(--primary-color);
           border-bottom-color: var(--primary-color);
       }

       .nav-contact.active {
           background: var(--primary-color) !important;
           border-bottom-color: var(--primary-color) !important;
       }

      .nav-impressum {
          display: flex !important;
      }

      .nav-container {
          gap: var(--spacing-sm);
      }
    
    .service-modal-content {
        max-width: 95%;
    }
    
    .service-modal-body {
        padding: var(--spacing-lg);
    }
    
    .service-modal-cta {
        flex-direction: column;
    }
    
    .service-modal-cta .btn {
        width: 100%;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-text h3 {
        font-size: 1.3rem;
    }
    
     .story-placeholder {
         width: 150px;
         height: 150px;
     }

     .story-photo {
         width: 150px !important;
         height: 150px !important;
     }
     
     .story-placeholder .material-icons {
         font-size: 70px;
     }
    
    .hero-content .company-name {
        font-size: 2.5rem;
    }
    
    .hero-content .motto {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
     .section-title {
         font-size: 1.8rem;
         padding: 0 var(--spacing-md);
     }

     .container {
         padding: 0 var(--spacing-md);
         overflow-x: hidden;
     }
    
    .hero-content {
        text-align: center;
        padding: var(--spacing-lg);
        width: 95%;
    }
    
    .logo-container {
        align-items: center;
    }
    
    .logo-image {
        max-width: 120px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
     .service-card {
         flex: 0 0 240px;
         min-width: 240px;
         max-width: 240px;
         padding: var(--spacing-md);
     }

     .service-icon {
         font-size: 40px;
     }

     .service-card h3 {
         font-size: 1rem;
     }

     .service-card p {
         font-size: 0.85rem;
     }

     .service-image {
         height: 100px !important;
     }
    
     .services-carousel {
         gap: var(--spacing-md);
         padding: 0 var(--spacing-md);
     }

     .carousel-container {
         overflow-x: auto;
         overflow-y: hidden;
     }

     .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-wrap: wrap;
    }
    
    .contact-btn {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
    
    .dot-nav-item {
        width: 45px;
        height: 45px;
    }
    
    .dot-nav-item .material-icons {
        font-size: 20px;
    }
    
    .dot-nav-item::after {
        right: 60px;
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-logo {
        width: 60px;
        height: 60px;
    }
    
    .nav-up-btn,
    .nav-down-btn {
        width: 45px;
        height: 45px;
    }
    
    .nav-up-btn .material-icons,
    .nav-down-btn .material-icons {
        font-size: 24px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float .material-icons {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .motto {
        font-size: 1.1rem;
    }
    
    .booking-section {
        padding: var(--spacing-md);
    }
    
    .modal-content {
        max-width: 95%;
        margin: var(--spacing-md);
    }
    
    .modal-header {
        padding: var(--spacing-md);
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: var(--spacing-md);
    }
    
     .form-row {
         grid-template-columns: 1fr;
     }

     .booking-modal-content {
         max-width: 95%;
         max-height: 95vh;
         padding: var(--spacing-md);
     }

     .booking-modal-content h2 {
         font-size: 1.3rem;
     }

     .booking-modal-content > p {
         font-size: 0.9rem;
     }

     .testimonials-grid {
         grid-template-columns: 1fr;
         gap: var(--spacing-md);
         padding: 0;
     }

     .testimonial-card {
         padding: var(--spacing-md);
         margin: 0;
     }

     .testimonial-text {
         font-size: 0.9rem;
         line-height: 1.4;
     }

     .testimonial-author h4 {
         font-size: 0.95rem;
     }

     .contact-info {
         flex-direction: column;
     }

     .contact-item {
         width: 100%;
     }

     .faq-content {
         max-width: 100%;
     }

     .faq-item {
         margin-bottom: var(--spacing-md);
     }

     .faq-question h4 {
         font-size: 1rem;
     }

     .faq-answer p {
         font-size: 0.9rem;
     }

     .about-content {
         grid-template-columns: 1fr;
         gap: var(--spacing-md);
     }

     .about-card {
         padding: var(--spacing-lg);
     }

     .hero-content {
        top: 0;
        width: 98%;
     }

     .hero-content .company-name {
         font-size: 1.8rem;
         top: -30px;
         word-break: break-word;
     }

     .hero-content .motto {
         font-size: 1.2rem;
     }

    .hero-section {
        min-height: auto;
        padding: 0;
    }

     .booking-btn {
         width: 100%;
         padding: var(--spacing-md) var(--spacing-sm);
     }

     .booking-button-container {
         padding: 0 var(--spacing-sm);
     }

     .map-container {
         height: 300px;
     }

     .impressum-content {
         padding: 0 var(--spacing-sm);
     }

     .impressum-content p {
         font-size: 0.9rem;
         line-height: 1.6;
     }
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-actions,
    .booking-section {
        display: none;
    }
    
    body {
        background: white;
    }
    
    section {
        page-break-inside: avoid;
    }
}
