/* Basic Styles */
:root {
    --primary-color: #FF6600; /* Orange */
    --secondary-color: #333333; /* Dunkelgrau */
    --accent-color: #FF9900; /* Helleres Orange */
    --text-color: #444444;
    --light-gray: #f4f4f4;
    --dark-gray: #222222;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
}

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

.hero-cta .btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}   text-decoration: none;
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn i {
    margin-right: 8px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(60, 60, 60, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background-color: rgba(60, 60, 60, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.nav-brand .logo {
    height: 60px; /* Größeres Logo */
    margin-right: 10px;
}

.nav-brand .brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white); /* Weiß für besseren Kontrast auf Anthrazit */
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white); /* Weiß für besseren Kontrast auf Anthrazit */
    font-weight: 500;
    font-size: 17px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-cta .btn {
    padding: 10px 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 8px;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 8px;
}

/* Hamburger Animation to X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0, 0);
    top: 50%;
    margin-top: -1.5px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0, 0);
    bottom: 50%;
    margin-bottom: -1.5px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for better mobile support */
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.mobile-menu-overlay .nav-list li {
    margin: 30px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .nav-list li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-overlay.active .nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .nav-list li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .nav-list li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu-overlay.active .nav-list li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu-overlay.active .nav-list li:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu-overlay .nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    padding: 15px 30px;
    border-radius: 10px;
    width: 100%;
}

.mobile-menu-overlay .nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 18px;
    font-weight: 500;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 24px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Evaluation Section */
.evaluation-section {
    background-color: var(--light-gray);
}

.evaluation-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-medium);
}

.evaluation-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.evaluation-form .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.evaluation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.evaluation-form input, .evaluation-form select, .evaluation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--font-family);
}

.evaluation-form input:focus, .evaluation-form select:focus, .evaluation-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.evaluation-form textarea {
    resize: vertical;
}

.checkbox-group {
    margin-top: 20px;
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\2713'; /* Checkmark symbol */
    color: var(--white);
    font-size: 14px;
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.evaluation-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.evaluation-info .steps .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.evaluation-info .step-number {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.evaluation-info .step-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.evaluation-info .step-content p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Advantages Section */
.advantages-section {
    background-color: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.advantage-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 20px;
}

.advantage-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--dark-gray);
    color: var(--white);
}

