/* TLink - Modern UI CSS Styles */

/* Root Variables */
:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --card-bg: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --accent-blue: #0066ff;
    --accent-blue-hover: #0052cc;
    --success-green: #00d4aa;
    --warning-orange: #ff6b35;
    --error-red: #ff4757;
    --border-color: #333333;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Modern Body Classes */
.modern-body {
    background: var(--primary-bg);
    color: var(--text-primary);
}

.login-body {
    background: var(--primary-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Styles */
.modern-nav {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.modern-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.modern-brand:hover {
    color: var(--accent-blue) !important;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.05);
}

.btn-signin {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-signin:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--text-primary);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-primary:hover {
    background: var(--accent-blue);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Hero Section */
.modern-hero {
    min-height: 100vh;
    background: var(--primary-bg);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

/* Galaxy Star Animation - Lighter Version */
.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stars {
    background-image: 
        radial-gradient(1px 1px at 30px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 80px 20px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 120px 60px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 180px 30px, rgba(255,255,255,0.3), transparent);
    background-repeat: repeat;
    background-size: 250px 120px;
    animation: sparkle 4s linear infinite;
}

.stars2 {
    background-image: 
        radial-gradient(1px 1px at 60px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 140px 40px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 200px 100px, rgba(255,255,255,0.5), transparent);
    background-repeat: repeat;
    background-size: 280px 140px;
    animation: sparkle 6s linear infinite reverse;
}

.stars3 {
    background-image: 
        radial-gradient(1px 1px at 50px 100px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 150px 20px, rgba(255,255,255,0.4), transparent);
    background-repeat: repeat;
    background-size: 300px 160px;
    animation: sparkle 8s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-120px); }
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    margin-bottom: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.hero-feature i {
    color: var(--accent-blue);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.hero-actions {
    margin-top: 2rem;
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-preview {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.preview-dots span:first-child {
    background: var(--error-red);
}

.preview-dots span:nth-child(2) {
    background: var(--warning-orange);
}

.preview-dots span:last-child {
    background: var(--success-green);
}

.preview-title {
    font-weight: 600;
    color: var(--text-primary);
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-card {
    background: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.preview-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.preview-chart {
    height: 60px;
    margin-bottom: 1rem;
    position: relative;
}

.chart-line {
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    position: relative;
}

.chart-line::after {
    content: '';
    position: absolute;
    top: -4px;
    right: 0;
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.preview-stats {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.item-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.item-status.online {
    background: var(--success-green);
}

.item-status.warning {
    background: var(--warning-orange);
}

.item-status.offline {
    background: var(--error-red);
}

/* Section Styles */
.modern-section {
    padding: 5rem 0;
    background: var(--primary-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Sections */
.feature-section {
    margin-bottom: 8rem;
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.feature-benefits {
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.benefit-item i {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Visuals */
.feature-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mockup-title {
    font-weight: 600;
    color: var(--text-primary);
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mockup-chart {
    background: var(--secondary-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.chart-container {
    height: 80px;
    position: relative;
    margin-bottom: 1rem;
}

.chart-line {
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    position: relative;
}

.chart-points {
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 8px;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    top: 0;
}

.point:nth-child(1) { left: 20%; }
.point:nth-child(2) { left: 50%; }
.point:nth-child(3) { left: 80%; }

.chart-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.mockup-stats {
    display: flex;
    gap: 1rem;
}

.stat-card {
    flex: 1;
    background: var(--secondary-bg);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-unit {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Analytics Mockup */
.analytics-mockup {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.analytics-card {
    background: var(--secondary-bg);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.card-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.metric-value {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trend-line {
    height: 40px;
    background: linear-gradient(45deg, var(--accent-blue) 0%, var(--success-green) 100%);
    border-radius: 4px;
    position: relative;
}

.trend-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.alert-item {
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.alert-item.warning {
    background: rgba(255, 107, 53, 0.1);
    color: var(--warning-orange);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.alert-item.success {
    background: rgba(0, 212, 170, 0.1);
    color: var(--success-green);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

/* Contact Section */
.contact-actions {
    margin-bottom: 3rem;
}

.contact-form-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-control {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: var(--secondary-bg);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
    color: var(--text-primary);
}

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

.contact-form .form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Login Page Styles */
.login-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.login-card {
    flex: 1;
    max-width: 500px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    margin: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-right: 0.75rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.login-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

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

.login-form .form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.login-form .form-control {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    background: var(--secondary-bg);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
    color: var(--text-primary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.form-check-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.forgot-password {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--accent-blue-hover);
}

.btn-login {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.login-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    color: var(--text-muted);
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.login-divider span {
    background: var(--card-bg);
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-social {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
}

.login-footer p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.signup-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover {
    color: var(--accent-blue-hover);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badges .badge {
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Side Panel */
.login-side-panel {
    flex: 1;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.login-side-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.side-panel-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.side-panel-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.side-panel-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.feature-highlights {
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.highlight-item i {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.stats-preview {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

/* Background Elements */
.login-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
}

.bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

.bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

/* Footer */
.footer {
    background: var(--secondary-bg) !important;
    border-top: 1px solid var(--border-color);
}

.footer h5, .footer h6 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-blue);
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--accent-blue) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-content h2 {
        font-size: 2rem;
    }
    
    .login-container {
        flex-direction: column;
    }
    
    .login-side-panel {
        display: none;
    }
    
    .login-card {
        margin: 1rem;
        padding: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-preview {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-feature {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-outline-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .login-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-in-out;
}

.animate-slide-up-delay {
    animation: slideUp 1s ease-in-out 0.2s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 1s ease-in-out 0.4s both;
}

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

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue-hover);
}

/* Form Validation States */
.form-control.is-valid {
    border-color: var(--success-green);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300d4aa' d='m2.3 6.73.94-.94 1.44-1.44'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
    border-color: var(--error-red);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff4757'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4 1.4-1.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--error-red);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-primary);
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* On-Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-delay="200"] {
    transition-delay: 0.2s;
}

.animate-on-scroll[data-delay="400"] {
    transition-delay: 0.4s;
}

.animate-on-scroll[data-delay="600"] {
    transition-delay: 0.6s;
}

.animate-on-scroll[data-delay="800"] {
    transition-delay: 0.8s;
}

.animate-on-scroll[data-delay="1000"] {
    transition-delay: 1s;
}

/* Enterprise Dashboard Styles */
.enterprise-dashboard {
    background: #0f1419;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.app-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Enterprise Sidebar */
.enterprise-sidebar {
    width: 280px;
    background: #1a1f2e;
    border-right: 1px solid #2d3748;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.sidebar-brand {
    padding: 1.5rem;
    border-bottom: 1px solid #2d3748;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.125rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: none; /* Hidden on desktop */
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.sidebar-navigation {
    padding: 1rem 0;
}

.nav-group {
    margin-bottom: 2rem;
}

.nav-group-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
    gap: 0.75rem;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.nav-item.active {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-right: 3px solid #3b82f6;
}

.nav-item i {
    width: 20px;
    font-size: 1rem;
}

.nav-badge {
    background: #f59e0b;
    color: #000000;
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 8px;
    margin-left: auto;
    font-weight: 600;
}

.nav-badge.preview {
    background: #10b981;
    color: #ffffff;
}

/* Enterprise Header */
.enterprise-header {
    background: #1a1f2e;
    border-bottom: 1px solid #2d3748;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-left: 280px;
    transition: margin-left 0.3s ease;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-title h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.header-center {
    flex: 1;
    max-width: 600px;
    margin: 0 2rem;
}

.search-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-container {
    position: relative;
    flex: 1;
}

.search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.875rem;
}

.search-input {
    width: 100%;
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 8px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filter-select {
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
}

.group-btn {
    background: #10b981;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.group-btn:hover {
    background: #059669;
}

.header-right {
    display: flex;
    align-items: center;
}

.user-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.organization-dropdown {
    display: flex;
    align-items: center;
}

.org-select {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-menu:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
}

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

.action-btn {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.notification-badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: #ef4444;
    color: white;
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    transition: margin-left 0.3s ease;
    min-height: 100vh;
    background: #0f1419;
    width: calc(100vw - 280px);
    flex: 1;
    overflow-x: hidden;
}

/* Simplified Header */
.simplified-header {
    background: #1a1f2e;
    border-bottom: 1px solid #2d3748;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
}

.user-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-menu:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
}

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

.action-btn {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.notification-badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: #ef4444;
    color: white;
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 8px;
    font-weight: 600;
}

.dashboard-content {
    padding: 2rem;
    width: 100%;
    max-width: none;
}

/* Page Title Section */
.page-title-section {
    margin-bottom: 2rem;
}

.page-title-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.page-subtitle {
    font-size: 1rem;
    color: #9ca3af;
    margin: 0;
}

/* Ensure full width for Bootstrap rows */
.dashboard-content .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.dashboard-content .row > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Metrics Row */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.metric-card {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #3b82f6;
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.metric-trend.positive {
    color: #10b981;
}

.metric-trend.negative {
    color: #ef4444;
}

/* Dashboard Grid - Now using Bootstrap grid system */

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.section-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Fleet Map */
.fleet-map-section {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.map-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #9ca3af;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.control-btn:hover,
.control-btn.active {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.fleet-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Terminal Markers */
.terminal-marker {
    position: absolute !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    border: 3px solid #ffffff !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    z-index: 10 !important;
    transition: transform 0.2s ease !important;
}

.terminal-marker.healthy {
    background-color: #10b981 !important;
}

.terminal-marker.warning {
    background-color: #f59e0b !important;
}

.terminal-marker.critical {
    background-color: #ef4444 !important;
}

.terminal-marker:hover {
    transform: scale(1.2) !important;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(26, 31, 46, 0.9);
    border-radius: 8px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.map-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #ffffff;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-color.healthy {
    background: #10b981;
}

.legend-color.warning {
    background: #f59e0b;
}

.legend-color.critical {
    background: #ef4444;
}

/* Charts Section */
.charts-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.charts-section .chart-card {
    width: 100%;
    min-height: 400px;
}

.chart-card {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
}

.chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.chart-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.chart-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-select {
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
}

.refresh-btn {
    background: #3b82f6;
    border: none;
    border-radius: 6px;
    padding: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.refresh-btn:hover {
    background: #2563eb;
    transform: rotate(180deg);
}

.chart-body {
    height: 400px;
    padding: 1rem;
}

.chart-body canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Data Usage Section */
.data-usage-section {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.usage-controls {
    display: flex;
    align-items: center;
}

.period-select {
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
}

.usage-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.usage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.usage-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-change {
    font-size: 0.75rem;
    font-weight: 500;
}

.stat-change.positive {
    color: #10b981;
}

.usage-chart {
    height: 150px;
}

.usage-chart canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Alerts Section */
.alerts-section {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.alert-controls {
    display: flex;
    align-items: center;
}

.acknowledge-btn {
    background: #10b981;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.acknowledge-btn:hover {
    background: #059669;
}

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

.alert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.alert-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.alert-item.critical {
    border-left-color: #ef4444;
}

.alert-item.warning {
    border-left-color: #f59e0b;
}

.alert-item.info {
    border-left-color: #3b82f6;
}

.alert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.alert-item.critical .alert-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.alert-item.warning .alert-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.alert-item.info .alert-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.alert-terminal {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.alert-time {
    font-size: 0.75rem;
    color: #6b7280;
}

.alert-actions {
    display: flex;
    align-items: center;
}

.alert-actions .action-btn {
    background: #3b82f6;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.75rem;
    color: #ffffff;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alert-actions .action-btn:hover {
    background: #2563eb;
}

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

.metric-card {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #3b82f6;
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.metric-trend.positive {
    color: #10b981;
}

.metric-trend.negative {
    color: #ef4444;
}

/* Professional Charts Grid */
.charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-card {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chart-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.chart-card.large {
    grid-column: span 2;
    grid-row: span 1;
}

.chart-card.medium {
    grid-column: span 1;
    grid-row: span 1;
}

.chart-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.chart-title h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.chart-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

.chart-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.time-range-select,
.data-type-select {
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
}

.refresh-btn,
.export-btn,
.map-view-btn {
    background: #3b82f6;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.refresh-btn:hover,
.export-btn:hover,
.map-view-btn:hover {
    background: #2563eb;
}

.chart-body {
    padding: 0 1.5rem 1.5rem;
    height: 300px;
}

.chart-body canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Professional Data Tables */
.data-tables-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.table-card {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    overflow: hidden;
}

.table-header {
    padding: 1.5rem;
    border-bottom: 1px solid #2d3748;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-title h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.alert-count,
.performance-summary {
    font-size: 0.875rem;
    color: #9ca3af;
}

.table-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.severity-filter,
.type-filter {
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
}

.search-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-group .search-input {
    background: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    width: 200px;
}

.search-btn {
    background: #3b82f6;
    border: none;
    border-radius: 6px;
    padding: 0.5rem;
    color: #ffffff;
    cursor: pointer;
}

.acknowledge-btn,
.export-btn {
    background: #10b981;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.acknowledge-btn:hover,
.export-btn:hover {
    background: #059669;
}

.table-body {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    min-width: 800px;
}

.table-row {
    display: grid;
    grid-template-columns: 120px 1fr 120px 100px 140px 160px;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #2d3748;
    align-items: center;
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.table-row.header {
    background: rgba(59, 130, 246, 0.05);
    font-weight: 600;
    color: #3b82f6;
    border-bottom: 2px solid #3b82f6;
}

.table-row.header .col {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.col {
    font-size: 0.875rem;
    color: #ffffff;
}

.severity-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.severity-badge.critical {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.severity-badge.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid #f59e0b;
}

.severity-badge.info {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.healthy {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid #f59e0b;
}

.status-badge.critical {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.action-btn {
    background: #3b82f6;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    color: #ffffff;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #2563eb;
}

.action-btn.small {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .enterprise-sidebar {
        transform: translateX(-100%);
    }
    
    .enterprise-sidebar.show {
        transform: translateX(0);
    }
    
    .simplified-header {
        margin-left: 0;
        padding: 1rem;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .page-title-section h1 {
        font-size: 1.5rem;
    }
    
    .metrics-row {
        grid-template-columns: 1fr;
    }
    
    .charts-section {
        flex-direction: column;
    }
    
    .usage-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .enterprise-sidebar {
        transform: translateX(-100%);
    }
    
    .enterprise-sidebar.show {
        transform: translateX(0);
    }
    
    .enterprise-header {
        margin-left: 0;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .search-filters {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .filter-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .header-center {
        margin: 0 1rem;
    }
}

/* Utility Classes */
.text-primary { color: #ffffff !important; }
.text-secondary { color: #9ca3af !important; }
.text-muted { color: #6b7280 !important; }
.text-accent { color: #3b82f6 !important; }
.text-success { color: #10b981 !important; }
.text-warning { color: #f59e0b !important; }
.text-error { color: #ef4444 !important; }

.bg-primary { background: #0f1419 !important; }
.bg-secondary { background: #1a1f2e !important; }
.bg-card { background: #1a1f2e !important; }

.border-primary { border-color: #2d3748 !important; }
.border-accent { border-color: #3b82f6 !important; }

.shadow-light { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important; }
.shadow-medium { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important; }
.shadow-heavy { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important; }

/* Modern Sidebar */
.modern-sidebar {
    width: 280px;
    background: var(--secondary-bg);
    border-right: 1px solid var(--border-color);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sidebar-brand i {
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.sidebar-nav {
    padding: 1rem 0;
}

.nav-section {
    margin-bottom: 2rem;
}

.nav-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.nav-item.active {
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
}

.nav-item i {
    width: 20px;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.nav-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-item.active .nav-indicator {
    opacity: 1;
}

.nav-badge {
    background: var(--error-red);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: auto;
    font-weight: 600;
}

/* Modern Header */
.modern-header {
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-left: 280px;
    transition: margin-left 0.3s ease;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.breadcrumb-nav {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 500;
}

.header-center {
    flex: 1;
    max-width: 400px;
    margin: 0 2rem;
}

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.search-input {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.header-right {
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.125rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.notification-badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background: var(--error-red);
    color: white;
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 8px;
    font-weight: 600;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.user-menu:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

/* Modern Content */
.modern-content {
    margin-left: 280px;
    padding: 2rem;
    transition: margin-left 0.3s ease;
    min-height: calc(100vh - 80px);
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-title h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.page-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Modern Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.25rem;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.stat-change.negative {
    color: var(--error-red);
}

/* Charts Section */
.charts-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.chart-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.chart-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.chart-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.chart-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chart-body {
    padding: 0 1.5rem 1.5rem;
    height: 300px;
}

.chart-body canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .charts-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .modern-sidebar {
        transform: translateX(-100%);
    }
    
    .modern-sidebar.show {
        transform: translateX(0);
    }
    
    .modern-header {
        margin-left: 0;
    }
    
    .modern-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Utility Classes */
.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-accent { color: var(--accent-blue) !important; }
.text-success { color: var(--success-green) !important; }
.text-warning { color: var(--warning-orange) !important; }
.text-error { color: var(--error-red) !important; }

.bg-primary { background: var(--primary-bg) !important; }
.bg-secondary { background: var(--secondary-bg) !important; }
.bg-card { background: var(--card-bg) !important; }

.border-primary { border-color: var(--border-color) !important; }
.border-accent { border-color: var(--accent-blue) !important; }

.shadow-light { box-shadow: var(--shadow-light) !important; }
.shadow-medium { box-shadow: var(--shadow-medium) !important; }
.shadow-heavy { box-shadow: var(--shadow-heavy) !important; }

/* Architecture Section Styles */
.architecture-overview {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.architecture-overview h3 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.architecture-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.architecture-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.architecture-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.architecture-list {
    list-style: none;
    padding: 0;
}

.architecture-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.architecture-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 0.8rem;
}

/* Platform Cards */
.platform-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

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

.platform-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-primary);
}

.platform-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.platform-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

/* Workflow Steps */
.workflow-step {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    position: relative;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.workflow-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.workflow-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Additional Styles for New Pages */

/* Terminal Filters */
.terminal-filters {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-select {
    background: #2d3748;
    border: 1px solid #4a5568;
    color: #ffffff;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
}

.form-select:focus {
    background: #2d3748;
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    color: #ffffff;
}

/* Terminal List Section */
.terminal-list-section {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.terminal-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-group .form-control {
    background: #2d3748;
    border: 1px solid #4a5568;
    color: #ffffff;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    width: 250px;
}

.search-group .form-control:focus {
    background: #2d3748;
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    color: #ffffff;
}

/* Network Status Section */
.network-status-section {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

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

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 4px solid;
}

.status-item:first-child {
    border-left-color: #10b981;
}

.status-item:nth-child(2) {
    border-left-color: #10b981;
}

.status-item:nth-child(3) {
    border-left-color: #f59e0b;
}

.status-item:nth-child(4) {
    border-left-color: #10b981;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.online {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-indicator.warning {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.status-info {
    flex: 1;
}

.status-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.status-detail {
    font-size: 0.75rem;
    color: #9ca3af;
}

.status-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

/* Satellite Map Section */
.satellite-map-section {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.satellite-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.satellite-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.satellite-marker.active {
    background-color: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.satellite-marker.standby {
    background-color: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.satellite-marker.maintenance {
    background-color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

/* Coverage Analysis */
.coverage-analysis {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.coverage-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coverage-region {
    font-size: 0.875rem;
    color: #ffffff;
    width: 100px;
}

.coverage-bar {
    flex: 1;
    height: 8px;
    background: #2d3748;
    border-radius: 4px;
    overflow: hidden;
}

.coverage-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.coverage-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    width: 40px;
    text-align: right;
}

/* Satellite Activity Section */
.satellite-activity-section {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.activity-controls {
    display: flex;
    align-items: center;
}

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

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.activity-icon {
    width: 32px;
    height: 32px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 0.875rem;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.activity-detail {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.activity-time {
    font-size: 0.75rem;
    color: #6b7280;
}

.activity-status {
    display: flex;
    align-items: center;
}

/* Satellite Info Section */
.satellite-info-section {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1rem;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

/* Subscription Plan Cards */
.subscription-plan-card {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.subscription-plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #3b82f6;
}

.subscription-plan-card.premium {
    border-color: #f59e0b;
    position: relative;
}

.subscription-plan-card.premium::before {
    content: 'POPULAR';
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f59e0b;
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #3b82f6;
    font-size: 1.5rem;
}

.plan-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.plan-price span {
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 400;
}

.plan-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #ffffff;
}

.feature-item i {
    color: #10b981;
    font-size: 0.875rem;
}

.plan-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #2d3748;
}

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

.stat-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

/* Billing Section */
.billing-section {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.billing-controls {
    display: flex;
    align-items: center;
}

.billing-table {
    margin-top: 1rem;
}

/* Payment Methods Section */
.payment-methods-section {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid #2d3748;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
}

.method-info {
    flex: 1;
}

.method-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.method-detail {
    font-size: 0.75rem;
    color: #9ca3af;
}

.method-status {
    display: flex;
    align-items: center;
}

/* Terminal Table Styles */
.terminal-table {
    margin-top: 1rem;
}

.terminal-table .table {
    margin-bottom: 0;
}

.terminal-table .table th {
    border-top: none;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(59, 130, 246, 0.1);
}

.terminal-table .table td {
    vertical-align: middle;
    color: #ffffff;
    border-color: #2d3748;
}

.terminal-table .table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.terminal-table .progress {
    background-color: #2d3748;
    border-radius: 4px;
}

.terminal-table .progress-bar {
    border-radius: 4px;
}

.terminal-table .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    margin-right: 0.25rem;
}

.terminal-table .btn-sm:last-child {
    margin-right: 0;
}

/* Reseller Administration Styles */
.portal-info {
    display: flex;
    flex-direction: column;
}

.portal-title {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.portal-subtitle {
    color: #9ca3af;
    font-size: 0.75rem;
    margin: 0;
}

.page-breadcrumb {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

/* Metric Cards - Reseller Admin */
.metric-card.partners {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: none;
}

.metric-card.clients {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    border: none;
}

.metric-card.active-users {
    background: linear-gradient(135deg, #ef4444, #f87171);
    border: none;
}

.metric-card.starlink-admins {
    background: linear-gradient(135deg, #f97316, #fb923c);
    border: none;
}

.metric-card.subscriptions {
    background: linear-gradient(135deg, #ea580c, #fb923c);
    border: none;
}

.metric-card.active {
    background: linear-gradient(135deg, #eab308, #facc15);
    border: none;
}

.metric-card.data-pools {
    background: linear-gradient(135deg, #10b981, #34d399);
    border: none;
}

.metric-card.partners .metric-icon,
.metric-card.clients .metric-icon,
.metric-card.active-users .metric-icon,
.metric-card.starlink-admins .metric-icon,
.metric-card.subscriptions .metric-icon,
.metric-card.active .metric-icon,
.metric-card.data-pools .metric-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.metric-card.partners .metric-value,
.metric-card.clients .metric-value,
.metric-card.active-users .metric-value,
.metric-card.starlink-admins .metric-value,
.metric-card.subscriptions .metric-value,
.metric-card.active .metric-value,
.metric-card.data-pools .metric-value {
    color: #ffffff;
    font-weight: 700;
}

.metric-card.partners .metric-label,
.metric-card.clients .metric-label,
.metric-card.active-users .metric-label,
.metric-card.starlink-admins .metric-label,
.metric-card.subscriptions .metric-label,
.metric-card.active .metric-label,
.metric-card.data-pools .metric-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Section Headers */
.section-header {
    margin-bottom: 1.5rem;
}

.section-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Action Cards */
.action-card {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.action-card:hover {
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.action-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.25rem;
}

.action-content h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.action-content p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Admin Cards */
.admin-card {
    background: #1a1f2e;
    border: 1px solid #2d3748;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.admin-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.admin-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.25rem;
}

.admin-content h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.admin-content p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .terminal-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-group {
        width: 100%;
    }
    
    .search-group .form-control {
        width: 100%;
    }
    
    .coverage-item {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .coverage-region {
        width: auto;
    }
    
    .coverage-value {
        width: auto;
        text-align: left;
    }
    
    .plan-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-method {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

/* Comprehensive Responsive Design for All Pages */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .enterprise-sidebar {
        width: 250px;
    }
    
    .main-content {
        margin-left: 250px;
        width: calc(100vw - 250px);
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fleet-map-section,
    .charts-section {
        width: 100%;
    }
    
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .enterprise-sidebar {
        width: 220px;
    }
    
    .main-content {
        margin-left: 220px;
        width: calc(100vw - 220px);
    }
    
    .dashboard-content {
        padding: 1.5rem;
    }
    
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .chart-body {
        height: 300px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .action-card,
    .admin-card {
        padding: 1rem;
    }
    
    .action-content h4,
    .admin-content h4 {
        font-size: 1rem;
    }
    
    .action-content p,
    .admin-content p {
        font-size: 0.8rem;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    /* Sidebar becomes overlay */
    .enterprise-sidebar {
        transform: translateX(-100%);
        width: 280px;
        z-index: 2000;
        transition: transform 0.3s ease;
    }
    
    .enterprise-sidebar.open {
        transform: translateX(0);
    }
    
    /* Show sidebar toggle in header on mobile */
    .sidebar-toggle {
        display: block !important;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 2001;
        background: rgba(26, 31, 46, 0.9);
        border: 1px solid #2d3748;
        color: #ffffff;
        padding: 0.75rem;
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }
    
    .sidebar-toggle:hover {
        background: rgba(26, 31, 46, 1);
        color: #ffffff;
    }
    
    .main-content {
        margin-left: 0;
        width: 100vw;
    }
    
    .simplified-header {
        padding: 1rem;
    }
    
    .portal-info {
        display: none;
    }
    
    .header-right {
        width: 100%;
        justify-content: flex-end;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .page-title-section h1 {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .metrics-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .metric-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 1.25rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .chart-body {
        height: 250px;
        padding: 0.5rem;
        overflow: hidden;
    }
    
    .chart-body canvas {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
    }
    
    .map-container {
        height: 250px;
        overflow: hidden;
    }
    
    /* Mobile sidebar overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999;
        display: none;
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .chart-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .chart-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .time-select {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .refresh-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .action-card,
    .admin-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .action-icon,
    .admin-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .action-content h4,
    .admin-content h4 {
        font-size: 0.9rem;
    }
    
    .action-content p,
    .admin-content p {
        font-size: 0.75rem;
    }
    
    .section-header h3 {
        font-size: 1.25rem;
    }
    
    /* Terminal controls responsive */
    .terminal-controls {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .terminal-controls .btn {
        width: 100%;
    }
    
    .terminal-filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .terminal-filters .form-control {
        width: 100%;
    }
    
    .network-status-section .row,
    .satellite-map-section .row,
    .coverage-analysis .row,
    .satellite-activity-section .row,
    .satellite-info-section .row,
    .billing-section .row,
    .payment-methods-section .row {
        flex-direction: column;
    }
    
    .subscription-plan-card {
        margin-bottom: 1rem;
    }
    
    /* Login page responsive */
    .login-container {
        flex-direction: column;
    }
    
    .login-side-panel {
        display: none;
    }
    
    .login-card {
        margin: 1rem;
        padding: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-preview {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .simplified-header {
        padding: 0.75rem;
    }
    
    .dashboard-content {
        padding: 0.75rem;
    }
    
    .page-title-section h1 {
        font-size: 1.25rem;
    }
    
    .page-subtitle {
        font-size: 0.8rem;
    }
    
    .metric-card {
        padding: 0.75rem;
    }
    
    .metric-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .chart-body {
        height: 200px;
        padding: 0.25rem;
        overflow: hidden;
    }
    
    .chart-body canvas {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
    }
    
    .map-container {
        height: 200px;
        overflow: hidden;
    }
    
    .action-card,
    .admin-card {
        padding: 0.75rem;
    }
    
    .action-icon,
    .admin-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .action-content h4,
    .admin-content h4 {
        font-size: 0.85rem;
    }
    
    .action-content p,
    .admin-content p {
        font-size: 0.7rem;
    }
    
    .section-header h3 {
        font-size: 1.1rem;
    }
    
    /* Landing page responsive */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-feature {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-content h2 {
        font-size: 1.5rem;
    }
    
    .login-card {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .dashboard-content {
        padding: 0.5rem;
    }
    
    .metric-card {
        padding: 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .metric-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .metric-label {
        font-size: 0.7rem;
    }
    
    .chart-body {
        height: 180px;
        overflow: hidden;
    }
    
    .chart-body canvas {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
    }
    
    .map-container {
        height: 180px;
        overflow: hidden;
    }
    
    .action-card,
    .admin-card {
        padding: 0.5rem;
    }
    
    .action-icon,
    .admin-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .action-content h4,
    .admin-content h4 {
        font-size: 0.8rem;
    }
    
    .action-content p,
    .admin-content p {
        font-size: 0.65rem;
    }
    
    .section-header h3 {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .feature-content h2 {
        font-size: 1.25rem;
    }
}