.skip-link { position: absolute; top: -100px; left: 0; background: #2563eb; color: #fff; padding: 8px 16px; font-weight: 600; z-index: 99999; text-decoration: none; border-radius: 0 0 8px 0; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* 
   Project: Ihr Autoankauf Hamburg
   Theme: Premium, Trustworthy, Fast
   Colors: #0B2A4A (Primary), #123B63 (Secondary), #FF6A00 (Accent), #F5F7FA (Bg)
*/


:root {
    --primary: #0f172a;
    /* Midnight Blue */
    --primary-light: #1e293b;
    --accent: #2563eb;
    /* Premium Automobile Blue */
    --accent-hover: #1d4ed8;
    --accent-red: #dc2626;
    /* Automotive Red */
    --accent-red-hover: #b91c1c;
    --accent-glass: rgba(37, 99, 235, 0.15);
    --accent-red-glass: rgba(220, 38, 38, 0.1);
    --success: #10b981;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #475569;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-blue: rgba(37, 99, 235, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(37, 99, 235, 0.1), 0 2px 4px -2px rgba(37, 99, 235, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(37, 99, 235, 0.1), 0 8px 10px -6px rgba(37, 99, 235, 0.04);
    --shadow-premium: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --radius-lg: 1.5rem;
}

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

/* Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

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

section {
    padding: 4rem 0;
}

/* --- Header --- */
header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

header#main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(15, 23, 42, 0.98);
}

/* Trust Popup */
.trust-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10002;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--accent-red);
    max-width: 320px;
}

.trust-popup.visible {
    transform: translateX(0);
}

.trust-popup-icon {
    font-size: 1.5rem;
}

.trust-popup-content {
    display: flex;
    flex-direction: column;
}

.trust-popup-content strong {
    font-size: 0.9rem;
    color: var(--primary);
}

.trust-popup-content span {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .trust-popup {
        bottom: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.nav-item {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-item:hover,
.nav-item.active {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-number {
    font-size: 1.15em;
    font-weight: 800;
    margin-left: 0.6rem;
    color: #ffd700;
    /* Gold for premium look */
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    white-space: nowrap;
    display: inline-block;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

.stars {
    color: #F1C40F;
    display: flex;
    gap: 2px;
}

/* --- FAQ Accordion --- */
.faq-accordion {
    max-width: 850px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    transition: color 0.2s;
}

.faq-item.active .faq-question {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-light);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
    transition: max-height 0.5s ease-in, padding 0.3s ease;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid #f1f5f9;
}

/* Footer Linking Enhancements */
.footer-districts,
.footer-standorte {
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-districts h4,
.footer-standorte h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
}

.district-link {
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
}

.district-link:hover {
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.standorte-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.standorte-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.standorte-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
    .district-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .standorte-grid {
        gap: 1rem;
    }
}

/* --- Utilities --- */
.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

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

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

.w-full {
    width: 100%;
}

.max-w-300 {
    max-width: 300px;
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-light {
    background: white !important;
    color: var(--primary) !important;
}

.district-cloud-link {
    font-weight: bold;
    color: white;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.25rem;
}

.footer-hours li span {
    font-weight: 600;
    color: var(--white);
}

.copyright-section {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 2rem;
    color: #94a3b8;
}

.testimonial-highlight {
    color: var(--accent);
}

.testimonial-lead {
    font-size: 1.2rem;
    font-weight: bold;
}

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* --- Hero Logo --- */
.hero-logo-container {
    padding: 2rem 0;
    background: white;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    width: 600px;
    /* Base width */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hero-logo {
        width: 90%;
    }

    .hero-logo-container {
        padding: 1rem 0;
    }
}

/* --- Features / Trust --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.05);
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.18);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* --- Content Content --- */
.content-block {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.content-block h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.check-list li::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 2px 5px rgba(39, 174, 96, 0.3);
}

/* --- Process --- */
.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

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

/* --- CTA Section --- */
.cta-section {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    border-radius: 16px;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* --- Form --- */
.contact-form-image-container {
    max-width: 450px;
    margin: 0 auto 2rem auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.contact-form-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.contact-form-image-container:hover .contact-form-image {
    transform: scale(1.03);
}

.contact-form {
    background: #f1f5f9;
    /* Slightly darker background for better contrast */
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: inset 0 2px 8px 0 rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
}

.contact-form-container h3 {
    color: var(--accent);
    /* Professional blue for the title */
    font-weight: 800;
}

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

.form-input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
}

/* --- Footer --- */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links key,
.footer-links a:hover {
    color: var(--accent);
}

.district-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.district-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    color: #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-weight: 500;
}

.district-tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.4);
}

/* Light context override for content blocks */
.content-block .district-tag {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.08);
    color: var(--text-dark);
}

.content-block .district-tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 8px 16px -4px rgba(220, 38, 38, 0.3);
}

/* Service Mini-Cards for District Pages */
.service-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.service-mini-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-mini-card:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-mini-card h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--primary);
}

.service-mini-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-mini-card .mini-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.service-mini-card .mini-link::after {
    content: 'Ã¢â€ â€™';
    transition: transform 0.2s ease;
}

.service-mini-card:hover .mini-link::after {
    transform: translateX(4px);
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .hero {
        padding: 3rem 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        word-wrap: break-word;
        hyphens: auto;
        /* Ensure long words break */
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .content-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        gap: 1.5rem;
        margin-top: -1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    /* Mobile Navigation */
    .nav-container {
        position: relative;
    }

    .mobile-menu-btn {
        display: block !important;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--primary);
        z-index: 1001;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        gap: 1rem;
        text-align: center;
        z-index: 1000;
        border-top: 1px solid #f1f1f1;
    }

    .nav-links.active {
        display: flex;
        /* Show when active */
    }

    /* Hide the specific header call button on mobile to avoid duplication with sticky bar */
    header .btn-primary {
        display: none !important;
    }


}