.testimonials-section .section-header h2, .testimonials-section .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.testimonial-rating i {
    color: #FFD700; /* Gold color for stars */
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 15px;
    opacity: 0.8;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.about-stats .stat {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.about-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-stats .stat-label {
    font-size: 16px;
    color: var(--text-color);
}

.about-image .about-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-medium);
    max-height: 400px;
    object-fit: cover;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.faq-question h3 {
    font-size: 20px;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.faq-question i {
    font-size: 18px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.faq-answer p {
    margin-bottom: 0;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info .contact-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info .contact-details h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.contact-info .contact-details p {
    font-size: 17px;
    margin-bottom: 5px;
}

.contact-info .contact-details span {
    font-size: 15px;
    color: var(--text-color);
    opacity: 0.8;
}

.contact-form-container {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--font-family);
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    font-size: 15px;
    opacity: 0.9;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-right: 15px;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-brand h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 0;
}

.social-links a {
    color: var(--white);
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    opacity: 0.8;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0;
}

.footer-badges .badge {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.6);
    text-decoration: none;
}

.floating-btn i {
    margin-right: 10px;
    font-size: 22px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .nav-menu {
        flex-basis: 100%;
        order: 3;
        margin-top: 20px;
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }    .nav-cta {
        display: none !important;
    }

    .hamburger {
        display: flex;
        order: 2; /* Hamburger menu second, on the right */
        margin-left: 20px; /* Add some space between CTA and hamburger */
    }
}

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .evaluation-form-container {
        grid-template-columns: 1fr;
    }

    .evaluation-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-badges {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 600px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 16px;
    }

    .advantage-card h3 {
        font-size: 22px;
    }

    .testimonial-card p {
        font-size: 16px;
    }

    .about-text .lead {
        font-size: 18px;
    }

    .about-stats .stat-number {
        font-size: 30px;
    }

    .faq-question h3 {
        font-size: 18px;
    }

    .contact-info .contact-details h3 {
        font-size: 20px;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .floating-btn i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta .btn {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .hero-cta .btn-secondary {
        background-color: var(--primary-color) !important;
        color: var(--white) !important;
    }
    
    .hero-cta .btn-secondary:hover {
        background-color: var(--accent-color) !important;
        color: var(--white) !important;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .evaluation-form-container {
        padding: 25px;
    }

    .advantage-card {
        padding: 25px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 25px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-badges .badge {
        margin-left: 5px;
    }
}



/* Header Scroll Effects */
.header.scrolled {
    background-color: rgba(58, 58, 58, 0.95); /* Leicht durchsichtig beim Scrollen */
    backdrop-filter: blur(10px); /* Blur-Effekt */
    -webkit-backdrop-filter: blur(10px); /* Safari Support */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.scale-in {
    animation: scaleIn 0.8s ease forwards;
}

/* Staggered Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}


/* Video-spezifische Styles */
.hero-video {
    /* Optimierung für verschiedene Browser */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Verhindert Flackern auf mobilen Geräten */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Video-Fallback für ältere Browser */
@supports not (object-fit: cover) {
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
    }
}

/* Video-Kontrollen ausblenden */
.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Mobile Video-Optimierungen */
@media (max-width: 768px) {
    .hero-video {
        /* Reduzierte Helligkeit auf mobilen Geräten für bessere Lesbarkeit */
        filter: brightness(0.5);
    }
    
    .hero {
        /* Reduzierte Höhe auf mobilen Geräten */
        height: 600px;
    }
}

/* Video-Ladeanimation */
.hero-video {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-video.loaded {
    opacity: 1;
}

/* Preload-Optimierung */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero.jpeg') center/cover;
    filter: brightness(0.6);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.hero-background.video-loaded::before {
    opacity: 0;
}


/* About Video Styling */
.about-video {
    /* Optimierung für verschiedene Browser */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Verhindert Flackern auf mobilen Geräten */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Sanfte Einblendung */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-video.loaded {
    opacity: 1;
}

/* Video-Kontrollen ausblenden für About-Video */
.about-video::-webkit-media-controls {
    display: none !important;
}

.about-video::-webkit-media-controls-panel {
    display: none !important;
}

.about-video::-webkit-media-controls-play-button {
    display: none !important;
}

.about-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Hover-Effekt für About-Video */
.about-image:hover .about-video {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Mobile Optimierungen für About-Video */
@media (max-width: 768px) {
    .about-video {
        max-height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1; /* Video oben auf mobilen Geräten */
    }
}

/* Fallback für ältere Browser */
@supports not (object-fit: cover) {
    .about-video {
        position: relative;
        width: 100%;
        height: 400px;
    }
}



/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-gray));
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 16px;
    opacity: 0.9;
}

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--white);
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h2 {
    margin-bottom: 0;
    color: var(--secondary-color);
    font-size: 24px;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 30px;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cookie-close:hover {
    background-color: var(--light-gray);
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 30px;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h3 {
    margin-bottom: 0;
    font-size: 18px;
    color: var(--secondary-color);
}

.cookie-category p {
    font-size: 15px;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

input:focus + .cookie-slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    padding: 12px 25px;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-buttons .btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-modal-content {
        margin: 10px;
        max-height: 90vh;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 20px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .btn {
        width: 100%;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-text h3 {
        font-size: 18px;
    }

    .cookie-text p {
        font-size: 14px;
    }

    .cookie-buttons .btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}



@media (max-width: 992px) {
    .nav-cta-mobile {
        display: none !important;
    }
}



/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message::before {
    content: "⚠";
    font-size: 16px;
}

.form-group.error .checkbox-label {
    color: #dc3545;
}

.form-group.error .checkmark {
    border-color: #dc3545;
}

/* Success and Error Notifications */
.success-notification,
.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.success-notification {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error-notification {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.success-content,
.error-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.success-content i,
.error-content i {
    font-size: 18px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading State for Buttons */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* Mobile Form Improvements */
@media (max-width: 768px) {
    .error-message {
        font-size: 13px;
    }
    
    .success-notification,
    .error-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
        border-width: 2px;
    }
}

