/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Login Page */
.login-page {
    background-color: #c0c0c0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.login-box {
    background-color: white;
    border: 2px solid #000;
    padding: 30px;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    display: inline-block;
}

.logo-icon {
    display: inline-block;
    background-color: #4169E1;
    color: white;
    padding: 5px 15px;
    border: 1px solid #000;
    margin: 0 5px;
}

.login-title {
    font-size: 24px;
    margin-top: 5px;
}

.login-form-wrapper {
    border: 1px solid #999;
    padding: 20px;
    background-color: #f9f9f9;
}

.form-instruction {
    font-weight: bold;
    margin-bottom: 15px;
}

.login-footer {
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
    color: #333;
}

/* Header Section */
.header-section {
    background-color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-section .logo {
    font-size: 36px;
    margin: 0;
}

.user-info {
    font-size: 12px;
}

.user-info a {
    color: #0066cc;
    text-decoration: none;
}

.user-info a:hover {
    text-decoration: underline;
}

/* Navigation */
.main-nav {
    background-color: #6c757d;
}

.main-nav .nav-tabs {
    border: none;
    margin: 0;
}

.main-nav .nav-tabs .nav-link {
    color: white;
    background-color: #6c757d;
    border: none;
    border-radius: 0;
    padding: 10px 20px;
    margin: 0;
}

.main-nav .nav-tabs .nav-link:hover {
    background-color: #5a6268;
}

.main-nav .nav-tabs .nav-link.active {
    background-color: #495057;
    color: white;
}

/* Sub Navigation */
.sub-nav {
    background-color: #6db3f2;
    padding: 10px 20px;
    margin-bottom: 0;
}

.sub-nav a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    margin-right: 5px;
    display: inline-block;
}

.sub-nav a:hover {
    background-color: #5a9dd8;
}

.sub-nav a.active {
    background-color: #4a8dc8;
    font-weight: bold;
}

/* Content */
.content-wrapper {
    padding: 0;
    min-height: calc(100vh - 200px);
}

.page-content {
    padding: 20px;
}

.dashboard-content {
    padding: 20px;
}

/* Tables */
.table {
    font-size: 13px;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: bold;
}

.table tbody tr:hover {
    background-color: #f5f5f5;
}

.article-table .btn {
    padding: 2px 6px;
    font-size: 11px;
}

