:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #f1c40f;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Mobile First Design */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Lazy Loading Images */
img[loading="lazy"] {
    background: #f0f0f0;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    padding: 18px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 3px solid #10b981;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-section:hover {
    transform: translateY(-1px);
}

.logo-section img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.company-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* Navigation Menu */
nav {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
}

/* Site Header with Logo */
.site-header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

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

.header-logo {
    height: 50px;
    width: auto;
}

.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: 1px solid #333;
    padding: 8px 12px;
    font-size: 18px;
    cursor: pointer;
}

/* Show mobile menu button on tablets and mobile */
@media (max-width: 1099px) {
    .mobile-menu-btn {
        display: block;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Small tablets */
@media (max-width: 768px) {
    .mobile-menu-btn {
        font-size: 20px;
    }

    .site-header {
        padding: 12px 0;
    }

    .header-content {
        padding: 0 15px;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .mobile-menu-btn {
        padding: 6px 10px;
        font-size: 18px;
    }

    .site-header {
        padding: 10px 0;
    }
}

/* Smallest devices */
@media (max-width: 375px) {
    .mobile-menu-btn {
        padding: 5px 8px;
        font-size: 16px;
        min-width: 40px;
        min-height: 40px;
    }

    .site-header {
        padding: 8px 0;
    }

    .header-content {
        padding: 0 8px;
        gap: 10px;
    }
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none; /* Don't block clicks when hidden */
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* Allow clicks when visible */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    overflow-x: hidden;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

/* On desktop, position menu properly */
@media (min-width: 769px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
    }
}

.nav-menu::-webkit-scrollbar {
    height: 5px;
}

.nav-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.nav-menu::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

.nav-menu li {
    flex-shrink: 0;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}


/* Mobile First Design */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Lazy Loading Images */
img[loading="lazy"] {
    background: #f0f0f0;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.contact-header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-header {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

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

/* Navigation Menu */
nav {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 60px;
    z-index: 999;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.nav-menu::-webkit-scrollbar {
    height: 5px;
}

.nav-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.nav-menu::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

.nav-menu li {
    flex-shrink: 0;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(30, 41, 59, 0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23e8f4fd" width="1200" height="600"/><path fill="%23ffffff" opacity="0.1" d="M0,300L50,320C100,340,200,380,300,380C400,380,500,340,600,320C700,300,800,300,900,310C1000,320,1100,340,1150,350L1200,360V600H1150C1100,600,1000,600,900,600C800,600,700,600,600,600C500,600,400,600,300,600C200,600,100,600,50,600H0V300Z"/></svg>');
    color: white;
    text-align: center;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (min-width: 769px) {
    .hero {
        padding: 80px 0;
        background-image: url('../../assets/img/um11.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right center;
        min-height: 600px;
        position: relative;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 35%;
        bottom: 0;
        background: linear-gradient(90deg, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(255, 255, 255, 0.98) 60%, 
            rgba(255, 255, 255, 0.9) 80%,
            rgba(255, 255, 255, 0) 100%);
        z-index: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 30px;
    color: var(--accent-color);
}

.hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Section Styles */
.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

.section h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    line-height: 1.8;
    color: #666;
}

.card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.card ul li {
    margin-bottom: 10px;
    color: #666;
}

/* Feature List */
.feature-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Professional button styles */
.hero-btn-primary:hover {
    background: #059669 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

.hero-btn-secondary:hover {
    background: #f9fafb !important;
    border-color: #9ca3af !important;
}

/* CTA section button hover effects - only for buttons, not navigation */
.btn[href="#kontakt"]:hover,
.cta-button[href="#kontakt"]:hover {
    background: #059669 !important;
    transform: translateY(-1px);
}


/* Desktop optimizations */
@media (min-width: 769px) {
    .hero .badges-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .hero-cta {
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 15px !important;
    }
    
    .hero-cta .btn {
        flex: 0 0 auto !important;
        min-width: 220px !important;
        display: inline-block !important;
    }
    
    .hero-bg-image {
        display: block !important;
        opacity: 0.95;
    }
    
    .hero-content {
        max-width: 60%;
        text-align: left !important;
        padding: 40px 0;
        position: relative;
        z-index: 2;
    }
    
    .hero-title-desktop {
        color: #1e293b !important;
        text-shadow: none !important;
    }
    
    .hero-subtitle-desktop {
        color: #334155 !important;
        background: rgba(251, 191, 36, 0.1) !important;
        border: 1px solid rgba(251, 191, 36, 0.3) !important;
    }
    
    .hero-description-desktop {
        color: #475569 !important;
    }
    
    .hero-description-desktop strong {
        color: #1e293b !important;
    }
    
    .hero-mobile-image {
        display: none !important;
    }
    
}

/* Mobile overflow prevention */
* {
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
        text-align: center;
        flex-direction: row;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo strong {
        font-size: 1.2em;
    }
    
    .logo span {
        font-size: 1.2em;
    }
    
    .contact-header {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }
    
    .phone-header {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white !important;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 1.05rem;
        box-shadow: 0 3px 12px rgba(16, 185, 129, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        position: relative;
        overflow: hidden;
    }
    
    .phone-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        transform: rotate(45deg);
        animation: shine 3s infinite;
    }
    
    .phone-header strong {
        color: white !important;
        position: relative;
        z-index: 1;
    }
    
    @keyframes shine {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero-content {
        padding: 0 10px;
        max-width: none !important;
        margin-right: 0 !important;
    }
    
    .hero-desktop-image {
        display: none !important;
    }
    
    .hero .service-points {
        font-size: 0.9rem;
    }
    
    .hero .badge-item {
        padding: 8px !important;
    }
    
    .hero-mobile-image {
        display: block !important;
        margin-bottom: 20px;
        animation: fadeInUp 0.8s ease-out;
    }
    
    .hero-mobile-image img {
        filter: brightness(1.05) contrast(1.1);
        transition: transform 0.3s ease;
    }
    
    /* Optimize for very small screens */
    @media (max-width: 480px) {
        .hero-mobile-image {
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        .hero-mobile-image img {
            height: 250px !important;
            width: 100% !important;
        }
    }
    
    .hero {
        overflow-x: hidden;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix all grid layouts on mobile */
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix minmax grids on small screens */
    div[style*="minmax(350px"],
    div[style*="minmax(380px"],
    div[style*="minmax(400px"],
    div[style*="minmax(450px"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix table overflow */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix padding and margins */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px !important;
    }
    
    section {
        overflow-x: hidden !important;
    }
    
    .nav-menu {
        justify-content: flex-start;
    }
    
    .badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .trust-badge {
        padding: 10px 15px !important;
        font-size: 0.85rem;
    }
    
    .trust-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .separator-desktop {
        display: none !important;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .phone-header {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white !important;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 0.95rem;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-weight: 600;
    }

    .phone-header strong {
        color: white !important;
    }

    .trust-badges {
        gap: 15px;
    }

    .card {
        padding: 20px;
    }

    /* Additional mobile fixes for very small screens */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 10px !important;
    }

    /* Force single column for all grids */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Fix overflow issues */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Reduce large paddings */
    [style*="padding: 40px"],
    [style*="padding: 50px"],
    [style*="padding: 60px"] {
        padding: 20px !important;
    }

    /* Fix button sizes */
    .btn, a[href*="tel:"], a[href*="#"] {
        max-width: 100% !important;
        word-break: break-all;
    }
}

/* Critical breakpoint for smallest devices (iPhone SE, etc) */
@media (max-width: 375px) {
    /* Container and spacing adjustments */
    .container {
        padding: 0 8px !important;
    }

    /* Typography scaling */
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    /* Button adjustments */
    .btn {
        padding: 12px 16px !important;
        font-size: 14px !important;
        min-height: 44px; /* Apple touch target */
    }

    /* Form elements */
    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px !important;
        min-height: 44px;
    }

    /* Cards and sections */
    .card {
        padding: 15px !important;
        margin-bottom: 15px;
    }

    .section {
        padding: 30px 0 !important;
    }

    /* Navigation adjustments */
    .nav-menu a {
        padding: 15px 20px !important;
        font-size: 14px !important;
    }

    /* Mobile menu width */
    .nav-menu.active {
        width: 260px !important;
    }

    /* Logo adjustments */
    .header-logo-wrapper img {
        height: 40px !important;
        width: 40px !important;
    }

    .header-logo-title {
        font-size: 1rem !important;
    }

    /* Trust badges */
    .mobile-trust-bar span {
        font-size: 0.75rem !important;
        padding: 5px !important;
    }

    /* Phone header */
    .phone-header {
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Tables */
    table {
        font-size: 12px !important;
    }

    /* FAQ items */
    .faq-question {
        font-size: 14px !important;
        padding: 12px !important;
    }

    /* Review cards */
    .review-card {
        padding: 15px !important;
    }

    /* Price cards */
    .price-card {
        padding: 15px !important;
    }

    /* Ensure no horizontal scroll */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(241, 196, 15, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced Mobile Styles */
.enhanced-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .mobile-trust-bar {
        padding: 10px !important;
    }
    
    .mobile-trust-bar span {
        font-size: 0.85rem !important;
        min-width: 100px !important;
    }
    
    .enhanced-card {
        margin-bottom: 20px;
    }
    
    .card-badge {
        display: none !important;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 1.2rem !important;
    }
    
    .mobile-trust-bar {
        gap: 5px !important;
    }
    
    .mobile-trust-bar span {
        flex: 1 1 48% !important;
        font-size: 0.8rem !important;
        padding: 6px !important;
    }
}

/* Hero Image Animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-20px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

/* Hero Top Image - Hidden on Desktop, Visible on Mobile */
.hero-top-image {
    display: none !important;
}

@media (max-width: 768px) {
    .hero-top-image {
        display: block !important;
        margin-bottom: 30px;
        animation: fadeIn 1s ease-in;
    }
    
    .hero-top-image img {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
        border-radius: 0 !important;
    }
}

/* Fixed Call Button - REQUIRED for all sites */
.fixed-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 168, 135, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.fixed-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(0, 168, 135, 0.5);
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    text-decoration: none;
}

.fixed-call-button svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Fixed Call Button - Responsive */
@media (max-width: 768px) {
    .fixed-call-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .fixed-call-button svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .fixed-call-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .fixed-call-button svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 375px) {
    .fixed-call-button {
        bottom: 12px;
        right: 12px;
        width: 48px;
        height: 48px;
    }

    .fixed-call-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Flatpickr Date Picker Styles */
.flatpickr-calendar {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.flatpickr-day.selected {
    background: #6366f1;
    border-color: #6366f1;
}

.flatpickr-day.today {
    border-color: #6366f1;
}

.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
    background: #4f46e5;
    border-color: #4f46e5;
}

.flatpickr-months .flatpickr-month {
    color: #1e293b;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #1e293b;
}

.flatpickr-weekdays {
    color: #64748b;
}

.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #6366f1;
}

.flatpickr-calendar.arrowTop:before {
    border-bottom-color: #6366f1;
}

/* Badge Items Styles */
@media (min-width: 769px) {
    .badge-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1) !important;
    }

    .badge-item:hover .badge-icon {
        transform: rotate(10deg) scale(1.1);
    }

    .badges-wrapper {
        flex-wrap: nowrap !important;
    }

    .badge-item {
        flex: 1 1 25% !important;
    }
}

@media (max-width: 768px) {
    .trust-text-mobile {
        display: block !important;
    }

    .badge-icon {
        display: none !important;
    }

    .badges-wrapper {
        gap: 8px !important;
    }

    .badge-item {
        padding: 10px 8px !important;
        background: linear-gradient(135deg, white, #f8fafc) !important;
    }
}

@media (max-width: 480px) {
    .badge-item {
        flex: 1 1 calc(50% - 4px) !important;
        min-width: 100px !important;
    }

    .badge-number {
        font-size: 1.25rem !important;
    }

    .badge-item span:last-child {
        font-size: 0.65rem !important;
    }
}

/* Animation on load */
@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-item {
    animation: badgeFadeIn 0.6s ease-out backwards;
}

.badge-item:nth-child(1) { animation-delay: 0.1s; }
.badge-item:nth-child(2) { animation-delay: 0.2s; }
.badge-item:nth-child(3) { animation-delay: 0.3s; }
.badge-item:nth-child(4) { animation-delay: 0.4s; }

/* Stat Card Styles */
.stat-card {
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (min-width: 769px) {
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    }

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

    .stat-card:hover .stat-icon {
        transform: scale(1.1) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 12px !important;
    }

    .stat-card {
        padding: 12px !important;
    }

    .stat-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 8px !important;
    }

    .stat-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 480px) {
    .stat-card div:last-of-type {
        font-size: 0.85rem !important;
    }
}

/* Loading animation */
@keyframes statCardLoad {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-card {
    animation: statCardLoad 0.5s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Icon animation */
.stat-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Video Section Styles */
.video-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .video-container {
        margin: 0 15px;
    }

    .video-benefit {
        padding: 15px !important;
    }

    .video-section h2 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    .video-section .video-container > div:last-child {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

/* Discount Section Animations and Styles */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.discount-card {
    transition: all 0.3s ease;
}

.discount-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .discount-section {
        margin: 20px 10px !important;
        border-radius: 15px !important;
    }

    .discount-section > div {
        padding: 25px 15px !important;
    }

    .discount-section h2 {
        font-size: 1.5rem !important;
    }

    .discount-section [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .discount-section a {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .discount-section {
        margin: 15px 5px !important;
        border-radius: 12px !important;
    }

    .discount-section > div {
        padding: 20px 12px !important;
    }

    .discount-section h2 {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
    }

    .discount-section p {
        font-size: 0.9rem !important;
        padding: 0 5px !important;
    }
}

/* Smallest screens */
@media (max-width: 375px) {
    /* Fix outer section padding */
    .section[style*="background: #f8fafc"] {
        padding: 20px 5px !important;
    }

    .discount-section {
        margin: 10px 0 !important;
        border-radius: 10px !important;
    }

    .discount-section > div {
        padding: 15px 10px !important;
    }

    .discount-section h2 {
        font-size: 1.2rem !important;
    }

    .discount-section p {
        font-size: 0.85rem !important;
        padding: 0 !important;
    }

    /* Fix decorative elements */
    .discount-section [style*="position: absolute"] {
        display: none !important;
    }
}

/* Feature Item Mobile Styles */
@media (max-width: 768px) {
    .feature-item {
        flex-direction: column !important;
        padding: 20px !important;
    }

    .feature-item > div:first-child {
        margin-bottom: 15px;
    }

    .image-gallery {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .feature-content h4 {
        font-size: 1.2em !important;
    }

    .feature-content > div {
        grid-template-columns: 1fr !important;
    }
}

/* Special Services Grid Styles */
/* Desktop Optimizations */
@media (min-width: 1024px) {
    .special-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important;
        border-color: #cbd5e1 !important;
    }
}

/* Tablet View */
@media (max-width: 1023px) and (min-width: 768px) {
    .special-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .special-services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-card {
        padding: 25px !important;
    }

    .service-card h3 {
        font-size: 1.2em !important;
    }

    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    div[style*="padding: 50px"] {
        padding: 30px !important;
    }

    h2[style*="font-size: 2.8em"] {
        font-size: 2em !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-card {
        padding: 20px !important;
    }

    div[style*="width: 64px"][style*="height: 64px"] {
        width: 56px !important;
        height: 56px !important;
    }

    div[style*="width: 64px"] svg {
        width: 28px !important;
        height: 28px !important;
    }
}

/* Pricing Cards Mobile Responsive Styles */
@media (max-width: 768px) {
    .pricing-card-horizontal > div {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .pricing-card-horizontal ul {
        grid-template-columns: 1fr !important;
    }
    .pricing-card-horizontal > div > div:last-child {
        text-align: left !important;
    }
    .pricing-card-horizontal a {
        width: 100% !important;
    }
}

/* Pricing Grid Responsive Styles */
/* Desktop Optimizations */
@media (min-width: 1024px) {
    .pricing-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
        border-color: #cbd5e1 !important;
    }

    .pricing-card.premium:hover {
        transform: translateY(-13px) !important;
        box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2) !important;
    }

    .pricing-card a:hover {
        background: #1e293b !important;
    }

    .pricing-card.premium a:hover {
        background: #2563eb !important;
    }
}

/* Tablet View */
@media (max-width: 1023px) and (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }

    .pricing-card {
        padding: 30px 25px !important;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .pricing-card.premium {
        transform: translateY(0) !important;
        margin: 0 !important;
    }

    .pricing-card {
        padding: 30px 25px !important;
    }

    div[style*="position: absolute"][style*="top: -14px"] {
        top: -12px !important;
    }

    .grid-2 {
        grid-template-columns: 1fr !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .pricing-card {
        padding: 25px 20px !important;
    }

    span[style*="font-size: 3em"] {
        font-size: 2.5em !important;
    }
}

/* Grid-4 Mobile Responsive Styles */
@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr !important;
    }
}

/* Reviews Container Mobile Styles */
@media (max-width: 768px) {
    #reviews-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Review Button Animation Styles */
@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.review-button:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.5) !important;
    border-color: rgba(255,255,255,0.3) !important;
    background: linear-gradient(135deg, #059669, #047857) !important;
}

.review-button:hover .button-overlay {
    opacity: 1 !important;
}

.review-button:hover svg:last-child {
    animation-duration: 0.5s !important;
}

@media (max-width: 768px) {
    .review-button {
        padding: 16px 35px !important;
        font-size: 1em !important;
    }
}

/* Blog Button Animation Styles */
#blog a[href="blog.html"]:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.45) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

#blog a[href="blog.html"]:hover span:first-child {
    opacity: 1 !important;
}

@media (max-width: 768px) {
    #blog-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    #blog h2 {
        font-size: 1.8em !important;
    }

    #blog a[href="blog.html"] {
        padding: 16px 35px !important;
        font-size: 1em !important;
    }
}

/* PDF Modal Styles */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.pdf-modal {
    animation: fadeIn 0.3s ease-out;
}

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

#downloadPdfBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 25px !important;
        margin: 20px;
        width: calc(100% - 40px) !important;
    }

    .modal-header h3 {
        font-size: 1.5em !important;
    }
}

/* Card Responsive Styles */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 20px !important;
    }

    .card h3 {
        font-size: 1.1em !important;
    }

    .card li span {
        font-size: 0.95em !important;
    }
}

/* Grid Responsive Styles - Additional */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
    }
    .grid-3 {
        grid-template-columns: 1fr !important;
    }
}

/* Tips Section Styles */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tip-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.tip-card:hover .card-glow {
    opacity: 0.15;
}

.tip-card:hover .hover-indicator {
    opacity: 1;
}

.mistake-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.2);
    border-left-width: 8px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr !important;
    }

    .mistakes-section {
        padding: 30px 20px !important;
    }

    .mistakes-section h3 {
        font-size: 1.5em !important;
    }

    .warning-badge {
        font-size: 0.85em !important;
        padding: 10px 20px !important;
    }

    .warning-badge-container {
        margin-bottom: 20px !important;
    }

    .mistake-item {
        padding: 12px 15px !important;
        font-size: 0.9em;
    }

    .mistake-item span:first-child {
        width: 30px !important;
        height: 30px !important;
        margin-right: 15px !important;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .warning-badge {
        font-size: 0.75em !important;
        padding: 8px 15px !important;
        white-space: nowrap;
    }

    .warning-icon {
        display: inline-block;
        margin-right: 5px;
    }

    .warning-text {
        display: inline-block;
    }

    .mistakes-section h3 {
        font-size: 1.2em !important;
        padding: 0 10px;
    }

    .mistake-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        padding: 10px 12px !important;
    }

    .mistake-item span:last-child {
        flex: 1;
        line-height: 1.5;
    }
}

/* Comparison Section Styles */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.comparison-table svg {
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.comparison-row {
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.comparison-row:hover td {
    font-weight: 600;
}

.comparison-row:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.win-indicator {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5); }
    100% { box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }
}

.comparison-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
}

