/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto,
        "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
}

html,
body {
    height: 100%;
}

#formular-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main füllt den freien Raum zwischen Header und Footer */
#formular-page .form-main {
    flex: 1;
    padding-top: 120px; /* Höhe des fixierten Headers anpassen */
}
p {
    color: #718096;
    font-size: 0.95em;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
@media (max-width: 480px) {
    .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}
.btn-primary {
    background: #9d7809;
    color: white;
}
.btn-primary:hover {
    background: #c8990b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 8, 2, 0.4);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background: white;
    color: #9d7809;
}
.btn-cta {
    background: #9d7809;
    color: white;
    font-size: 1.3em;
    padding: 20px 40px;
    margin-bottom: 15px;
}
.btn-cta:hover {
    background: #9d7809;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(45deg, #000000b6, rgba(0, 0, 0, 0.924));
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    width: 100%;
}
@media (max-width: 768px) {
    .emergency-banner {
        display: none;
    }
}
.emergency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .emergency-banner .container {
        flex-direction: column;
        gap: 8px;
    }
}
.emergency-phone {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    padding: 5px 15px;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}
.emergency-phone:hover {
    background: white;
    color: #000000;
}
.emergency-note {
    font-size: 0.9em;
    opacity: 0.9;
}
/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
.hamburger-menu {
    display: none;
}
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
}
.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    width: 40px;
    height: 40px;
}
.logo-text h1 {
    font-size: 1.5em;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}
.logo-text span {
    font-size: 0.9em;
    color: #9d7809;
    font-weight: 500;
}
.main-nav {
    /* Base styles */
}
.main-nav-wrapper {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.4); /* halbtransparentes Weiß */
    backdrop-filter: blur(30px); /* Weichzeichner-Effekt */
    -webkit-backdrop-filter: blur(10px); /* Safari-Support */
    width: 65%;
    right: -65%;
    top: 86px;
    height: calc(100vh - 86px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    flex-direction: column;
    justify-content: center;
}

.main-nav-wrapper .header-contact {
    text-align: center;
}

@media (max-width: 768px) {
    .header-content > .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav-wrapper {
        display: flex;
    }

    .main-nav-wrapper.is-active {
        right: 0;
        opacity: 1;
    }
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
@media (max-width: 768px) {
    .main-nav ul {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
}
.main-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.main-nav a:hover {
    color: #9d7809;
}
@media (max-width: 768px) {
    .main-nav ul li,
    .main-nav ul li a {
        width: 100%;
        display: block;
    }
}
.mobile-nav {
    /* Base styles would go here if needed */
}
@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        min-width: 100%;
    }
    .header-container.is-active {
        height: 100svh !important;
    }
    .header-content {
        justify-content: space-between;
        height: 100%;
    }
    .main-nav ul {
        font-size: 40px;
        gap: 40px;
    }
}
.contact-btn {
    background: #9d7809 !important;
    color: white !important;
    padding: 10px 50px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}