/* Stats Cards */
.stat-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.stat-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.stat-card-link-disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-card-link:hover .stat-card {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.stat-card-link-disabled .stat-card {
    cursor: not-allowed;
}

.stat-card-link-disabled .stat-card:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.stat-card .stat-info {
    flex: 1;
    text-align: left;
}

.stat-card h3 {
    font-size: 36px;
    margin: 0 0 5px 0;
    color: white;
    font-weight: bold;
    line-height: 1;
}

.stat-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

/* Stat Card Color Variations */
.stat-card-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card-success {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-card-warning {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-card-info {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 15px 20px;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #6c757d;
}

/* Forms */
.form-label {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Filters */
.filter-form .form-control {
    font-size: 13px;
}

/* Article View */
.article-header h2 {
    margin-bottom: 10px;
}

.article-meta {
    color: #6c757d;
    font-size: 13px;
    margin-bottom: 15px;
}

.article-content {
    line-height: 1.6;
    font-size: 14px;
}

.article-categories {
    margin-bottom: 15px;
}

/* Bulk Actions */
.bulk-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Pagination */
.pagination {
    font-size: 13px;
}

.pagination .page-link {
    color: #0066cc;
}

.pagination .page-item.active .page-link {
    background-color: #0066cc;
    border-color: #0066cc;
}

/* Responsive */
@media (max-width: 768px) {
    .header-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-info {
        margin-top: 10px;
    }

    .main-nav .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .stat-card {
        margin-bottom: 15px;
    }

    .table {
        font-size: 11px;
    }

    .filter-form .row > div {
        margin-bottom: 10px;
    }
}

/* Custom Bootstrap overrides */
.btn-sm {
    font-size: 12px;
    padding: 4px 8px;
}

.badge {
    font-size: 11px;
    padding: 4px 8px;
}

.alert {
    font-size: 13px;
    padding: 10px 15px;
}

/* Help Page Styles */
.help-page {
    background-color: #f5f5f5;
}

.help-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.help-box {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.help-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #4169E1;
}

.help-header h1 {
    color: #4169E1;
    margin-bottom: 10px;
    font-size: 32px;
}

.help-header p {
    color: #6c757d;
    margin: 0;
    font-size: 14px;
}

.help-section {
    margin-bottom: 30px;
}

.help-section h2 {
    color: #495057;
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.help-section h3 {
    color: #6c757d;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.help-section h4 {
    color: #495057;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

.help-section p {
    line-height: 1.8;
    color: #495057;
    margin-bottom: 15px;
    font-size: 14px;
}

.help-section ul,
.help-section ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.help-section li {
    line-height: 1.8;
    margin-bottom: 8px;
    color: #495057;
}

.help-section ul ul,
.help-section ol ol,
.help-section ul ol,
.help-section ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.help-section em {
    color: #6c757d;
    font-style: italic;
}

.help-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 5px;
}

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

.help-badge-editor {
    background-color: #0d6efd;
    color: white;
}

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

.help-alert {
    background-color: #e7f3ff;
    border-left: 4px solid #4169E1;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.help-alert strong {
    color: #4169E1;
}

.help-alert-warning {
    background-color: #fff3cd;
    border-left-color: #ffc107;
}

.help-alert-warning strong {
    color: #856404;
}

.help-toc {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
}

.help-toc h3 {
    margin-top: 0;
    color: #495057;
    font-size: 18px;
    margin-bottom: 15px;
}

.help-toc ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.help-toc li {
    margin-bottom: 8px;
}

.help-toc a {
    color: #0066cc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.help-toc a:hover {
    text-decoration: underline;
}

.help-code {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 3px 8px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #495057;
    display: inline-block;
}

.help-back-button {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

/* Footer links styling */
.footer-links {
    font-size: 11px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
}

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

/* Help page responsive styles */
@media (max-width: 768px) {
    .help-container {
        padding: 20px 10px;
    }

    .help-box {
        padding: 20px;
    }

    .help-header h1 {
        font-size: 24px;
    }

    .help-section h2 {
        font-size: 20px;
    }

    .help-section h3 {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
    }

    .help-toc {
        padding: 15px;
    }
}


/* ========================================
   LANDING PAGE STYLES
   ======================================== */

/* Landing Page Body */
.landing-page {
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ========================================
   LANDING NAVIGATION
   ======================================== */

.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.landing-nav.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.landing-logo {
    font-size: 32px;
    font-weight: bold;
    color: #4169E1;
    margin: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4169E1;
}

.btn-nav-outline {
    padding: 10px 24px;
    border: 2px solid #4169E1;
    border-radius: 6px;
    color: #4169E1 !important;
    transition: all 0.3s ease;
}

.btn-nav-outline:hover {
    background: #4169E1;
    color: #ffffff !important;
}

.btn-nav-primary {
    padding: 10px 24px;
    background: linear-gradient(135deg, #4169E1 0%, #667eea 100%);
    border-radius: 6px;
    color: #ffffff !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(65, 105, 225, 0.3);
}

.mobile-menu-toggle {
    display: none;
    font-size: 28px;
    color: #4169E1;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 20px 30px;
    gap: 15px;
    border-top: 1px solid #dee2e6;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    padding: 140px 30px 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #2d3748;
}

.gradient-text {
    background: linear-gradient(135deg, #4169E1 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 36px;
}

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

.btn-hero-primary {
    padding: 18px 36px;
    background: linear-gradient(135deg, #4169E1 0%, #667eea 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(65, 105, 225, 0.4);
    color: #ffffff;
}

.btn-hero-secondary {
    padding: 18px 36px;
    background: #ffffff;
    color: #4169E1;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #4169E1;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: #4169E1;
    color: #ffffff;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #4169E1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
}

.hero-visual {
    animation: fadeInUp 1s ease-out;
}

.hero-card-stack {
    position: relative;
    height: 400px;
}

.card-item {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-item:hover {
    transform: translateY(-10px) rotate(2deg);
}

.card-1 {
    top: 0;
    left: 0;
    width: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    z-index: 3;
}

.card-2 {
    top: 80px;
    left: 60px;
    width: 280px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
    z-index: 2;
}

.card-3 {
    top: 160px;
    left: 120px;
    width: 280px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #ffffff;
    z-index: 1;
}

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

.card-label {
    font-size: 24px;
    font-weight: 600;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    padding: 100px 30px;
    background: #f5f5f5;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #2d3748;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    text-align: center;
    color: #6c757d;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 24px;
    color: #ffffff;
}

.feature-icon-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-icon-green {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-icon-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-icon-cyan {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-icon-orange {
    background: linear-gradient(135deg, #ffd89b 0%, #ff6b6b 100%);
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 16px;
}

.feature-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-free {
    background: #d4edda;
    color: #155724;
}

.badge-all {
    background: #d1ecf1;
    color: #0c5460;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
    padding: 100px 30px;
    background: #ffffff;
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto 60px;
}

.step-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(180deg, #4169E1 0%, #e8ecf0 100%);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4169E1 0%, #667eea 100%);
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 28px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 20px;
}

.step-visual {
    margin-top: 20px;
}

.mini-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4169E1;
}

.form-field {
    padding: 12px;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #495057;
}

.form-field:last-child {
    margin-bottom: 0;
}

.category-pill {
    display: inline-block;
    padding: 10px 16px;
    background: #4169E1;
    color: #ffffff;
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
}

.user-badge {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 6px;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
}

.user-admin {
    background: #dc3545;
    color: #ffffff;
}

.user-editor {
    background: #0d6efd;
    color: #ffffff;
}

.user-viewer {
    background: #6c757d;
    color: #ffffff;
}

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

.btn-large-primary {
    padding: 20px 48px;
    background: linear-gradient(135deg, #4169E1 0%, #667eea 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.3);
    transition: all 0.3s ease;
}

.btn-large-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(65, 105, 225, 0.4);
    color: #ffffff;
}
/* ========================================
   LANDING PAGE ADDITIONAL STYLES
   Note: These should be merged into custom.css
   ======================================== */

/* Pricing, FAQ, CTA, Footer */
.pricing-section { padding: 100px 30px; background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto 60px; }
.pricing-card { background: #ffffff; border-radius: 16px; padding: 40px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; position: relative; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); }
.pricing-card-featured { border: 3px solid #4169E1; transform: scale(1.05); }
.pricing-card-featured:hover { transform: scale(1.05) translateY(-8px); }
.pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #4169E1; color: #ffffff; padding: 8px 24px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.pricing-badge-coming { background: #ff9800; }
.pricing-plan-name { font-size: 28px; font-weight: 700; color: #2d3748; margin-top: 20px; margin-bottom: 16px; }
.pricing-price { margin-bottom: 8px; }
.price-amount { font-size: 48px; font-weight: 800; color: #4169E1; }
.price-period { font-size: 18px; color: #6c757d; }
.pricing-tagline { font-size: 14px; color: #6c757d; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #e8ecf0; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 32px; }
.pricing-features li { padding: 12px 0; font-size: 15px; color: #495057; display: flex; align-items: center; gap: 12px; }
.pricing-features i { font-size: 20px; color: #43e97b; }
.feature-disabled i { color: #dee2e6; }
.feature-disabled { color: #adb5bd; text-decoration: line-through; }
.pricing-btn { width: 100%; padding: 16px; border-radius: 8px; font-weight: 600; font-size: 16px; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer; transition: all 0.3s ease; }
.pricing-btn-primary { background: linear-gradient(135deg, #4169E1 0%, #667eea 100%); color: #ffffff; }
.pricing-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(65, 105, 225, 0.3); color: #ffffff; }
.pricing-btn-disabled { background: #e9ecef; color: #6c757d; cursor: not-allowed; }
.pricing-note { text-align: center; margin-top: 12px; font-size: 13px; color: #6c757d; }
.pricing-comparison { max-width: 800px; margin: 0 auto; text-align: center; background: #ffffff; padding: 32px; border-radius: 12px; }
.comparison-text { font-size: 16px; color: #495057; margin-bottom: 12px; }
.comparison-highlight { font-size: 20px; font-weight: 600; color: #4169E1; margin: 0; }

.faq-section { padding: 100px 30px; background: #ffffff; }
.faq-accordion { max-width: 900px; margin: 0 auto; }
.faq-item { margin-bottom: 16px; border: 1px solid #e8ecf0; border-radius: 8px; overflow: hidden; }
.faq-question { width: 100%; padding: 24px; background: #ffffff; border: none; text-align: left; font-size: 18px; font-weight: 600; color: #2d3748; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s ease; }
.faq-question:hover { background: #f8f9fa; }
.faq-question i { font-size: 16px; color: #4169E1; transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 1000px; }
.faq-answer p, .faq-answer ul { padding: 0 24px 24px; margin: 0; font-size: 16px; line-height: 1.7; color: #6c757d; }
.faq-answer ul { padding-left: 48px; list-style-type: disc; }
.faq-answer li { margin-bottom: 8px; }
.faq-answer a { color: #4169E1; text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

.final-cta-section { padding: 100px 30px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #ffffff; }
.cta-container { max-width: 900px; margin: 0 auto; text-align: center; }
.cta-title { font-size: 48px; font-weight: 700; margin-bottom: 16px; }
.cta-subtitle { font-size: 20px; margin-bottom: 40px; opacity: 0.9; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 48px; }
.btn-cta-primary { padding: 20px 40px; background: #ffffff; color: #667eea; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 18px; display: inline-flex; align-items: center; gap: 12px; transition: all 0.3s ease; }
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3); color: #667eea; }
.btn-cta-secondary { padding: 20px 40px; background: transparent; color: #ffffff; text-decoration: none; border-radius: 8px; border: 2px solid #ffffff; font-weight: 600; font-size: 18px; display: inline-flex; align-items: center; gap: 12px; transition: all 0.3s ease; }
.btn-cta-secondary:hover { background: #ffffff; color: #667eea; }
.cta-trust-badges { display: flex; justify-content: center; gap: 48px; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-item i { font-size: 32px; }
.trust-item span { font-size: 14px; font-weight: 500; }

.landing-footer { background: #2d3748; color: #cbd5e0; padding: 60px 30px 30px; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 28px; font-weight: 700; color: #4169E1; margin-bottom: 12px; }
.footer-column h4 { color: #ffffff; font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin-bottom: 12px; }
.footer-column a { color: #cbd5e0; text-decoration: none; transition: color 0.3s ease; }
.footer-column a:hover { color: #4169E1; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #4a5568; }
.footer-bottom p { margin: 0; font-size: 14px; color: #a0aec0; }

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

@media (max-width: 1024px) {
    .hero-container { gap: 40px; }
    .hero-title { font-size: 48px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card-featured { grid-column: span 2; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-section { padding: 120px 20px 60px; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-cta { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .hero-stats { justify-content: space-between; }
    .stat-number { font-size: 28px; }
    .hero-visual { display: none; }
    .section-title { font-size: 36px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card-featured { grid-column: auto; transform: scale(1); }
    .step-item { flex-direction: column; gap: 20px; }
    .step-item::after { display: none; }
    .cta-buttons { flex-direction: column; }
    .btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; }
    .cta-trust-badges { flex-direction: column; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-contact-us {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    border: 2px solid #4169E1;
    border-radius: 6px;
    color: #4169E1 !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-us:hover {
    background: #4169E1;
    color: #ffffff !important;
}

/* ========================================
   CONTACT MODAL
   ======================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-container {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #4169E1 0%, #667eea 100%);
    border-radius: 12px 12px 0 0;
}

.modal-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
}

.modal-description {
    color: #6c757d;
    margin-bottom: 24px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group .text-danger {
    color: #dc3545;
}

.form-control,
.form-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    line-height: 1.5;
    min-height: 38px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #4169E1;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.btn-primary, .btn-secondary {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    min-height: 38px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #4169E1 0%, #667eea 100%);
    color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(65, 105, 225, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: #e9ecef;
    color: #495057;
}

.btn-secondary:hover {
    background: #dee2e6;
}

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #d1f4e0;
    color: #0f5132;
    border: 1px solid #9dd8ba;
}

.alert-danger {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

.spin {
    animation: spin 1s linear infinite;
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    .modal-container {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }

    .modal-header {
        padding: 20px;
        border-radius: 0;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-footer {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   LOGO STYLING
   ======================================== */

/* Landing Page Logo */
.landing-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.landing-logo-img:hover {
    transform: scale(1.05);
}

/* Header Logo (Authenticated Pages) */
.logo-section img {
    transition: opacity 0.3s ease;
}

.logo-section img:hover {
    opacity: 0.9;
}

/* Login/Signup Page Logo */
.login-header img {
    margin-bottom: 0;
}

/* Responsive Logo Sizing */
@media (max-width: 768px) {
    .landing-logo-img {
        height: 45px;
    }

    .logo-section img {
        height: 40px;
    }

    .login-header img {
        height: 80px !important;
    }
}

@media (max-width: 480px) {
    .landing-logo-img {
        height: 35px;
    }

    .logo-section img {
        height: 35px;
    }

    .login-header img {
        height: 70px !important;
    }
}
