/* =========================================
   Moodle Hosting & LMS Specific Styles
========================================= */

/* LMS Pricing & Feature Section */
.lms-pricing-section {
    padding: 80px 0;
    background-color: #0b1120;
    color: #ffffff;
    overflow: hidden;
}

.lms-plan-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lms-header-text {
    text-align: center;
    margin-bottom: 50px;
}

.lms-badge {
    background: rgba(197, 7, 7, 0.15);
    color: #ef4444;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.lms-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}

.lms-section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

/* Interactive Moodle Showcase */
.lms-showcase-wrapper {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.lms-showcase-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

.lms-showcase-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lms-showcase-heading {
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
}

/* Moodle Navigation Buttons */
.moodle-nav-btn {
    background: transparent;
    color: #94a3b8;
    text-align: left;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.moodle-nav-btn .btn-title {
    font-weight: 600;
    color: #ffffff;
}

.moodle-nav-btn .btn-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 2px;
}

.moodle-nav-btn.active-moodle-btn {
    background: #273549;
    border-color: #475569;
    color: #ffffff;
}

.moodle-nav-btn:hover {
    background: rgba(39, 53, 73, 0.5);
}

/* Live Preview Viewport */
.lms-viewport-container {
    background: #0f172a;
    border-radius: 12px;
    border: 1px solid #334155;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.lms-viewport-topbar {
    background: #1e293b;
    padding: 12px 20px;
    border-bottom: 1px solid #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lms-viewport-dots {
    display: flex;
    gap: 6px;
}

.lms-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}
.lms-dot.red { background: #ef4444; }
.lms-dot.yellow { background: #eab308; }
.lms-dot.green { background: #22c55e; }

.lms-url-bar {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #64748b;
    padding: 4px 20px;
    width: 60%;
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lms-image-canvas {
    position: relative;
    padding: 0;
    min-height: 400px;
    max-height: 480px;
    overflow-y: auto;
    background: #ffffff;
}

.lms-image-canvas img {
    /*width: 100%;*/
}

/* Custom LMS Setup Button */
.lms-action-footer {
    text-align: center;
    margin-top: 30px;
}

.lms-custom-btn {
    background: #c50707;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease;
}

.lms-custom-btn i {
    color: #ffffff;
}

.lms-custom-btn:hover {
    background: #a30505;
}

/* Path Premium Spans */
.ha-paths-v2-premium-span {
    grid-column: span 2;
}

/* Open Panels Section */
.ha-panels-section {
    padding: 40px 0;
    background-color: #f8fafc;
}

.ha-panels-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ha-panels-header {
    text-align: center;
    margin-bottom: 50px;
}

.ha-panels-badge {
    background: rgba(197, 7, 7, 0.08);
    color: #c50707;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.ha-panels-title {
    font-size: 2rem;
    color: #0f172a;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.ha-panels-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.ha-panels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ha-panel-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.ha-panel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.ha-panel-logo-wrap {
    height: 55px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.ha-panel-logo-wrap img {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain;
}

.ha-panel-card-title {
    font-size: 1.35rem;
    color: #0f172a;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.ha-panel-card-desc {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

/* Panel Tags */
.ha-panel-tag {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.ha-panel-tag.orange { background: rgba(249, 115, 22, 0.08); color: #ea580c; }
.ha-panel-tag.blue { background: rgba(14, 165, 233, 0.08); color: #0284c7; }
.ha-panel-tag.indigo { background: rgba(79, 70, 229, 0.08); color: #4f46e5; }

/* FAQ Tweaks */
.lms-faq-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 10px auto 30px;
    color: #a1a1aa;
}

.lms-why-subtitle {
    text-align: center;
    margin-top: 10px;
    color: #666;
}