.contact-btn:hover {
    background: #c8990b !important;
    transform: translateY(-1px);
}
.contact-btn.active {
    background: #2d3748 !important;
    color: white !important;
}
.header-contact {
    text-align: right;
}
@media (max-width: 768px) {
    .header-content > .header-contact {
        display: none;
    }
}
.contact-label {
    font-size: 0.85em;
    color: #718096;
    display: block;
}
.contact-phone {
    font-size: 1.1em;
    font-weight: bold;
    color: #9d7809;
    text-decoration: none;
}
/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 230px 0 80px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .hero {
        padding: 200px 0 60px;
    }
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) blur(4px);
    z-index: 0;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero .container,
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}
.hero-subtitle {
    color: #e2e8f0;
    font-size: 1.1em;
    margin-bottom: 15px;
    display: block;
}
.hero-title {
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2em;
    }
}
.highlight {
    color: #9d7809;
}
.hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e2e8f0;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
@media (max-width: 1024px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
.hero-features {
    display: flex;
    gap: 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95em;
}
.feature-icon {
    font-size: 1.2em;
}
/* Hero Graphics */
.hero-image {
    position: relative;
    height: 400px;
}
.hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}
.floating-element {
    position: absolute;
    font-size: 2.5em;
    opacity: 0.8;
}
.key-1 {
    top: 20%;
    left: 10%;
}
.key-2 {
    top: 60%;
    right: 20%;
}
.car-key {
    bottom: 20%;
    left: 20%;
}
.main-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.lock-icon {
    font-size: 4em;
}
/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 15px;
}
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2em;
    }
}
.section-header p {
    font-size: 1.2em;
    color: #718096;
}
/* Services Section */
.services {
    padding: 80px 0;
    background: #e4e4e4;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.main-service {
    grid-column: span 2;
    background: linear-gradient(30deg, #050505, #9d7809);
    color: white;
}
@media (max-width: 1024px) {
    .main-service {
        grid-column: span 1;
    }
}
.service-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}
.service-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2d3748;
}
.main-service h3 {
    color: white;
}
.service-card p {
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.3;
}
.main-service p {
    color: rgba(255, 255, 255, 0.9);
}
.service-features {
    list-style: none;
    margin-bottom: 25px;
}
.service-features li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.9);
}
.service-btn {
    background: white;
    color: #9d7809;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}
.service-formular-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #9d7809;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}
.service-formular-btn:hover {
    background-color: rgb(225, 225, 225);
    color: #9d7809;
}
.service-btn:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}
/* About Section */
.about {
    padding: 80px 0;
    background: white;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-text {
    max-width: 800px;
    line-height: 1.3;
}

.about-text h2 {
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 20px;
}
.about-lead {
    font-size: 1.3em;
    color: #9d7809;
    font-weight: 600;
    margin-bottom: 25px;
}
.about-text p {
    color: #718096;
    margin-bottom: 30px;
    font-size: 1.1em;
}
.about-stats {
    display: flex;
    gap: 30px;
}
@media (max-width: 768px) {
    .about-stats {
        justify-content: center;
    }
}
.stat {
    text-align: center;
}
.stat h4 {
    font-size: 2.5em;
    color: #9d7809;
    font-weight: 700;
}
.stat p {
    color: #718096;
    font-size: 0.9em;
    margin: 0;
}
.about-features {
    display: grid;
    gap: 25px;
}
.feature-box {
    padding: 25px;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #9d7809;
}
.feature-box h4 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.1em;
}
/* Image Gallery */
.image-gallery {
    padding: 80px 0;
    background-color: #e4e4e4;
}
.small-icon-img {
    width: 60px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.03);
}
/* Prices Section */
.prices {
    padding: 80px 0;
    background: #f7fafc;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .price-grid {
        grid-template-columns: 1fr;
    }
}
.price-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.price-card.featured {
    border-color: #9d7809;
    transform: scale(1.05);
}
.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #9d7809;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}
.price-card h3 {
    font-size: 1.3em;
    color: #2d3748;
    margin-bottom: 20px;
}
.price {
    font-size: 3em;
    font-weight: 700;
    color: #9d7809;
    margin-bottom: 25px;
}
@media (max-width: 480px) {
    .price {
        font-size: 2.5em;
    }
}
.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}
.price-card li {
    padding: 8px 0;
    color: #718096;
    border-bottom: 1px solid #e2e8f0;
}
.price-card li:last-child {
    border-bottom: none;
}
.price-note {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #9d7809;
    text-align: center;
}
.price-note p {
    color: #718096;
    margin: 0;
}
/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}
@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 2em;
    }
}
.cta-content p {
    font-size: 1.2em;
    margin-bottom: 35px;
    color: #e2e8f0;
}
.cta-note {
    display: block;
    color: #cbd5e0;
    font-size: 0.9em;
}
/* Contact Hero */
.contact-hero {
    position: relative;
    color: white;
    padding: 100px 0 80px;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #000000 0%, #9d7809 100%);
}
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
}
.contact-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://source.unsplash.com/1600x900/?lock,security");
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    opacity: 0.6;
    z-index: -1;
}
.contact-hero-content {
    padding: 105px 0 0;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}
