/* BNI Venue Tracker - Professional Clean Design */

/* Fonts are loaded in the main layout - no need to import here */

:root {
    /* Professional Color Palette */
    --bni-maroon: #990000;
    --bni-maroon-dark: #770000;
    --bni-maroon-light: #CC0000;
    --bni-white: #FFFFFF;
    --bni-black: #000000;
    --bni-gray: #5C5C5C;
    --bni-gray-dark: #404040;
    --bni-light-gray: #CCCCCC;
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #E5E5E5;
    --neutral-300: #D4D4D4;
    --neutral-400: #A3A3A3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;

    /* Semantic Colors */
    --primary-color: var(--bni-maroon);
    --secondary-color: var(--neutral-600);
    --success-color: #059669;
    --warning-color: #D97706;
    --error-color: var(--bni-maroon);
    --info-color: #0284C7;

    /* Professional Typography System */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;

    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    /* Font Sizes */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    --font-size-4xl: 2.25rem;     /* 36px */
    --font-size-5xl: 3rem;        /* 48px */
    --font-size-6xl: 3.75rem;     /* 60px */

    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    color: var(--neutral-700);
    background-color: var(--bni-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    font-variant-numeric: oldstyle-nums;
    letter-spacing: -0.011em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--neutral-900);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    letter-spacing: -0.025em;
}

h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-black);
    line-height: var(--line-height-tight);
}

h2 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    line-height: var(--line-height-tight);
}

h3 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
}

h4 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-snug);
}

h5 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
}

h6 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
}

p {
    margin-bottom: var(--space-md);
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-normal);
}

.lead {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    color: var(--neutral-600);
    line-height: var(--line-height-relaxed);
    letter-spacing: -0.011em;
}

/* Text Size Utilities */
.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }

/* Font Weight Utilities */
.font-light { font-weight: var(--font-weight-light); }
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }
.font-extrabold { font-weight: var(--font-weight-extrabold); }
.font-black { font-weight: var(--font-weight-black); }

/* Font Family Utilities */
.font-primary { font-family: var(--font-primary); }
.font-heading { font-family: var(--font-heading); }
.font-mono { font-family: var(--font-mono); }

/* Utility Classes */
.text-primary { color: var(--bni-maroon) !important; }
.text-secondary { color: var(--neutral-600) !important; }
.text-muted { color: var(--neutral-500) !important; }
.text-white { color: var(--bni-white) !important; }

.bg-primary { background-color: var(--bni-maroon) !important; }
.bg-white { background-color: var(--bni-white) !important; }
.bg-light { background-color: var(--neutral-50) !important; }
.bg-gray { background-color: var(--neutral-100) !important; }

.main-content {
    min-height: calc(100vh - 200px);
}

/* Professional Navigation */
.navbar-professional {
    background-color: var(--bni-white);
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    padding: var(--space-md) 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-2xl);
    color: var(--bni-maroon) !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    letter-spacing: -0.025em;
}

.navbar-brand:hover {
    color: var(--bni-maroon-dark) !important;
}

.navbar-brand .brand-text {
    margin-left: var(--space-sm);
}

.navbar-brand .brand-subtitle {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-normal);
    color: var(--neutral-500);
    display: block;
    line-height: var(--line-height-tight);
    margin-top: 2px;
    letter-spacing: 0.025em;
}

.navbar-nav .nav-link {
    color: var(--neutral-700) !important;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    margin: 0 var(--space-xs);
    letter-spacing: -0.011em;
}

.navbar-nav .nav-link:hover {
    color: var(--bni-maroon) !important;
    background-color: var(--neutral-50);
}

.navbar-nav .nav-link.active {
    color: var(--bni-maroon) !important;
    background-color: var(--neutral-100);
}

.btn-outline-primary {
    border: 2px solid var(--bni-maroon);
    color: var(--bni-maroon);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    letter-spacing: -0.011em;
}

.btn-outline-primary:hover {
    background-color: var(--bni-maroon);
    border-color: var(--bni-maroon);
    color: var(--bni-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Professional Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bni-maroon) 0%, var(--bni-maroon-dark) 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hero-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.hero-section h1,
.hero-section h2 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-black);
    color: var(--bni-white);
    font-size: var(--font-size-6xl);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.025em;
}

.hero-section h2 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
}

.hero-section .lead {
    color: var(--bni-white);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    opacity: 0.95;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: var(--line-height-relaxed);
    letter-spacing: -0.011em;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--bni-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.hero-stats {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: center;
    color: var(--bni-white);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Professional Buttons */
.btn {
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    padding: var(--space-sm) var(--space-xl);
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    letter-spacing: -0.011em;
    line-height: var(--line-height-normal);
}

.btn-primary {
    background-color: var(--bni-maroon);
    color: var(--bni-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--bni-maroon-dark);
    color: var(--bni-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--neutral-100);
    color: var(--neutral-700);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--neutral-200);
    color: var(--neutral-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bni-white);
    background: transparent;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background-color: var(--bni-white);
    border-color: var(--bni-white);
    color: var(--bni-maroon);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

.btn-xs {
    padding: calc(var(--space-xs) * 0.5) var(--space-sm);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

/* Professional Cards */
.card {
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background-color: var(--bni-white);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--neutral-300);
}

.card-header {
    background-color: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
    padding: var(--space-lg);
}

.card-body {
    padding: var(--space-xl);
}

.card-title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-lg);
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-snug);
    letter-spacing: -0.025em;
}