.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-actions.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    border: none;
    cursor: pointer;
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.floating-btn:hover svg {
    transform: scale(1.1);
}

.floating-btn .tooltip {
    position: absolute;
    right: 75px;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

.floating-call {
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
}
.floating-contact {
    background: linear-gradient(135deg, var(--accent-red), #ff2a2a);
}
.floating-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
    .floating-btn .tooltip {
        display: none;
    }
}

/* Contact Form Styles */
.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--primary);
    /* Darker blue for better visibility */
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    background: #ffffff;
    /* Explicitly white to stand out against form bg */
    border: 1.5px solid #d1d5db;
    /* Slightly darker border for better definition */
    border-radius: 0.5rem;
    font-family: inherit;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

::placeholder {
    color: #94a3b8;
    opacity: 1;
    /* Firefox */
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.375rem;
    display: none;
}

.form-status.success {
    background-color: #def7ec;
    color: #03543f;
    border: 1px solid #bcf0da;
    display: block;
}

.form-status.error {
    background-color: #fde8e8;
    color: #9b1c1c;
    border: 1px solid #fbd5d5;
    display: block;
}

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

/* --- Locations Grid --- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.location-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.location-card a {
    color: var(--primary);
    font-weight: 500;
    display: block;
    width: 100%;
    height: 100%;
}

/* --- Trust Pills (Merged from master.html) --- */
.trust-pills {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 2rem;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(4px);
    color: var(--white);
}

.trust-pill.highlight {
    background: #27AE60;
    border-color: #27AE60;
}

/* --- Testimonials (Merged from master.html) --- */
.testimonials-section {
    padding: 4rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    margin: 4rem auto;
    box-shadow: var(--shadow-md);
}

.section-header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

header#main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(15, 23, 42, 0.98);
}

/* Trust Popup */
.trust-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10002;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--accent-red);
    max-width: 320px;
}

.trust-popup.visible {
    transform: translateX(0);
}

.trust-popup-icon {
    font-size: 1.5rem;
}

.trust-popup-content {
    display: flex;
    flex-direction: column;
}

.trust-popup-content strong {
    font-size: 0.9rem;
    color: var(--primary);
}

.trust-popup-content span {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .trust-popup {
        bottom: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.stars {
    color: #F1C40F;
    display: flex;
    gap: 2px;
}

/* --- Redesigned Service Links (Screenshot Style) --- */
.glass-features-container {
    padding: 3rem 0;
    background: #f8fafc;
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.03);
}

.glass-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 0.5rem;
}

.glass-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 0.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.02);
    text-decoration: none !important;
}

.glass-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
    border-color: var(--accent);
}

.glass-icon-circle {
    width: 54px;
    height: 54px;
    background: #eff6ff;
    /* Light Blue */
    border: 1px solid #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.glass-feature-card:hover .glass-icon-circle {
    background: #dbeafe;
    transform: scale(1.1);
}

.glass-icon {
    font-size: 1.5rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.825rem;
    color: #1e3a8a;
    /* Deep Navy/Blue from screenshot */
    line-height: 1.3;
    transition: color 0.3s ease;
}

.glass-feature-card:hover .glass-label {
    color: var(--accent);
}

@media (max-width: 1200px) {
    .glass-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .glass-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .glass-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Glass Card Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-premium);
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Redesigned Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 3rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    color: var(--white);
}

.stat-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: 0 8px 16px rgba(220, 38, 38, 0.2);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Redesigned Comparison Table */
.comparison-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.comparison-wrapper {
    max-width: 900px;
    margin: 3.5rem auto 0;
    background: var(--white);
    border-radius: 2rem;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th {
    padding: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    background: #f8fafc;
    color: var(--primary);
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table th.highlight {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    position: relative;
}

.comparison-table th.highlight::after {
    content: 'TOP WAHL';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-red);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-bottom-left-radius: 0.75rem;
    letter-spacing: 0.05em;
}

.comparison-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
    font-size: 1.05rem;
}

.comp-feature {
    color: var(--primary);
    width: 30%;
    font-weight: 700;
}

.comp-bad {
    color: var(--text-light);
    width: 35%;
}

.comp-good {
    background: rgba(37, 99, 235, 0.03);
    color: var(--primary);
    font-weight: 800;
    width: 35%;
    text-align: center;
}

.icon-good {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    margin-right: 0.75rem;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.icon-good::before {
    content: '\2713';
}

/* Sticky Mobile CTA Premium Update */
/* Removed redundant sticky styles to avoid conflicts */

.btn-whatsapp-dark:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Step-by-Step Process */
.process-section {
    padding: 6rem 0;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-red) 50%, transparent 100%);
    opacity: 0.2;
    z-index: 1;
}

/* Back to Top Button */
.back-to-top {
    display: none !important; /* Hidden because it conflicts with the Floating Action Buttons */
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .back-to-top {
        bottom: 30px;
    }
}

@media (max-width: 900px) {
    .process-grid::before { display: none; }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--white);
    border: 3px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.15);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: translateY(-10px) scale(1.05);
    background: var(--accent-red);
    color: var(--white);
    border-color: var(--white);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}



/* Team Section */
.team-section {
    background: var(--white);
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: var(--glass);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
    padding: 2rem;
}

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

.team-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.team-info h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--accent-red);
    font-weight: 600;
}

.team-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    background: var(--ghost-white);
    padding: 2rem;
    border-radius: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.badge-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .team-trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