.comparison-cta-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 40px 0 !important;
    }

    .comparison-section h2 {
        font-size: 1.8em !important;
        padding: 0 15px;
    }

    .comparison-section .section-subtitle {
        font-size: 1em !important;
        padding: 0 15px;
    }

    .winner-badge {
        font-size: 0.9em !important;
        padding: 8px 20px !important;
        margin-bottom: 15px !important;
    }

    .comparison-table-wrapper {
        border-radius: 20px !important;
        margin: 0 15px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.06) !important;
    }

    .table-header {
        padding: 20px 15px !important;
    }

    .table-header h3 {
        font-size: 1.4em !important;
    }

    .table-header p {
        display: none;
    }

    .table-header > div {
        position: static !important;
        transform: none !important;
        margin-bottom: 10px;
    }

    .comparison-table {
        font-size: 0.85em;
    }

    .comparison-table thead th:first-child {
        width: 35%;
    }

    .comparison-table thead th:nth-child(2) {
        width: 35%;
    }

    .comparison-table thead th:nth-child(3) {
        width: 30%;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px !important;
    }

    .comparison-table td strong {
        font-size: 0.95em !important;
    }

    .comparison-table td div {
        font-size: 0.75em !important;
    }

    .win-indicator {
        display: none !important;
    }

    .comparison-row:hover {
        transform: none !important;
    }

    .table-footer {
        padding: 15px !important;
    }

    .table-footer p {
        font-size: 0.95em !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .comparison-cta-primary,
    .comparison-cta-secondary {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 15px 30px !important;
        font-size: 1em !important;
    }

    .comparison-section h3 {
        font-size: 1.5em !important;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 30px 0 !important;
    }

    .comparison-section h2 {
        font-size: 1.5em !important;
        line-height: 1.3;
    }

    .winner-badge {
        font-size: 0.8em !important;
        padding: 6px 15px !important;
    }

    .comparison-table-wrapper {
        border-radius: 10px !important;
        margin: 0 5px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    }

    .table-header {
        padding: 12px 10px !important;
        display: none !important;
    }

    .comparison-table {
        font-size: 0.75em;
    }

    .comparison-table thead {
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .comparison-table thead th {
        padding: 10px 5px !important;
        font-size: 0.85em !important;
    }

    .comparison-table thead th:first-child span {
        display: none;
    }

    .comparison-table thead th:first-child::after {
        content: "Leistung";
        font-size: 0.9em;
    }

    .comparison-table thead th:nth-child(2) span {
        font-size: 0.9em !important;
        gap: 5px !important;
    }

    .comparison-table thead th:nth-child(2) div {
        display: none !important;
    }

    .comparison-table tbody td {
        padding: 10px 5px !important;
    }

    .comparison-table tbody td:first-child strong {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 3px !important;
        font-size: 0.85em !important;
    }

    .comparison-table tbody td:first-child strong svg {
        width: 16px !important;
        height: 16px !important;
        flex-shrink: 0;
    }

    .comparison-table tbody td:first-child strong span {
        font-size: 0.9em;
    }

    .comparison-table tbody td:not(:first-child) {
        text-align: center !important;
    }

    .comparison-table tbody td strong {
        font-size: 0.9em !important;
        display: block;
    }

    .comparison-table tbody td div {
        font-size: 0.7em !important;
        margin-top: 2px !important;
        line-height: 1.2;
    }

    .final-row td:nth-child(2) strong {
        font-size: 1em !important;
    }

    .table-footer {
        padding: 12px 10px !important;
    }

    .table-footer p {
        font-size: 0.85em !important;
        line-height: 1.4;
    }

    .comparison-cta-primary,
    .comparison-cta-secondary {
        padding: 12px 20px !important;
        font-size: 0.9em !important;
        border-radius: 30px !important;
    }

    .comparison-cta-primary span:first-child,
    .comparison-cta-secondary span:first-child {
        font-size: 1.2em;
    }

    .comparison-section h3 {
        font-size: 1.2em !important;
        line-height: 1.3;
    }

    .comparison-section p {
        font-size: 0.95em !important;
    }
}

@media (max-width: 360px) {
    .comparison-table {
        font-size: 0.7em;
    }

    .comparison-table thead th {
        padding: 8px 3px !important;
    }

    .comparison-table tbody td {
        padding: 8px 3px !important;
    }

    .comparison-table tbody td:first-child strong {
        font-size: 0.8em !important;
    }
}

/* International Section Styles */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.destination-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #dbeafe, #bfdbfe) !important;
}

