/*
Theme Name: EduNav AI
Theme URI: https://edunav.in
Author: Edunav India Pvt. Ltd.
Author URI: https://edunav.in
Description: Native WordPress theme for EduNav AI - World's 1st AI-Native Zero-Cost School ERP & Intelligence Platform.
Version: 1.0.2
Text Domain: edunav-ai
Tags: dark-mode, custom-logo, custom-menu, education, responsive-layout, grid-layout
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ==========================================================================
   EDUNAV INDIA PVT. LTD. - DARK THEME & AI DESIGN SYSTEM
   Brand Colors: Deep Navy (#0A111E), Card Glass (#101D30), EduNav Teal (#00C896), AI Purple (#8B5CF6)
   ========================================================================== */

:root {
    --bg-dark: #0A111E;
    --bg-navy-deep: #0B192C;
    --bg-card: #101D30;
    --bg-card-hover: #162844;
    --border-color: #1E3A5F;
    --border-glow: rgba(0, 200, 150, 0.4);

    --primary-teal: #00C896;
    --primary-teal-glow: #00E6AA;
    --primary-blue: #2563EB;
    --accent-cyan: #38BDF8;
    --ai-purple: #8B5CF6;
    --ai-purple-glow: rgba(139, 92, 246, 0.4);

    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dark: #64748B;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-teal: 0 10px 25px -5px rgba(0, 200, 150, 0.3);
    --shadow-purple: 0 10px 25px -5px rgba(139, 92, 246, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.teal-gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #00C896 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.teal-highlight {
    color: var(--primary-teal);
}

/* Buttons & Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-primary, .btn-teal {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #008D69 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-teal);
}

.btn-teal:hover, .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-teal-glow) 0%, var(--primary-teal) 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(0, 200, 150, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: translateY(-2px);
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.glow-effect:hover::after {
    opacity: 1;
}

/* Badge Pill */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 200, 150, 0.12);
    border: 1px solid rgba(0, 200, 150, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.badge-pill.ai-pill {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-teal);
    animation: pulse 2s infinite;
}

.badge-dot.ai-dot {
    background-color: var(--ai-purple);
    box-shadow: 0 0 10px var(--ai-purple);
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-teal);
    letter-spacing: 0.5px;
}

.badge-pill.ai-pill .badge-text {
    color: #C4B5FD;
}

/* Header & Navbar Refined Layout */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: 1000;
    background: rgba(10, 17, 30, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(30, 58, 95, 0.5);
    display: flex;
    align-items: center;
    padding: 0;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.brand-logo img, .edunav-logo-img {
    height: 38px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
}

.edunav-logo-img-large {
    height: 48px;
    width: auto;
    max-width: 240px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.edunav-logo-img-footer {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
}

.edunav-logo-svg-new {
    height: 38px;
    width: auto;
    display: block;
}

.edunav-logo-svg-large {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
}

.logo-wall-preview-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    margin-right: 16px;
}

/* WordPress Nav Menu integration */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link, .nav-menu a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
}

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

.ai-glow-link {
    color: #C4B5FD !important;
    font-weight: 700;
}

/* ABOUT US LINK BUTTON */
.nav-link-right {
    font-weight: 600;
    color: var(--primary-teal) !important;
    background: rgba(0, 200, 150, 0.08);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 200, 150, 0.25);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link-right:hover {
    background: rgba(0, 200, 150, 0.2);
    border-color: var(--primary-teal);
    transform: translateY(-1px);
}

/* CTA Action Button Layout & Alignment */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 0;
}

.nav-actions .btn, .nav-actions .btn-primary {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    height: 42px;
    line-height: 1.2;
    border-radius: var(--radius-full);
    margin: 0;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #008D69 100%);
    box-shadow: 0 4px 15px rgba(0, 200, 150, 0.35);
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 20%, #17112F 0%, var(--bg-dark) 70%);
}

.hero-background-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0, 200, 150, 0.12) 50%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item .metric-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-teal);
}

.metric-item .metric-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* Glass Hero Card */
.glass-hero-card.ai-hero-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
    overflow: hidden;
}