.card-text {
    color: var(--neutral-600);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-normal);
}

.feature-card .card-title {
    text-align: center;
    margin-bottom: var(--space-md);
}

.feature-card .card-text {
    text-align: center;
    flex-grow: 1;
}

.feature-card {
    text-align: center;
    padding: var(--space-2xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg) auto;
    font-size: 1.5rem;
    color: var(--bni-white);
    background-color: var(--bni-maroon);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Professional Sections */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-tight);
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
    letter-spacing: -0.011em;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--bni-maroon);
    border: none;
    border-radius: 2px;
    margin: 0 auto var(--space-lg);
}

/* Professional Steps */
.step-card {
    text-align: center;
    padding: var(--space-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bni-maroon);
    color: var(--bni-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
}

.step-description {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* Professional Forms */
.form-control {
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-300);
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    transition: all 0.2s ease;
    background-color: var(--bni-white);
    letter-spacing: -0.011em;
}

.form-control:focus {
    border-color: var(--bni-maroon);
    box-shadow: 0 0 0 3px rgba(153, 0, 0, 0.1);
    background-color: var(--bni-white);
    outline: none;
}

.form-label {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    color: var(--neutral-700);
    margin-bottom: var(--space-xs);
    display: block;
    line-height: var(--line-height-normal);
    letter-spacing: -0.011em;
}

/* Professional Footer */
.footer-professional {
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
    color: var(--neutral-300);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
}

.footer-professional::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="footer-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.5;
}

.footer-professional > .container {
    position: relative;
    z-index: 2;
}

/* Footer Brand Section */
.footer-brand {
    padding-right: var(--space-lg);
}

.footer-title {
    color: var(--bni-white);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    font-family: var(--font-heading);
}

