@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    color: #333;
    overflow-x: hidden;
}

h5 {
    color: #333 !important;
}

.wrapper {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ===================
   NAVBAR STYLES
   =================== */


.navbar {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 75px;
    box-shadow: 0 4px 20px rgba(176, 0, 32, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(176, 0, 32, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


.logo img {
    height: 50px;
    padding-bottom: 10px;
    width: auto;
    border-radius: 8px;
    filter: drop-shadow(0 4px 8px rgba(176, 0, 32, 0.2));
    transition: transform 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.nav-items {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list li a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-list li:not(.dropdown):not(.workshop-link) a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-list li:not(.dropdown):not(.workshop-link) a:hover::before {
    left: 0;
}

.nav-list li:not(.dropdown):not(.workshop-link) a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 0, 32, 0.3);
}

/* Dropdown Styles */
.nav-list li.dropdown {
    position: relative;
}

.nav-list li.dropdown .dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1;
}

.nav-list li.dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    padding: 8px 0;
    z-index: 2000;
}

.nav-list li.dropdown .dropdown-content li {
    list-style: none;
}

.nav-list li.dropdown .dropdown-content li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: #fff;
}

.nav-list li.dropdown:hover .dropdown-content {
    display: block;
}

.nav-list li.dropdown .dropdown-content li a:hover {
    background-color: #b00020;
    transform: translateX(5px);
    box-shadow: none;
}


/* Workshop Link Styles */
.nav-list .workshop-link a {
    background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
    gap: 8px;
    padding: 5px 10px;
}

.nav-list .workshop-link a:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(176, 0, 32, 0.4);
}

.nav-list .workshop-link .icon {
    font-size: 18px;
}

.nav-list .workshop-link .text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 2px;
}

.nav-list .workshop-link .line1,
.nav-list .workshop-link .line2 {
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.5px;
}



/* ===================
   HERO SECTION
   =================== */

.hero-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-color: (rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
}


.hero-slide.active {
    opacity: 1;
}

.hero-healine {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 20px;
    color: rgb(255, 255, 255) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

}

.hero-content {
    position: absolute;
    top: 75%;
    left: 5%;
    padding: 20px;
    transform: translateY(-50%);
    font-size: 10px;
    color: #1d1d1d;
    max-width: 900px;
    color: white;
    background-color: #000000b7;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}


.hero-text {
    color: #fff;
    font-size: 12px;
}

/* Pfeile */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: white;
    background: rgba(176, 0, 32, 0.8);
    padding: 0.35rem 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    z-index: 20;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-arrow.left {
    left: 1rem;
}

.hero-arrow.right {
    right: 1rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #b00020 0%, #8e0038 100%);
    color: white;
    padding: 6px 14px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(176, 0, 32, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(176, 0, 32, 0.3);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* ===================
   BRAND SECTION
   =================== */

.brand-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.brand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #b00020 50%, transparent 100%);
}

.headline {
    margin-bottom: 50px;
}

.headline h5 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #333 0%, #b00020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-icon-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 0, 32, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.brand-icon-wrapper:hover {
    transform: translateY(-10px);
    background: rgba(176, 0, 32, 0.05);
    box-shadow: 0 15px 35px rgba(176, 0, 32, 0.15);
}

.brand-icon-wrapper img {
    width: 60px;
    height: 60px;
    filter: brightness(0.8) contrast(1.1);
}

/* ===================
   INFO CARDS
   =================== */
.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(176, 0, 32, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(176, 0, 32, 0.15);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(176, 0, 32, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card img {
    object-fit: cover;
    height: 200px;
    border-radius: 25px 25px 0 0;
}

.info-card-body {
    background: transparent;
    padding: 30px;
}

.info-card .card-title {
    color: #b00020;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ===================
   BG CARD
   =================== */

.premium-card-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.bg-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(176, 0, 32, 0.1);
}

.bg-card h2 {
    color: #333;
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.bg-card p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
}

.custom-rounded {
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(176, 0, 32, 0.1);
}

/* ===================
   ICONS SM
   =================== */

.icon-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.icon-card::before,
.icon-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #b00020 50%, transparent 100%);
}

.icon-card::before {
    top: 0;
}

.icon-card::after {
    bottom: 0;
}

.service-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 0, 32, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-10px);
    background: rgba(176, 0, 32, 0.05);
    box-shadow: 0 15px 35px rgba(176, 0, 32, 0.15);
}

.icons-sm {
    width: 50px;
    height: 50px;
    filter: brightness(0.8);
}

.service-item p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    color: #333;
}

/* ===================
   CAR CARDS - IMPROVED
   =================== */

