*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    /* 2026 Modern Clean Palette */
    --bg-body: #ffffff;
    --bg-surface: #f8fafc;
    --bg-card: #ffffff;
    --border-color: rgba(10, 37, 64, 0.08);

    --primary: #FF6B00;
    --primary-dark: #e66000;
    --secondary: #0A2540;
    --secondary-light: #1E3A5F;
    --whatsapp: #25D366;

    --text-main: #0A2540;
    --text-muted: #475569;

    --shadow: 0 10px 25px -5px rgba(10, 37, 64, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(10, 37, 64, 0.1);
    --glow: 0 0 15px rgba(255, 107, 0, 0.2);

    --radius: 12px;
    --font-heading: "Inter", "Poppins", sans-serif;
    --font-body: "Inter", sans-serif;

    /* Light Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(10, 37, 64, 0.08);
    --glass-shadow: 0 25px 50px -12px rgba(10, 37, 64, 0.08);
    --glass-glow: none;
}

/* 2026 Mesh Gradient Background */
.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(at 0% 0%, rgba(249, 115, 22, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(249, 115, 22, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(59, 130, 246, 0.1) 0px, transparent 50%);
    filter: blur(100px);
    z-index: 0;
    animation: meshFlow 20s infinite alternate;
}

@keyframes meshFlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(20px, 10px);
    }
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bento-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(249, 115, 22, 0.1);
}

/* Mobile Sticky Bar - Floating FAB Style */
.mobile-sticky-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: none;
    grid-template-columns: 1fr 1fr;
    z-index: 9999;
    background: rgba(8, 12, 25, 0.85);
    border: 1px solid rgba(10, 37, 64, 0.12);
    padding: 6px;
    gap: 6px;
    border-radius: 100px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 2px 8px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(10, 37, 64, 0.1);
    min-width: 320px;
    max-width: 420px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    gap: 8px;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.sticky-btn:active {
    transform: scale(0.95);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-phone {
    background: linear-gradient(135deg, var(--primary), #ea580c);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    animation: pulseCall 2s infinite;
}

@keyframes pulseCall {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 4px 25px rgba(249, 115, 22, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3); }
}

.sticky-icon {
    width: 24px;
    height: 24px;
}

.sticky-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: grid;
    }
    
    body {
        padding-bottom: 90px; /* Space for floating FAB */
    }
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    max-width: 100%;
    overscroll-behavior-x: none;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-main);
    font-family: var(--font-body);
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    font-weight: 800;
}

h1 {
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    line-height: 1.1;
    word-break: break-word;
    overflow-wrap: break-word;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.section-padding {
    padding: 8rem 0;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.2s;
    font-size: 1rem;
    box-shadow: var(--shadow);
    touch-action: manipulation;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

/* Header */
header {
    background: rgba(5, 8, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    opacity: 0.8;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
    opacity: 1;
}

.hamburger {
    display: none;
    color: var(--text-main);
    background: rgba(10, 37, 64, 0.03);
    border: 1px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: none; /* Hidden on Desktop */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    touch-action: manipulation;
}

.hamburger svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-main);
    stroke-width: 2.5; /* Slightly thicker for better visibility */
}

.hamburger:hover {
    background: rgba(10, 37, 64, 0.08);
    transform: scale(1.05);
}

.hamburger:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 8, 17, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.4s;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .nav-links .btn {
        width: auto;
        min-width: 200px;
    }
}

/* Hero Section - Clean & Minimalist */
.hero {
    min-height: 80vh; /* Shorter for better UX without img */
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 60px 0;
    background: radial-gradient(circle at top right, #0a1022, #050811);
    color: var(--text-main);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(234, 18, 56, 0.1), transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(251, 169, 25, 0.08), transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
}

.hero-glass-card {
    background: rgba(10, 15, 30, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 37, 64, 0.03);
    padding: 4rem 3rem;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(10, 37, 64, 0.05);
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(10, 15, 30, 0.6);
    color: var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.hero-glass-card h1 {
    font-size: clamp(1.6rem, 5vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-main);
    text-shadow: 0 4px 20px rgba(10, 37, 64, 0.1);
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-glass-card .hero-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(10, 37, 64, 0.75);
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), #e85d04);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px -8px rgba(234, 88, 12, 0.5);
}

.hero-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(234, 88, 12, 0.6);
}