.card-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.bar-title {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.status-indicator {
    font-size: 12px;
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.pulse-green {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.card-preview-body {
    padding: 24px;
}

.live-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-badge.purple-glow {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.08);
}

.stat-badge.teal {
    border-color: rgba(0, 200, 150, 0.3);
    background: rgba(0, 200, 150, 0.05);
}

.stat-badge .icon {
    font-size: 22px;
}

.stat-badge small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.stat-badge strong {
    font-size: 15px;
    color: var(--text-main);
}

/* Stream Box */
.stream-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 16px;
}

.stream-header {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 12px;
}

.notification-feed {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.feed-time {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 11px;
}

.feed-msg {
    color: var(--text-main);
}

/* Glass Panel helper */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

/* AI COMMAND CENTER SECTION */
.ai-command-section {
    background: var(--bg-navy-deep);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-teal);
    margin-bottom: 8px;
    display: inline-block;
}

.section-tag.ai-tag {
    color: #C4B5FD;
}

.section-title {
    font-size: 38px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.ai-prompt-box-wrapper {
    background: #0D1626;
    border: 1px solid var(--ai-purple);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-purple);
}

.ai-prompt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.ai-chip {
    font-size: 12px;
    font-weight: 800;
    color: #C4B5FD;
    letter-spacing: 1px;
}

.ai-status {
    font-size: 12px;
    color: var(--primary-teal);
}

.sample-prompts-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.p-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.prompt-btn {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #E9D5FF;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.prompt-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: var(--ai-purple);
    transform: translateY(-1px);
}

.ai-console-window {
    background: #060B14;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    min-height: 240px;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.8;
    color: #F8FAFC;
    overflow-y: auto;
}

.console-line.system {
    color: var(--primary-teal);
}

.console-line.prompt {
    color: #C4B5FD;
    font-weight: bold;
    margin-top: 12px;
}

.console-line.response {
    color: #94A3B8;
    padding-left: 16px;
    border-left: 2px solid var(--ai-purple);
    margin-top: 6px;
}

/* 5 AI ENGINES SHOWCASE */
.ai-engines-section {
    background: var(--bg-dark);
}

.ai-engines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.ai-engine-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
}

.ai-engine-card:hover {
    border-color: var(--ai-purple);
    transform: translateY(-6px);
    box-shadow: var(--shadow-purple);
}

.e-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 16px;
}

.e-badge.purple { background: rgba(139, 92, 246, 0.2); color: #C4B5FD; }
.e-badge.teal { background: rgba(0, 200, 150, 0.2); color: #00C896; }
.e-badge.blue { background: rgba(37, 99, 235, 0.2); color: #60A5FA; }
.e-badge.green { background: rgba(16, 185, 129, 0.2); color: #34D399; }
.e-badge.cyan { background: rgba(56, 189, 248, 0.2); color: #38BDF8; }

.e-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.ai-engine-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.ai-engine-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* MULTI-BOARD CURRICULUM SECTION */
.boards-section {
    background: var(--bg-navy-deep);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.board-selector-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.board-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.board-btn:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.3);
}

.board-btn.active {
    background: var(--primary-blue);
    color: #FFFFFF;
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

.board-display-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.board-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.board-tag-chip {
    font-size: 12px;
    color: var(--primary-teal);
    background: rgba(0, 200, 150, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--primary-teal);
}

.board-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.spec-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-item small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.spec-item strong {
    font-size: 15px;
    color: var(--text-main);
}

/* TRUST BAR */
.trust-bar-section {
    background: #08111E;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.trust-badges-grid {
    display: flex;
    justify-style: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.t-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.t-icon {
    font-size: 18px;
}

/* VISION & MISSION SECTION */
.vision-mission-section {
    background: var(--bg-dark);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.vm-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-teal);
    box-shadow: 0 20px 40px -10px rgba(0, 200, 150, 0.2);
}

.vm-icon-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.vm-icon-circle {
    width: 44px;
    height: 44px;
    background: rgba(2, 132, 199, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.vm-icon-circle.teal {
    background: rgba(0, 200, 150, 0.15);
}

.vm-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-blue);
}

.vm-label.teal {
    color: var(--primary-teal);
}

.vm-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.vm-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.vm-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-item span {
    color: var(--primary-teal);
}

/* MODULES SECTION */
.modules-section {
    background: var(--bg-dark);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.module-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.module-box:hover {
    border-color: var(--primary-teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-teal);
}

.m-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.module-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.module-box p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Product Simulator Tabs */
.simulator-section {
    background: var(--bg-navy-deep);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tab-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.3);
}

.tab-btn.active {
    background: var(--primary-teal);
    color: #FFFFFF;
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-teal);
}

/* Tab Display Window */
.simulator-display-window {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    min-height: 520px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Admin Dashboard Mockup */
.admin-dashboard-mockup {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    min-height: 440px;
}

.mock-sidebar {
    background: rgba(0, 0, 0, 0.3);
    border-right: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
}

.mock-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-teal);
    font-size: 16px;
    margin-bottom: 24px;
}

.mock-nav-item {
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    cursor: pointer;
}

.mock-nav-item.active, .mock-nav-item:hover {
    background: rgba(0, 200, 150, 0.15);
    color: var(--primary-teal);
    font-weight: 600;
}

.mock-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.date-badge {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    color: var(--text-muted);
}

.kpi-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
}

.kpi-card small {
    font-size: 12px;
    color: var(--text-muted);
}

.kpi-value {
    font-size: 26px;
    font-weight: 800;
    margin: 4px 0;
}

.kpi-value.teal { color: var(--primary-teal); }

.trend.positive {
    font-size: 11px;
    color: #10B981;
    font-weight: 600;
}

.subtext {
    font-size: 11px;
    color: var(--text-muted);
}

.mock-actions-bar {
    display: flex;
    gap: 12px;
}

.mock-btn {
    background: var(--primary-teal);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

.mock-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.action-output-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--primary-teal);
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--primary-teal);
}