.service-item:hover {
    background: #dcfce7 !important;
    transform: translateX(5px);
}

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

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.destination-card:hover,
.service-card:hover,
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .international-cards {
        grid-template-columns: 1fr !important;
    }

    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
    }

    .international-section h2 {
        font-size: 1.8em !important;
    }

    .other-countries {
        padding: 25px !important;
    }
}

@media (max-width: 480px) {
    .destination-item {
        flex-direction: column !important;
        text-align: center;
        gap: 10px;
    }

    .countries-grid {
        grid-template-columns: 1fr !important;
    }

    .country-card {
        padding: 20px !important;
    }
}

/* Insurance Section Styles */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

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

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

.security-badge {
    animation: pulse 2s infinite;
}

.insurance-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.insurance-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.insurance-card:hover .icon-container {
    animation: float 1.5s ease-in-out infinite;
}

.coverage-item {
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.coverage-item:nth-child(1) { animation-delay: 0.1s; }
.coverage-item:nth-child(2) { animation-delay: 0.2s; }
.coverage-item:nth-child(3) { animation-delay: 0.3s; }
.coverage-item:nth-child(4) { animation-delay: 0.4s; }

.coverage-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #dbeafe, #bfdbfe) !important;
}

.team-features > div {
    transition: all 0.3s ease;
}

