/*
Theme Name: Oxiah Platform
Author: Oxiah Dev
Version: 1.0
*/

:root {
            --oxiah-blue: #0066ff;
            --oxiah-light-bg: #f8fafc;
            --oxiah-white: #ffffff;
            --oxiah-text-dark: #0f172a;
            --oxiah-text-muted: #64748b;
            --oxiah-border: #e2e8f0;
            --oxiah-shadow: 0 10px 25px rgba(0, 102, 255, 0.1);
        }

        body {
            background-color: var(--oxiah-white);
            color: var(--oxiah-text-dark);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 0;
            overflow-x: hidden;
        }

        /* ========== TOP NAVIGATION ========== */
        .top-nav {
            width: 100%;
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }

        .nav-logo img { 
            height: 120px;
            display: block;
        }

        .lang-toggle {
            background: var(--oxiah-white); border: 1px solid var(--oxiah-border);
            font-size: 14px; padding: 10px; border-radius: 10px; cursor: pointer; box-shadow: var(--oxiah-shadow);
        }

        /* ========== LANDING PAGE ========== */
        .landing-page {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 20px 30px;
            box-sizing: border-box;
        }
        .hero-image-container {
            width: 100%;
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }

        .hero-image-container img {
            max-width: 100%;
            height: auto;
        }
        .hero-title, .hero-subtitle {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            width: 100%;
            margin-top: 40px;
        }

        .feature-icon { font-size: 48px; margin-bottom: 20px; }
        .feature-card h3 { margin-bottom: 12px; font-size: 22px; font-weight: 700; }
        .feature-card p { color: var(--oxiah-text-muted); line-height: 1.6; }

        .hero-cta button {
            width: auto;
            background: var(--oxiah-blue);
            color: white;
            padding: 22px 60px;
            font-size: 20px;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
        }

        /* ========== SWISS TRUST FOOTER ========== */
        .medical-trust-footer {
            display: flex;
            justify-content: center;
            gap: 60px;
            padding: 50px 20px;
            border-top: 1px solid var(--oxiah-border);
            background: #fff;
            flex-wrap: wrap;
        }
        .trust-badge { text-align: center; font-weight: 600; color: #475569; font-size: 14px; }
        .trust-badge strong { display: block; font-size: 22px; color: var(--oxiah-blue); margin-bottom: 5px; }

        @media (max-width: 768px) {
            .top-nav { flex-wrap: wrap; padding: 12px 15px; }
            .menu-container { order: 1; flex: 1; }
            .lang-toggle { order: 2; }
            .nav-logo { order: 3; width: 100%; display: flex; justify-content: center; margin-top: 15px; }
            .nav-logo img { height: 70px; width: auto; }
            .landing-page { padding: 0 15px 30px; }
            .hero-title { font-size: 30px !important; line-height: 1.2; }
            .hero-subtitle { font-size: 16px !important; margin: 15px auto 0; }
            .hero-image-container img { max-width: 340px; }
            .feature-grid { grid-template-columns: 1fr !important; }
            .medical-trust-footer { flex-direction: column; gap: 20px; }
        }

        /* ========== CHAT SLIDE PANEL (THE APP) ========== */
        .chat-slide-panel {
            position: fixed; top: 0; right: -100%; width: 100%; max-width: 500px; height: 100vh;
            background: white; z-index: 10000; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -15px 0 50px rgba(0,0,0,0.1); overflow-y: auto; padding: 40px 20px; box-sizing: border-box;
        }
        .chat-slide-panel.active { right: 0; }

        .close-panel {
            position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%;
            background: var(--oxiah-light-bg); border: none; cursor: pointer; font-size: 20px;
            display: flex; align-items: center; justify-content: center; z-index: 10; color: var(--oxiah-blue);
        }

        .app-shell { width: 100%; text-align: center; }
        .card { background: white; padding: 40px 30px; border-radius: 24px; border: 1px solid var(--oxiah-border); box-shadow: var(--oxiah-shadow); }
        .step { display: none; }
        .step.active { display: block; }

        .avatar-controls-row { display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 24px; }
        .hero-avatar { width: 110px; height: 110px; border-radius: 50%; border: 3px solid var(--oxiah-blue); object-fit: cover; }
        .voice-toggle-discreet { position: absolute; right: -20px; width: auto !important; padding: 6px 12px !important; font-size: 12px !important; margin: 0 !important; background: white !important; color: var(--oxiah-blue) !important; border: 1px solid var(--oxiah-border) !important; cursor: pointer;}
        .voice-toggle-discreet.active { background: var(--oxiah-blue) !important; color: white !important; }

        #chat-box { height: 320px; overflow-y: auto; margin: 20px 0; text-align: left; border-bottom: 1px solid var(--oxiah-border); }
        textarea { width: 100%; height: 80px; background: #f8fafc; border: 1px solid var(--oxiah-border); border-radius: 12px; padding: 15px; resize: none; box-sizing: border-box; font-size: 15px; }
        button { width: 100%; margin-top: 15px; border: none; background: var(--oxiah-blue); color: white; padding: 16px; cursor: pointer; border-radius: 12px; font-weight: 600; }
        .disclaimer { font-size: 11px; color: var(--oxiah-text-muted); margin-top: 25px; line-height: 1.5; text-align: center; }

        /* HAMBURGER MENU */
        .hamburger-menu { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 10px; z-index: 1001; }
        .hamburger-menu span { display: block; width: 25px; height: 3px; background-color: var(--oxiah-blue); border-radius: 3px; }
        
        .side-menu {
            position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: white;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1); transition: 0.3s ease; z-index: 2000; padding-top: 60px;
        }
        .side-menu.active { left: 0; }
        .menu-content a { display: block; padding: 15px 25px; text-decoration: none; color: #0f172a; font-weight: 500; border-bottom: 1px solid #f0f0f0; }
        .small-cta { padding-top: 20px; }
        
        .site-footer { padding: 40px 20px; background: #f8fafc; text-align: center; border-top: 1px solid #e2e8f0; margin-top: 50px; }
 