/* Smartphone Mockup */
.phone-simulator-container {
    display: flex;
    justify-content: center;
}

.smartphone-frame {
    width: 320px;
    height: 560px;
    background: #000;
    border: 10px solid #1E293B;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    overflow: hidden;
}

.phone-notch {
    width: 120px;
    height: 20px;
    background: #1E293B;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0B1422;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 12px 16px;
    background: #101D30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-brand-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.app-logo-small {
    font-weight: 800;
    color: var(--primary-teal);
}

.child-selector {
    color: var(--text-muted);
    font-size: 11px;
}

.app-body {
    padding: 16px;
    flex: 1;
    overflow-y: auto;
}

.student-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.student-card .avatar {
    font-size: 28px;
}

.student-info h4 {
    font-size: 14px;
}

.student-info p {
    font-size: 11px;
    color: var(--text-muted);
}

.status-chip.present {
    font-size: 10px;
    color: #10B981;
    background: rgba(16, 185, 129, 0.15);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 4px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.grid-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 4px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 11px;
}

.grid-item span {
    display: block;
    font-size: 18px;
    margin-bottom: 2px;
}

.app-section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.app-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feed-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 10px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 10px;
}

.feed-icon-circle {
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.feed-icon-circle.blue {
    background: rgba(2, 132, 199, 0.2);
}

.feed-text strong {
    font-size: 11px;
    display: block;
}

.feed-text p {
    font-size: 10px;
    color: var(--text-muted);
}

.feed-text small {
    font-size: 9px;
    color: var(--text-dark);
}

.phone-bottom-nav {
    background: #101D30;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    font-size: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-icon.active {
    color: var(--primary-teal);
    font-weight: 700;
}

/* GPS Radar Mockup */
.gps-tracking-mockup {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    height: 420px;
}

.gps-map-area {
    background: #08111E;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 200, 150, 0.2) 1px, transparent 0);
    background-size: 24px 24px;
}

.animated-bus {
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: moveBus 12s infinite alternate linear;
    text-align: center;
}

.bus-icon {
    font-size: 32px;
}

.bus-pulse {
    width: 40px;
    height: 40px;
    background: rgba(0, 200, 150, 0.4);
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: -4px;
    animation: pulse 1.5s infinite;
}

.bus-tooltip {
    background: rgba(16, 29, 48, 0.95);
    border: 1px solid var(--primary-teal);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    margin-top: 8px;
    box-shadow: var(--shadow-teal);
}

.school-destination {
    position: absolute;
    right: 15%;
    top: 45%;
    background: rgba(2, 132, 199, 0.2);
    border: 1px solid var(--primary-blue);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
}

.gps-controls-side {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gps-stat-row {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.gps-alert-box {
    background: rgba(0, 200, 150, 0.1);
    border: 1px solid var(--primary-teal);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    margin-top: auto;
}

/* Teacher Workspace Table */
.teacher-mockup {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-md);
}

.teacher-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.student-list-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.table-row {
    display: grid;
    grid-template-columns: 60px 1fr 180px 100px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    align-items: center;
    font-size: 13px;
}

.table-row.header {
    background: rgba(0, 0, 0, 0.4);
    font-weight: 700;
    color: var(--primary-teal);
}

.status-text.present { color: #10B981; }
.status-text.absent { color: #EF4444; }

.toggle-status-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
}

/* 2-Way Chat Simulator */
.chat-simulator-wrapper {
    background: #0B1422;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    height: 440px;
    display: flex;
    flex-direction: column;
}

.chat-header-bar {
    padding: 16px 20px;
    background: #101D30;
    border-bottom: 1px solid var(--border-color);
}

.user-chat-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-circle {
    font-size: 24px;
}

.online-status {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.chat-messages-box {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
}

.chat-bubble.teacher {
    background: rgba(255, 255, 255, 0.06);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-bubble.parent {
    background: var(--primary-teal);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-bubble .time {
    display: block;
    font-size: 10px;
    opacity: 0.7;
    margin-top: 4px;
}

.chat-input-bar {
    padding: 12px 20px;
    background: #101D30;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
}

.chat-input-bar input {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
}

/* ROI Section */
.roi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.roi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.calc-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 16px;
}

.range-slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    margin-bottom: 32px;
    accent-color: var(--primary-teal);
}

.savings-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.saving-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.saving-item small {
    font-size: 12px;
    color: var(--text-muted);
}

.amount {
    font-size: 22px;
    font-weight: 800;
    margin-top: 4px;
}

.amount.old {
    color: #EF4444;
    text-decoration: line-through;
}

.amount.free {
    color: var(--primary-teal);
}

.total-saved-box {
    background: rgba(0, 200, 150, 0.1);
    border: 1px solid var(--primary-teal);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.big-savings {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-teal);
    margin: 8px 0;
}

.savings-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-navy-deep);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    margin-bottom: 16px;
    font-size: 14px;
}

.quote {
    font-size: 14px;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.author-info strong {
    display: block;
    font-size: 14px;
    color: var(--primary-teal);
}

.author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ABOUT US SECTION */
.about-section {
    background: var(--bg-navy-deep);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-body {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.about-highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 18px 20px;
    border-radius: var(--radius-md);
}

.highlight-icon {
    font-size: 26px;
}

.highlight-box h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.highlight-box p {
    font-size: 13px;
    color: var(--text-muted);
}

.about-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-teal);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-teal);
    text-align: center;
}

.badge-icon {
    font-size: 44px;
    margin-bottom: 12px;
}

.about-visual-card h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.reg-no {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.stats-counter-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    padding: 16px 12px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.c-num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-teal);
}