@media (max-width: 1024px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}
.contact-hero-text h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .contact-hero-text h1 {
        font-size: 2.5em;
    }
}
@media (max-width: 480px) {
    .contact-hero-text h1 {
        font-size: 2em;
    }
}
.contact-hero-text p {
    font-size: 1.3em;
    color: #e2e8f0;
}
.contact-emergency-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
}
@media (max-width: 480px) {
    .contact-emergency-card {
        padding: 30px 20px;
    }
}
.emergency-pulse {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}
.contact-emergency-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: white;
}
.emergency-contact-btn {
    display: block;
    background: #9d7809;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.emergency-contact-btn:hover {
    background: #9d7809;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
@media (max-width: 480px) {
    .emergency-contact-btn {
        font-size: 1.1em;
        padding: 12px 20px;
    }
}
.emergency-contact-btn:focus {
    outline: 3px solid rgba(255, 107, 53, 0.5);
    outline-offset: 2px;
}
.emergency-subtitle {
    color: #cbd5e0;
    font-size: 0.9em;
}
/* Contact Methods */
.contact-section {
    padding: 80px 0;
    background: #f7fafc;
}
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
@media (max-width: 768px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
}
.contact-method-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}
.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.contact-method-card:hover .method-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.method-icon {
    font-size: 3.5em;
    margin-bottom: 25px;
    display: block;
    position: relative;
}
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.social-icons img {
    object-fit: contain;
}
@media (max-width: 480px) {
    .method-icon {
        font-size: 2.5em;
    }
}
.contact-method-card h3 {
    font-size: 1.4em;
    color: #2d3748;
    margin-bottom: 20px;
}
.method-content {
    text-align: center;
}
.method-primary {
    margin-bottom: 15px;
}
.method-primary a {
    color: #9d7809;
    text-decoration: none;
    font-weight: 600;
}
.method-secondary {
    color: #718096;
    font-size: 0.9em;
}
.map-link {
    color: #9d7809 !important;
    text-decoration: none;
    font-weight: 500;
}
/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: white;
}
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.form-header {
    text-align: center;
    margin-bottom: 50px;
}
.form-header h2 {
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 15px;
}
@media (max-width: 480px) {
    .form-header h2 {
        font-size: 2em;
    }
}
.form-header p {
    font-size: 1.2em;
    color: #718096;
}
.minimal-contact-form {
    background: #f7fafc;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
    .minimal-contact-form {
        padding: 30px 20px;
    }
}
@media (max-width: 480px) {
    .minimal-contact-form {
        padding: 20px 15px;
    }
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
.form-group {
    position: relative;
}
.form-group.full-width {
    grid-column: span 2;
}
@media (max-width: 1024px) {
    .form-group.full-width {
        grid-column: span 1;
    }
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1em;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #9d7809;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.form-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 1em;
    color: #718096;
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 5px;
}
.form-group.focused label,
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
    top: -10px;
    font-size: 0.85em;
    color: #9d7809;
}
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    align-self: end;
}
@media (max-width: 768px) {
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95em;
    color: #718096;
}
.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}
.checkbox-wrapper a {
    color: #9d7809;
    text-decoration: none;
}
.form-submit-btn {
    background: linear-gradient(45deg, #9d7809, #9d7809);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
.form-submit-btn:focus {
    outline: 3px solid rgba(0, 0, 0, 0.5);
    outline-offset: 2px;
}
.btn-arrow {
    transition: transform 0.3s ease;
}
.form-submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}
.form-submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}
.form-submit-btn.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
/* Business Info */
.business-info-section {
    padding-bottom: 80px;
    background: #f7fafc;
}
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
@media (max-width: 768px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
}
.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.info-card:hover .info-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.info-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}
@media (max-width: 480px) {
    .info-icon {
        font-size: 2.5em;
    }
}
.info-card h3 {
    font-size: 1.4em;
    color: #2d3748;
    margin-bottom: 25px;
}
.hours-item {
    line-height: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}
.hours-item:last-child {
    border-bottom: none;
}
.hours-item span {
    color: #718096;
}
.hours-item strong {
    color: #2d3748;
}
.service-areas {
    list-style: none;
    margin: 15px 0;
}
.service-areas li {
    padding: 5px 0;
    color: #718096;
}
.service-areas li:before {
    content: "•";
    color: #9d7809;
    margin-right: 10px;
}
.service-radius {
    color: #9d7809;
    font-weight: 600;
    margin-top: 15px;
}
.payment-methods {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
}
.payment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #718096;
}
.payment-icon {
    font-size: 1.2em;
}
/* Datenschutz */
.rights {
    padding-top: 170px;
    padding-bottom: 70px;
    line-height: 1.5em;
}

.rights p {
    margin-bottom: 10px;
}

.rights h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.jet-listing-dynamic-field__content {
    margin-bottom: 20px;
}
/* Formular */
/* Formular Hero */
.formular-hero-content {
    position: relative;
    z-index: 2;
}
.formular-hero-title {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}
.formular-hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e2e8f0;
}
/* Formular Section */
.formular-section {
    padding: 230px 0 100px;
    background: white;
}
.formular-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #000000, #9d7809);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    color: white;
}
.formular-header {
    font-size: 2em;
    text-align: center;
    margin-bottom: 10px;
}
.formular-description {
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 1.1em;
    margin: 40px;
    line-height: 30px;
}
.formular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.form-label {
    display: block;
    margin-top: 5px;
    color: #cecdc6;
}
.form-up-label {
    display: block;
    margin-bottom: 5px;
    color: #cecdc6;
}
@media (max-width: 600px) {
    .formular-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .formular-group.full-width {
        grid-column: span 1 !important;
    }
}
.formular-group {
    position: relative;
}
.formular-group.full-width {
    grid-column: span 2;
}
.formular-group input,
.formular-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    font-size: 1em;
    outline: none;
    transition: all 0.3s ease;
}
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 30px;
}
.footer-formular {
    position: relative;
    bottom: 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-logo img {
    width: 30px;
    height: 30px;
}
.footer-logo span {
    font-size: 1.3em;
    font-weight: 700;
}
.footer-section h4 {
    color: #9d7809;
    margin-bottom: 20px;
    font-size: 1.1em;
}
.footer-section p {
    color: #cbd5e0;
    margin-bottom: 8px;
    line-height: 1.6;
}
.footer-emergency {
    background: #9d7809;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}
.footer-contact p,
.footer-hours p,
.footer-area p {
    font-size: 0.95em;
}
.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.footer-links {
    display: flex;
    gap: 25px;
}
.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #9d7809;
}
/* Animations */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}






.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.whatsapp-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: pulse-wave 2s ease-out infinite;
    opacity: 0;
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 38px;
    height: 38px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #2d3748;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 90px;
}

.whatsapp-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3b30;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: bounce-in 0.6s ease-out;
}

@keyframes pulse-wave {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.8);
    }
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}