
        .cct-website{
            --primary: #0a1628;
            --secondary: #0d1f3c;
            --accent: #00d4ff;
            --gold: #c8a45c;
            --gold-light: #e8d5a3;
            --text: #e2e8f0;
            --text-muted: #94a3b8;
            --surface: rgba(13, 31, 60, 0.7);
            --surface-solid: #0d1f3c;
            --border: rgba(0, 212, 255, 0.15);
            --glow: rgba(0, 212, 255, 0.3);
            --gradient-1: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
            --gradient-gold: linear-gradient(135deg, #c8a45c 0%, #e8d5a3 50%, #c8a45c 100%);
            --glass: rgba(10, 22, 40, 0.6);
        }

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

        .cct-website{
            scroll-behavior: smooth;
        }

        .cct-website{
            font-family: 'Cairo', 'Outfit', sans-serif;
            background: var(--primary);
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* ===== FORCE DARK BACKGROUND IN ODOO ===== */
        .cct-website{
            background: #0a1628 !important;
            background-color: #0a1628 !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Override Odoo's white background wrappers */
        #wrapwrap, #wrap, .cct-website main, .o_main_content, .oe_structure, .oe_structure_solo, .cct-website .s_text_block, .cct-website .s_cover, .cct-website .s_title, .cct-website [class*="o_cc"], .cct-website [class*="bg-"], .cct-website .container, .cct-website .container-fluid, .o_editable, .o_not_editable{
            background: transparent !important;
            background-color: transparent !important;
        }

        /* ===== HIDE ODOO DEFAULT HEADER & FOOTER (Admin Safe) ===== */
        .cct-website header.o_header_standard, .cct-website header.o_header, .cct-website header.o_header_mobile, .cct-website header.o_top_fixed_element, .cct-website header#top, .cct-website header#oe_structure_header, .cct-website footer.o_footer, .cct-website footer.o_footer_copyright, .cct-website footer#bottom, .cct-website footer#oe_structure_footer, .cct-website footer.o_brand_promotion, .o_footer, .cct-website #o_footer, .cct-website #oe_structure_footer_default, .cct-website #oe_structure_header_default, .o_header_affixed, .o_header_overlay, .o_website_edit_loader{
            display: none !important;
            visibility: hidden !important;
            height: 0 !important;
            min-height: 0 !important;
            max-height: 0 !important;
            overflow: hidden !important;
            padding: 0 !important;
            margin: 0 !important;
            border: none !important;
        }

        /* Remove Odoo body padding */
        .cct-website{
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }

        /* ===== END ODOO HEADER/FOOTER HIDE ===== */

        .cct-website ::-webkit-scrollbar{
            width: 8px;
        }
        .cct-website ::-webkit-scrollbar-track{
            background: var(--primary);
        }
        .cct-website ::-webkit-scrollbar-thumb{
            background: var(--accent);
            border-radius: 4px;
        }

        /* ===== AI HEADER ===== */
        .cct-website .header{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 22, 40, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.4s ease;
        }

        .cct-website .header.scrolled{
            background: rgba(10, 22, 40, 0.95);
            box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
        }

        .cct-website .header-container{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .cct-website .logo-link{
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            cursor: pointer;
            flex-shrink: 0;
        }

        .cct-website .logo-img{
            height: 40px;
            width: auto;
            filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.2));
            transition: all 0.3s ease;
        }

        .cct-website .logo-link:hover .logo-img{
            filter: drop-shadow(0 0 16px rgba(0, 212, 255, 0.5));
        }

        .cct-website .nav-desktop{
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .cct-website .nav-link{
            color: var(--text-muted);
            text-decoration: none;
            padding: 0.35rem 0.7rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            border: none;
            background: none;
            font-family: 'Cairo', sans-serif;
            white-space: nowrap;
        }

        .cct-website .nav-link:hover, .cct-website .nav-link.active{
            color: var(--accent);
            background: rgba(0, 212, 255, 0.08);
        }

        .cct-website .nav-link.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 25%;
            right: 25%;
            height: 2px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .cct-website .header-actions{
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .cct-website .btn{
            padding: 0.4rem 0.9rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Cairo', sans-serif;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            white-space: nowrap;
        }

        .cct-website .btn-primary{
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
        }

        .cct-website .btn-primary:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
        }

        .cct-website .btn-outline{
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
        }

        .cct-website .btn-outline:hover{
            background: rgba(0, 212, 255, 0.1);
            transform: translateY(-2px);
        }

        .cct-website .btn-gold{
            background: var(--gradient-gold);
            color: var(--primary);
            box-shadow: 0 4px 15px rgba(200, 164, 92, 0.3);
        }

        .cct-website .btn-gold:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(200, 164, 92, 0.5);
        }

        .cct-website .mobile-toggle{
            display: none;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ===== PAGES SYSTEM ===== */
        .cct-website .page{
            display: none;
            min-height: 100vh;
            padding-top: 64px;
        }

        .cct-website .page.active{
            display: block;
        }
        /* ===== HERO SECTION ===== */
        .cct-website .hero{
            min-height: calc(100vh - 64px);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cct-website .hero-bg{
            position: absolute;
            inset: 0;
            background: url(/capital_cloud_website/static/src/img/image_css_inline.jpg) center/cover no-repeat;
            z-index: 0;
        }

        .cct-website .hero-overlay{
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.85) 100%);
            z-index: 1;
        }

        .cct-website .hero-content{
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .cct-website .hero-badge{
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 1.25rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            animation: pulse-glow 3s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 10px rgba(0, 212, 255, 0.2); }
            50% { box-shadow: 0 0 25px rgba(0, 212, 255, 0.4); }
        }

        .cct-website .hero-company{
            margin: 1.5rem 0 1.5rem;
            text-align: center;
        }

        .cct-website .hero-company .company-name{
            font-size: 2.8rem;
            font-weight: 900;
            font-family: 'Outfit', 'Cairo', sans-serif;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            text-shadow: 0 0 60px rgba(200, 164, 92, 0.15);
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.15); }
        }

        .cct-website .hero-company .company-divider{
            width: 80px;
            height: 3px;
            background: var(--gradient-gold);
            margin: 0.75rem auto;
            border-radius: 2px;
        }

        .cct-website .hero-company .company-desc{
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 500;
            letter-spacing: 1px;
        }

        .cct-website .hero-badge .ai-dot{
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: blink 1.5s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .cct-website .hero-title{
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-family: 'Outfit', 'Cairo', sans-serif;
        }

        .cct-website .hero-title .gradient-text{
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cct-website .hero-title .gold-text{
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cct-website .hero-subtitle{
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 600px;
            line-height: 1.9;
        }

        .cct-website .hero-cta{
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cct-website .hero-visual{
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .cct-website .hero-oman{
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
            border: 1px solid rgba(0, 212, 255, 0.2);
            animation: float 6s ease-in-out infinite;
        }

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

        .cct-website .hero-stats{
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            animation: float 6s ease-in-out infinite 1s;
        }

        .cct-website .hero-stat-number{
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent);
            font-family: 'Outfit', sans-serif;
        }

        .cct-website .hero-stat-label{
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ===== ANIMATED SVG ICONS ===== */
        @keyframes svgPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.15); opacity: 0.8; }
        }
        @keyframes svgSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        @keyframes svgFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        @keyframes svgGlow {
            0%, 100% { filter: drop-shadow(0 0 2px rgba(0,212,255,0.3)); }
            50% { filter: drop-shadow(0 0 12px rgba(0,212,255,0.8)); }
        }
        @keyframes svgBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        .cct-website .svg-icon-animated{
            display: inline-flex;
            vertical-align: middle;
            line-height: 1;
        }
        .cct-website .svg-icon-animated.pulse{ animation: svgPulse 2s ease-in-out infinite; }
        .cct-website .svg-icon-animated.spin{ animation: svgSpin 8s linear infinite; }
        .cct-website .svg-icon-animated.float{ animation: svgFloat 3s ease-in-out infinite; }
        .cct-website .svg-icon-animated.glow{ animation: svgGlow 2s ease-in-out infinite; }
        .cct-website .svg-icon-animated.bounce{ animation: svgBounce 1.5s ease-in-out infinite; }

        /* ===== LEAD GENERATION HERO - COMPACT ===== */
        .cct-website .lead-hero{
            min-height: 70vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
            position: relative;
        }
        @media (max-width: 768px) {
            .cct-website .lead-hero { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
        }
        .cct-website .lead-hero-left{
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        .cct-website .lead-badge{
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            width: fit-content;
            padding: 0.35rem 0.9rem;
            background: rgba(0, 212, 255, 0.08);
            border: 1px solid rgba(0, 212, 255, 0.25);
            border-radius: 50px;
            font-size: 0.75rem;
            color: var(--accent);
            backdrop-filter: blur(10px);
        }
        .cct-website .lead-badge .pulse-dot{
            width: 6px;
            height: 6px;
            background: #22c55e;
            border-radius: 50%;
            animation: svgPulse 1.5s ease-in-out infinite;
        }
        .cct-website .lead-title{
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.2;
            font-family: 'Outfit', 'Cairo', sans-serif;
        }
        .cct-website .lead-title .gradient-text{
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .cct-website .lead-subtitle{
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 480px;
        }
        .cct-website .lead-cta-row{
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 0.25rem;
        }
        .cct-website .lead-hero-right{
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* ===== LEAD FORM - GLASSMORPHISM ===== */
        .cct-website .lead-form-card{
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 24px;
            padding: 1.75rem;
            width: 100%;
            max-width: 380px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        .cct-website .lead-form-card::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-1);
        }
        .cct-website .lead-form-header{
            text-align: center;
            margin-bottom: 1.25rem;
        }
        .cct-website .lead-form-header h3{
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--accent);
        }
        .cct-website .lead-form-header p{
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .cct-website .lead-form-input{
            width: 100%;
            padding: 0.7rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text);
            font-family: 'Cairo', sans-serif;
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }
        .cct-website .lead-form-input:focus{
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
        }
        .cct-website .lead-form-input::placeholder{
            color: rgba(148, 163, 184, 0.6);
        }
        .cct-website .lead-form-select{
            width: 100%;
            padding: 0.7rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text);
            font-family: 'Cairo', sans-serif;
            font-size: 0.85rem;
            margin-bottom: 0.75rem;
            box-sizing: border-box;
            cursor: pointer;
        }
        .cct-website .lead-form-btn{
            width: 100%;
            padding: 0.8rem;
            background: var(--gradient-1);
            border: none;
            border-radius: 12px;
            color: white;
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .cct-website .lead-form-btn:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 168, 204, 0.4);
        }

        /* ===== TRUST BAR ===== */
        .cct-website .trust-bar{
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            padding: 1.5rem 2rem;
            flex-wrap: wrap;
        }
        .cct-website .trust-item{
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 1.2rem;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 14px;
            backdrop-filter: blur(10px);
        }
        .cct-website .trust-item svg{
            color: var(--gold);
        }
        .cct-website .trust-number{
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--accent);
            font-family: 'Outfit', sans-serif;
        }
        .cct-website .trust-label{
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* ===== COMPACT SERVICES STRIP ===== */
        .cct-website .services-strip{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
        }
        @media (max-width: 768px) {
            .cct-website .services-strip { grid-template-columns: repeat(2, 1fr); }
        }
        .cct-website .service-mini{
            padding: 1.25rem;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .cct-website .service-mini:hover{
            border-color: rgba(0, 212, 255, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 212, 255, 0.1);
        }
        .cct-website .service-mini-icon{
            width: 44px;
            height: 44px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
            color: var(--accent);
            border: 1px solid rgba(0, 212, 255, 0.15);
        }
        .cct-website .service-mini h4{
            font-size: 0.85rem;
            margin-bottom: 0.3rem;
        }
        .cct-website .service-mini p{
            font-size: 0.72rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ===== FLOATING DECORATION SVGs ===== */
        .cct-website .float-decor{
            position: absolute;
            pointer-events: none;
            opacity: 0.15;
        }

        /* ===== VISION 2040 ===== */
        .cct-website .vision-section{
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
            position: relative;
            overflow: hidden;
        }

        .cct-website .vision-section::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-1);
            opacity: 0.5;
        }

        .cct-website .section-container{
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .cct-website .section-label{
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(200, 164, 92, 0.1);
            border: 1px solid rgba(200, 164, 92, 0.3);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .cct-website .section-title{
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            font-family: 'Outfit', 'Cairo', sans-serif;
        }

        .cct-website .section-desc{
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .cct-website .vision-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .cct-website .vision-card{
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .cct-website .vision-card::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cct-website .vision-card:hover{
            transform: translateY(-8px);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
        }

        .cct-website .vision-card:hover::before{
            opacity: 1;
        }

        .cct-website .vision-icon{
            width: 70px;
            height: 70px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--accent);
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .cct-website .vision-card h3{
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .cct-website .vision-card p{
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* ===== FEATURES ===== */
        .cct-website .features-section{
            padding: 6rem 2rem;
            background: var(--primary);
            position: relative;
        }

        .cct-website .features-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .cct-website .feature-card{
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .cct-website .feature-card:hover{
            border-color: rgba(0, 212, 255, 0.3);
            transform: translateX(-5px);
        }

        .cct-website .feature-icon{
            width: 60px;
            height: 60px;
            min-width: 60px;
            background: var(--gradient-1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        .cct-website .feature-content h3{
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .cct-website .feature-content p{
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ===== ABOUT PAGE ===== */
        .cct-website .about-hero{
            padding: 6rem 2rem 4rem;
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(13, 31, 60, 0.9) 100%);
            position: relative;
            overflow: hidden;
        }

        .cct-website .about-hero::before{
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .cct-website .ceo-section{
            padding: 4rem 2rem;
            background: var(--secondary);
        }

        .cct-website .ceo-grid{
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cct-website .ceo-image-wrapper{
            position: relative;
            text-align: center;
        }

        .cct-website .ceo-image{
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
        }

        .cct-website .ceo-badge{
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-gold);
            color: var(--primary);
            padding: 0.6rem 2rem;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.9rem;
            white-space: nowrap;
            box-shadow: 0 4px 20px rgba(200, 164, 92, 0.4);
        }

        .cct-website .ceo-quote{
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
        }

        .cct-website .ceo-quote::before{
            content: '"';
            position: absolute;
            top: -20px;
            right: 30px;
            font-size: 6rem;
            color: var(--accent);
            opacity: 0.3;
            font-family: serif;
            line-height: 1;
        }

        .cct-website .ceo-quote-text{
            font-size: 1.15rem;
            line-height: 2;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .cct-website .ceo-name{
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--gold);
        }

        .cct-website .ceo-title-text{
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Stats */
        .cct-website .stats-section{
            padding: 4rem 2rem;
            background: var(--primary);
        }

        .cct-website .stats-grid{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cct-website .stat-card{
            text-align: center;
            padding: 2rem;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .cct-website .stat-card:hover{
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .cct-website .stat-number{
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Outfit', sans-serif;
        }

        .cct-website .stat-label{
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        /* Goals section */
        .cct-website .goals-section{
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
        }

        .cct-website .goals-grid{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .cct-website .goal-card{
            padding: 2.5rem;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .cct-website .goal-card:hover{
            border-color: rgba(200, 164, 92, 0.3);
            transform: translateY(-5px);
        }

        .cct-website .goal-number{
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 4rem;
            font-weight: 900;
            color: rgba(0, 212, 255, 0.08);
            font-family: 'Outfit', sans-serif;
            line-height: 1;
        }

        .cct-website .goal-card h3{
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: var(--gold);
        }

        .cct-website .goal-card p{
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* ===== AGENTS PAGE ===== */
        .cct-website .agents-hero{
            padding: 6rem 2rem 4rem;
            background: var(--secondary);
            text-align: center;
        }

        .cct-website .agents-grid{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .cct-website .agent-card{
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: all 0.4s ease;
        }

        .cct-website .agent-card:hover{
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .cct-website .agent-bg{
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: all 0.4s ease;
        }

        .cct-website .agent-card:hover .agent-bg{
            transform: scale(1.05);
        }

        .cct-website .agent-overlay{
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(10, 22, 40, 0.98) 0%, rgba(10, 22, 40, 0.6) 50%, rgba(10, 22, 40, 0.3) 100%);
        }

        .cct-website .agent-content{
            position: relative;
            z-index: 2;
            padding: 2.5rem;
        }

        .cct-website .agent-logo{
            width: 70px;
            height: 70px;
            background: rgba(0, 212, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .cct-website .agent-card h3{
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .cct-website .agent-card .agent-type{
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .cct-website .agent-card p{
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .cct-website .agent-card-clickable{
            cursor: pointer;
            position: relative;
        }

        .cct-website .agent-card-clickable::after{
            content: 'انقر لتجربة الوكيل \2190';
            position: absolute;
            top: 1rem;
            left: 1rem;
            padding: 0.4rem 1rem;
            background: var(--gradient-1);
            color: white;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
        }

        .cct-website .agent-card-clickable:hover::after{
            opacity: 1;
            transform: translateY(0);
        }

        .cct-website .agent-features{
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .cct-website .agent-feature-tag{
            padding: 0.3rem 0.8rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 50px;
            font-size: 0.75rem;
            color: var(--accent);
        }

        /* ===== AGENT CHAT PAGE ===== */
        .cct-website .agent-chat-page{
            min-height: calc(100vh - 80px);
            display: flex;
            flex-direction: column;
            background: var(--primary);
        }

        .cct-website .agent-chat-header{
            padding: 2rem 2rem 1.5rem;
            background: linear-gradient(135deg, var(--secondary) 0%, rgba(10,22,40,0.95) 100%);
            border-bottom: 1px solid var(--border);
        }

        .cct-website .agent-chat-header-inner{
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .cct-website .agent-chat-back{
            width: 45px;
            height: 45px;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .cct-website .agent-chat-back:hover{
            background: rgba(0, 212, 255, 0.1);
            border-color: var(--accent);
            transform: translateX(-3px);
        }

        .cct-website .agent-chat-avatar{
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
        }

        .cct-website .agent-chat-info h3{
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 0.2rem;
        }

        .cct-website .agent-chat-info .agent-status{
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .cct-website .agent-chat-info .status-dot{
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

        .cct-website .agent-chat-container{
            flex: 1;
            display: flex;
            flex-direction: column;
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            overflow: hidden;
        }

        .cct-website .chat-messages{
            flex: 1;
            overflow-y: auto;
            padding: 1rem 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            min-height: 400px;
        }

        .cct-website .chat-message{
            display: flex;
            gap: 0.75rem;
            max-width: 85%;
            animation: fadeIn 0.3s ease;
        }

        .cct-website .chat-message.user{
            align-self: flex-end;
            flex-direction: row-reverse;
        }

        .cct-website .chat-message.agent{
            align-self: flex-start;
        }

        .cct-website .chat-msg-avatar{
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .cct-website .chat-message.user .chat-msg-avatar{
            background: var(--gradient-1);
            color: white;
        }

        .cct-website .chat-message.agent .chat-msg-avatar{
            background: rgba(200, 164, 92, 0.15);
            color: var(--gold);
            border: 1px solid rgba(200, 164, 92, 0.3);
        }

        .cct-website .chat-msg-bubble{
            padding: 1rem 1.25rem;
            border-radius: 16px;
            font-size: 0.95rem;
            line-height: 1.8;
            word-wrap: break-word;
            max-width: 100%;
            overflow-x: auto;
        }

        .cct-website .chat-msg-bubble img{
            max-width: 100%;
            border-radius: 8px;
            margin: 0.5rem 0;
        }

        /* HTML content inside agent bubbles */
        .cct-website .chat-msg-bubble.html-content{
            padding: 0;
            overflow: hidden;
        }

        .cct-website .chat-msg-bubble.html-content .html-inner{
            padding: 1rem 1.25rem;
        }

        .cct-website .chat-msg-bubble.html-content .html-inner h3, .cct-website .chat-msg-bubble.html-content .html-inner h4{
            margin: 0.5rem 0;
            color: var(--accent);
        }

        .cct-website .chat-msg-bubble.html-content .html-inner table{
            width: 100%;
            border-collapse: collapse;
            margin: 0.75rem 0;
            font-size: 0.85rem;
        }

        .cct-website .chat-msg-bubble.html-content .html-inner th{
            background: rgba(0, 212, 255, 0.1);
            padding: 0.6rem 0.75rem;
            text-align: right;
            border-bottom: 2px solid var(--accent);
            font-weight: 700;
        }

        .cct-website .chat-msg-bubble.html-content .html-inner td{
            padding: 0.5rem 0.75rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .cct-website .chat-msg-bubble.html-content .html-inner tr:hover td{
            background: rgba(0, 212, 255, 0.03);
        }

        .cct-website .chat-msg-bubble.html-content .html-inner .metric-card{
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.75rem;
            background: rgba(0, 212, 255, 0.08);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin: 0.25rem;
            font-size: 0.85rem;
        }

        .cct-website .chat-msg-bubble.html-content .html-inner .metric-value{
            font-weight: 800;
            color: var(--accent);
        }

        .cct-website .chat-msg-bubble.html-content .html-inner .chart-bar{
            height: 8px;
            background: var(--gradient-1);
            border-radius: 4px;
            margin: 0.25rem 0;
            transition: width 0.5s ease;
        }

        .cct-website .chat-msg-bubble.html-content .html-inner ul, .cct-website .chat-msg-bubble.html-content .html-inner ol{
            padding-right: 1.25rem;
            margin: 0.5rem 0;
        }

        .cct-website .chat-msg-bubble.html-content .html-inner li{
            margin: 0.25rem 0;
        }

        .cct-website .chat-message.user .chat-msg-bubble{
            background: var(--gradient-1);
            color: white;
            border-bottom-right-radius: 4px;
        }

        .cct-website .chat-message.agent .chat-msg-bubble{
            background: var(--glass);
            border: 1px solid var(--border);
            color: var(--text);
            border-bottom-left-radius: 4px;
        }

        .cct-website .chat-message.typing .chat-msg-bubble{
            padding: 0.75rem 1.25rem;
        }

        .cct-website .typing-indicator{
            display: flex;
            gap: 4px;
            align-items: center;
            height: 20px;
        }

        .cct-website .typing-indicator span{
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: typingBounce 1.4s ease-in-out infinite;
        }

        .cct-website .typing-indicator span:nth-child(2){ animation-delay: 0.2s; }
        .cct-website .typing-indicator span:nth-child(3){ animation-delay: 0.4s; }

        @keyframes typingBounce {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-6px); }
        }

        .cct-website .chat-input-area{
            padding: 1rem 0;
            border-top: 1px solid var(--border);
        }

        .cct-website .chat-input-wrapper{
            display: flex;
            gap: 0.75rem;
            align-items: flex-end;
        }

        .cct-website .chat-textarea{
            flex: 1;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 16px;
            color: var(--text);
            font-family: 'Cairo', sans-serif;
            font-size: 0.95rem;
            resize: none;
            min-height: 52px;
            max-height: 150px;
            transition: all 0.3s ease;
        }

        .cct-website .chat-textarea:focus{
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
        }

        .cct-website .chat-textarea::placeholder{
            color: var(--text-muted);
        }

        .cct-website .chat-send-btn{
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: var(--gradient-1);
            border: none;
            border-radius: 16px;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
        }

        .cct-website .chat-send-btn:hover{
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
        }

        .cct-website .chat-send-btn:disabled{
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .cct-website .chat-welcome{
            text-align: center;
            padding: 3rem 1rem;
            color: var(--text-muted);
        }

        .cct-website .chat-welcome-icon{
            width: 80px;
            height: 80px;
            background: rgba(0, 212, 255, 0.08);
            border: 1px solid var(--border);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
        }

        .cct-website .chat-welcome h4{
            color: var(--text);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .cct-website .chat-welcome p{
            font-size: 0.9rem;
            max-width: 500px;
            margin: 0 auto 1.5rem;
            line-height: 1.9;
        }

        .cct-website .chat-suggestions{
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
        }

        .cct-website .chat-suggestion{
            padding: 0.5rem 1rem;
            background: rgba(0, 212, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--accent);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Cairo', sans-serif;
        }

        .cct-website .chat-suggestion:hover{
            background: rgba(0, 212, 255, 0.1);
            border-color: var(--accent);
        }

        .cct-website .chat-error{
            padding: 0.75rem 1rem;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            color: #ef4444;
            font-size: 0.85rem;
            margin: 0.5rem 0;
            display: none;
        }

        .cct-website .chat-error.visible{
            display: block;
        }

        /* ===== LUXARA VOICE MODE ===== */
        .cct-website .luxara-voice-bar{
            display: none;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(200, 164, 92, 0.05) 100%);
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 1rem;
        }

        .cct-website .luxara-voice-bar.active{
            display: flex;
        }

        .cct-website .luxara-voice-btn{
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--border);
            background: var(--glass);
            color: var(--accent);
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .cct-website .luxara-voice-btn:hover{
            border-color: var(--accent);
            background: rgba(0, 212, 255, 0.1);
            transform: scale(1.1);
        }

        .cct-website .luxara-voice-btn.recording{
            background: rgba(239, 68, 68, 0.15);
            border-color: #ef4444;
            color: #ef4444;
            animation: pulseRecord 1.5s ease-in-out infinite;
        }

        .cct-website .luxara-voice-btn.listening{
            background: rgba(34, 197, 94, 0.15);
            border-color: #22c55e;
            color: #22c55e;
            animation: pulseListen 2s ease-in-out infinite;
        }

        .cct-website .luxara-voice-btn.speaking{
            background: rgba(200, 164, 92, 0.15);
            border-color: var(--gold);
            color: var(--gold);
        }

        @keyframes pulseRecord {
            0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
            50% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
        }

        @keyframes pulseListen {
            0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
            50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
        }

        .cct-website .luxara-voice-label{
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        .cct-website .luxara-voice-visualizer{
            display: none;
            align-items: center;
            gap: 3px;
            height: 30px;
        }

        .cct-website .luxara-voice-visualizer.active{
            display: flex;
        }

        .cct-website .voice-bar{
            width: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
            transition: height 0.1s ease;
            animation: voiceWave 0.5s ease-in-out infinite alternate;
        }

        .cct-website .voice-bar:nth-child(1){ height: 8px; animation-delay: 0s; }
        .cct-website .voice-bar:nth-child(2){ height: 15px; animation-delay: 0.1s; }
        .cct-website .voice-bar:nth-child(3){ height: 22px; animation-delay: 0.2s; }
        .cct-website .voice-bar:nth-child(4){ height: 12px; animation-delay: 0.15s; }
        .cct-website .voice-bar:nth-child(5){ height: 18px; animation-delay: 0.05s; }

        @keyframes voiceWave {
            0% { height: 5px; }
            100% { height: 25px; }
        }

        /* Wake word badge */
        .cct-website .wake-word-badge{
            display: none;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 50px;
            font-size: 0.75rem;
            color: #22c55e;
            font-weight: 600;
            animation: fadeIn 0.5s ease;
        }

        .cct-website .wake-word-badge.active{
            display: inline-flex;
        }

        /* Camera modal */
        .cct-website .camera-modal{
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(20px);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1.5rem;
        }

        .cct-website .camera-modal.active{
            display: flex;
        }

        .cct-website .camera-video{
            width: 90%;
            max-width: 640px;
            border-radius: 20px;
            border: 2px solid var(--accent);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
        }

        .cct-website .camera-controls{
            display: flex;
            gap: 1rem;
        }

        .cct-website .camera-btn{
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cct-website .camera-btn.capture{
            background: var(--gradient-1);
            border-color: var(--accent);
            color: white;
        }

        .cct-website .camera-btn.capture:hover{
            transform: scale(1.1);
        }

        .cct-website .camera-btn.close{
            background: rgba(239, 68, 68, 0.1);
            border-color: #ef4444;
            color: #ef4444;
        }

        /* Attachment preview */
        .cct-website .attachment-preview{
            display: none;
            align-items: center;
            gap: 0.75rem;
            padding: 0.6rem 1rem;
            background: rgba(0, 212, 255, 0.05);
            border: 1px dashed var(--border);
            border-radius: 12px;
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .cct-website .attachment-preview.active{
            display: flex;
        }

        .cct-website .attachment-preview .remove-file{
            margin-right: auto;
            color: #ef4444;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .cct-website .attachment-preview .remove-file:hover{
            transform: scale(1.2);
        }

        .cct-website .luxara-chat-tools{
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0 0.5rem 0.5rem;
        }

        .cct-website .chat-tool-btn{
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: var(--glass);
            color: var(--text-muted);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cct-website .chat-tool-btn:hover{
            color: var(--accent);
            border-color: var(--accent);
            background: rgba(0, 212, 255, 0.1);
        }

        .cct-website .chat-tool-btn.settings-btn{
            margin-right: auto;
            border-color: rgba(200, 164, 92, 0.3);
            color: var(--gold);
        }
        .cct-website .chat-tool-btn.settings-btn:hover{
            border-color: var(--gold);
            background: rgba(200, 164, 92, 0.15);
            color: var(--gold);
        }

        /* ===== MESSAGE ACTIONS (COPY / RESEND) ===== */
        .cct-website .msg-actions{
            display: flex;
            gap: 0.35rem;
            align-items: center;
            margin-top: 0.35rem;
            opacity: 0;
            transition: opacity 0.3s ease;
            justify-content: flex-end;
        }
        .cct-website .chat-message.user:hover .msg-actions{
            opacity: 1;
        }
        .cct-website .msg-action-btn{
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 0.7rem;
            cursor: pointer;
            padding: 0.15rem 0.5rem;
            border-radius: 4px;
            transition: all 0.2s ease;
            font-family: 'Cairo', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }
        .cct-website .msg-action-btn:hover{
            color: var(--accent);
            background: rgba(0, 212, 255, 0.08);
        }
        .cct-website .msg-action-btn.copied{
            color: #22c55e !important;
        }

        /* ===== SETTINGS MODAL ===== */
        .cct-website .settings-modal-overlay{
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10, 22, 40, 0.85);
            backdrop-filter: blur(10px);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            overflow-y: auto;
            padding: 2rem 1rem;
        }
        .cct-website .settings-modal-overlay.active{
            display: flex;
        }
        .cct-website .settings-modal{
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2rem;
            width: 90%;
            max-width: 480px;
            max-height: 85vh;
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.3s ease;
            scrollbar-width: thin;
            scrollbar-color: var(--border) transparent;
            margin: auto;
        }
        .cct-website .settings-modal::-webkit-scrollbar{
            width: 6px;
        }
        .cct-website .settings-modal::-webkit-scrollbar-track{
            background: transparent;
        }
        .cct-website .settings-modal::-webkit-scrollbar-thumb{
            background: var(--border);
            border-radius: 3px;
        }
        .cct-website .settings-modal h3{
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .cct-website .settings-field{
            margin-bottom: 1.25rem;
        }
        .cct-website .settings-field label{
            display: block;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 0.4rem;
        }
        .cct-website .settings-field input, .cct-website .settings-field select{
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: 'Cairo', sans-serif;
            font-size: 0.85rem;
            box-sizing: border-box;
            direction: ltr;
        }
        .cct-website .settings-field input:focus, .cct-website .settings-field select:focus{
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
        }
        .cct-website .settings-field select{
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: left 0.7rem center;
            background-size: 1em;
            padding-left: 2.2rem;
        }
        .cct-website .settings-section-divider{
            margin: 1.5rem 0 1.25rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--border);
        }
        .cct-website .settings-section-title{
            font-size: 0.75rem;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .cct-website .settings-test-voice{
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-top: 0.75rem;
        }
        .cct-website .settings-test-btn{
            padding: 0.5rem 1rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 10px;
            color: var(--accent);
            font-family: 'Cairo', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .cct-website .settings-test-btn:hover{
            background: rgba(0, 212, 255, 0.2);
            transform: scale(1.02);
        }
        .cct-website .voice-info-note{
            font-size: 0.72rem;
            color: var(--text-muted);
            margin-top: 0.4rem;
            line-height: 1.5;
        }
        .cct-website .settings-actions{
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }
        .cct-website .settings-btn-save{
            flex: 1;
            padding: 0.75rem;
            background: var(--gradient-1);
            border: none;
            border-radius: 12px;
            color: white;
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .cct-website .settings-btn-save:hover{
            transform: scale(1.02);
        }
        /* Toggle Switch */
        .cct-website .toggle-switch{
            position: relative;
            display: inline-block;
            width: 52px;
            height: 28px;
            flex-shrink: 0;
            cursor: pointer;
        }
        .cct-website .toggle-switch input{
            opacity: 0;
            width: 0;
            height: 0;
        }
        .cct-website .toggle-slider{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,255,255,0.1);
            border: 1px solid var(--border);
            border-radius: 28px;
            transition: all 0.3s ease;
        }
        .cct-website .toggle-slider::before{
            content: '';
            position: absolute;
            height: 22px;
            width: 22px;
            left: 2px;
            bottom: 2px;
            background: var(--text-muted);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .cct-website .toggle-switch input:checked + .toggle-slider{
            background: var(--gradient-1);
            border-color: var(--accent);
        }
        .cct-website .toggle-switch input:checked + .toggle-slider::before{
            transform: translateX(24px);
            background: white;
        }
        .cct-website .voice-loading-pulse{
            animation: voicePulse 1.2s ease-in-out infinite;
        }
        @keyframes voicePulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }
        .cct-website .settings-btn-cancel{
            flex: 1;
            padding: 0.75rem;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text-muted);
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .cct-website .settings-btn-cancel:hover{
            border-color: #ef4444;
            color: #ef4444;
        }
        .cct-website .settings-status{
            margin-top: 0.75rem;
            font-size: 0.8rem;
            text-align: center;
            min-height: 1.2rem;
        }

        /* ===== PACKAGES PAGE ===== */
        .cct-website .packages-hero{
            padding: 6rem 2rem 4rem;
            background: var(--secondary);
            text-align: center;
        }

        .cct-website .packages-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .cct-website .package-card{
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .cct-website .package-card.featured{
            border-color: var(--gold);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(200, 164, 92, 0.15);
        }

        .cct-website .package-card.featured::before{
            content: 'الأكثر طلباً';
            position: absolute;
            top: 1rem;
            left: -3rem;
            background: var(--gradient-gold);
            color: var(--primary);
            padding: 0.3rem 3rem;
            font-size: 0.75rem;
            font-weight: 700;
            transform: rotate(-45deg);
        }

        .cct-website .package-card:hover{
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
        }

        .cct-website .package-card.featured:hover{
            transform: scale(1.05) translateY(-10px);
        }

        .cct-website .package-icon{
            width: 80px;
            height: 80px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--accent);
            border: 1px solid rgba(0, 212, 255, 0.2);
        }

        .cct-website .package-card.featured .package-icon{
            background: rgba(200, 164, 92, 0.1);
            color: var(--gold);
            border-color: rgba(200, 164, 92, 0.3);
        }

        .cct-website .package-name{
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .cct-website .package-price{
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Outfit', sans-serif;
            margin: 1rem 0;
        }

        .cct-website .package-card.featured .package-price{
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cct-website .package-period{
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .cct-website .package-features{
            list-style: none;
            text-align: right;
            margin-bottom: 2rem;
        }

        .cct-website .package-features li{
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
        }

        .cct-website .package-features li:last-child{
            border-bottom: none;
        }

        .cct-website .package-features li i{
            color: var(--accent);
            font-size: 0.8rem;
        }

        .cct-website .package-card.featured .package-features li i{
            color: var(--gold);
        }

        /* ===== CONTACT PAGE ===== */
        .cct-website .contact-hero{
            padding: 6rem 2rem 4rem;
            background: var(--secondary);
            text-align: center;
        }

        .cct-website .contact-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .cct-website .contact-info-card{
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .cct-website .contact-item{
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .cct-website .contact-item:last-child{
            border-bottom: none;
        }

        .cct-website .contact-icon{
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: var(--gradient-1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
        }

        .cct-website .contact-item h4{
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .cct-website .contact-item p, .cct-website .contact-item a{
            color: var(--text-muted);
            font-size: 0.95rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .cct-website .contact-item a:hover{
            color: var(--accent);
        }

        .cct-website .contact-form-card{
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
        }

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

        .cct-website .form-group label{
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .cct-website .form-control{
            width: 100%;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text);
            font-family: 'Cairo', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .cct-website .form-control:focus{
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
        }

        .cct-website .form-control::placeholder{
            color: var(--text-muted);
        }

        .cct-website textarea.form-control{
            min-height: 150px;
            resize: vertical;
        }

        /* ===== LOGIN PAGE ===== */
        .cct-website .login-page{
            min-height: calc(100vh - 64px);
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .cct-website .login-page::before{
            content: '';
            position: absolute;
            top: -50%;
            left: -30%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .cct-website .login-card{
            background: var(--glass);
            backdrop-filter: blur(30px);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3rem;
            width: 100%;
            max-width: 480px;
            position: relative;
            z-index: 1;
        }

        .cct-website .login-logo{
            text-align: center;
            margin-bottom: 2rem;
        }

        .cct-website .login-logo img{
            height: 70px;
            margin-bottom: 1rem;
        }

        .cct-website .login-logo h2{
            font-size: 1.5rem;
            font-weight: 800;
        }

        .cct-website .login-logo p{
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .cct-website .login-divider{
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .cct-website .login-divider::before, .cct-website .login-divider::after{
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .cct-website .sso-btn{
            width: 100%;
            padding: 1rem;
            background: rgba(0, 212, 255, 0.08);
            border: 1px solid rgba(0, 212, 255, 0.25);
            border-radius: 12px;
            color: var(--accent);
            font-family: 'Cairo', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .cct-website .sso-btn:hover{
            background: rgba(0, 212, 255, 0.15);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .cct-website .forgot-link{
            text-align: center;
            margin-top: 1.5rem;
        }

        .cct-website .forgot-link a{
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .cct-website .forgot-link a:hover{
            color: var(--gold);
        }

        /* ===== FOOTER ===== */
        .cct-website .footer{
            background: rgba(8, 16, 30, 0.95);
            border-top: 1px solid var(--border);
            padding: 4rem 2rem 2rem;
        }

        .cct-website .footer-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cct-website .footer-brand img{
            height: 50px;
            margin-bottom: 1rem;
        }

        .cct-website .footer-brand p{
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.9;
        }

        .cct-website .footer-links h4{
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }

        .cct-website .footer-links a{
            display: block;
            color: var(--text-muted);
            text-decoration: none;
            padding: 0.4rem 0;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cct-website .footer-links a:hover{
            color: var(--accent);
            padding-right: 0.5rem;
        }

        .cct-website .footer-bottom{
            max-width: 1400px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .cct-website .footer-bottom p{
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .cct-website .social-links{
            display: flex;
            gap: 0.75rem;
        }

        .cct-website .social-link{
            width: 40px;
            height: 40px;
            background: rgba(0, 212, 255, 0.08);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cct-website .social-link:hover{
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-3px);
        }

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

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

        .cct-website .animate{
            animation: fadeInUp 0.8s ease forwards;
        }

        .cct-website .animate-delay-1{ animation-delay: 0.1s; opacity: 0; }
        .cct-website .animate-delay-2{ animation-delay: 0.2s; opacity: 0; }
        .cct-website .animate-delay-3{ animation-delay: 0.3s; opacity: 0; }
        .cct-website .animate-delay-4{ animation-delay: 0.4s; opacity: 0; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .cct-website .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .cct-website .hero-subtitle{
                margin: 0 auto 2rem;
            }
            .cct-website .hero-cta{
                justify-content: center;
            }
            .cct-website .hero-visual{
                order: -1;
            }
            .cct-website .hero-oman{
                max-width: 350px;
            }
            .cct-website .agents-grid{
                grid-template-columns: 1fr;
            }
            .cct-website .packages-grid{
                grid-template-columns: 1fr;
            }
            .cct-website .package-card.featured{
                transform: scale(1);
            }
            .cct-website .package-card.featured:hover{
                transform: scale(1) translateY(-10px);
            }
            .cct-website .contact-grid{
                grid-template-columns: 1fr;
            }
            .cct-website .ceo-grid{
                grid-template-columns: 1fr;
            }
            .cct-website .stats-grid{
                grid-template-columns: repeat(2, 1fr);
            }
            .cct-website .footer-grid{
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px){
            .cct-website .nav-desktop {
                display: none;
            }
            .cct-website .mobile-toggle {
                display: block;
            }
            .cct-website .header-actions .btn {
                display: none;
            }
            .cct-website .hero-title {
                font-size: 2.2rem;
            }
            .cct-website .hero-company .company-name {
                font-size: 1.8rem;
            }
            .cct-website .hero-company .company-desc {
                font-size: 0.8rem;
            }
            .cct-website .section-title {
                font-size: 2rem;
            }
            .cct-website .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .cct-website .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* Mobile nav */
        .cct-website .mobile-nav{
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 22, 40, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            padding: 2rem;
        }

        .cct-website .mobile-nav.active{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .cct-website .mobile-nav .nav-link{
            font-size: 1.2rem;
            padding: 1rem;
            text-align: center;
        }

        /* ===== SERVICES PAGE ===== */
        .cct-website .services-hero{
            padding: 6rem 2rem 4rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .cct-website .services-hero::before{
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .cct-website .services-tabs{
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 3rem auto 0;
            flex-wrap: wrap;
            max-width: 900px;
        }

        .cct-website .service-tab{
            padding: 0.8rem 1.5rem;
            background: rgba(0, 212, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text-muted);
            font-family: 'Cairo', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cct-website .service-tab:hover{
            background: rgba(0, 212, 255, 0.1);
            color: var(--accent);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .cct-website .service-tab.active{
            background: var(--gradient-1);
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
        }

        .cct-website .service-detail{
            display: none;
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            animation: fadeIn 0.5s ease;
        }

        .cct-website .service-detail.active{
            display: block;
        }

        .cct-website .service-layout{
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .cct-website .service-image{
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
            border: 1px solid var(--border);
            transition: all 0.4s ease;
        }

        .cct-website .service-image:hover{
            transform: scale(1.02);
            box-shadow: 0 25px 70px rgba(0, 212, 255, 0.25);
        }

        .cct-website .service-info h3{
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            font-family: 'Outfit', 'Cairo', sans-serif;
        }

        .cct-website .service-info h3 .gradient-text{
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cct-website .service-desc{
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 2;
            margin-bottom: 2rem;
        }

        .cct-website .service-features-list{
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .cct-website .service-features-list li{
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.9rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.95rem;
            color: var(--text);
        }

        .cct-website .service-features-list li i{
            color: var(--accent);
            font-size: 1.1rem;
            width: 30px;
            text-align: center;
        }

        .cct-website .service-features-list li.gold-feature i{
            color: var(--gold);
        }

        .cct-website .service-cta-group{
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cct-website .service-stats-bar{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .cct-website .service-stat-item{
            text-align: center;
            padding: 1.5rem;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 16px;
        }

        .cct-website .service-stat-item .number{
            font-size: 2rem;
            font-weight: 900;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Outfit', sans-serif;
        }

        .cct-website .service-stat-item .label{
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 0.25rem;
        }

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

        @media (max-width: 1024px) {
            .cct-website .service-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .cct-website .service-layout .service-image-wrapper{
                order: -1;
            }
            .cct-website .service-stats-bar{
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* AI assistant widget */
        .cct-website .ai-widget{
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            z-index: 998;
        }

        .cct-website .ai-btn{
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cct-website .ai-btn:hover{
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6);
        }

        .cct-website .ai-tooltip{
            position: absolute;
            bottom: 70px;
            left: 0;
            background: var(--glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 0.75rem 1rem;
            white-space: nowrap;
            font-size: 0.8rem;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .cct-website .ai-widget:hover .ai-tooltip{
            opacity: 1;
        }

        /* Particle canvas */
        .cct-website #particles-canvas{
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            z-index: 0 !important;
            pointer-events: none !important;
            opacity: 0.4 !important;
            display: block !important;
            visibility: visible !important;
        }

        /* Ensure all content sits above particles */
        .cct-website .header, .cct-website .page, .cct-website .footer{
            position: relative;
            z-index: 1;
        }
        @keyframes fa-spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}
        /* ===== VOICE MODE UI - ChatGPT/Gemini Style ===== */
        .cct-website .voice-mode-overlay{
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: linear-gradient(180deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.4s ease;
        }
        .cct-website .voice-mode-overlay.active{ display: flex; }
        .cct-website .voice-mode-header{
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10, 22, 40, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 10;
        }
        .cct-website .voice-mode-agent-info{
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .cct-website .voice-mode-agent-avatar{
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent), #007ea7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        .cct-website .voice-mode-agent-name{
            font-weight: 700;
            font-size: 0.95rem;
        }
        .cct-website .voice-mode-agent-status{
            font-size: 0.75rem;
            color: var(--text-muted);
        }
        .cct-website .voice-mode-close-btn{
            background: none;
            border: 1px solid var(--border);
            color: var(--text);
            width: 40px;
            height: 40px;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .cct-website .voice-mode-close-btn:hover{
            border-color: #ef4444;
            color: #ef4444;
        }
        .cct-website .voice-mode-toggle-chat{
            background: none;
            border: 1px solid var(--border);
            color: var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 12px;
            cursor: pointer;
            font-family: 'Cairo', sans-serif;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.3s;
        }
        .cct-website .voice-mode-toggle-chat:hover{
            border-color: var(--accent);
            background: rgba(0, 212, 255, 0.05);
        }
        .cct-website .voice-waveform-container{
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cct-website #voiceWaveformCanvas{
            width: 100%;
            height: 100%;
        }
        .cct-website .voice-status-text{
            font-size: 1.3rem;
            color: var(--text);
            text-align: center;
            margin-top: 1rem;
            font-weight: 600;
            min-height: 2rem;
        }
        .cct-website .voice-status-sub{
            font-size: 0.85rem;
            color: var(--text-muted);
            text-align: center;
            margin-top: 0.5rem;
        }
        .cct-website .voice-mic-btn{
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), #007ea7);
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
            transition: all 0.3s ease;
            margin-top: 2rem;
            position: relative;
        }
        .cct-website .voice-mic-btn:hover{
            transform: scale(1.05);
            box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
        }
        .cct-website .voice-mic-btn.recording{
            animation: micPulse 1.5s ease-in-out infinite;
        }
        @keyframes micPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 212, 255, 0.3); }
            50% { transform: scale(1.1); box-shadow: 0 0 50px rgba(0, 212, 255, 0.6); }
        }
        .cct-website .voice-mic-btn.speaking{
            background: linear-gradient(135deg, #22c55e, #16a34a);
            box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
        }
        .cct-website .voice-mic-orb{
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 2px solid rgba(0, 212, 255, 0.2);
            animation: orbExpand 2s ease-out infinite;
            pointer-events: none;
        }
        @keyframes orbExpand {
            0% { transform: scale(0.8); opacity: 0.6; }
            100% { transform: scale(1.5); opacity: 0; }
        }
        .cct-website .voice-listening-dots{
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        .cct-website .voice-listening-dot{
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            animation: listeningDot 1.4s ease-in-out infinite;
        }
        .cct-website .voice-listening-dot:nth-child(2){ animation-delay: 0.2s; }
        .cct-website .voice-listening-dot:nth-child(3){ animation-delay: 0.4s; }
        @keyframes listeningDot {
            0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
            40% { transform: scale(1); opacity: 1; }
        }

        /* ===== MOBILE PUSH-TO-TALK MODE ===== */
        .cct-website .voice-mobile-overlay{
            display: none;
            position: absolute;
            inset: 0;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 100;
            gap: 1.5rem;
        }
        .cct-website .voice-mobile-overlay.active{
            display: flex;
        }
        /* On mobile, hide the desktop waveform and mic button */
        @media (max-width: 768px) {
            .cct-website .voice-waveform-container,  
            .cct-website .voice-mic-btn {
                display: none !important;
            }
            .cct-website .voice-mobile-overlay{
                display: flex;
            }
            .cct-website .voice-status-text, .cct-website .voice-status-sub{
                display: none;
            }
            .cct-website .voice-mobile-overlay ~ .voice-status-text, .cct-website .voice-mobile-overlay ~ .voice-status-sub{
                display: none;
            }
        }
        /* Also hide when body has mobile-device class */
        body.mobile-device .voice-waveform-container, .cct-website .voice-waveform-container{
            display: none !important;
        }

        .cct-website .voice-mobile-hint{
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.8;
            padding: 0 2rem;
            animation: fadeInHint 0.5s ease;
        }
        @keyframes fadeInHint {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .cct-website .voice-mobile-ptt-btn{
            position: relative;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: none;
            background: linear-gradient(135deg, var(--accent), #007ea7);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
            transition: all 0.2s ease;
            -webkit-tap-highlight-color: transparent;
            touch-action: none;
            user-select: none;
        }
        .cct-website .voice-mobile-ptt-btn:active{
            transform: scale(0.95);
        }
        .cct-website .voice-mobile-ptt-btn.ptt-recording{
            background: linear-gradient(135deg, #ef4444, #b91c1c);
            box-shadow: 0 0 60px rgba(239, 68, 68, 0.4);
            animation: pttPulse 0.8s ease-in-out infinite;
        }
        @keyframes pttPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(239, 68, 68, 0.3); }
            50% { transform: scale(1.08); box-shadow: 0 0 70px rgba(239, 68, 68, 0.6); }
        }
        .cct-website .voice-mobile-ptt-ring{
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px solid rgba(0, 212, 255, 0.2);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .cct-website .voice-mobile-ptt-btn.ptt-recording .voice-mobile-ptt-ring{
            opacity: 1;
            animation: pttRingExpand 1.2s ease-out infinite;
        }
        @keyframes pttRingExpand {
            0% { transform: scale(1); opacity: 0.6; }
            100% { transform: scale(1.4); opacity: 0; }
        }
        .cct-website .voice-mobile-ptt-inner{
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cct-website .voice-mobile-status{
            font-size: 1rem;
            color: var(--text-muted);
            min-height: 1.5rem;
            transition: all 0.3s ease;
        }
        .cct-website .voice-mobile-status.recording{
            color: #ef4444;
            font-weight: 700;
        }
        .cct-website .voice-mobile-transcript{
            font-size: 1.1rem;
            color: var(--text);
            font-weight: 600;
            max-width: 85%;
            min-height: 2rem;
            line-height: 1.6;
            padding: 0.75rem 1.25rem;
            background: rgba(0, 212, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 14px;
        }
        .cct-website .voice-mobile-actions{
            display: flex;
            gap: 0.75rem;
        }
        .cct-website .voice-mobile-send-btn{
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.75rem 1.5rem;
            background: var(--gradient-1);
            border: none;
            border-radius: 14px;
            color: white;
            font-family: 'Cairo', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .cct-website .voice-mobile-send-btn:hover{
            box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
            transform: translateY(-2px);
        }
        .cct-website .voice-mobile-cancel-btn{
            padding: 0.75rem 1.5rem;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 14px;
            color: var(--text-muted);
            font-family: 'Cairo', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .cct-website .voice-mobile-cancel-btn:hover{
            border-color: #ef4444;
            color: #ef4444;
        }
        .cct-website .voice-mobile-pulse-container{
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        .cct-website .voice-mobile-pulse-dot{
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ef4444;
            animation: mobilePulse 0.8s ease-in-out infinite;
        }
        .cct-website .voice-mobile-pulse-dot:nth-child(2){ animation-delay: 0.2s; }
        .cct-website .voice-mobile-pulse-dot:nth-child(3){ animation-delay: 0.4s; }
        @keyframes mobilePulse {
            0%, 80%, 100% { transform: scale(0.5); opacity: 0.4; }
            40% { transform: scale(1); opacity: 1; }
        }
        .cct-website .voice-mobile-credits{
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.75rem;
        }

        /* ===== MOAMMARI - Requirements Gathering System ===== */
        .cct-website #page-moammari{ display: none; }
        .cct-website #page-moammari.active{ display: flex !important; flex-direction: column; height: 100vh; overflow: hidden; }
        .cct-website .moammari-container{ display: flex; flex: 1; height: calc(100vh - 70px); overflow: hidden; }
        .cct-website .moammari-sidebar{ width: 380px; min-width: 380px; display: flex; flex-direction: column; border-left: 1px solid var(--border); background: var(--surface-solid); }
        .cct-website .moammari-viewer{ flex: 1; display: flex; flex-direction: column; background: #f0f0f0; position: relative; }
        .cct-website .moammari-viewer-header{ height: 48px; background: linear-gradient(135deg, #714B67, #5a3a52); display: flex; align-items: center; padding: 0 16px; color: white; font-size: 0.85rem; font-weight: 600; }
        .cct-website .moammari-viewer-frame{ flex: 1; border: none; width: 100%; height: 100%; background: white; }
        .cct-website .moammari-chat-header{ padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
        .cct-website .moammari-chat-header h3{ color: var(--accent); font-size: 1.1rem; display: flex; align-items: center; gap: 8px; }
        .cct-website .moammari-chat-messages{ flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
        .cct-website .moammari-msg{ max-width: 90%; padding: 12px 16px; border-radius: 12px; font-size: 0.85rem; line-height: 1.7; animation: msgSlide 0.3s ease; }
        @keyframes msgSlide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .cct-website .moammari-msg-user{ align-self: flex-start; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); color: var(--text); }
        .cct-website .moammari-msg-agent{ align-self: flex-end; background: rgba(113,75,103,0.2); border: 1px solid rgba(113,75,103,0.3); color: var(--text); }
        .cct-website .moammari-chat-input{ padding: 12px 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
        .cct-website .moammari-chat-input input{ flex: 1; background: rgba(10,22,40,0.5); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; color: var(--text); font-family: 'Cairo', sans-serif; font-size: 0.85rem; }
        .cct-website .moammari-chat-input input:focus{ outline: none; border-color: var(--accent); }
        .cct-website .moammari-chat-input button{ background: var(--gradient-1); border: none; border-radius: 10px; padding: 10px 16px; color: white; cursor: pointer; font-family: 'Cairo', sans-serif; transition: all 0.3s; }
        .cct-website .moammari-chat-input button:hover{ transform: scale(1.05); }
        .cct-website .moammari-setup{ padding: 12px 16px 8px; text-align: center; flex: 1; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; gap: 6px; overflow-y: auto; }
        .cct-website .moammari-setup .agent-logo{ width: 44px !important; height: 44px !important; font-size: 1.1rem !important; margin-bottom: 0 !important; }
        .cct-website .moammari-setup h3{ color: var(--accent); font-size: 0.95rem; margin: 0; }
        .cct-website .moammari-setup p{ color: var(--text-muted); font-size: 0.7rem; max-width: 260px; line-height: 1.5; margin: 0; }
        .cct-website .moammari-setup input, .cct-website .moammari-setup select{ width: 100%; max-width: 260px; background: rgba(10,22,40,0.5); border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px; color: var(--text); font-family: 'Cairo', sans-serif; font-size: 0.75rem; height: 34px; }
        .cct-website .moammari-setup input:focus, .cct-website .moammari-setup select:focus{ outline: none; border-color: var(--accent); }
        .cct-website .moammari-setup button{ background: linear-gradient(135deg, #714B67, #9b6ba0); border: none; border-radius: 8px; padding: 7px 24px; color: white; font-family: 'Cairo', sans-serif; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.3s; margin-top: 2px; }
        .cct-website .moammari-setup button:hover{ transform: translateY(-2px); box-shadow: 0 8px 25px rgba(113,75,103,0.4); }
        .cct-website .moammari-session-bar{ padding: 8px 16px; background: rgba(113,75,103,0.15); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--text-muted); }
        .cct-website .moammari-badge{ display: inline-block; background: linear-gradient(135deg, #c8a45c, #e8d5a3); color: var(--primary); padding: 2px 10px; border-radius: 20px; font-size: 0.65rem; font-weight: 700; margin-right: 6px; vertical-align: middle; }
        .cct-website .moammari-actions{ display: flex; gap: 6px; }
        .cct-website .moammari-actions button{ background: transparent; border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; color: var(--text-muted); font-family: 'Cairo', sans-serif; font-size: 0.7rem; cursor: pointer; transition: all 0.3s; }
        .cct-website .moammari-actions button:hover{ border-color: var(--accent); color: var(--accent); }
        .cct-website .moammari-typing{ display: flex; gap: 4px; padding: 12px 16px; }
        .cct-website .moammari-typing span{ width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: typingBounce 1.4s infinite ease-in-out both; }
        .cct-website .moammari-typing span:nth-child(1){ animation-delay: -0.32s; }
        .cct-website .moammari-typing span:nth-child(2){ animation-delay: -0.16s; }
        @keyframes typingBounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

        @media (max-width: 768px) {
            .cct-website .moammari-container { flex-direction: column; }
            .cct-website .moammari-sidebar{ width: 100%; min-width: 100%; height: 50vh; border-left: none; border-bottom: 1px solid var(--border); }
            .cct-website .moammari-viewer{ height: 50vh; }
        }