.c-lbl {
    font-size: 10px;
    color: var(--text-muted);
}

.official-url-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-teal);
    background: rgba(0, 200, 150, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--primary-teal);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
    color: var(--primary-teal);
}

/* Contact / Onboarding Section */
.contact-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: var(--radius-lg);
}

.contact-header {
    margin-bottom: 36px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 10px rgba(0, 200, 150, 0.3);
}

.full-width-btn {
    width: 100%;
}

/* Footer */
.footer {
    background: #060B14;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand strong {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--primary-teal);
}

.company-legal {
    font-size: 12px;
    color: var(--text-dark);
    margin: 16px 0;
}

.social-links {
    display: flex;
    gap: 12px;
    font-size: 18px;
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 13px;
    color: var(--text-muted);
}

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

.footer-col p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 12px;
    color: var(--text-dark);
}

/* FLOATING QUICK ASSIST WIDGET */
.floating-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1500;
}

.widget-btn {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #008D69 100%);
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 200, 150, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.widget-btn:hover {
    transform: scale(1.05);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--primary-teal);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 480px;
    text-align: center;
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.modal-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.modal-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Standard WordPress Content Loop Styles */
.entry-header {
    margin-bottom: 24px;
}

.entry-title {
    font-size: 36px;
    margin-bottom: 12px;
}

.entry-meta {
    font-size: 13px;
    color: var(--text-muted);
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul, .entry-content ol {
    margin: 0 0 20px 24px;
    list-style: disc;
}

/* Animations & Keyframes */
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 200, 150, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 150, 0); }
}

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

@keyframes moveBus {
    0% { left: 15%; top: 50%; }
    50% { left: 50%; top: 35%; }
    100% { left: 75%; top: 48%; }
}