.team-features > div:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #fde68a, #fbbf24) !important;
}

.documentation-grid > div {
    transition: all 0.3s ease;
    cursor: pointer;
}

.documentation-grid > div:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe) !important;
}

.guarantee-item {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s;
}

.guarantee-item:hover::before {
    left: 100%;
}

.guarantee-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.guarantee-item:hover > div:first-child {
    animation: pulse 1s infinite;
}

.guarantee-badge {
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.premium-badge {
    animation: shimmer 3s linear infinite;
    background: linear-gradient(90deg, #fbbf24 0%, #fde68a 50%, #fbbf24 100%);
    background-size: 1000px 100%;
}

.insurance-cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .insurance-cards {
        grid-template-columns: 1fr !important;
    }

    .documentation-grid {
        grid-template-columns: 1fr !important;
    }

    .guarantees-grid {
        grid-template-columns: 1fr !important;
    }

    .insurance-section h2 {
        font-size: 1.8em !important;
    }
}

@media (max-width: 480px) {
    .guarantees-section {
        padding: 25px !important;
    }

    .guarantee-item {
        padding: 15px !important;
    }

    .insurance-card .card-body {
        padding: 20px !important;
    }
}

/* Emergency Section Styles */
@keyframes emergencyPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

@keyframes slideGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes emergencyBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.emergency-card {
    transition: all 0.3s ease;
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.contact-options a:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .emergency-section {
        padding: 40px 0 !important;
    }

    .emergency-section h2 {
        font-size: 2em !important;
    }

    .hotline-banner {
        padding: 30px 20px !important;
    }

    .hotline-banner > div > div {
        font-size: 2em !important;
        flex-direction: column;
    }

    .emergency-card {
        padding: 25px !important;
    }
}

@media (max-width: 480px) {
    .emergency-section h2 {
        font-size: 1.5em !important;
    }

    .hotline-banner > div > div {
        font-size: 1.5em !important;
    }

    .hotline-banner button {
        padding: 15px 30px !important;
        font-size: 1em !important;
    }

    .emergency-card h3 {
        font-size: 1.2em !important;
    }

    .process-timeline > div > div:first-child > div {
        width: 35px !important;
        height: 35px !important;
    }
}

/* Senioren-Plus Paket Styles */
.senioren-paket-container {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 25px;
    padding: 60px 40px 50px;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: visible;
}

.senioren-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transform: rotate(10deg);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    z-index: 10;
}

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