.hero-phone-btn svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.hero-secondary-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
}

.hero-secondary-text {
    display: none;
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(10, 37, 64, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px -5px rgba(10, 37, 64, 0.05);
}

.hero-btn-outline:hover {
    background: #f8fafc;
    border-color: rgba(10, 37, 64, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(10, 37, 64, 0.1);
    color: var(--primary);
}

.hero-usps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(10, 37, 64, 0.08);
}

.hero-usp {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
}

.hero-usp svg {
    color: var(--primary);
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.4));
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 50px 0;
    }

    .hero-glass-card {
        padding: 1.75rem 1.25rem;
    }

    .hero-usps {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
        padding-top: 1.5rem;
    }

    .hero-cta-group {
        margin-bottom: 1.5rem;
        gap: 0.8rem;
    }

    .hero-phone-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 1.1rem;
        padding: 0.9rem 1.5rem;
    }

    .hero-btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    h2 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
}

.hero-form-card label {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.h-feature {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
}

.h-feature i {
    color: var(--primary);
    margin-right: 0.8rem;
    background: var(--bg-body);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Obsolete Hero elements removed */

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-trust-card {
        margin-top: 2rem;
        text-align: left;
    }

    .hero-form-card {
        margin-top: 2rem;
        text-align: left;
    }
}

/* Section Shared */
.section-padding {
    padding: 5rem 0;
}

/* Services Grid (Kacheln) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(249, 115, 22, 0.1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    transition: 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--text-main);
    transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-card a {
    color: var(--secondary-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-card a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Process Section */
.process-section {
    background: var(--bg-surface);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--bg-surface) !important;
    padding: 2.5rem;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: left;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg-surface);
    -webkit-text-stroke: 1px var(--border-color);
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.step p {
    color: var(--text-muted);
    z-index: 2;
    position: relative;
}

/* Districts Section */
.districts-section {
    background: var(--bg-body);
    border-top: 1px solid var(--border-color);
}

