/* Global Variables */
:root {
    --primary-color: #0F172A;
    /* Deep Space Blue */
    --primary-dark: #020617;
    --accent-color: #FBBF24;
    /* Amber */
    --accent-hover: #F59E0B;
    --secondary-color: #F8FAFC;
    --text-color: #1E293B;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-gloss: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Glossy Gradients */
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-accent: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

/* Live Status Indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #22c55e;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
    z-index: -1;
}

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2.5); opacity: 0; }
}

.status-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #15803d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #FAFAFA;
    /* Slightly warmer white */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    /* Bolder headings as requested */
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

strong {
    font-weight: 700;
    color: var(--primary-color);
}

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

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

ul {
    list-style: none;
}

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

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

.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

.bg-light {
    background-color: var(--secondary-color);
}

.section-padding {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(to bottom right, #F5A623, #E0961F);
    color: #102A43;
    /* Dark text on gold for readability */
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
    background: linear-gradient(to bottom right, #FFB439, #E0961F);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #2ecc71 0%, #218838 100%);
}

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

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

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

.whatsapp-btn-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero { background: #FFFFFF; padding-top: 130px; display: flex; align-items: center; min-height: 80vh; position: relative; }

.hero::before { display: none; }

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    width: 100%;
}

.hero-text h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; color: #0F172A; font-weight: 850; text-transform: uppercase; }

.hero-text .subtitle { font-size: 1.5rem; margin-bottom: 30px; font-weight: 800; background: linear-gradient(135deg, #F5A623 0%, #0F172A 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }


/* Evaluation Form Card */
.evaluation-card {
    background: var(--white);
    color: var(--text-color);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-gloss);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.evaluation-card h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

.benefit-title {
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

/* Vehicle Types Section */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.vehicle-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vehicle-content {
    padding: var(--spacing-md);
}

.vehicle-title {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--accent-color);
    border-radius: 50%;
    line-height: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

/* Sticky Mobile 3D Actions */
.sticky-mobile-actions {
    display: none; /* Mobile only via Media Query */
    position: fixed;
    bottom: 20px;
    left: 15px;
    right: 15px;
    z-index: 2000;
    gap: 12px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

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

.sticky-btn {
    flex: 1;
    border-radius: 15px;
    padding: 16px 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.1s ease;
    border: none;
    letter-spacing: 0.5px;
}

.sticky-call {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FBBF24;
    box-shadow: 0 4px 0 #020617;
}

.sticky-whatsapp {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #0F172A;
    box-shadow: 0 4px 0 #D97706;
}

.sticky-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0,0,0,0.2) !important;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-color);
    border-radius: 50px;
    box-shadow: 0 4px 0 #D97706;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #D97706, 0 10px 20px rgba(251, 191, 36, 0.4);
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #D97706;
}


/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

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

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

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

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
    .header {
        height: 70px;
    }

    .header .container {
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 40px 15px;
        text-align: center;
    }

    .evaluation-card {
        margin-top: 20px;
    }

    /* Mobile Menu Redesign - Full Screen Overlay */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        gap: 15px;
        z-index: 1100;
        transition: var(--transition);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.4rem;
        color: var(--white);
        width: 100%;
        max-width: 280px;
        height: 54px;
        /* Large touch target 44-56px */
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--accent-color);
        color: var(--primary-color);
        border-color: var(--accent-color);
    }

    .header-actions {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 1200;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--secondary-color);
        border-radius: 8px;
        font-size: 1.4rem;
    }

    .nav-menu.active~.hamburger {
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    /* Floating Sticky Actions - More Premium */
    .sticky-mobile-actions {
        display: flex;
        position: fixed;
        bottom: 15px;
        left: 15px;
        right: 15px;
        gap: 12px;
        z-index: 1050;
        opacity: 0;
        pointer-events: none;
        transform: translateY(100px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .sticky-mobile-actions.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .sticky-btn {
        flex: 1;
        height: 56px;
        /* Large touch target */
        border-radius: 14px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .sticky-call {
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a3c5a 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sticky-whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
        color: white;
        /* Changed for better contrast against green */
    }

    body {
        padding-bottom: 85px;
        /* Offset for floating buttons */
    }

    .hero-text h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; color: #0F172A; font-weight: 850; text-transform: uppercase; }

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

    .evaluation-card {
        width: 100%;
        max-width: 450px;
    }
}

/* USP List Hero */
.usp-list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
}

.usp-list li { display: flex; align-items: center; gap: 12px; font-size: 1.15rem; font-weight: 600; color: #0F172A; }

.usp-icon {
    font-size: 1.3rem;
    filter: none;
}

/* Testimonials Slider */
.testimonials {
    background-color: var(--white);
    position: relative;
}

.testimonials .section-header {
    margin-bottom: 50px;
}

.testimonials-slider {
    padding: 20px 0 60px !important;
}

.testimonial-item {
    height: auto;
}

.testimonial-content {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(0, 51, 102, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-item:hover .testimonial-content {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

/* Swiper Custom Styling */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: var(--white);
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: var(--shadow-card);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

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

@media (max-width: 900px) {
    .hero-text .usp-list {
        align-items: center;
        text-align: center;
    }

    .testimonial-content {
        padding: 30px 20px;
    }
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-card);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
    color: var(--accent-color);
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

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

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

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

/* --- NEW PREMIUM UI COMPONENTS --- */
.trust-stats-bar {
    background: var(--primary-color);
    padding: 30px 0;
    color: white;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.stat-item {
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}
.stat-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Glassmorphism Cards */
.glass-3d {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-gloss);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
}
.glass-3d:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Comparison Table */
.comparison-container {
    overflow-x: auto;
    margin: 40px 0;
}
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.comparison-table th, .comparison-table td {
    padding: 18px 25px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.comparison-table th {
    background: #f8fafc;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}
.comparison-table th:first-child, .comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}
.comparison-table td.brand-col {
    background: rgba(251, 191, 36, 0.1);
    font-weight: 700;
    color: var(--primary-dark);
}
.comparison-table th.brand-col {
    background: var(--accent-color);
    color: var(--primary-dark);
}
.comparison-table tr:last-child td { border-bottom: none; }

/* Modern FAQ Accordion (Glass) */
.faq-modern .faq-item {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    margin-bottom: 15px;
}
.faq-modern .faq-item:hover {
    background: white;
    border-color: rgba(0,0,0,0.1);
}
.faq-modern summary {
    font-size: 1.1rem;
    padding: 20px;
}

/* Hexagon / Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.feature-card {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
    border-radius: 20px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    transition: var(--transition);
}
.feature-card:hover .feature-icon-wrapper {
    transform: rotate(0deg) scale(1.1);
}
.feature-icon-wrapper i, .feature-icon-wrapper span {
    transform: rotate(-45deg);
    font-size: 2rem;
    color: var(--primary-color);
    display: inline-block;
}
.feature-card:hover .feature-icon-wrapper i, .feature-card:hover .feature-icon-wrapper span {
    transform: rotate(0deg);
}

/* E-E-A-T Section */
.eeat-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.eeat-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FBBF24;
    font-size: 2rem;
    font-weight: bold;
    border: 3px solid #FBBF24;
    flex-shrink: 0;
}
.eeat-badges {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.eeat-badge {
    background: #e2e8f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
}

/* SEO Silo Grid */
.seo-silo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.seo-silo-link {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.2s;
}
.seo-silo-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: 15px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
}
.breadcrumbs li:not(:last-child)::after {
    content: '�';
    margin: 0 10px;
    font-size: 1.1rem;
    color: #cbd5e1;
}
.breadcrumbs a {
    color: var(--primary-color);
    font-weight: 500;
}
.breadcrumbs a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* --- Pulses & Shimmers --- */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.btn-shimmer {
    position: relative;
    overflow: hidden;
}
.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg) translateX(-150%);
    animation: shimmer 3s infinite;
}

@keyframes pulse-soft {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.pulse-hover:hover {
    animation: pulse-soft 0.4s ease-in-out;
}

/* --- Floating WhatsApp --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

@media (max-width: 900px) {
    .floating-whatsapp {
        display: flex;
        bottom: 95px; /* Above the sticky buttons */
        right: 20px;
        width: 55px;
        height: 55px;
        z-index: 1060;
    }
}

/* --- WhatsApp Icon Styling --- */
.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}
.floating-whatsapp .whatsapp-icon {
    width: 32px;
    height: 32px;
}


/* --- Netzlicht (Animated Grid Background) --- */
.hero { background: #FFFFFF; padding-top: 130px; display: flex; align-items: center; min-height: 80vh; position: relative; }
.hero::before { display: none; }
.hero::after { display: none; }
@keyframes netzlicht-sweep {
    from { transform: translateX(-100%) skewX(-20deg); }
    to { transform: translateX(200%) skewX(-20deg); }
}
.hero-content {
    position: relative;
    z-index: 3;
}
.hero-text h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; color: #0F172A; font-weight: 850; text-transform: uppercase; }
.hero-text .subtitle { font-size: 1.5rem; margin-bottom: 30px; font-weight: 800; background: linear-gradient(135deg, #F5A623 0%, #0F172A 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.usp-list li { display: flex; align-items: center; gap: 12px; font-size: 1.15rem; font-weight: 600; color: #0F172A; }


/* --- Phone Icon Styling --- */
.phone-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* --- Phase 1 & 2 UI --- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
.benefit-card { padding: 40px; border-radius: 20px; transition: 0.3s; }
.benefit-card:hover { transform: translateY(-10px); background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,0.06); }
.comparison-container { border-radius: 24px; overflow: hidden; margin-top: 50px; }
.comparison-table { width: 100%; border-collapse: collapse; background: #fff; }
.comparison-table th, .comparison-table td { padding: 25px; border-bottom: 1px solid #eee; }
.comparison-table th { background: #0F172A; color: #fff; }
.comparison-table th.highlight { background: #FBBF24; color: #0F172A; }
.faq-accordion { margin-top: 40px; }
.faq-item { margin-bottom: 15px; border-radius: 15px; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.faq-question { padding: 20px 30px; font-weight: 700; cursor: pointer; color: #0F172A; }
.faq-answer { padding: 0 30px 25px; color: #64748b; }
.eeat-card { padding: 40px; border-radius: 30px; background: #fff; }
.eeat-avatar { background: #0F172A; color: #FBBF24; border-radius: 25%; display: flex; align-items: center; justify-content: center; font-weight: 850; border: 3px solid #FBBF24; }
.glass-3d { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border: 1px solid #fff; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
@media (max-width: 768px) { .comparison-table th:nth-child(2), .comparison-table td:nth-child(2) { display: none; } }

/* --- SEO Silo & Internal Linking --- */
.footer-silo {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px;
    padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.silo-group h4 { color: #FBBF24 !important; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; font-size: 1rem; border-bottom: 1px solid rgba(251, 191, 36, 0.2); padding-bottom: 10px; }
.silo-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.silo-links a { color: rgba(255,255,255,0.7) !important; text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; }
.silo-links a:hover { color: #FBBF24 !important; padding-left: 5px; }

.internal-linking-box, .service-silo-box {
    transition: transform 0.3s ease;
}
.internal-linking-box:hover, .service-silo-box:hover {
    transform: translateY(-5px);
}
.silo-matrix a {
    display: block; position: relative; padding-left: 0; transition: all 0.3s ease;
}
.silo-matrix a:hover {
    color: #FBBF24 !important; padding-left: 10px;
}
@media (max-width: 768px) {
    .silo-links { grid-template-columns: 1fr; }
    .footer-silo { gap: 30px; }
}