.senioren-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.senioren-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    position: relative;
}

.senioren-cta {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
}

.senioren-cta-title {
    font-size: 1.3em;
    color: #dc2626;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .senioren-paket-container {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .senioren-badge {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.85em;
        transform: rotate(12deg);
    }

    .senioren-header h3 {
        font-size: 1.5em;
    }

    .senioren-header p {
        font-size: 1em;
        padding: 0 10px;
    }

    .senioren-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 25px;
    }

    .senioren-card {
        padding: 20px;
    }

    .senioren-icon {
        width: 50px;
        height: 50px;
    }

    .senioren-icon svg {
        width: 25px;
        height: 25px;
    }

    .senioren-card h4 {
        font-size: 1em;
    }

    .senioren-card p {
        font-size: 0.9em;
    }

    .senioren-cta {
        padding: 20px 15px;
    }

    .senioren-cta-title {
        font-size: 1.1em;
        flex-wrap: wrap;
    }

    .senioren-cta-title svg {
        width: 20px;
        height: 20px;
    }

    .senioren-cta p:last-child {
        font-size: 0.95em;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .senioren-paket-container {
        padding: 25px 15px;
        border-radius: 20px;
    }

    .senioren-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 20px;
        border-radius: 25px;
    }

    .senioren-header-icon {
        width: 70px;
        height: 70px;
    }

    .senioren-header-icon svg {
        width: 40px;
        height: 40px;
    }

    .senioren-header h3 {
        font-size: 1.3em;
    }

    .senioren-header p {
        font-size: 0.95em;
    }
}

/* Senior Section Styles */
.senior-card {
    transition: all 0.3s ease;
}

.senior-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-list > div {
    transition: all 0.3s ease;
}

.service-list > div:hover {
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .senior-section {
        padding: 40px 0 !important;
    }

    .senior-section h2 {
        font-size: 2em !important;
    }
}

@media (max-width: 480px) {
    .senior-card {
        padding: 30px 20px !important;
    }

    .senior-section h2 {
        font-size: 1.8em !important;
    }
}

/* FAQ Section Styles */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12) !important;
}

.faq-question:hover {
    background: #f8fafc !important;
}

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

