/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

[data-theme="dark"] {
    --primary-color: #3b82f6;
    --secondary-color: #2563eb;
    --accent-color: #60a5fa;
    --text-dark: #f9fafb;
    --text-light: #d1d5db;
    --bg-light: #1f2937;
    --bg-white: #111827;
    --border-color: #374151;
    --success-color: #34d399;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.5);
}

[data-theme="dark"] body {
    background-color: var(--bg-white);
}

[data-theme="dark"] .hero {
    background: linear-gradient(rgba(75, 115, 235, 0.75), rgba(75, 115, 235, 0.75)),
        url('../images/home-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: #1f2937;
    border-color: #374151;
    color: #f9fafb;
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: #9ca3af;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    background: #1a2332;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] .contact-icon {
    filter: brightness(0) invert(1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 2000;
}

.navbar {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.lang-toggle {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    min-width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.875rem;
    margin-left: auto;
    flex-shrink: 0;
}

.lang-toggle:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.lang-text {
    user-select: none;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    color: var(--text-dark);
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-light);
    transform: rotate(20deg);
}

.theme-icon {
    transition: opacity 0.3s ease;
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-phone {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-phone::after {
    display: none;
}

.nav-phone:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(75, 115, 235, 0.75), rgba(75, 115, 235, 0.75)),
        url('../images/home-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .btn-secondary {
    background: transparent;
    color: #f9fafb;
    border-color: #4b5563;
}

[data-theme="dark"] .btn-secondary:hover {
    background: #1f2937;
    border-color: #3b82f6;
}

/* Welcome Section */
.welcome {
    padding: 5rem 0;
    background: var(--bg-light);
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.welcome-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.welcome-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.welcome-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.welcome-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.welcome-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.welcome-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.welcome-card a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.welcome-card a:hover {
    color: var(--secondary-color);
}

.welcome-card a:hover::after {
    width: 100%;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.service-card:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.service-code {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Angebote Section */
.angebote {
    padding: 5rem 0;
    background: linear-gradient(rgba(75, 115, 235, 0.75), rgba(75, 115, 235, 0.75)),
        url('../images/offers-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.angebote .section-title,
.angebote .section-subtitle {
    color: white;
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.angebot-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.angebot-card:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.angebot-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.angebot-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.angebot-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: var(--bg-light);
}

.reviews-carousel {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 2rem;
    padding: 0 60px;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    min-height: 350px;
    height: 350px;
    display: flex;
    align-items: center;
}

.review-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.review-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.review-card.prev {
    opacity: 0;
    transform: translateX(-100%);
}

.review-stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.review-loading {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    padding: 3rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.reviews .container {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(rgba(75, 115, 235, 0.75), rgba(75, 115, 235, 0.75)),
        url('../images/contact-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-method {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 4rem;
}

.contact-icon svg {
    width: 48px;
    height: 48px;
    color: var(--text-dark);
}

.contact-method h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-phone {
    display: block;
    font-size: 1.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.contact-hours {
    color: var(--text-light);
    margin-top: 1rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.8);
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: none;
}

.contact-form .btn-primary {
    width: 100%;
    background: var(--primary-color);
    color: white;
}

.contact-form .btn-primary:hover {
    background: var(--secondary-color);
}

/* Location Section */
.location {
    padding: 5rem 0;
    background: var(--bg-white);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
}

.location-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.location-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.location-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.location-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.location-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.location-item a:hover {
    color: var(--secondary-color);
}

.location-item a:hover::after {
    width: 100%;
}

.location-hours {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer */
.footer {
    background: #1e3a5f;
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(1.2);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

.modal.active {
    display: block;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.closing {
    display: block;
    background-color: rgba(0, 0, 0, 0);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 3% auto;
    padding: 0;
    border-radius: 1rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
    pointer-events: none;
}

.modal.active .modal-scroll-indicator {
    opacity: 1;
}

.modal-content.scrolled .modal-scroll-indicator {
    opacity: 0;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal.closing .modal-content {
    transform: translateY(-50px);
    opacity: 0;
}

.modal-close {
    color: var(--text-light);
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--text-dark);
}

.modal-body {
    padding: 3rem;
}

.modal-body h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.modal-body h2 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.modal-body h3 {
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.modal-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.modal-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.modal-body li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.modal-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.modal-body a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        transform: none;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
        margin-right: 0.5rem;
    }

    .hero,
    .angebote,
    .contact,
    [data-theme="dark"] .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.75rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .welcome-card h3 {
        font-size: 1.3rem;
    }

    .welcome-card p {
        font-size: 0.95rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .reviews-carousel {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .review-card {
        padding: 2rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .welcome,
    .services,
    .reviews,
    .contact,
    .location {
        padding: 3rem 0;
    }

    .welcome-card h3,
    .service-card h3 {
        font-size: 1rem;
    }

    .welcome-card p,
    .service-card p {
        font-size: 0.85rem;
    }

    .location-item h4 {
        font-size: 1rem;
    }

    .location-item p {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .review-card {
        padding: 1.5rem;
        min-height: 280px;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* Site Notice Banner */
.site-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

[data-theme="dark"] .site-notice {
    background: #111827;
    border-top-color: #3b82f6;
}

[data-theme="dark"] .notice-text h3 {
    color: #f9fafb;
}

[data-theme="dark"] .notice-text p {
    color: #d1d5db;
}

[data-theme="dark"] .notice-actions .btn-secondary {
    background: transparent;
    color: #f9fafb;
    border-color: #4b5563;
}

[data-theme="dark"] .notice-actions .btn-secondary:hover {
    background: #1f2937;
    border-color: #3b82f6;
}

.site-notice.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.notice-text h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
}

.notice-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.notice-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.notice-actions .btn {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.notice-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.notice-actions .btn-primary:hover {
    background: var(--secondary-color);
}

.notice-actions .btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.notice-actions .btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .site-notice {
        padding: 1rem;
    }

    .notice-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .notice-actions {
        flex-direction: column;
        width: 100%;
    }

    .notice-actions .btn {
        width: 100%;
    }

    .notice-text h3 {
        font-size: 1.1rem;
    }

    .notice-text p {
        font-size: 0.9rem;
    }
}