.car-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.car-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    border-radius: 30px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(176, 0, 32, 0.08),
        inset 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(176, 0, 32, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(176, 0, 32, 0.02) 0%, transparent 50%, rgba(176, 0, 32, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.car-card:hover::before {
    opacity: 1;
}

.car-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(176, 0, 32, 0.15),
        inset 0 1px 0 rgba(0, 0, 0, 0.08);
    border-color: rgba(176, 0, 32, 0.3);
}

.car-card img {
    object-fit: cover;
    height: 280px;
    border-radius: 30px 30px 0 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.car-card:hover img {
    filter: brightness(1.05) contrast(1.02) saturate(1.05);
}

.card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.card-sm-title {
    color: #b00020;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.card-sm-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #b00020, #d32f2f);
    border-radius: 2px;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 15px 0 20px 0;
    line-height: 1.3;
    color: #333;
    text-shadow: none;
}

.card-price {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #b00020 0%, #d32f2f 50%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0 8px 0;
    text-shadow: 0 2px 10px rgba(176, 0, 32, 0.1);
    position: relative;
}

.card-price::before {
    content: '€ ';
    font-size: 1.4rem;
    font-weight: 600;
    color: #b00020;
    margin-right: 5px;
}

.tax-message {
    color: #666;
    font-size: 0.75rem;
    font-style: italic;
    margin-bottom: 25px;
    opacity: 0.8;
}

.filter-for-car {
    margin: 25px 0 30px 0;
    flex-grow: 1;
}

.filter-for-car ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.filter-for-car ul li {
    background: linear-gradient(135deg, rgba(176, 0, 32, 0.08) 0%, rgba(176, 0, 32, 0.04) 100%);
    color: #333;
    border: 1px solid rgba(176, 0, 32, 0.2);
    border-radius: 25px;
    padding: 10px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    list-style: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.filter-for-car ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.car-card:hover .filter-for-car ul li::before {
    left: 100%;
}

.filter-for-car ul li:hover {
    background: linear-gradient(135deg, rgba(176, 0, 32, 0.15) 0%, rgba(176, 0, 32, 0.08) 100%);
    border-color: rgba(176, 0, 32, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(176, 0, 32, 0.1);
}

.btn-custom {
    background: linear-gradient(135deg, #b00020 0%, #d32f2f 50%, #e53935 100%);
    border: none;
    border-radius: 30px;
    padding: 16px 35px;
    color: white;
    font-weight: 800;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 25px rgba(176, 0, 32, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    width: 100%;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(176, 0, 32, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #d32f2f 0%, #e53935 50%, #f44336 100%);
}

.btn-custom:active {
    transform: translateY(-2px);
    transition: all 0.1s ease;
}

/* Premium Glow Effect */
@keyframes cardGlow {

    0%,
    100% {
        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.1),
            0 8px 25px rgba(176, 0, 32, 0.08);
    }

    50% {
        box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.15),
            0 12px 35px rgba(176, 0, 32, 0.12);
    }
}

.car-card:nth-child(2n) {
    animation: cardGlow 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* Improved Mobile Responsiveness */
@media (max-width: 991.98px) {
    .car-card img {
        height: 240px;
    }

    .card-body {
        padding: 25px;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-price {
        font-size: 1.9rem;
    }

    .btn-custom {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .car-card {
        margin-bottom: 30px;
    }

    .car-card img {
        height: 220px;
    }

    .card-body {
        padding: 20px;
    }

    .filter-for-car ul li {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
}

/* Special Effects for Premium Cards */
.car-card.premium {
    border: 3px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.car-card.premium::after {
    content: '★ PREMIUM';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.car-card.loading {
    background: linear-gradient(90deg, #f8f9fa 25%, #e9ecef 50%, #f8f9fa 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ===================
   CUSTOMER REC
   =================== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 0, 32, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(176, 0, 32, 0.15);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
}

.testimonial-author {
    color: #b00020;
    font-weight: 700;
    font-size: 1rem;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.05;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    bottom: 15%;
    left: 8%;
    animation-delay: -4s;
}

/* ===================
   ABOUT
   =================== */

.about-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2126&q=80') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.about-hero-content {
    max-width: 800px;
    color: #333;
}

/* About Content Section */
.about-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-text-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(176, 0, 32, 0.1);
}

.about-text-card h2 {
    color: #333;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text-card p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-text-card .highlight-text {
    color: #b00020;
    font-weight: 700;
}

.about-image {
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(176, 0, 32, 0.15);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(176, 0, 32, 0.2);
}

/* ===================
   CONTACT
   =================== */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(176, 0, 32, 0.1);
    margin-bottom: 50px;
}

.contact-form-card h2 {
    color: #333;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form-card .form-label {
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(176, 0, 32, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    color: #333;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.contact-form-card .form-control:focus {
    outline: none;
    border-color: #b00020;
    box-shadow: 0 0 20px rgba(176, 0, 32, 0.2);
    background: rgba(255, 255, 255, 1);
}

.contact-form-card .form-control::placeholder {
    color: #999;
}

.btn-submit {
    background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(176, 0, 32, 0.2);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(176, 0, 32, 0.3);
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
}

/* Contact Info Cards */
.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 0, 32, 0.1);
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    background: rgba(176, 0, 32, 0.05);
    box-shadow: 0 15px 35px rgba(176, 0, 32, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(176, 0, 32, 0.2);
}

.contact-info-card h4 {
    color: #b00020;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #b00020;
}

/* Map Section */
.map-section {
    padding: 50px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.bg-img-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 3px solid rgba(176, 0, 32, 0.15);
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}


/*
==================
Opening Hours Card
==================
*/

.hours-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(176, 0, 32, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 50px;
    width: fit-content;
}

.hours-card h3 {
    color: #b00020;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hours-list > li {
    padding: 0;
    border: none;
}

.hours-list .day {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(176, 0, 32, 0.1);
}

.time-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.time-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.day-name {
    font-weight: 600;
    color: #666;
}

.time {
    font-weight: 700;
    color: #b00020;
}


/* ===================
   Footer
   =================== */

.bg-img-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 3px solid rgba(176, 0, 32, 0.15);
    border-radius: 30px;
    width: 70%;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

footer {
    /*background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;*/
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    border-top: 3px solid rgba(176, 0, 32, 0.15);
}

footer h5,
footer h6 {
    color: #b00020 !important;
    font-weight: 700;
}

footer a:hover {
    color: #b00020 !important;
}

footer p {
    color: #555 !important;
}

footer a {
    color: #666 !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(176, 0, 32, 0.1);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(176, 0, 32, 0.3);
    }

    to {
        text-shadow: 0 0 20px rgba(176, 0, 32, 0.5), 0 0 30px rgba(176, 0, 32, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-top: 2px solid rgba(176, 0, 32, 0.15);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        padding: 18px 25px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(176, 0, 32, 0.05);
        color: #333;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .bg-img-wrapper {
        width: 90%;
    }

    .headline h5 {
        font-size: 1.8rem;
    }

    .bg-card h2 {
        font-size: 2.2rem;
    }
}

/* Zusätzliche Premium Styles */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(176, 0, 32, 0.2);
}

.scroll-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top-span {
    color: white;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    box-shadow: 0 6px 20px rgba(176, 0, 32, 0.3);
}

/* Premium Loading Spinner */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #b00020;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Erfolgs-Animation */
.success-animation {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.success-animation.show {
    opacity: 1;
    transform: scale(1);
}

/* Verbesserte Buttons */
.btn-outline-custom {
    background: transparent;
    border: 2px solid #b00020;
    color: #b00020;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-custom:hover::before {
    left: 0;
}

.btn-outline-custom:hover {
    color: white;
    border-color: #b00020;
}

/* Statistik Counter */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #b00020;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 0, 32, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(176, 0, 32, 0.15);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
}

.testimonial-author {
    color: #b00020;
    font-weight: 700;
    font-size: 1rem;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.03;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    bottom: 15%;
    left: 8%;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.03;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.06;
    }
}

/* Progress Bars */
.progress-custom {
    height: 8px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-bar-custom {
    height: 100%;
    background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
    border-radius: 4px;
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 2px solid rgba(176, 0, 32, 0.15);
    padding: 20px;
    z-index: 10000;
    transition: bottom 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-text {
    color: #666;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
}

.btn-cookie-decline {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-decline:hover {
    border-color: #b00020;
    color: #b00020;
}

@keyframes fillText {
    0% {
        color: #333;
    }

    50% {
        color: #e53935;
    }

    100% {
        color: #333;
    }
}


/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #121212;
        flex-direction: column;
        display: none;
        gap: 0;
        z-index: 1000;
        border-top: 2px solid #b00020;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        padding: 15px 20px;
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-list .dropdown-content {
        position: static;
        display: none;
        flex-direction: column;
        background: #1a1a1a;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .nav-list .dropdown.active .dropdown-content {
        display: flex;
    }

    .nav-list li.dropdown > a {
        justify-content: space-between;
    }
}




@media (max-width: 767.98px) {
    .hero-content {
        max-width: 90%;
        left: 45%;
        transform: translateX(-50%) translateY(-50%);
        top: 70%;
        padding: 10px;
        
    }

    .hero-text,
    .cta-button {
        display: none; 
    }

    .hero-healine {
        font-size: 1rem;
        line-height: 1.2;
    }
}