.faq-item.active .faq-answer {
    max-height: 2000px !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer > div {
    animation: fadeIn 0.5s ease;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0 !important;
    }

    .faq-section h2 {
        font-size: 2em !important;
    }

    .faq-question {
        padding: 20px !important;
    }

    .faq-question h3 {
        font-size: 1.1em !important;
    }
}

@media (max-width: 480px) {
    .faq-section h2 {
        font-size: 1.6em !important;
    }

    .faq-question {
        flex-direction: row;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .faq-arrow {
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

/* Gallery Section Styles */
.gallery-card {
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15) !important;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .modern-gallery {
        grid-template-columns: 1fr !important;
    }

    .gallery-section h2 {
        font-size: 2em !important;
    }
}

/* Student Section Styles */
.student-card {
    transition: all 0.3s ease;
}

.student-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15) !important;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .student-section h2 {
        font-size: 2em !important;
    }

    .student-card {
        padding: 30px !important;
    }
}

@media (max-width: 480px) {
    .student-section {
        padding: 60px 0 !important;
    }

    .student-section h2 {
        font-size: 1.8em !important;
    }
}

/* Entruempelung Section Styles */
.entruempelung-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}

.entruempelung-header {
    text-align: center;
    margin-bottom: 50px;
}

.entruempelung-title {
    color: #1e293b;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.entruempelung-subtitle {
    color: #475569;
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.entruempelung-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.entruempelung-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.entruempelung-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.entruempelung-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5em;
}

.entruempelung-card h3 {
    color: #1e293b;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-align: center;
}

.entruempelung-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

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

.entruempelung-list li {
    padding: 10px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.entruempelung-list li:last-child {
    border-bottom: none;
}

.entruempelung-value-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.entruempelung-value-box strong {
    color: #92400e;
    display: block;
    margin-bottom: 15px;
    font-size: 1.1em;
}

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

.entruempelung-value-list li {
    padding: 8px 0;
    color: #78350f;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recycling-banner {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    padding: 40px 30px;
    border-radius: 25px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
    position: relative;
    overflow: hidden;
}

.recycling-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.recycling-title {
    text-align: center;
    color: #14532d;
    font-size: 1.6em;
    margin-bottom: 30px;
    font-weight: 700;
}

.recycling-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    text-align: center;
}

.recycling-item {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.recycling-item-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.recycling-item h4 {
    color: #1e293b;
    font-size: 1em;
    margin: 10px 0 5px;
}

.recycling-item p {
    color: #16a34a;
    font-size: 0.9em;
    margin: 0;
    font-weight: 600;
}

.pricing-section {
    text-align: center;
    margin-top: 50px;
}

.pricing-title {
    color: #1e293b;
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #f59e0b;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

.pricing-card h4 {
    color: #1e293b;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 2.2em;
    color: #f59e0b;
    font-weight: 700;
    margin: 15px 0;
}

.pricing-desc {
    color: #64748b;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .entruempelung-title {
        font-size: 1.8em;
    }

    .entruempelung-subtitle {
        font-size: 1.05em;
        padding: 0 20px;
    }

    .entruempelung-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .entruempelung-card {
        padding: 25px 20px;
    }

    .entruempelung-icon {
        width: 60px;
        height: 60px;
        font-size: 2em;
    }

    .entruempelung-card h3 {
        font-size: 1.2em;
    }

    .recycling-banner {
        padding: 30px 20px;
    }

    .recycling-title {
        font-size: 1.3em;
    }

    .recycling-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .recycling-item {
        padding: 15px 10px;
    }

    .recycling-item-icon {
        font-size: 2em;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-amount {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .entruempelung-section {
        padding: 40px 0;
    }

    .entruempelung-title {
        font-size: 1.5em;
        padding: 0 15px;
    }

    .entruempelung-subtitle {
        font-size: 1em;
    }

    .entruempelung-card {
        border-radius: 15px;
    }

    .entruempelung-list li {
        font-size: 0.95em;
    }

    .recycling-grid {
        grid-template-columns: 1fr;
    }

    .recycling-banner::before {
        display: none;
    }

    .pricing-title {
        font-size: 1.5em;
    }
}

/* Prozess Section Styles */
.prozess-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.prozess-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(99,102,241,0.05) 0%, transparent 90%);
    pointer-events: none;
}

.prozess-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.prozess-title {
    color: #1e293b;
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.prozess-subtitle {
    color: #475569;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.prozess-timeline-old {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-line {
    display: none;
}

.timeline-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #6366f1;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 35px rgba(99,102,241,0.15);
}

.timeline-content {
    position: relative;
}

.timeline-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}

.timeline-icon {
    width: 45px;
    height: 45px;
    background: rgba(99,102,241,0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
}

.timeline-title {
    color: #1e293b;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.timeline-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 1em;
}

.timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(99,102,241,0.08);
    border-radius: 25px;
    font-size: 0.9em;
}

.timeline-duration svg {
    width: 18px;
    height: 18px;
}

.prozess-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(99,102,241,0.3);
}