.districts-text-block {
    color: var(--text-main);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.districts-text-block strong {
    color: var(--secondary);
    font-weight: 600;
}

/* Form Section */
.form-section {
    background: var(--secondary);
    color: var(--text-main);
}

.ankauf-form {
    background: var(--bg-body);
    padding: 3rem;
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}



/* Horizontal Row Footer */
.footer-horizontal {
    background: #03050a;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.f-row {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.03);
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.f-header-row {
    justify-content: space-between;
}

.trust-icons-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-weight: 600;
}

.dot-sep {
    color: var(--primary);
    opacity: 0.5;
}

.f-label {
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.f-nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.f-nav-links a {
    color: rgba(255,255,255,0.6) !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.f-nav-links a:hover {
    color: var(--primary) !important;
}

.f-contact-row {
    border-bottom: none;
    padding-top: 1.5rem;
}

.c-item-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.c-item-inline svg {
    color: var(--primary);
}

.c-item-inline a {
    color: var(--text-main) !important;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom-horizontal {
    background: #020306;
    padding: 1.25rem 0;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.fb-flex-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-legal {
    display: flex;
    gap: 1.5rem;
}

.f-legal a {
    color: rgba(255,255,255,0.3) !important;
    text-decoration: none;
}

@media (max-width: 768px) {
    .f-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .f-header-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .f-nav-links {
        gap: 0.75rem 1.25rem;
    }
    .fb-flex-inline {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.legal-links a:hover {
    color: var(--text-main) !important;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    .fb-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-title::after {
        left: 0; /* Align left even on mobile for professional look */
    }
}

/* Mobile */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-body);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow);
    }

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

    .hamburger {
        display: flex;
        margin-right: -0.5rem;
    }

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

    .ankauf-form {
        padding: 1.5rem;
    }

    .mobile-sticky-bar {
        display: flex;
    }

    .bento-card {
        padding: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }

    body {
        padding-bottom: 60px;
        /* Space for sticky bar */
    }
}

/* Trust Bar 2026 Premium Design */
.trust-bar {
    background: transparent;
    padding: 3rem 0 5rem 0;
    position: relative;
    z-index: 10;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-bar-item {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(10, 37, 64, 0.06);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(10, 37, 64, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.trust-bar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ea580c);
    opacity: 0;
    transition: 0.4s ease;
}

.trust-bar-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.2);
}

.trust-bar-item:hover::before {
    opacity: 1;
}

.t-icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.t-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    fill: none;
}

.trust-bar-item:hover .t-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.t-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.t-title {
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.15rem;
    display: block;
    margin: 0;
}

.t-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: block;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .trust-bar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Testimonials */
.testimonial-card {
    background: rgba(10, 37, 64, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(10, 37, 64, 0.1);
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(10, 37, 64, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.customer-info strong {
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.stars {
    color: #FBBF24;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
}

.districts-section {
    background: #050811 !important;
    color: #f8fafc !important;
}

.districts-section h2 {
    color: var(--text-main) !important;
}

.districts-text-block p {
    color: #94a3b8 !important;
}

.districts-text-block strong {
    color: var(--primary) !important;
}

section:not(.hero) {
    background: var(--bg-body);
    color: var(--text-main);
}

.section-padding:not(.hero) {
    background: var(--bg-body) !important;
}

.districts-text-block p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-surface);
    color: var(--text-main);
    padding: 5rem 0;
}

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

.faq-item {
    background: rgba(10, 37, 64, 0.03);
    border: 1px solid rgba(10, 37, 64, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(10, 37, 64, 0.05);
}

.faq-icon {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    /* arbitrary max height for animation */
}

/* Consolidated Styles from Index */
.hero-phone {
    margin-bottom: 2rem;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
}

.hero-phone a {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 900;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    line-height: 1;
}

.hero-phone a svg {
    width: 45px;
    height: 45px;
    color: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .hero-phone a {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .hero-phone a {
        font-size: 2rem;
        gap: 10px;
    }

    .hero-phone a svg {
        width: 30px;
        height: 30px;
    }
}

/* --- 2026 Premium Glassmorphism Form --- */
.glass-form-container {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 37, 64, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(10, 37, 64, 0.05);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.glass-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 50%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.05), transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.glass-form {
    position: relative;
    z-index: 1;
}

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

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

.glass-form label {
    display: block;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-form input,
.glass-form select,
.glass-form textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(10, 37, 64, 0.1);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
    color: rgba(10, 37, 64, 0.3);
}

.glass-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.5)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}

.glass-form select option {
    background: var(--bg-surface);
    color: var(--text-main);
}

.btn-premium-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #e85d04);
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.btn-premium-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.btn-premium-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-premium-submit:hover svg {
    transform: translateX(5px);
}

.spam-protection-group {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spam-question {
    color: var(--secondary-light);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.spam-protection-group input {
    background: rgba(0, 0, 0, 0.3) !important;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary) !important;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .glass-form-container {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .spam-protection-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .spam-protection-group input {
        width: 100%;
    }
}

/* Post-Action Success Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.success-overlay.active {
    display: flex;
    opacity: 1;
}

.success-modal {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-overlay.active .success-modal {
    transform: translateY(0);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon-wrapper svg {
    color: #16a34a;
    width: 40px;
    height: 40px;
}

.success-modal h2 {
    color: #0f172a;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.success-modal p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-modal-primary,
.btn-modal-secondary {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-modal-primary {
    background: #0f172a;
    color: var(--text-main);
}

.btn-modal-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.btn-modal-secondary {
    background: #d97706;
    color: var(--text-main);
}

.btn-modal-secondary:hover {
    background: #b45309;
    transform: translateY(-2px);
}

/* Statistics Bar */
.stats-bar {
    background: var(--bg-surface);
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Comparison Table */
.comparison-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-surface);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.02);
    font-weight: 800;
    font-size: 1.25rem;
}

.comparison-table .feature-col { text-align: left; font-weight: 700; }
.comparison-table .check { color: var(--whatsapp); font-size: 1.5rem; }
.comparison-table .cross { color: #ef4444; font-size: 1.5rem; }

/* FAQ Accordion */
.faq-accordion { max-width: 900px; margin: 4rem auto 0; }
.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.3rem;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--text-main);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2.5rem;
    max-height: 600px;
}

/* Why us cards - Modern Floating Style */
.why-premium-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
}

.why-premium-card:hover {
    transform: translateY(-12px);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.6), 
                0 0 30px rgba(249, 115, 22, 0.1);
}

