/* Virtual Vanguards - service-analytics-reports
   Shared by: ar/services/analytics-reports.html, services/analytics-reports.html, tr/services/analytics-reports.html
   Edit here, not in the HTML. */

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

        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #06b6d4;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --dark: #0f172a;
            --darker: #020617;
            --text-light: #cbd5e1;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--darker);
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--secondary), var(--success)) !important;
            color: white !important;
            padding: 0.75rem 1.75rem !important;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

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

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .service-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--darker), var(--dark));
            position: relative;
            overflow: hidden;
        }

        .particles-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--secondary);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-30px) translateX(30px); }
            50% { transform: translateY(-60px) translateX(-30px); }
            75% { transform: translateY(-30px) translateX(30px); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            padding-top: 60px;
        }

        .breadcrumb {
            margin-bottom: 2rem;
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--primary);
        }

        .breadcrumb i {
            color: var(--text-light);
            font-size: 0.7rem;
        }

        .breadcrumb span {
            color: var(--secondary);
            font-weight: 600;
        }

        .trust-badges {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .trust-badge i {
            color: var(--success);
            font-size: 1.2rem;
        }

        .service-icon-large {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--secondary), var(--success));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 20px 60px rgba(6, 182, 212, 0.4);
            animation: pulse 3s infinite;
        }

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

        h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-tagline {
            font-size: 1.4rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

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

        .stat-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--secondary), var(--success));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--secondary), var(--success));
            color: white;
            box-shadow: 0 10px 40px rgba(6, 182, 212, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(6, 182, 212, 0.6);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* DASHBOARD PREVIEW */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
        }

        .dashboard-section {
            background: var(--dark);
        }

        .dashboard-preview {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 2rem;
            position: relative;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dashboard-title {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .dashboard-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }

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

        .metric-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s;
        }

        .metric-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
        }

        .metric-label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .metric-value {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
        }

        .metric-change {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .metric-change.positive {
            color: var(--success);
        }

        .metric-change.negative {
            color: var(--danger);
        }

        .chart-container {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .chart-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .chart-bars {
            display: flex;
            align-items: flex-end;
            gap: 1rem;
            height: 200px;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(180deg, var(--secondary), var(--success));
            border-radius: 8px 8px 0 0;
            position: relative;
            transition: all 0.5s ease;
            cursor: pointer;
        }

        .chart-bar:hover {
            opacity: 0.8;
        }

        .chart-bar-label {
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.75rem;
            color: var(--text-light);
            white-space: nowrap;
        }

        .chart-bar-value {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.85rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .insights-box {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
            border: 2px solid var(--secondary);
            border-radius: 16px;
            padding: 2rem;
        }

        .insights-title {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .insights-title i {
            color: var(--secondary);
            font-size: 1.5rem;
        }

        .insights-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .insight-item {
            display: flex;
            align-items: start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
        }

        .insight-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--secondary), var(--success));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .insight-text {
            flex: 1;
        }

        .insight-text strong {
            color: var(--secondary);
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--secondary), var(--success));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .benefit-item {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 2rem;
            align-items: start;
        }

        .benefit-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary), var(--success));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
        }

        .benefit-content h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .benefit-content p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
        }

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

        .process-timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--secondary), var(--success));
        }

        .process-step {
            position: relative;
            padding-left: 120px;
            margin-bottom: 4rem;
        }

        .step-number {
            position: absolute;
            left: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary), var(--success));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
            z-index: 1;
        }

        .step-content h3 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .step-content p {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* Calculator Section */
        .calculator-section {
            background: var(--dark);
        }

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

        .calculator-card {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 32px;
            padding: 3rem;
        }

        .calculator-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .calculator-header i {
            font-size: 3rem;
            color: var(--danger);
            animation: warning-pulse 2s infinite;
        }

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

        .calculator-header h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--danger);
            margin-top: 1rem;
        }

        .cost-breakdown {
            margin: 2rem 0;
        }

        .cost-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            transition: all 0.3s;
            opacity: 0;
            animation: slideInLeft 0.5s forwards;
        }

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

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

        .cost-item:hover {
            background: rgba(239, 68, 68, 0.05);
            border-color: var(--danger);
            transform: translateX(5px);
        }

        .cost-info {
            display: flex;
            flex-direction: column;
        }

        .cost-label {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .cost-sublabel {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .cost-amount {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--danger);
            font-family: 'Courier New', monospace;
        }

        .total-separator {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--danger), transparent);
            margin: 2rem 0;
        }

        .total-cost {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem;
            background: rgba(239, 68, 68, 0.1);
            border: 2px solid var(--danger);
            border-radius: 20px;
            margin-bottom: 2rem;
        }

        .total-label {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--danger);
            text-transform: uppercase;
        }

        .total-amount {
            font-size: 3rem;
            font-weight: 900;
            color: var(--danger);
            font-family: 'Courier New', monospace;
        }

        .vs-separator {
            text-align: center;
            margin: 3rem 0;
            position: relative;
        }

        .vs-separator span {
            background: var(--darker);
            padding: 0 2rem;
            font-weight: 800;
            font-size: 1.5rem;
        }

        .our-cost {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
            border: 2px solid var(--success);
            border-radius: 20px;
            margin-bottom: 2rem;
        }

        .our-cost-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--success);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .our-cost-price {
            font-size: 4rem;
            font-weight: 900;
            color: var(--success);
            font-family: 'Courier New', monospace;
        }

        .our-cost-price span {
            font-size: 2rem;
            color: var(--text-light);
        }

        .savings-highlight {
            display: grid;
            grid-template-columns: 80px 1fr auto;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
            border: 2px solid var(--warning);
            border-radius: 20px;
            margin-bottom: 2rem;
        }

        .savings-icon {
            font-size: 3.5rem;
            animation: bounce 2s infinite;
        }

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

        .savings-text {
            display: flex;
            flex-direction: column;
        }

        .savings-label {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--warning);
            text-transform: uppercase;
        }

        .savings-amount {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--warning);
            font-family: 'Courier New', monospace;
        }

        .savings-percentage {
            background: var(--warning);
            color: var(--darker);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 900;
            font-size: 1.2rem;
        }

        .calculator-cta {
            text-align: center;
            margin-top: 2rem;
        }

        .calculator-cta .btn {
            font-size: 1.2rem;
            padding: 1.25rem 2.5rem;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: var(--secondary);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .faq-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--secondary), var(--success));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 700;
        }

        .faq-answer {
            color: var(--text-light);
            line-height: 1.8;
            padding-left: 3.5rem;
        }

        /* Footer */
        footer {
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-about h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-links h4 {
            margin-bottom: 1rem;
        }

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

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: var(--text-light);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            h1 { font-size: 2.5rem; }
            .footer-grid { grid-template-columns: 1fr; }
            .menu-toggle { display: flex; }
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(15, 23, 42, 0.98);
                flex-direction: column;
                padding: 2rem;
                transition: left 0.3s;
            }
            .nav-menu.active { left: 0; }
            .benefit-item {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .process-timeline::before {
                display: none;
            }
            .process-step {
                padding-left: 0;
            }
            .step-number {
                position: relative;
                margin-bottom: 1rem;
            }
            .chart-bars {
                height: 150px;
            }
        }

        @media (max-width: 640px) {
            h1 { font-size: 2rem; }
            .savings-highlight { 
                grid-template-columns: 1fr; 
                text-align: center; 
            }
            .calculator-card { 
                padding: 2rem 1.5rem; 
            }
            .cost-item {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            .total-cost {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
    
/* ── WhatsApp Floating Button ── */
.wa-float{position:fixed;bottom:28px;right:28px;z-index:9999;display:flex;flex-direction:column;align-items:flex-end;gap:10px;}
.wa-tooltip{background:rgba(10,14,30,0.95);color:#fff;font-size:0.82rem;font-weight:600;padding:7px 14px;border-radius:8px;white-space:nowrap;border:1px solid rgba(255,255,255,0.1);opacity:0;transform:translateX(8px);transition:all 0.25s;pointer-events:none;backdrop-filter:blur(10px);}
.wa-btn{width:58px;height:58px;background:linear-gradient(135deg,#25d366,#128c7e);border-radius:50%;display:flex;align-items:center;justify-content:center;text-decoration:none;box-shadow:0 4px 20px rgba(37,211,102,0.4);transition:all 0.3s;position:relative;}
.wa-btn::before{content:'';position:absolute;inset:-4px;border-radius:50%;background:rgba(37,211,102,0.25);animation:wa-pulse 2s ease-out infinite;}
.wa-btn:hover{transform:scale(1.1);box-shadow:0 8px 32px rgba(37,211,102,0.55);}
.wa-btn:hover+.wa-tooltip,.wa-float:hover .wa-tooltip{opacity:1;transform:translateX(0);}
.wa-btn svg{width:30px;height:30px;fill:#fff;}
@keyframes wa-pulse{0%{transform:scale(1);opacity:0.6;}100%{transform:scale(1.6);opacity:0;}}
@media(max-width:768px){.wa-float{bottom:20px;right:16px;}.wa-btn{width:52px;height:52px;}.wa-tooltip{display:none;}}

/* ── Cookie Consent Banner ── */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;z-index:10000;padding:1rem 2rem;background:rgba(10,14,30,0.97);border-top:1px solid rgba(99,102,241,0.3);backdrop-filter:blur(20px);display:flex;align-items:center;justify-content:space-between;gap:1.5rem;transform:translateY(100%);transition:transform 0.4s ease;flex-wrap:wrap;}
.cookie-banner.visible{transform:translateY(0);}
.cookie-text{font-size:0.88rem;color:#94a3b8;line-height:1.5;flex:1;min-width:200px;}
.cookie-text a{color:#6366f1;text-decoration:none;}
.cookie-text a:hover{text-decoration:underline;}
.cookie-btns{display:flex;gap:0.75rem;flex-shrink:0;}
.cookie-accept{padding:0.55rem 1.4rem;background:linear-gradient(135deg,#6366f1,#4f46e5);color:#fff;border:none;border-radius:8px;font-size:0.88rem;font-weight:700;cursor:pointer;font-family:inherit;transition:opacity 0.2s;}
.cookie-accept:hover{opacity:0.9;}
.cookie-decline{padding:0.55rem 1.2rem;background:transparent;color:#64748b;border:1px solid rgba(255,255,255,0.1);border-radius:8px;font-size:0.88rem;font-weight:600;cursor:pointer;font-family:inherit;transition:all 0.2s;}
.cookie-decline:hover{color:#94a3b8;border-color:rgba(255,255,255,0.2);}
@media(max-width:600px){.cookie-banner{flex-direction:column;align-items:flex-start;padding:1.2rem;}.cookie-btns{width:100%;}.cookie-accept,.cookie-decline{flex:1;text-align:center;}}

  /* ── Language Switcher ── */
  .vv-lang-li { position: relative; display: flex; align-items: center; }
  .vv-lang-btn {
    display: flex; align-items: center; gap: 6px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 8px; padding: 6px 12px;
    color: #e2e8f0; font-size: 13px; font-weight: 600;
    cursor: pointer; font-family: inherit;
    transition: background 0.2s, border-color 0.2s;
  }
  .vv-lang-btn:hover { background: rgba(99,102,241,0.22); border-color: rgba(99,102,241,0.55); }
  .vv-lang-flag { font-size: 15px; line-height: 1; }
  .vv-lang-code { letter-spacing: 0.5px; }
  .vv-lang-arrow { transition: transform 0.2s; flex-shrink: 0; color: #94a3b8; }
  .vv-lang-li.open .vv-lang-arrow { transform: rotate(180deg); }
  .vv-lang-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); right: 0;
    background: #0f172a; border: 1px solid rgba(99,102,241,0.25);
    border-radius: 12px; padding: 6px; min-width: 155px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5); z-index: 9999;
  }
  .vv-lang-li.open .vv-lang-dropdown { display: block; }
  .vv-lang-option {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 14px; border-radius: 8px;
    font-size: 13px; font-weight: 500; color: #cbd5e1;
    cursor: pointer; text-decoration: none;
    transition: background 0.15s;
  }
  .vv-lang-option:hover, .vv-lang-option.vv-lang-active { background: rgba(99,102,241,0.18); color: #fff; }
  .vv-lang-option span { font-size: 16px; line-height: 1; }
  @media (max-width: 1024px) {
    .vv-lang-li { width: 100%; margin-top: 0.5rem; }
    .vv-lang-btn { width: 100%; justify-content: center; }
    .vv-lang-dropdown { position: static; box-shadow: none; margin-top: 6px; border-radius: 10px; }
  }


/* ===== RTL (Arabic) adjustments =====
   The Arabic pages share this stylesheet and only set dir="rtl" on <html>,
   so anything pinned with a physical `right` needs mirroring here. */
[dir="rtl"] .wa-float{right:auto;left:28px;align-items:flex-start;}
[dir="rtl"] .wa-tooltip{transform:translateX(-10px);}
[dir="rtl"] .wa-btn:hover+.wa-tooltip,[dir="rtl"] .wa-float:hover .wa-tooltip{transform:translateX(0);}
@media(max-width:768px){[dir="rtl"] .wa-float{right:auto;left:16px;}}
