How PrepPassFast/* Modern Clean Design - Arizona Real Estate Style */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #374151;
    background: #ffffff;
    min-height: 100vh;
}

/* Remove problematic background logo that interferes with content display */

.container {
    max-width: 1200px;
}

/* Header Styles */
.header-section {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.preppassfast-logo {
    max-height: 40px;
    width: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

/* Layout Styles */
.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sidebar {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.main-content {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

/* Sidebar Navigation */
.sidebar-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-title:hover {
    color: #2563eb;
}

.dropdown-icon {
    margin-left: auto;
    transition: transform 0.2s ease;
}

.dropdown-icon.expanded {
    transform: rotate(180deg);
}

.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-bottom: 1rem;
}

.dropdown-menu.expanded {
    max-height: 500px;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 0.25rem;
    margin-left: 1rem;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    font-size: 0.875rem;
}

.dropdown-item:hover {
    background: #f3f4f6;
    color: #1f2937;
    text-decoration: none;
    border-left-color: #2563eb;
}

.dropdown-item.active {
    background: #eff6ff;
    color: #2563eb;
    border-left-color: #2563eb;
}

.dropdown-item i {
    width: 16px;
    margin-right: 8px;
}

.nav-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.nav-item:hover {
    background: #f3f4f6;
    color: #1f2937;
    text-decoration: none;
}

.nav-item.active {
    background: #eff6ff;
    color: #2563eb;
    border-color: #93c5fd;
}

.nav-item i {
    width: 20px;
    margin-right: 8px;
}

/* Clickable Feature Cards */
.clickable-feature {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.clickable-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #e5e7eb;
}

.clickable-feature:hover .fas.fa-chevron-right {
    transform: translateX(5px);
    color: #2563eb;
}

.clickable-feature .fas.fa-chevron-right {
    transition: all 0.3s ease;
    opacity: 0.6;
    font-size: 0.8rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Content Sections */
.content-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.content-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.content-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

/* Card Styles */
.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.card-body {
    padding: 1.5rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    color: white;
    text-decoration: none;
}

.btn-warning {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
}

.btn-warning:hover {
    background: #d97706;
    color: white;
    text-decoration: none;
}

.btn-outline-secondary {
    background: transparent;
    color: #6b7280;
    border-color: #d1d5db;
}

.btn-outline-secondary:hover {
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
}

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

/* Form Styles */
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* File Upload Area */
.file-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.file-upload-area:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.file-upload-area i {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

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

.stat-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.category-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-item i {
    color: #2563eb;
    font-size: 1.125rem;
}

/* Alert Styles */
.alert {
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border-color: #93c5fd;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border-color: #86efac;
}

.alert-danger {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fca5a5;
}

/* Generation Options */
.generation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.option-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    background: white;
}

.option-card.premium {
    border-color: #f59e0b;
    background: #fffbeb;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.option-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.premium-badge {
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sidebar {
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .generation-options {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.5rem; }
.small { font-size: 0.875rem; }
.text-muted { color: #6b7280; }
.text-success { color: #059669; }
.text-primary { color: #2563eb; }
.text-warning { color: #f59e0b; }
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }

/* Legacy Bootstrap overrides for existing structure */
.stat-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stat-content {
    margin-left: 1rem;
}

.stat-content h4 {
    color: #2563eb;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.stat-content p {
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Course-based platform styles */
.course-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 12px;
}

.course-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.course-card.coming-soon {
    opacity: 0.7;
}

.course-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.75rem;
}

.materials-preview {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.price-section {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

/* Material cards */
.material-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: box-shadow 0.2s;
}

.material-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Purchase card */
.purchase-card {
    border: 2px solid #007bff;
    border-radius: 12px;
}

.purchase-card .btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Feature icons */
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Payment placeholder */
.payment-placeholder {
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Guarantee section */
.guarantee-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

/* Security badges */
.security-badges {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.step-icon {
    margin-bottom: 1rem;
}

.step-icon i {
    opacity: 0.8;
}

/* Course Stats Enhancement */
.stat-box {
    padding: 10px;
    border-radius: 8px;
    background: rgba(0, 123, 255, 0.1);
    margin: 5px;
}

/* Admin table hover effects for clickable rows */
.table-row-hover:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.table-row-hover {
    transition: all 0.2s ease;
}

.table-row-hover:hover td {
    background-color: #f8f9fa !important;
}
/* Custom adjustments: reduce spacing for How PrepPassFast Works section */
#how-it-works {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Add PrepPassFast logo as faint background that scrolls */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('preppassfast_logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: 50%;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}