.prozess-cta-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.prozess-cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.prozess-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: #6366f1;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.prozess-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
    .timeline-line {
        left: 40px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 100px;
        margin-right: 0;
        text-align: left !important;
    }

    .timeline-number {
        left: 40px;
    }

    .timeline-item:nth-child(odd) .timeline-icon {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .prozess-section {
        padding: 60px 0;
    }

    .prozess-title {
        font-size: 1.8em;
    }

    .prozess-subtitle {
        font-size: 1.05em;
        padding: 0 20px;
    }

    .timeline-line {
        left: 30px;
        width: 2px;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline-number {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }

    .timeline-content {
        padding: 25px 20px;
        margin-left: 80px !important;
    }

    .timeline-title {
        font-size: 1.2em;
    }

    .timeline-description {
        font-size: 0.95em;
    }

    .prozess-cta {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .prozess-cta-title {
        font-size: 1.5em;
    }

    .prozess-cta-text {
        font-size: 1.05em;
    }
}

@media (max-width: 480px) {
    .prozess-title {
        font-size: 1.5em;
        padding: 0 15px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-number {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1em;
    }

    .timeline-content {
        margin-left: 60px !important;
        padding: 20px 15px;
        border-radius: 15px;
    }

    .timeline-icon {
        width: 35px;
        height: 35px;
    }

    .timeline-duration {
        font-size: 0.85em;
        padding: 6px 12px;
    }

    .prozess-cta-button {
        padding: 15px 30px;
        font-size: 1em;
    }
}

/* Kontakt Section Styles */
.kontakt-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.kontakt-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.kontakt-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(99, 102, 241, 0.1);
}

.kontakt-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.kontakt-header::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.kontakt-title {
    color: #1e293b;
    font-size: 3em;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.kontakt-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.kontakt-subtitle {
    color: #334155;
    font-size: 1.3em;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.kontakt-subtitle strong {
    color: #6366f1;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.kontakt-form-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.kontakt-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.form-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-icon svg {
    width: 28px;
    height: 28px;
}

.form-title {
    color: #1e293b;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    color: #475569;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

/* German date input styling */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
    cursor: pointer;
}

input[type="date"]::-webkit-datetime-edit {
    font-family: inherit;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: #94a3b8;
    padding: 0 0.3em;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: #1e293b;
}

input[type="date"]:invalid::-webkit-datetime-edit {
    color: #94a3b8;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.service-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: #e0e7ff;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    color: #64748b;
}

.form-submit {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99,102,241,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99,102,241,0.4);
}

.form-submit svg {
    width: 24px;
    height: 24px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.form-footer p {
    color: #94a3b8;
    font-size: 0.9em;
}

@media (max-width: 992px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .service-checkboxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kontakt-section {
        padding: 60px 0;
    }

    .kontakt-title {
        font-size: 1.8em;
    }

    .kontakt-subtitle {
        font-size: 1.05em;
        padding: 0 20px;
    }

    .kontakt-form-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .form-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .kontakt-title {
        font-size: 1.5em;
        padding: 0 15px;
    }

    .kontakt-form-card {
        padding: 25px 15px;
    }

    .form-header {
        flex-direction: column;
        text-align: center;
    }

    .form-submit {
        font-size: 1em;
        padding: 15px 25px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(30, 41, 59, 0.95));
    color: white;
    text-align: center;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (min-width: 769px) {
    .hero {
        padding: 80px 0;
        background-image: url('../../assets/img/um11.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right center;
        min-height: 600px;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 35%;
        bottom: 0;
        background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.98) 60%,
            rgba(255, 255, 255, 0.9) 80%,
            rgba(255, 255, 255, 0) 100%);
        z-index: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 30px;
    color: var(--accent-color);
}

.hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Section Styles */
.section {
    padding: 60px 0;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

.section h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.card p {
    line-height: 1.8;
    color: #666;
}

.card ul {
    margin: 15px 0;
    padding-left: 20px;
}

.card ul li {
    margin-bottom: 10px;
    color: #666;
}

/* Feature List */
.feature-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Professional button styles */
.hero-btn-primary:hover {
    background: #059669 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

.hero-btn-secondary:hover {
    background: #f9fafb !important;
    border-color: #9ca3af !important;
}

/* CTA section button hover effects - only for buttons, not navigation */
.btn[href="#kontakt"]:hover,
.cta-button[href="#kontakt"]:hover {
    background: #059669 !important;
    transform: translateY(-1px);
}


/* Desktop optimizations */
@media (min-width: 769px) {
    .hero .badges-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .hero-cta {
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 15px !important;
    }

    .hero-cta .btn {
        flex: 0 0 auto !important;
        min-width: 220px !important;
        display: inline-block !important;
    }

    .hero-bg-image {
        display: block !important;
        opacity: 0.95;
    }

    .hero-content {
        max-width: 60%;
        text-align: left !important;
        padding: 40px 0;
        position: relative;
        z-index: 2;
    }

    .hero-title-desktop {
        color: #1e293b !important;
        text-shadow: none !important;
    }

    .hero-subtitle-desktop {
        color: #334155 !important;
        background: rgba(251, 191, 36, 0.1) !important;
        border: 1px solid rgba(251, 191, 36, 0.3) !important;
    }

    .hero-description-desktop {
        color: #475569 !important;
    }

    .hero-description-desktop strong {
        color: #1e293b !important;
    }

    .hero-mobile-image {
        display: none !important;
    }
}

/* Mobile overflow prevention */
* {
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }

    .header-content {
        justify-content: space-between;
        padding: 0 15px;
        gap: 15px;
    }

    .header-content h1 span {
        font-size: 1.5em !important;
    }

    .header-content .logo svg {
        width: 45px !important;
        height: 45px !important;
    }

    .header-content .logo > div:first-child {
        padding: 10px !important;
    }

    .logo-section {
        gap: 10px;
    }

    .logo-section img {
        height: 42px;
    }

    .company-name h1 {
        font-size: 1.4em;
    }

    .company-name span {
        font-size: 0.8em;
    }

    .contact-header {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }

    .phone-header {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white !important;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 1.05rem;
        box-shadow: 0 3px 12px rgba(16, 185, 129, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        position: relative;
        overflow: hidden;
    }

    .phone-header::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
        transform: rotate(45deg);
        animation: shine 3s infinite;
    }

    .phone-header strong {
        color: white !important;
        position: relative;
        z-index: 1;
    }

    @keyframes shine {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    .hero {
        padding: 30px 0;
    }

    .hero-content {
        padding: 0 10px;
        max-width: none !important;
        margin-right: 0 !important;
    }

    .hero-desktop-image {
        display: none !important;
    }

    .hero .service-points {
        font-size: 0.9rem;
    }

    .hero .badge-item {
        padding: 8px !important;
    }

    .hero-mobile-image {
        display: block !important;
        margin-bottom: 20px;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-mobile-image img {
        filter: brightness(1.05) contrast(1.1);
        transition: transform 0.3s ease;
    }

    /* Optimize for very small screens */

    .hero {
        overflow-x: hidden;
    }

    .section {
        padding: 40px 0;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
    }

    /* Fix all grid layouts on mobile */
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Fix minmax grids on small screens */
    div[style*="minmax(350px"],
    div[style*="minmax(380px"],
    div[style*="minmax(400px"],
    div[style*="minmax(450px"] {
        grid-template-columns: 1fr !important;
    }

    /* Fix table overflow */
    table {
        display: block;
        overflow-x: hidden;
        -webkit-overflow-scrolling: none;
    }

    /* Fix padding and margins */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px !important;
    }

    section {
        overflow-x: hidden !important;
    }

    .site-header {
        padding: 12px 0;
    }

    .header-logo {
        height: 45px;
    }

    nav {
        padding: 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 20px rgba(0,0,0,0.3);
        flex-direction: column;
        padding: 100px 0 20px 0;
        transition: right 0.3s ease;
        z-index: 9999;
        overflow-y: auto; /* Allow scrolling if content is long */
        overflow-x: hidden;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-menu a {
        display: block;
        padding: 18px 25px;
        font-size: 1em;
        font-weight: 500;
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }

    .nav-menu a:hover {
        background: #f8fafc;
        border-left-color: var(--secondary-color);
        color: var(--secondary-color);
    }

    .badge {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .trust-badge {
        padding: 10px 15px !important;
        font-size: 0.85rem;
    }

    .trust-badge svg {
        width: 18px;
        height: 18px;
    }

    .separator-desktop {
        display: none !important;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hero mobile image for very small screens */
@media (max-width: 480px) {
    .hero-mobile-image {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-mobile-image img {
        height: 250px !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .header-content h1 span {
        font-size: 1.2em !important;
    }

    .header-content .logo svg {
        width: 40px !important;
        height: 40px !important;
    }

    .header-content .logo > div:first-child {
        padding: 8px !important;
    }

    .phone-header {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white !important;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 0.95rem;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-weight: 600;
    }

    .phone-header strong {
        color: white !important;
    }

    .trust-badges {
        gap: 15px;
    }

    .card {
        padding: 20px;
    }

    /* Additional mobile fixes for very small screens */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 10px !important;
    }

    /* Force single column for all grids */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Fix overflow issues */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Reduce large paddings */
    [style*="padding: 40px"],
    [style*="padding: 50px"],
    [style*="padding: 60px"] {
        padding: 20px !important;
    }

    /* Fix button sizes */
    .btn, a[href*="tel:"], a[href*="#"] {
        max-width: 100% !important;
        word-break: break-all;
    }
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced Mobile Styles */
.enhanced-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .mobile-trust-bar {
        padding: 10px !important;
    }

    .mobile-trust-bar span {
        font-size: 0.85rem !important;
        min-width: 100px !important;
    }

    .enhanced-card {
        margin-bottom: 20px;
    }

    .card-badge {
        display: none !important;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    .mobile-trust-bar {
        gap: 5px !important;
    }

    .mobile-trust-bar span {
        flex: 1 1 48% !important;
        font-size: 0.8rem !important;
        padding: 6px !important;
    }
}

/* Hero Image Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Top Image - Hidden on Desktop, Visible on Mobile */
.hero-top-image {
    display: none !important;
}

@media (max-width: 768px) {
    .hero-top-image {
        display: block !important;
        margin-bottom: 30px;
        animation: fadeIn 1s ease-in;
    }

    .hero-top-image img {
        width: 100% !important;
        height: 250px !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .hero {
        padding-top: 0 !important;
    }

    /* SPAR-AKTION Mobile Styles */
    .discount-card {
        padding: 20px !important;
        margin-bottom: 15px;
    }

    .discount-card h3 {
        font-size: 1.2em !important;
    }

    .discount-card li {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px;
        padding: 15px 0 !important;
    }

    .discount-card li span:last-child {
        align-self: flex-start !important;
    }
}

/* Additional fixes for 375px screens */
@media (max-width: 375px) {
    .discount-card {
        padding: 15px !important;
        margin-bottom: 10px;
        border-radius: 12px !important;
    }

    .discount-card h3 {
        font-size: 1em !important;
        margin-bottom: 10px !important;
    }

    .discount-card li {
        padding: 10px 0 !important;
        font-size: 0.9em !important;
    }

    .discount-card [style*="width: 70px"] {
        width: 50px !important;
        height: 50px !important;
    }

    .discount-card [style*="width: 35"] {
        width: 25px !important;
        height: 25px !important;
    }

    /* Discount badges */
    .discount-card [style*="position: absolute"] {
        top: 10px !important;
        right: 10px !important;
        padding: 5px 10px !important;
        font-size: 0.7em !important;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    header, nav, .cta-buttons {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}
/* Header Logo Styles */
.header-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo-icon {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    padding: 12px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.header-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.header-logo-title {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 1em;
}

.header-logo-umzug {
    font-size: 2em;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: -0.5px;
}

.header-logo-profis {
    font-size: 2em;
    font-weight: 700;
    color: #60a5fa;
}

/* Hero Section Styles */
.hero {
    position: relative;
}

.hero-mobile-image {
    display: none;
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    overflow: hidden;
}

.hero-mobile-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title-desktop {
    color: white;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle-desktop {
    color: rgba(255,255,255,0.95);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 500;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
}

.hero-description-desktop {
    color: rgba(255,255,255,0.95);
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-points {
    display: grid;
    gap: 8px;
}

.service-point-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-point-check {
    color: #10b981;
    font-size: 1.2em;
}

/* Trust Badges */
.trust-badges-container {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
    padding: clamp(16px, 3vw, 24px);
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.trust-badges-decoration-1 {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.trust-badges-decoration-2 {
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.badges-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(8px, 2vw, 20px);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.badge-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 120px;
    text-align: center;
    padding: clamp(8px, 1.5vw, 12px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.badge-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-customers {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}

.badge-icon-rating {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}

.badge-icon-experience {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 2px 8px rgba(59,130,246,0.3);
}

.badge-icon-team {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 2px 8px rgba(139,92,246,0.3);
}

.badge-icon svg {
    width: 16px;
    height: 16px;
}

.badge-number {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.2;
}

.badge-label {
    color: #64748b;
    font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.trust-text-mobile {
    display: none;
    text-align: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-text-mobile span {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.hero-btn-primary {
    background: #10b981;
    color: white;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    text-align: center;
    display: block;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-btn-secondary {
    background: white;
    color: #1e293b;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    display: block;
    border-radius: 6px;
    border: 2px solid #e5e7eb;
    transition: all 0.2s;
    text-decoration: none;
}