.footer-subtitle {
    color: var(--neutral-400);
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-description {
    color: var(--neutral-300);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-tagline {
    color: var(--neutral-400);
    font-style: italic;
    font-size: 0.875rem;
}

/* Footer Links Section */
.footer-links {
    padding-left: var(--space-md);
}

.footer-heading {
    color: var(--bni-white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav {
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-bottom: var(--space-sm);
}

.footer-link {
    color: var(--neutral-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
}

.footer-link:hover {
    color: var(--bni-white);
    transform: translateX(4px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--bni-maroon);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid var(--neutral-800);
    padding-top: var(--space-lg);
    margin-top: var(--space-xl);
    background: rgba(0, 0, 0, 0.2);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.footer-copyright p {
    color: var(--neutral-200);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    font-size: 0.95rem;
}

.footer-legal {
    color: var(--neutral-400);
    font-size: 0.85rem;
}

.footer-meta {
    text-align: right;
}

.footer-version {
    color: var(--neutral-300);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.footer-disclaimer {
    color: var(--neutral-500);
    font-size: 0.8rem;
    font-style: italic;
}

.disclaimer {
    background-color: var(--neutral-100);
    border-left: 4px solid var(--bni-maroon);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin: 0;
}

/* Professional Alerts */
.alert {
    border-radius: var(--radius-md);
    border: none;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.alert-info {
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

.alert-success {
    background-color: rgba(5, 150, 105, 0.1);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-warning {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--warning-color);
    border-left: 4px solid var(--warning-color);
}

.alert-danger {
    background-color: rgba(153, 0, 0, 0.1);
    color: var(--bni-maroon);
    border-left: 4px solid var(--bni-maroon);
}

/* BNI Dashboard Cards */
.dashboard-card {
    border-left: 6px solid var(--bni-maroon);
    border-radius: 12px;
    background: var(--bni-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dashboard-card.success {
    border-left-color: #28a745;
}

.dashboard-card.warning {
    border-left-color: #ffc107;
}

.dashboard-card.danger {
    border-left-color: var(--bni-maroon);
}

.dashboard-card.info {
    border-left-color: var(--bni-gray);
}

/* BNI Stats Cards */
.stats-card {
    background: linear-gradient(135deg, var(--bni-maroon) 0%, var(--bni-maroon-dark) 100%);
    color: var(--bni-white);
    border-radius: 15px;
    border: none;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(204, 204, 204, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.stats-card .card-body {
    position: relative;
    z-index: 2;
}

.stats-card.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.stats-card.warning {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: var(--bni-white);
}

.stats-card.danger {
    background: linear-gradient(135deg, var(--bni-maroon) 0%, var(--bni-maroon-dark) 100%);
}

.stats-card.info {
    background: linear-gradient(135deg, var(--bni-gray) 0%, var(--bni-gray-dark) 100%);
}

.stats-card.primary {
    background: linear-gradient(135deg, var(--bni-maroon) 0%, var(--bni-gray) 100%);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Admin Dashboard Styles */
.admin-dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.dashboard-header {
    background: linear-gradient(135deg, var(--bni-maroon) 0%, var(--bni-maroon-dark) 100%);
    color: var(--bni-white);
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--bni-white);
}

.dashboard-breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.9;
    gap: var(--space-xs);
}

.dashboard-breadcrumb .separator {
    opacity: 0.6;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.dashboard-content {
    padding: 0 var(--space-lg);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.stat-card {
    background: var(--bni-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--bni-maroon);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 0 var(--radius-lg) 0 100%;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-card.primary {
    border-left-color: var(--bni-maroon);
}

.stat-card.success {
    border-left-color: var(--success-color);
}

.stat-card.info {
    border-left-color: var(--info-color);
}

.stat-card.warning {
    border-left-color: var(--warning-color);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--bni-white);
    background: linear-gradient(135deg, var(--bni-maroon), var(--bni-maroon-dark));
    flex-shrink: 0;
}

.stat-card.success .stat-icon {
    background: linear-gradient(135deg, var(--success-color), #047857);
}

.stat-card.info .stat-icon {
    background: linear-gradient(135deg, var(--info-color), #0369a1);
}

.stat-card.warning .stat-icon {
    background: linear-gradient(135deg, var(--warning-color), #b45309);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-600);
    margin-bottom: var(--space-xs);
}

.stat-meta {
    font-size: 0.75rem;
    color: var(--neutral-500);
}

.stat-trend {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.dashboard-widget {
    background: var(--bni-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.dashboard-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dashboard-widget.full-width {
    grid-column: 1 / -1;
}

.dashboard-widget.activities-widget {
    grid-column: 1 / -1;
}

.widget-header {
    padding: var(--space-lg);
    background: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
    display: flex;
    justify-content: between;
    align-items: center;
}

.widget-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0;
    flex: 1;
}

.widget-actions {
    display: flex;
    gap: var(--space-sm);
}

.widget-content {
    padding: var(--space-lg);
}

.widget-footer {
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-100);
    margin-top: var(--space-md);
}

/* Health Indicators */
.health-indicators {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.health-item {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: var(--space-sm) 0;
}

.health-label {
    font-weight: 500;
    color: var(--neutral-700);
    flex: 1;
}

.health-status {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 500;
}

.health-status.status-healthy {
    color: var(--success-color);
}

.health-status.status-warning {
    color: var(--warning-color);
}

.health-status.status-danger {
    color: var(--error-color);
}

.health-status i {
    font-size: 0.5rem;
}

/* Recent Items */
.recent-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.recent-item {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--neutral-100);
}

.recent-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-title {
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: var(--space-xs);
}

.item-meta {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.item-status {
    margin-left: var(--space-md);
}

.status-badge {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-active {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success-color);
}

.status-badge.status-inactive {
    background: rgba(107, 114, 128, 0.1);
    color: var(--neutral-600);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.quick-action {
    display: flex;
    align-items: center;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--neutral-200);
    background: var(--bni-white);
}

.quick-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.quick-action.primary {
    border-color: var(--bni-maroon);
}

.quick-action.primary:hover {
    background: var(--bni-maroon);
    color: var(--bni-white);
}

.quick-action.success {
    border-color: var(--success-color);
}

.quick-action.success:hover {
    background: var(--success-color);
    color: var(--bni-white);
}

.quick-action.info {
    border-color: var(--info-color);
}

.quick-action.info:hover {
    background: var(--info-color);
    color: var(--bni-white);
}

.quick-action.secondary {
    border-color: var(--neutral-400);
}

.quick-action.secondary:hover {
    background: var(--neutral-600);
    color: var(--bni-white);
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: var(--space-md);
    background: var(--neutral-100);
    color: var(--neutral-600);
    transition: all 0.3s ease;
}

.quick-action.primary .action-icon {
    background: rgba(153, 0, 0, 0.1);
    color: var(--bni-maroon);
}

.quick-action.success .action-icon {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success-color);
}

.quick-action.info .action-icon {
    background: rgba(2, 132, 199, 0.1);
    color: var(--info-color);
}

.quick-action.secondary .action-icon {
    background: rgba(107, 114, 128, 0.1);
    color: var(--neutral-600);
}

.quick-action:hover .action-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bni-white);
}

.action-content {
    flex: 1;
}

.action-title {
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: var(--space-xs);
    transition: color 0.3s ease;
}

.action-desc {
    font-size: 0.875rem;
    color: var(--neutral-500);
    transition: color 0.3s ease;
}

.quick-action:hover .action-title,
.quick-action:hover .action-desc {
    color: var(--bni-white);
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--neutral-100);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bni-maroon);
    margin-top: 6px;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 0.5rem;
    color: var(--bni-maroon);
}

.activity-content {
    flex: 1;
}

.activity-main {
    margin-bottom: var(--space-xs);
}

.activity-action {
    font-weight: 600;
    color: var(--bni-maroon);
    margin-right: var(--space-sm);
}

.activity-description {
    color: var(--neutral-700);
}

.activity-meta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--neutral-500);
}

.activity-separator {
    opacity: 0.5;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    color: var(--neutral-500);
}

.empty-state i {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.empty-state p {
    margin: 0;
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Simple Footer for Logged-in Users */
.footer-simple {
    background-color: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--space-lg) 0 var(--space-md);
    margin-top: auto;
    border-top: 1px solid var(--neutral-800);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--neutral-200);
    font-weight: 500;
    margin: 0;
}

.footer-subtitle {
    font-size: 0.8rem;
    color: var(--neutral-400);
    font-style: italic;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-xs);
}

.footer-version {
    font-size: 0.85rem;
    color: var(--neutral-300);
    font-weight: 600;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--neutral-500);
    font-style: italic;
}

.footer-woodapple {
    text-align: center;
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--neutral-800);
}

.footer-woodapple small {
    font-size: 0.75rem;
    color: var(--neutral-500);
    font-weight: 500;
}

/* Ensure main content takes full height minus footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: var(--space-2xl) 0;
    }

    .hero-section h1,
    .hero-section h2 {
        font-size: 2.5rem;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .feature-card {
        padding: var(--space-xl);
    }

    .step-card {
        padding: var(--space-lg);
    }

    .btn-lg {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }

    /* Footer Responsive */
    .footer-brand {
        padding-right: 0;
        margin-bottom: var(--space-lg);
    }

    .footer-links {
        padding-left: 0;
        margin-bottom: var(--space-lg);
    }

    .footer-meta {
        text-align: left !important;
        margin-top: var(--space-md);
    }

    .footer-bottom {
        margin-left: 0;
        margin-right: 0;
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}

@media (max-width: 576px) {
    .hero-section h1,
    .hero-section h2 {
        font-size: 2rem;
    }

    .hero-section h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        margin-top: var(--space-lg);
        padding-top: var(--space-lg);
    }

    /* Footer Mobile Styles */
    .footer-professional {
        padding: var(--space-2xl) 0 var(--space-lg);
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-heading {
        font-size: 0.95rem;
        margin-bottom: var(--space-md);
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: var(--space-md);
        margin-top: var(--space-lg);
    }

    /* Admin Dashboard Mobile */
    .dashboard-header {
        padding: var(--space-md) 0;
        margin-bottom: var(--space-lg);
    }

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

    .dashboard-breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }

    .header-actions {
        margin-top: var(--space-sm);
        justify-content: flex-start;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .widget-header {
        padding: var(--space-md);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .widget-content {
        padding: var(--space-md);
    }

    .stat-card {
        padding: var(--space-md);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Simple Footer Mobile */
    .footer-simple {
        padding: var(--space-md) 0;
    }

    .footer-right {
        align-items: flex-start;
        margin-top: var(--space-sm);
    }

    .footer-left,
    .footer-right {
        text-align: left;
    }
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

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

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

.slide-in-left {
    animation: slideInLeft 0.5s ease-in-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Status Badges */
.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
}

.status-inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-paid {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-overdue {
    background-color: #f5c6cb;
    color: #721c24;
}

/* BNI Footer */
.footer-bni {
    background: linear-gradient(135deg, var(--bni-gray) 0%, var(--bni-gray-dark) 100%);
    color: var(--bni-white);
    border-top: 4px solid var(--bni-light-gray);
}

.footer-bni h5, .footer-bni h6 {
    color: var(--bni-light-gray);
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.footer-bni a:hover {
    color: var(--bni-light-gray);
}

/* BNI Utility Classes */
.bni-gradient-maroon {
    background: linear-gradient(135deg, var(--bni-maroon) 0%, var(--bni-maroon-dark) 100%);
}

.bni-gradient-gray {
    background: linear-gradient(135deg, var(--bni-gray) 0%, var(--bni-gray-dark) 100%);
}

.bni-gradient-light-gray {
    background: linear-gradient(135deg, var(--bni-light-gray) 0%, #B8B8B8 100%);
}

.bni-gradient-primary {
    background: linear-gradient(135deg, var(--bni-maroon) 0%, var(--bni-gray) 100%);
}

.bni-text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bni-box-shadow {
    box-shadow: 0 8px 25px rgba(153, 0, 0, 0.15);
}

.bni-border-light-gray {
    border: 3px solid var(--bni-light-gray) !important;
}

.bni-border-maroon {
    border: 3px solid var(--bni-maroon) !important;
}

.bni-border-gray {
    border: 3px solid var(--bni-gray) !important;
}

/* BNI Section Dividers */
.section-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--bni-maroon) 0%, var(--bni-light-gray) 50%, var(--bni-gray) 100%);
    border: none;
    margin: 3rem 0;
}

/* BNI Animations */
@keyframes bniPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.bni-pulse {
    animation: bniPulse 2s infinite;
}

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

.bni-slide-in {
    animation: bniSlideIn 0.8s ease-out;
}

/* Admin Panel Styles */
.admin-dashboard,
.admin-chapters,
.admin-users,
.admin-settings,
.admin-reports,
.admin-logs {
    min-height: 100vh;
    background: #f8f9fa;
}

.page-header {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--bni-maroon);
    margin: 0;
}

.page-breadcrumb {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.page-breadcrumb a {
    color: var(--bni-maroon);
    text-decoration: none;
}

.page-breadcrumb .separator {
    margin: 0 0.5rem;
}

.content-section {
    padding: 0 0 2rem;
}

.filter-bar {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.data-table-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.table {
    margin: 0;
}

.table th {
    background: #f8f9fa;
    border-top: none;
    font-weight: 600;
    color: #495057;
    padding: 1rem;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
}

.user-info,
.chapter-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    flex-shrink: 0;
}

.user-details,
.chapter-details {
    min-width: 0;
}

.user-name,
.chapter-name {
    font-weight: 500;
    color: #212529;
}

.user-meta,
.chapter-meta {
    font-size: 0.875rem;
    color: #6c757d;
}

.contact-info,
.location-info {
    line-height: 1.4;
}

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

.stat-number {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bni-maroon);
}

.stat-label {
    font-size: 0.875rem;
}

.revenue-info {
    text-align: right;
}

.revenue-amount {
    font-weight: 600;
    color: #28a745;
}

.date-info {
    text-align: center;
    line-height: 1.4;
}

.action-buttons .dropdown-toggle {
    border: 1px solid #dee2e6;
}

.badge-role {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

.badge-super_admin {
    background: #dc3545;
    color: white;
}

.badge-chapter_admin {
    background: var(--bni-maroon);
    color: white;
}

.badge-treasurer {
    background: #fd7e14;
    color: white;
}

.badge-member {
    background: #6c757d;
    color: white;
}

.empty-state {
    padding: 3rem 1rem;
    text-align: center;
}

.empty-state i {
    opacity: 0.5;
}

.empty-state h5 {
    margin: 1rem 0 0.5rem;
    color: #6c757d;
}

.pagination-container {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

/* Settings Styles */
.settings-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.settings-card .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.settings-card .card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bni-maroon);
}

.settings-card .card-body {
    padding: 1.5rem;
}

/* Reports Styles */
.report-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-title {
    color: var(--bni-maroon);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.summary-card {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.summary-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bni-maroon);
    margin-bottom: 0.25rem;
}

.summary-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Logs Styles */
.timestamp-info {
    text-align: center;
    line-height: 1.3;
}

.timestamp-info .date {
    font-weight: 500;
}

.timestamp-info .time {
    font-size: 0.875rem;
}

.action-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-login {
    background: #d4edda;
    color: #155724;
}

.action-logout {
    background: #f8d7da;
    color: #721c24;
}

.action-create,
.action-created {
    background: #d1ecf1;
    color: #0c5460;
}

.action-update,
.action-updated {
    background: #fff3cd;
    color: #856404;
}

.action-delete,
.action-deleted {
    background: #f8d7da;
    color: #721c24;
}

.details-info {
    max-width: 200px;
}

.details-text {
    font-size: 0.875rem;
    line-height: 1.3;
}

.ip-info code {
    background: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.user-agent-info {
    max-width: 120px;
}

.user-agent-text {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.log-stats {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.stats-card h6 {
    color: var(--bni-maroon);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.stat-item .stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bni-maroon);
    margin-bottom: 0.25rem;
}

.stat-item .stat-label {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Admin Profile Styles */
.admin-profile .profile-card,
.admin-profile .profile-info-card,
.admin-profile .quick-actions-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.admin-profile .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.admin-profile .card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bni-maroon);
}

.admin-profile .card-body {
    padding: 1.5rem;
}

.admin-profile .profile-avatar {
    text-align: center;
}

.admin-profile .avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bni-maroon);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.admin-profile .profile-details {
    space-y: 1rem;
}

.admin-profile .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.admin-profile .detail-item:last-child {
    border-bottom: none;
}

.admin-profile .detail-label {
    font-weight: 500;
    color: #6c757d;
    font-size: 0.9rem;
}

.admin-profile .detail-value {
    font-weight: 500;
    color: #212529;
}

/* Admin Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 1rem 0;
    }

    .filter-bar {
        padding: 1rem;
    }

    .table-responsive {
        font-size: 0.875rem;
    }

    .action-buttons .dropdown-toggle {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }

    .summary-card {
        margin-bottom: 0.5rem;
    }

    .admin-profile .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Professional Hero Section Enhancements */
.hero-section {
    background: linear-gradient(135deg, #990000 0%, #770000 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-section::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="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.min-vh-75 {
    min-height: 75vh;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-title {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.brand-name {
    display: block;
    font-size: 3.5rem;
    background: linear-gradient(45deg, #FFF, #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    opacity: 0.95;
}

.hero-value-props {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.value-prop-item {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    color: #990000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-actions .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.992);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.results-dashboard {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-title {
    color: #990000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dashboard-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Hero section dashboard header override */
.hero-section .dashboard-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .dashboard-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Implementation Timeline Redesign */
.implementation-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-card {
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.timeline-card:hover {
    transform: translateY(-5px);
    border-color: #990000;
    box-shadow: 0 15px 35px rgba(153, 0, 0, 0.15);
}

.timeline-card .step-number {
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 15px rgba(153, 0, 0, 0.3);
    position: relative;
}

.timeline-card .step-number::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(153, 0, 0, 0.2);
    border-radius: 50%;
    top: -5px;
    left: -5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.timeline-card .step-title {
    color: #990000;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.timeline-card .step-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.feature-tag {
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Final Step Special Styling */
.final-step {
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
    color: white;
    border: none !important;
    text-align: center;
}

.final-step .step-title,
.final-step .step-description {
    color: white;
}

.final-number {
    background: white !important;
    color: #990000 !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.final-number::after {
    border-color: rgba(255, 255, 255, 0.3);
}

.final-step .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-card .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .timeline-card .step-number::after {
        width: 60px;
        height: 60px;
    }

    .timeline-card .step-title {
        font-size: 1.1rem;
    }

    .step-features {
        justify-content: center;
    }
}

/* Features Dropdown Styling */
.features-dropdown {
    min-width: 280px;
    padding: 1rem 0;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

.features-dropdown .dropdown-header {
    font-weight: 700;
    font-size: 0.9rem;
    color: #990000;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
}

.features-dropdown .dropdown-item {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.features-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
    color: white;
    transform: translateX(5px);
}

.features-dropdown .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Advantages Section Styling */
.advantage-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: #990000;
    box-shadow: 0 20px 40px rgba(153, 0, 0, 0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(153, 0, 0, 0.3);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 900;
    color: #990000;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-title {
    color: #990000;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-metrics {
    display: flex;
    justify-content: center;
}

.metric-tag {
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Benefits Section Styling */
.benefit-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #990000;
    box-shadow: 0 15px 35px rgba(153, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 6px 20px rgba(153, 0, 0, 0.25);
}

.benefit-title {
    color: #990000;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.benefit-features li:last-child {
    border-bottom: none;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .advantage-card,
    .benefit-card {
        margin-bottom: 2rem;
    }

    .advantage-number {
        font-size: 2.5rem;
    }

    .advantage-icon,
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .features-dropdown {
        min-width: 250px;
    }
}

/* Features Page Specific Styling */
.feature-detail-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    border-color: #990000;
    box-shadow: 0 15px 35px rgba(153, 0, 0, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(153, 0, 0, 0.25);
    flex-shrink: 0;
}

.feature-info {
    flex: 1;
}

.feature-title {
    color: #990000;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.feature-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.feature-content {
    margin-top: 1rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Enhanced Advantage Cards for Features Page */
.advantage-details {
    margin: 1rem 0;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.advantage-list li {
    padding: 0.4rem 0;
    color: #555;
    font-size: 0.85rem;
}

.advantage-secondary-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.advantage-secondary-card:hover {
    transform: translateY(-5px);
    border-color: #990000;
    box-shadow: 0 15px 35px rgba(153, 0, 0, 0.1);
}

.advantage-secondary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #990000 0%, #cc0000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(153, 0, 0, 0.2);
}

.advantage-secondary-title {
    color: #990000;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.advantage-secondary-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Feature Navigation Buttons */
.feature-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.feature-nav-buttons .btn {
    border-radius: 25px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-nav-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(153, 0, 0, 0.3);
}

/* Responsive Design for Features Page */
@media (max-width: 768px) {
    .feature-header {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon-large {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .advantage-card {
        margin-bottom: 2rem;
    }

    .feature-nav-buttons {
        flex-direction: column;
        align-items: center;
    }

    .feature-nav-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.result-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(153, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-2px);
}

.result-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #990000;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.result-trend {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.platform-preview {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(153, 0, 0, 0.1);
}

.preview-header h4 {
    color: #990000;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

.feature-item {
    /* display: flex; */
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

/* Testimonial Cards */
.testimonial-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
    font-size: 2rem;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding: 3rem 0;
    }

    .brand-name {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-value-props {
        margin-bottom: 2rem;
    }

    .results-dashboard {
        margin-top: 3rem;
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .brand-name {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-trust-indicators {
        justify-content: center;
        text-align: center;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .result-card {
        padding: 1rem 0.75rem;
    }

    .result-number {
        font-size: 1.8rem;
    }
}

/* ========================================
   MODERN WEBSITE REDESIGN STYLES
   ======================================== */

/* Modern Navigation */
.navbar-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(153, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-modern.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-icon svg {
    transition: transform 0.3s ease;
}

.brand-logo:hover .logo-icon svg {
    transform: scale(1.05);
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--bni-maroon);
    line-height: 1.2;
    margin: 0;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--neutral-600);
    font-weight: var(--font-weight-medium);
    line-height: 1;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
    background: transparent;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.navbar-toggler-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--bni-maroon);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.navbar-modern .nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--neutral-700);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-modern .nav-link:hover {
    color: var(--bni-maroon);
    background: rgba(153, 0, 0, 0.05);
}

.navbar-modern .nav-link span {
    position: relative;
}

.navbar-modern .nav-link span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bni-maroon);
    transition: width 0.3s ease;
}

.navbar-modern .nav-link:hover span::after {
    width: 100%;
}

.login-link {
    color: var(--neutral-600) !important;
}

.btn-cta {
    background: var(--bni-maroon);
    border: 2px solid var(--bni-maroon);
    color: white;
    font-weight: var(--font-weight-semibold);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(153, 0, 0, 0.2);
}

.btn-cta:hover {
    background: var(--bni-maroon-dark);
    border-color: var(--bni-maroon-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(153, 0, 0, 0.3);
}

.user-dropdown .user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--bni-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.user-name {
    font-weight: var(--font-weight-medium);
    color: var(--neutral-700);
}

.user-dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.user-dropdown-menu .dropdown-item {
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.user-dropdown-menu .dropdown-item:hover {
    background: rgba(153, 0, 0, 0.05);
    color: var(--bni-maroon);
}

.logout-item:hover {
    background: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
}

/* Modern Hero Section */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(153, 0, 0, 0.95) 0%,
        rgba(153, 0, 0, 0.8) 50%,
        rgba(153, 0, 0, 0.9) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 100px 100px;
}

.hero-content {
    color: white;
    z-index: 2;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    backdrop-filter: blur(10px);
    margin-top:15px;
}

.badge-icon {
    color: rgba(255, 255, 255, 0.9);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color:#ffb700;
}

.highlight-text {
    background: linear-gradient(135deg, var(--bni-maroon) 100%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.highlight-text-home {
    background: linear-gradient(135deg, #ffffff 100%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-normal);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    backdrop-filter: blur(10px);
}

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

.benefit-text strong {
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
}

.benefit-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.btn-primary.btn-xl {
    background: white;
    color: var(--bni-maroon);
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary.btn-xl:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-primary.btn-xl {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

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

.social-proof {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    z-index: 2;
}

/* Platform Showcase */
.platform-showcase {
    position: relative;
    z-index: 2;
}

/* Platform Display Container */
.platform-display-container {
    position: relative;
    width: 100%;
    height: auto;
}

/* Full Width Web Portal */
.web-portal-fullwidth {
    position: relative;
    width: 100%;
    z-index: 1;
}

.screenshot-frame {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.web-frame-large {
    width: 100%;
    min-height: 400px;
}

.screenshot-frame:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.frame-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.control-dot.red { background: #ff5f57; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #28ca42; }

.frame-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bni-maroon);
}

.frame-content {
    position: relative;
    overflow: hidden;
}

.platform-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.web-screenshot {
    border-radius: 0 0 16px 16px;
}

.web-screenshot-large {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
    border-radius: 0 0 16px 16px;
}

/* Mobile App Overlay */
.mobile-app-overlay {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup-overlay {
    position: relative;
    perspective: 1000px;
}

.phone-frame-overlay {
    width: 220px;
    height: 440px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 30px;
    padding: 6px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame-overlay:hover {
    transform: translateY(-10px) rotateY(-5deg) scale(1.05);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Legacy Mobile App Frame (keeping for compatibility) */
.mobile-app-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-modern {
    position: relative;
    perspective: 1000px;
}

.phone-frame-modern {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 35px;
    padding: 8px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame-modern:hover {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: #000;
    border-radius: 0 0 12px 12px;
    z-index: 3;
}

.phone-screen-modern {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}

.phone-screen-overlay {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.mobile-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 27px;
}

.mobile-screenshot-overlay {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Screenshot Overlays */
.screenshot-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 4;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.screenshot-frame:hover .screenshot-overlay,
.phone-frame-modern:hover .screenshot-overlay {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay {
    top: 3rem;
    left: 1rem;
}

.platform-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--bni-maroon);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-badge {
    background: rgba(153, 0, 0, 0.95);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Interactive Features */
.platform-features-interactive {
    margin-top: 2.5rem;
}

.feature-highlight-interactive {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-highlight-interactive:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon-pulse {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon-pulse::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

.feature-highlight-interactive:hover .feature-icon-pulse::before {
    opacity: 1;
}

.feature-highlight-interactive .feature-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* AOS-like Animations */
[data-aos] {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* Active Feature State */
.feature-highlight-interactive.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-highlight-interactive.active .feature-icon-pulse {
    background: rgba(255, 215, 0, 0.8);
    animation: activeGlow 1s ease-in-out infinite alternate;
}

@keyframes activeGlow {
    0% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

/* Image Loading States */
.platform-screenshot {
    transition: all 0.4s ease;
    opacity: 0.8;
}

.platform-screenshot.loaded {
    opacity: 1;
}

/* Enhanced Hover Effects */
.screenshot-frame:hover .platform-screenshot {
    filter: brightness(1.1) contrast(1.05);
}

.phone-frame-modern:hover .platform-screenshot {
    filter: brightness(1.1) contrast(1.05);
}

.platform-preview {
    position: relative;
}

.preview-container {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 2rem;
}

.preview-header {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.preview-title {
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-700);
    font-size: 0.9rem;
}

.preview-content {
    padding: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--bni-maroon);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--neutral-800);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--neutral-600);
    margin-top: 0.25rem;
}

.mobile-preview {
    position: absolute;
    top: 2rem;
    right: -2rem;
    z-index: 3;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 25px;
    padding: 20px 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--bni-maroon);
    color: white;
    padding: 1rem;
    text-align: center;
}

.app-title {
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
}

.app-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
}

.app-content {
    flex: 1;
    padding: 1rem;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: var(--radius-md);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--neutral-700);
}

.action-btn i {
    color: var(--bni-maroon);
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(153, 0, 0, 0.1);
    color: var(--bni-maroon);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.trust-content h6 {
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-800);
    margin-bottom: 0.25rem;
}

.trust-content p {
    color: var(--neutral-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: white;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(153, 0, 0, 0.1);
    color: var(--bni-maroon);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bni-maroon) 0%, var(--bni-maroon-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(153, 0, 0, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bni-maroon) 0%, var(--bni-maroon-light) 100%);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--neutral-700);
    font-size: 0.9rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--bni-maroon);
    font-weight: bold;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bni-maroon);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
}

.benefit-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-800);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.benefit-content p {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.stat {
    background: rgba(153, 0, 0, 0.1);
    color: var(--bni-maroon);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: white;
}

.steps-container {
    margin-top: 3rem;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    bottom: -1.5rem;
    width: 2px;
    height: 3rem;
    background: linear-gradient(180deg, var(--bni-maroon) 0%, rgba(153, 0, 0, 0.3) 100%);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bni-maroon) 0%, var(--bni-maroon-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    box-shadow: 0 4px 15px rgba(153, 0, 0, 0.3);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-800);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(153, 0, 0, 0.1);
    color: var(--bni-maroon);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.step-visual {
    width: 80px;
    height: 80px;
    background: rgba(153, 0, 0, 0.1);
    color: var(--bni-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bni-maroon) 0%, var(--bni-maroon-light) 100%);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    width: 48px;
    height: 48px;
    background: rgba(153, 0, 0, 0.1);
    color: var(--bni-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--neutral-700);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-info h6 {
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-800);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--neutral-600);
    font-size: 0.9rem;
}

.stars {
    color: #ffc107;
}

.stats-section {
    background: #f8f9fa;
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--bni-maroon);
    line-height: 1;
}

.stat-label {
    color: var(--neutral-600);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

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

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        var(--bni-maroon) 0%,
        var(--bni-maroon-dark) 50%,
        var(--bni-maroon) 100%);
}

.cta-content {
    color: white;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    color:#ffffff;   
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cta-features .feature-item i {
    color: rgba(255, 255, 255, 0.8);
}

.cta-guarantee {
    margin-top: 2rem;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: var(--font-weight-medium);
    backdrop-filter: blur(10px);
}

/* Modern Footer */
.footer-modern {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-main {
    margin-bottom: 3rem;
}

.footer-brand .brand-logo {
    margin-bottom: 1.5rem;
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand .brand-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.footer-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-stats .stat-number {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--bni-maroon-light);
    line-height: 1;
}

.footer-stats .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.footer-section .footer-heading {
    color: white;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--bni-maroon-light);
    text-decoration: none;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.disclaimer-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.disclaimer-icon {
    color: var(--bni-maroon-light);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-copyright small {
    color: rgba(255, 255, 255, 0.6);
}

.footer-meta {
    text-align: right;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-version {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-benefits {
        gap: 0.75rem;
    }

    .benefit-item {
        gap: 0.75rem;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-xl {
        width: 100%;
        max-width: 300px;
    }

    .mobile-preview {
        position: static;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }

    /* Platform Showcase Responsive */
    .platform-display-container {
        position: relative;
    }

    .mobile-app-overlay {
        position: static;
        transform: none;
        right: auto;
        top: auto;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }

    .phone-frame-overlay {
        width: 200px;
        height: 400px;
    }

    .web-frame-large {
        min-height: 300px;
    }

    .web-screenshot-large {
        min-height: 250px;
    }

    .screenshot-frame {
        margin: 0 1rem;
    }

    .frame-header {
        padding: 0.75rem 1rem;
    }

    .frame-title {
        font-size: 0.8rem;
    }

    .control-dot {
        width: 10px;
        height: 10px;
    }

    .platform-features-interactive {
        margin-top: 2rem;
    }

    .feature-highlight-interactive {
        padding: 1rem 0.75rem;
    }

    .feature-icon-pulse {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .feature-highlight-interactive .feature-text {
        font-size: 0.8rem;
    }

    .platform-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .step-item::after {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

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

    .footer-badges {
        flex-direction: column;
        align-items: flex-end;
    }

    .footer-meta {
        text-align: left;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .brand-text {
        display: none;
    }

    .navbar-modern .nav-link {
        padding: 0.75rem 1rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    /* Mobile Platform Showcase */
    .phone-frame-overlay {
        width: 180px;
        height: 360px;
    }

    .web-frame-large {
        min-height: 250px;
    }

    .web-screenshot-large {
        min-height: 200px;
    }

    .mobile-app-overlay {
        margin-top: 1.5rem;
    }

    .frame-header {
        padding: 0.5rem 0.75rem;
    }

    .frame-title {
        font-size: 0.75rem;
    }

    .control-dot {
        width: 8px;
        height: 8px;
    }

    .phone-notch {
        width: 80px;
        height: 16px;
        top: 4px;
    }
}

/* Features Page Specific Styles */
.features-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
}

.features-hero .hero-description {
    font-size: 1.25rem;
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.feature-stats .stat-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--bni-maroon);
    line-height: 1;
}

.feature-stats .stat-label {
    color: var(--neutral-600);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    margin-top: 0.5rem;
}

.feature-card.featured {
    position: relative;
    border: 2px solid var(--bni-maroon);
}

.feature-card.featured::before {
    background: var(--bni-maroon);
    transform: scaleX(1);
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--bni-maroon);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
}

/* About Page Specific Styles */
.mission-points {
    margin-top: 2rem;
}

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

.point-icon {
    width: 48px;
    height: 48px;
    background: rgba(153, 0, 0, 0.1);
    color: var(--bni-maroon);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.point-content h6 {
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--neutral-600);
    margin: 0;
    font-size: 0.9rem;
}

.mission-visual {
    padding-left: 2rem;
}

.visual-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.visual-card .card-header {
    background: var(--bni-maroon);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.visual-card .card-header h5 {
    margin: 0;
    font-weight: var(--font-weight-semibold);
}

.visual-card .card-content {
    padding: 2rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.impact-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--bni-maroon);
    line-height: 1;
}

.impact-label {
    color: var(--neutral-600);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    margin-top: 0.5rem;
}

/* About Page Image Styles */
.about-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h5 {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Page Specific Styles */
.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h6 {
    color: white;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.8rem;
}

.contact-form-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-top: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--neutral-600);
    font-size: 1rem;
}

.contact-form .form-label {
    font-weight: var(--font-weight-medium);
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--bni-maroon);
    box-shadow: 0 0 0 0.2rem rgba(153, 0, 0, 0.1);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-actions .btn {
    padding: 0.75rem 2rem;
    font-weight: var(--font-weight-semibold);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-item {
        width: 100%;
        max-width: 300px;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }

    .card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }

    .bni-gradient-maroon,
    .bni-gradient-gray,
    .bni-gradient-light-gray,
    .bni-gradient-primary {
        background: var(--bni-white) !important;
        color: var(--bni-black) !important;
    }
}