.why-premium-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

/* Modern Testimonials Grid WITHOUT images */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-stars {
    color: #FBBF24;
    font-size: 0.9rem;
}

.review-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.review-body p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.review-author {
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Expert Section Update */
.expert-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.expert-profile {
    flex-shrink: 0;
    width: 400px;
}

.expert-profile img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.expert-content {
    flex-grow: 1;
}

@media (max-width: 991px) {
    .expert-layout {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .expert-profile {
        width: 100%;
        max-width: 320px;
    }
    .expert-content h2 {
        text-align: center !important;
    }
    .hero-usp {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stat-number { font-size: 3rem; }
    .comparison-table { min-width: 100%; }
}

/* --- 2026 CLEAN PARALLAX REDESIGN OVERRIDES --- */
body {
    background: var(--bg-body);
}

.hero {
    background: transparent !important;
    
    
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

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

.hero-glass-card {
    background: rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 25px 50px -12px rgba(10, 37, 64, 0.15) !important;
    border: 1px solid rgba(10, 37, 64, 0.05) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
}

.hero-glass-card h1 {
    color: #0A2540 !important;
    text-shadow: none !important;
}

.hero-glass-card .hero-desc {
    color: #475569 !important;
}

.hero-usps {
    border-top: 1px solid rgba(10, 37, 64, 0.1) !important;
}

.hero-usp {
    color: #0A2540 !important;
}

.mesh-gradient { display: none !important; }

header {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.05) !important;
    border-bottom: 1px solid rgba(10, 37, 64, 0.05) !important;
}

.nav-links a { color: #0A2540 !important; }
.logo { color: #0A2540 !important; }

/* Sticky Bar Overrides */
.mobile-sticky-bar {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(10, 37, 64, 0.1) !important;
    box-shadow: 0 -4px 20px rgba(10, 37, 64, 0.05) !important;
}

.hero-phone-btn svg path { fill: #ffffff !important; } 

.bento-card {
    background: #ffffff !important;
    border: 1px solid rgba(10, 37, 64, 0.05) !important;
}
.why-premium-card, .review-card, .faq-item {
    background: #ffffff !important;
    border: 1px solid rgba(10, 37, 64, 0.05) !important;
}

.footer-horizontal {
    background: #f8fafc !important;
    border-top: 1px solid rgba(10, 37, 64, 0.08) !important;
    color: #0A2540 !important;
}

.footer-horizontal .trust-icons-row {
    color: rgba(10, 37, 64, 0.6) !important;
}

.footer-horizontal .f-nav-links a {
    color: rgba(10, 37, 64, 0.7) !important;
}

.footer-horizontal .f-nav-links a:hover {
    color: var(--primary) !important;
}

.footer-horizontal .c-item-inline {
    color: rgba(10, 37, 64, 0.7) !important;
}


/* --- FLOATING WHATSAPP BUTTON WITH NEON PULSE --- */
.floating-wa {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366; /* Modern WhatsApp Green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2s infinite;
    transition: transform 0.3s ease;
    border: 2px solid #ffffff;
}

.floating-wa svg {
    margin-top: 1px;
    margin-left: 1px;
}

.floating-wa:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (min-width: 769px) {
    .floating-wa {
        bottom: 40px;
        right: 40px;
        width: 65px;
        height: 65px;
    }
}
