/**
 * Main Stylesheet
 * HR Leave Assistant - PHP/MySQL Version
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0322D8;
    --secondary-green: #3DB20B;
    --dark-blue: #1800AD;
    --background: #F8F9FA;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border: #E0E0E0;
    --white: #FFFFFF;
    --error: #DC3545;
    --warning: #FFC107;
    --success: #28A745;
    --info: #17A2B8;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --border-radius-lg: 12px;
    
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-logo {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-user {
    position: relative;
}

.user-greeting {
    color: var(--text-secondary);
    margin-right: 1rem;
}

.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.user-btn:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
}

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

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

.dropdown-item:hover {
    background: var(--background);
    text-decoration: none;
}

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

.item-icon {
    font-size: 1rem;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

/* Access Status Banner */
.access-status-banner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.access-status-banner.admin {
    border-left: 4px solid var(--secondary-green);
    background: linear-gradient(135deg, #f8fff8 0%, #f0fff0 100%);
}

.access-status-banner.subscribed {
    border-left: 4px solid var(--secondary-green);
    background: linear-gradient(135deg, #f8fff8 0%, #f0fff0 100%);
}

.access-status-banner.trial {
    border-left: 4px solid var(--warning);
    background: linear-gradient(135deg, #fffdf8 0%, #fffaf0 100%);
}

.access-status-banner.expired {
    border-left: 4px solid var(--error);
    background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
}

.status-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-icon {
    font-size: 1.5rem;
}

.status-text {
    flex: 1;
}

.status-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

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

.upgrade-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.upgrade-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    gap: 2rem;
}

.dashboard-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.dashboard-section h2 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.dashboard-section > p {
    margin-bottom: 2rem;
}

/* Tool Grid */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tool-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tool-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.tool-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.tool-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

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

.tool-features ul {
    list-style: none;
    padding: 0;
}

.tool-features li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tool-features li:before {
    content: "✓";
    color: var(--secondary-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-green);
    color: var(--white);
}

.btn-secondary:hover {
    background: #45b517;
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
}

.btn-disabled {
    background: var(--text-muted);
    color: var(--white);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Activity Card */
.activity-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
}

.activity-placeholder {
    color: var(--text-muted);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.activity-placeholder h3 {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.activity-placeholder p {
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 35, 245, 0.1);
}

.form-help {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.form-error {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2000;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.show .modal-content {
    transform: scale(1);
}

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

.modal-header h3 {
    margin: 0;
    color: var(--primary-blue);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--background);
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Flash Messages */
.flash-message {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.flash-message.success {
    background: #d4edda;
    color: #155724;
    border-color: var(--success);
}

.flash-message.error {
    background: #f8d7da;
    color: #721c24;
    border-color: var(--error);
}

.flash-message.warning {
    background: #fff3cd;
    color: #856404;
    border-color: var(--warning);
}

.flash-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border-color: var(--info);
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

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

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--border);
    border-radius: 50%;
    border-top-color: var(--primary-blue);
    animation: spin 1s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .user-greeting {
        display: none;
    }
    
    .dashboard-grid {
        gap: 1rem;
    }
    
    .dashboard-section {
        padding: 1.5rem;
    }
    
    .tool-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .status-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .modal,
    .btn,
    .dropdown-menu {
        display: none !important;
    }
    
    .main-content {
        padding: 0;
    }
    
    .dashboard-section {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.form-control:focus,
.user-btn:focus,
.dropdown-item:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border: #000000;
        --text-secondary: #000000;
    }
}

/* Navigation Logo */
.nav-logo-symbol {
    font-family: 'Arial Black', 'Segoe UI Black', Impact, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -2px;
}

.nav-hr {
    color: #0022ff;
}

.nav-la {
    color: #4cbb17;
}

/* Hero Section Styles - Complete Override with !important */
.hero-section {
    background-color: #f2f4fe !important;
    padding: 0 !important;
    min-height: 100vh !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero-container {
    max-width: 800px !important;
    text-align: center !important;
    padding: 40px 20px !important;
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
}

.hero-content {
    text-align: center !important;
    max-width: none !important;
}

/* --- LOGO SECTION START --- */
.brand-header {
    margin-bottom: 30px !important;
}

/* The HRLA Block Logo */
.logo-symbol {
    font-family: 'Arial Black', 'Segoe UI Black', Impact, sans-serif !important;
    font-size: 5rem !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    letter-spacing: -3px !important;
    margin-bottom: 5px !important;
    display: block !important;
}

/* The Text Below the Logo */
.logo-text {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0px !important;
    display: block !important;
}

/* Shared Colors - Force Override */
.text-blue {
    color: #0022ff !important;
}

.text-green {
    color: #4cbb17 !important;
}
/* --- LOGO SECTION END --- */

/* Main Headline */
.hero-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    color: #111 !important;
    margin-bottom: 30px !important;
    max-width: 750px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Feature List */
.feature-list {
    list-style: none !important;
    text-align: left !important;
    display: inline-block !important;
    margin-bottom: 40px !important;
}

.feature-list li {
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: flex-start !important;
    color: #333 !important;
    font-weight: 400 !important;
}

/* Custom Checkmark - Force Green Color */
.checkmark {
    color: #4cbb17 !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    margin-right: 15px !important;
    line-height: 1 !important;
    display: inline-block !important;
    transform: scaleX(1.2) !important;
}

/* Button Group */
.button-group {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

/* Buttons - Force Colors */
.btn {
    padding: 14px 28px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.btn-primary {
    background-color: #0022ff !important;
    color: white !important;
    border: 2px solid #0022ff !important;
}

.btn-primary:hover {
    background-color: #0019cc !important;
    border-color: #0019cc !important;
    text-decoration: none !important;
    color: white !important;
}

.btn-secondary {
    background-color: white !important;
    color: #0022ff !important;
    border: 2px solid #0022ff !important;
    border-color: #4b6afa !important;
}

.btn-secondary:hover {
    background-color: #eef2ff !important;
    text-decoration: none !important;
    color: #0022ff !important;
}

/* Hide the hero visual completely for now */
.hero-visual {
    display: none !important;
}

/* Navigation Updates */
.nav-link {
    position: relative;
    padding: 10px 15px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.nav-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Hero Card Updates */
.hero-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 500px;
}

.card-header {
    background: #f5f5f5;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border);
}

.card-dots {
    display: flex;
    gap: 8px;
}

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

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

.card-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.card-content {
    padding: 25px;
}

.input-demo, .output-demo {
    margin-bottom: 20px;
}

.input-demo label, .output-demo label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.demo-text, .demo-response {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.demo-input, .demo-output {
    background: #f8f9fa;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.demo-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px;
    background: #e8f5e8;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    color: var(--secondary-green);
}

.demo-note i {
    color: var(--secondary-green);
}

/* Features Section Updates */
.features-section {
    background: #f0f8f0;
    padding: 80px 0;
}

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

.section-subtitle {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
}

.features-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.checklist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.checklist-item i {
    color: #3DB20B;
    font-size: 24px;
    flex-shrink: 0;
}

.checklist-item h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* About Section Updates */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.about-logo-img {
    height: 80px;
    width: auto;
}

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

.about-main {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* Button Updates */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
}

.btn-success {
    background-color: var(--secondary-green);
    color: var(--white);
    border-color: var(--secondary-green);
}

.btn-success:hover {
    background-color: #2ea309;
    border-color: #2ea309;
    color: var(--white);
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Steps Container Updates */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
}

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

.step-content h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-main-logo {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-logo {
        justify-content: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .features-checklist {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .checklist-item {
        padding: 20px 25px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .about-logo {
        justify-content: center;
        text-align: center;
    }
}
/* Footer Logo - Image Only */
.footer-logo-img {
    max-height: 60px;
    width: auto;
    margin-bottom: 20px;
}

/* Landing Footer Styles */
.landing-footer { 
    background-color: #1a1a1a; 
    color: #fff; 
    padding: 60px 0 30px; 
}

.footer-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    gap: 60px; 
    margin-bottom: 40px; 
}

.footer-brand { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    max-width: 500px; 
    text-align: left; 
}

.footer-brand p { 
    color: #ccc; 
    line-height: 1.6; 
    font-size: 1.1rem; 
    margin: 0; 
}

/* Footer Links Vertical List */
.footer-legal-links { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 15px; 
}

.footer-legal-links a { 
    color: #aaa; 
    text-decoration: none; 
    transition: color 0.2s; 
    font-size: 1rem; 
}

.footer-legal-links a:hover { 
    color: #fff; 
    text-decoration: underline; 
}

.footer-bottom { 
    border-top: 1px solid #333; 
    padding-top: 30px; 
    text-align: center; 
    color: #666; 
    font-size: 0.85rem; 
}

@media (max-width: 768px) {
    .footer-content { 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        gap: 40px; 
    }
    
    .footer-brand { 
        align-items: center; 
        text-align: center; 
    }
    
    .footer-legal-links { 
        align-items: center; 
    }
}

/* Updated Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        max-width: 90%;
        padding: 20px 10px;
    }
    
    .logo-symbol {
        font-size: 3rem;
        letter-spacing: -2px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .feature-list {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .feature-list li {
        justify-content: center;
        margin-bottom: 10px;
        font-size: 1rem;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .nav-logo-symbol {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.4rem;
    }
    
    .features-checklist {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .checklist-item {
        padding: 20px 25px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .about-logo {
        justify-content: center;
        text-align: center;
    }
}
/* Demo Note Styling - Blue text and Green shield */
.demo-note {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 15px !important;
    padding: 10px !important;
    background: #e8f5e8 !important;
    border-radius: var(--border-radius) !important;
    font-size: 0.8rem !important;
}

.demo-note em {
    color: #0022ff !important; /* Blue text */
    font-style: italic !important;
}

.demo-note i {
    color: #4cbb17 !important; /* Green shield icon */
}
/* Simplified Pricing Section */
.pricing-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card-simple {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.pricing-card-simple.featured {
    border-color: #0022ff;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0022ff;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header-simple h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.pricing-bonus {
    color: #4cbb17;
    font-size: 0.9rem;
    margin-top: 5px;
}

.pricing-best-for-simple {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 20px 0;
    flex-grow: 1;
}

.pricing-action {
    margin-top: auto;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Responsive for simplified pricing */
@media (max-width: 1024px) {
    .pricing-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card-simple.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-grid-simple {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .pricing-card-simple {
        min-height: auto;
    }
}
/* Detailed Pricing Page */
.pricing-page {
    background-color: #f2f4fe;
    min-height: 100vh;
    padding: 120px 0 80px;
}

.pricing-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.pricing-page-header p {
    font-size: 1.2rem;
    color: #666;
}

.pricing-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card-detailed {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card-detailed.featured {
    border-color: #0022ff;
    transform: scale(1.05);
}

.pricing-card-detailed .pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.pricing-card-detailed .pricing-description {
    margin-bottom: 25px;
}

.pricing-card-detailed .pricing-description p {
    color: #666;
    font-size: 1rem;
}

.pricing-card-detailed .pricing-features {
    margin-bottom: 25px;
}

.pricing-card-detailed .pricing-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card-detailed .pricing-features li {
    padding: 8px 0;
    color: #333;
    font-size: 0.95rem;
}

.pricing-card-detailed .pricing-best-for {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.nav-link.active {
    color: #0022ff !important;
    font-weight: 600;
}

/* Navigation adjustments for pricing page */
.landing-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0022ff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .pricing-page-header h1 {
        font-size: 2rem;
    }
    
    .pricing-grid-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .pricing-card-detailed.featured {
        transform: none;
    }
}
/* FAQ Pages Styling */
.faq-page {
    background-color: #f2f4fe;
    min-height: 100vh;
    padding: 120px 0 80px;
}

.faq-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
}

.faq-page-header p {
    font-size: 1.2rem;
    color: #666;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    flex-grow: 1;
    padding-right: 20px;
}

.faq-icon {
    color: #0022ff;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Navigation updates for FAQ pages */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .faq-page {
        padding: 100px 0 60px;
    }
    
    .faq-page-header h1 {
        font-size: 2rem;
    }
    
    .faq-accordion {
        margin: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 20px;
        gap: 15px;
        display: none;
    }
    
    .nav-menu.mobile-open {
        display: flex;
    }
}
/* FAQ Selection Section */
.faq-selection-section {
    background: white;
    padding: 80px 0;
}

.faq-selection-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-selection-header .section-title {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-selection-header .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.faq-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-selection-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-selection-card:hover {
    border-color: #0022ff;
    box-shadow: 0 8px 24px rgba(0, 34, 255, 0.1);
    transform: translateY(-4px);
}

.faq-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0022ff, #4b6afa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.faq-card-icon i {
    color: white;
    font-size: 2rem;
}

.faq-card-icon img {
    width: 45px;
    height: 35px;
    object-fit: contain;
    border-radius: 6px;
    filter: brightness(1.1) contrast(1.1);
}

.faq-selection-card h3 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-selection-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.faq-selection-card .btn {
    margin-top: auto;
}

/* Responsive design for FAQ selection */
@media (max-width: 768px) {
    .faq-selection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .faq-selection-card {
        padding: 30px 25px;
    }
    
    .faq-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .faq-card-icon i {
        font-size: 1.5rem;
    }
    
    .faq-card-icon img {
        width: 32px;
        height: 25px;
    }
    
    .faq-selection-header .section-title {
        font-size: 2rem;
    }
}
/* Content Pages Styling */
.content-page {
    background-color: #f2f4fe;
    min-height: 100vh;
    padding: 120px 0 80px;
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
}

.content-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
}

.content-body {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0022ff;
}

.content-section p {
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-section li {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.content-section a {
    color: #0022ff;
    text-decoration: none;
    font-weight: 500;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Responsive design for content pages */
@media (max-width: 768px) {
    .content-page {
        padding: 100px 0 60px;
    }
    
    .content-header h1 {
        font-size: 2rem;
    }
    
    .content-body {
        margin: 0 20px;
        padding: 30px 25px;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
}