/* Reset und Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #282612;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 251, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    color: #6B8E5F;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #282612;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6B8E5F;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6B8E5F;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #282612;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(rgba(107, 142, 95, 0.35), rgba(217, 121, 67, 0.3)),
                url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2043&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #D97943;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(217, 121, 67, 0.3);
}

.cta-button:hover {
    background: #C96A38;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 121, 67, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #282612;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6B8E5F, #D97943);
    margin: 0 auto;
    border-radius: 2px;
}

.review-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: #6B8E5F;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 142, 95, 0.3);
}

.review-button:hover {
    background: #5a7650;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 142, 95, 0.4);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #FFFBF0;
}

.about .section-header {
    margin-bottom: 0rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text {
    text-align: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #282612;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 2rem;
}

.highlight h4 {
    color: #282612;
    margin-bottom: 0.5rem;
}

.highlight p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.qualifications-list {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem auto 0;
    max-width: 500px;
}

.qualifications-list h4 {
    color: #6B8E5F;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.qualifications-list ul {
    list-style: none;
}

.qualifications-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #666;
    text-align: left;
}

.qualifications-list li::before {
    content: '🐾';
    position: absolute;
    left: 0;
}

/* Customers Section */
.customers {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.customers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(rgba(255, 251, 240, 0.05), rgba(217, 121, 67, 0.08)),
                url('https://images.unsplash.com/photo-1573865526739-10659fec78a5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2015&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.customers-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px; /* Platz für die Buttons */
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.customers-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    width: fit-content;
    padding-right: 2rem; /* Stellt sicher, dass die letzte Karte vollständig sichtbar ist */
}

.customer-card {
    flex: 0 0 auto;
    width: calc((100vw - 320px) / 3); /* Mehr Platz für Padding und Buttons */
    max-width: 350px;
    min-width: 280px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.customer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(107, 142, 95, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #6B8E5F;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover:not(:disabled) {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border-color: #6B8E5F;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn:focus {
    outline: 2px solid #6B8E5F;
    outline-offset: 2px;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(107, 142, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #6B8E5F;
    transform: scale(1.2);
}

.carousel-dot:focus {
    outline: 2px solid #6B8E5F;
    outline-offset: 2px;
}

/* Touch-friendly dots for mobile */
@media (max-width: 768px) {
    .carousel-dot {
        width: 16px;
        height: 16px;
    }
}

/* Smooth touch scrolling */
.customers-grid {
    -webkit-overflow-scrolling: touch;
}

/* Prevent text selection during swipe */
.customers-carousel {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #282612;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
}

.customer-tag {
    display: inline-block;
    background: #6B8E5F;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* My Cats Section */
.my-cats {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF5E6 100%);
}

.my-cats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    justify-content: center;
}

.my-cats-grid .customer-card {
    flex: 0 0 300px;
    max-width: 300px;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #FFFBF0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-info strong {
    color: #282612;
    font-size: 1.1rem;
}

.review-time {
    color: #999;
    font-size: 0.85rem;
}

.stars {
    color: #D97943;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.review-text-container {
    margin-bottom: 1.5rem;
}

.show-more-btn {
    background: none;
    border: none;
    color: #D97943;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
    font-family: inherit;
}

.show-more-btn:hover {
    color: #b86435;
    text-decoration: underline;
}

.google-maps-link {
    display: inline-block;
    color: #D97943;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.google-maps-link:hover {
    color: #b86435;
    text-decoration: underline;
}

.reviewer strong {
    color: #282612;
    font-size: 1.1rem;
}

.reviewer span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.3rem;
}

/* Prices Section */
.prices {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.prices-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(rgba(107, 142, 95, 0.05), rgba(255, 251, 240, 0.08)),
                url('https://images.unsplash.com/photo-1596854407944-bf87f6fdd49e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2080&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.price-main {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    transform: scale(1.0);
    border: 3px solid #6B8E5F;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6B8E5F;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-header h3 {
    font-size: 1.5rem;
    color: #282612;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 0.5rem;
}

.price-duration {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.currency {
    font-size: 1.5rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #282612;
}

.period {
    font-size: 1.2rem;
    color: #666;
}

.price-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2rem;
    color: #666;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.price-note {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.price-note p {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
}

.price-extras {
    background: transparent;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.price-extras h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #666;
    font-weight: 500;
    font-size: 1.1rem;
}

.extras-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.extra-name {
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
}

.extra-price {
    color: #999;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Price Discounts */
.price-discounts {
    max-width: 800px;
    margin: 0 auto;
}

.discount-card {
    background: linear-gradient(135deg, #f0f9f5 0%, #fef8f3 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #6B8E5F;
    box-shadow: 0 10px 30px rgba(107, 142, 95, 0.15);
}

.discount-card h4 {
    color: #6B8E5F;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.discount-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.discount-card li {
    padding: 0.8rem 0;
    color: #282612;
    font-size: 1.05rem;
    position: relative;
    padding-left: 2rem;
}

.discount-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6B8E5F;
    font-weight: bold;
    font-size: 1.3rem;
}

.discount-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin: 0;
    padding-top: 1rem;
    border-top: 2px dashed #6B8E5F;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #FFFBF0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: #282612;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: #282612;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Phone with WhatsApp Button */
.phone-with-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #282612;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B8E5F;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #D97943, #C96A38);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #C96A38, #B95C2E);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 121, 67, 0.3);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #D97943;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.impressum-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Parallax Effect */
.parallax-bg {
    will-change: transform;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    .section-header.hc h2 {
        color: #fff;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 0 2px #000;
        background: #282612;
        display: inline-block;
        padding: 0.5em 1.5em;
        border-radius: 8px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .customers-carousel {
        padding: 0 50px;
    }

    .customers-grid {
        gap: 1rem;
        padding-right: 1rem;
    }

    .customer-card {
        width: calc((100vw - 120px) / 2);
        max-width: 300px;
        min-width: 250px;
    }

    .card-content {
        padding: 1.5rem;
        text-align: center;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .my-cats-grid {
        flex-direction: column;
        align-items: center;
        max-width: 350px;
    }

    .my-cats-grid .customer-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .prices-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .customers-carousel {
        padding: 0 40px;
    }

    .customer-card {
        width: calc(100vw - 80px);
        max-width: 320px;
        min-width: 280px;
    }

    .card-content {
        padding: 1.5rem;
        text-align: center;
    }

    .my-cats-grid {
        max-width: 320px;
        gap: 1.5rem;
    }

    .my-cats-grid .customer-card {
        max-width: 320px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .carousel-prev {
        left: 2px;
    }

    .carousel-next {
        right: 2px;
    }

    .extras-list {
        max-width: 100%;
    }
}

/* Smooth scrolling for browsers that don't support it natively */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form field error styling */
.form-group.error input,
.form-group.error textarea {
    border-color: #DC2626 !important;
    background-color: #FEF2F2;
}

.form-group.error label {
    color: #DC2626;
}

.form-group.error::after {
    content: '⚠ Dieses Feld muss ausgefüllt werden';
    display: block;
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.form-group.error.checkbox-group::after {
    content: '⚠ Bitte Zustimmung erteilen';
}

.form-group.error.invalid-email::after {
    content: '⚠ Bitte geben Sie eine gültige E-Mail-Adresse ein';
}

/* Animation for error state */
.form-group.error input,
.form-group.error textarea {
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}