/* ==========================================================================
   Logic Racks Learning — Unique Education Academy Design System
   Color Palette: Purple (#6208bc), Lavender (#a855f7), Emerald (#10b981),
                  Amber (#f59e0b), Blue (#3b82f6)
   Typography: Plus Jakarta Sans + Gilroy
   ========================================================================== */

/* --- Variables --- */
:root {
    --lrl-purple: #6208bc;
    --lrl-purple-light: #a855f7;
    --lrl-purple-dark: #4a0690;
    --lrl-emerald: #10b981;
    --lrl-amber: #f59e0b;
    --lrl-blue: #3b82f6;
    --lrl-dark: #1e1b2e;
    --lrl-dark-2: #151222;
    --lrl-text: #2d2b3d;
    --lrl-text-muted: #6b7280;
    --lrl-bg: #ffffff;
    --lrl-bg-soft: #f8f6fc;
    --lrl-bg-purple: #f3eefa;
    --lrl-border: #e5e7eb;
    --lrl-radius: 14px;
    --lrl-radius-lg: 20px;
    --lrl-shadow: 0 2px 8px rgba(0,0,0,0.06);
    --lrl-shadow-lg: 0 16px 40px rgba(98,8,188,0.1);
    --lrl-shadow-xl: 0 24px 60px rgba(98,8,188,0.12);
}

/* --- Reset & Global --- */
* { box-sizing: border-box; }
body {
    font-family: 'Plus Jakarta Sans', 'Gilroy', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--lrl-text);
    background: var(--lrl-bg);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Gilroy', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--lrl-dark);
}
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

/* Bootstrap container override */
@media (min-width: 1200px) {
    .container { max-width: 1180px; }
}


/* ==========================================================================
   TOPBAR
   ========================================================================== */
.lrl-topbar {
    background: var(--lrl-dark);
    padding: 8px 0;
    font-size: 13px;
}
.lrl-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lrl-topbar-left span {
    color: var(--lrl-purple-light);
    font-weight: 600;
}
.lrl-topbar-left i {
    margin-right: 6px;
}
.lrl-topbar-right {
    display: flex;
    gap: 24px;
}
.lrl-topbar-right a {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}
.lrl-topbar-right a:hover { color: #fff; }
.lrl-topbar-right i { margin-right: 5px; }

@media (max-width: 767px) {
    .lrl-topbar-right { display: none; }
    .lrl-topbar-inner { justify-content: center; }
}


/* ==========================================================================
   NAVBAR
   ========================================================================== */
.lrl-navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--lrl-border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.lrl-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.lrl-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lrl-logo img {
    height: 42px;
    width: auto;
}

/* Nav menu */
.lrl-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.lrl-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.lrl-nav-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    color: var(--lrl-text);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}
.lrl-nav-list > li > a:hover,
.lrl-nav-list > li > a.active {
    color: var(--lrl-purple);
    background: var(--lrl-bg-purple);
}
.lrl-nav-list > li > a i.fa-chevron-down { font-size: 9px; opacity: 0.5; }

.lrl-nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 20px;
}
.lrl-nav-phone {
    color: var(--lrl-text-muted);
    font-size: 13px;
    font-weight: 600;
}
.lrl-nav-phone:hover { color: var(--lrl-purple); }
.lrl-nav-phone i { margin-right: 4px; }

/* Mega dropdown */
.lrl-dropdown { position: relative; }
.lrl-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 640px;
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: var(--lrl-radius-lg);
    padding: 28px 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: var(--lrl-shadow-xl);
    z-index: 100;
}
@media (min-width: 992px) {
    .lrl-dropdown:hover .lrl-dropdown-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
}
.lrl-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.lrl-dropdown-label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lrl-purple);
    font-weight: 700;
    margin-bottom: 10px;
}
.lrl-dropdown-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--lrl-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}
.lrl-dropdown-col a i {
    width: 20px;
    text-align: center;
    color: var(--lrl-purple-light);
    font-size: 13px;
}
.lrl-dropdown-col a:hover {
    background: var(--lrl-bg-purple);
    color: var(--lrl-purple);
}

/* Hamburger */
.lrl-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.lrl-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lrl-dark);
    border-radius: 2px;
    transition: all 0.3s;
}
.lrl-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.lrl-hamburger.active span:nth-child(2) { opacity: 0; }
.lrl-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.lrl-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.lrl-nav-overlay.active { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }


/* ==========================================================================
   BUTTONS
   ========================================================================== */
.lrl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.lrl-btn-primary {
    background: var(--lrl-purple);
    color: #fff;
    box-shadow: 0 4px 14px rgba(98,8,188,0.25);
}
.lrl-btn-primary:hover {
    background: var(--lrl-purple-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(98,8,188,0.35);
}
.lrl-btn-outline {
    background: transparent;
    color: var(--lrl-purple);
    border: 2px solid var(--lrl-purple);
}
.lrl-btn-outline:hover {
    background: var(--lrl-purple);
    color: #fff;
    transform: translateY(-2px);
}
.lrl-btn-white {
    background: #fff;
    color: var(--lrl-purple);
}
.lrl-btn-white:hover {
    background: #f0f0f0;
    color: var(--lrl-purple-dark);
    transform: translateY(-2px);
}
.lrl-btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.lrl-btn-white-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: #fff;
}
.lrl-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 8px;
    background: var(--lrl-bg-purple);
    color: var(--lrl-purple);
}
.lrl-btn-sm:hover {
    background: var(--lrl-purple);
    color: #fff;
}
.lrl-btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}


/* ==========================================================================
   SECTION HEADER & UTILITIES
   ========================================================================== */
.lrl-section-header {
    margin-bottom: 20px;
}
.lrl-section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 14px;
}
.lrl-section-header p {
    font-size: 17px;
    color: var(--lrl-text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.lrl-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--lrl-bg-purple);
    color: var(--lrl-purple);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 16px;
}
.lrl-label-light {
    background: rgba(168,85,247,0.15);
    color: var(--lrl-purple-light);
}

.lrl-text-gradient {
    background: linear-gradient(135deg, var(--lrl-purple) 0%, var(--lrl-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lrl-text-gradient-light {
    background: linear-gradient(135deg, #c084fc 0%, #a855f7 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark section utility */
.lrl-dark-section {
    background: var(--lrl-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.lrl-dark-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(98,8,188,0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}
.lrl-dark-section .lrl-section-header h2 { color: #fff; }
.lrl-dark-section .lrl-section-header p { color: rgba(255,255,255,0.55); }


/* ==========================================================================
   HERO — Light gradient with floating cards
   ========================================================================== */
.lrl-hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f8f6fc 0%, #ede9fe 40%, #f0e7ff 70%, #e8f5f0 100%);
    position: relative;
    overflow: hidden;
}
.lrl-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.lrl-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}
.lrl-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(98,8,188,0.12), transparent 70%);
    top: -100px;
    right: -100px;
}
.lrl-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16,185,129,0.1), transparent 70%);
    bottom: -50px;
    left: -50px;
}
.lrl-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 70%);
    top: 40%;
    left: 50%;
}

.lrl-hero-text {
    position: relative;
    z-index: 2;
}
.lrl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lrl-purple);
    margin-bottom: 24px;
    box-shadow: var(--lrl-shadow);
}
.lrl-badge i {
    color: var(--lrl-amber);
}
.lrl-hero-text h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--lrl-dark);
}
.lrl-hero-text p {
    font-size: 18px;
    color: var(--lrl-text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
}
.lrl-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Trust bar */
.lrl-hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}
.lrl-avatar-stack {
    display: flex;
}
.lrl-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border: 3px solid #fff;
    margin-left: -10px;
    flex-shrink: 0;
}
.lrl-avatar:first-child { margin-left: 0; }
.lrl-hero-trust strong {
    display: block;
    font-size: 14px;
    color: var(--lrl-dark);
}
.lrl-hero-trust span {
    font-size: 12px;
    color: var(--lrl-text-muted);
}

/* Floating visual */
.lrl-hero-visual {
    position: relative;
    height: 460px;
}
.lrl-hero-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--lrl-shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.lrl-hero-center-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.lrl-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--lrl-radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--lrl-shadow-lg);
    z-index: 3;
    border: 1px solid rgba(0,0,0,0.04);
}
.lrl-float-card strong {
    display: block;
    font-size: 14px;
    color: var(--lrl-dark);
}
.lrl-float-card span {
    font-size: 12px;
    color: var(--lrl-text-muted);
}
.lrl-float-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.lrl-float-1 { top: 10%; left: 5%; animation: lrlFloat 5s ease-in-out infinite; }
.lrl-float-2 { top: 5%; right: 5%; animation: lrlFloat 5s ease-in-out infinite 1.2s; }
.lrl-float-3 { bottom: 15%; left: 0%; animation: lrlFloat 5s ease-in-out infinite 0.6s; }
.lrl-float-4 { bottom: 10%; right: 5%; animation: lrlFloat 5s ease-in-out infinite 1.8s; }

@keyframes lrlFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}


/* ==========================================================================
   STATS BAR — Purple gradient
   ========================================================================== */
.lrl-stats-bar {
    background: linear-gradient(135deg, var(--lrl-purple) 0%, var(--lrl-purple-light) 50%, #7c3aed 100%);
    padding: 40px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}
.lrl-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.lrl-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    color: #fff;
}
.lrl-stat-item > i {
    font-size: 28px;
    opacity: 0.6;
}
.lrl-stat-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.1;
}
.lrl-stat-item span {
    font-size: 13px;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .lrl-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 575px) {
    .lrl-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .lrl-stat-item > i { display: none; }
}


/* ==========================================================================
   COURSES — Light section with gradient header cards
   ========================================================================== */
.lrl-courses {
    background: var(--lrl-bg);
    padding: 100px 0;
}

.lrl-course-card {
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: var(--lrl-radius-lg);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
}
.lrl-course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lrl-shadow-xl);
    border-color: transparent;
}

.lrl-course-header {
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
    position: relative;
}
.lrl-course-header > i {
    font-size: 36px;
    opacity: 0.9;
}
.lrl-course-duration {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    backdrop-filter: blur(8px);
}
.lrl-course-duration i { margin-right: 4px; }

.lrl-course-body {
    padding: 24px 28px 28px;
    position: relative;
}
.lrl-popular-tag {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--lrl-amber);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.lrl-course-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.lrl-course-body p {
    font-size: 14px;
    color: var(--lrl-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.lrl-course-tools {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.lrl-course-tools img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    padding: 2px;
    background: var(--lrl-bg-soft);
    border: 1px solid var(--lrl-border);
}

.lrl-course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--lrl-border);
}
.lrl-course-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--lrl-dark);
}
.lrl-course-price span {
    font-size: 13px;
    font-weight: 500;
    color: var(--lrl-text-muted);
}


/* ==========================================================================
   WHY US — Dark section
   ========================================================================== */
.lrl-why {
    background: var(--lrl-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.lrl-why::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(98,8,188,0.15), transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.lrl-why h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}
.lrl-why-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
}

.lrl-why-numbers {
    display: flex;
    gap: 32px;
}
.lrl-why-num strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.lrl-why-num span {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.lrl-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.lrl-feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lrl-radius);
    padding: 28px 24px;
    transition: all 0.35s;
}
.lrl-feature-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
    border-color: rgba(168,85,247,0.2);
}
.lrl-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.lrl-feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.lrl-feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

@media (max-width: 575px) {
    .lrl-features-grid { grid-template-columns: 1fr; }
    .lrl-why-numbers { flex-direction: column; gap: 16px; }
}


/* ==========================================================================
   JOURNEY / HOW IT WORKS — Light section with timeline
   ========================================================================== */
.lrl-journey {
    background: var(--lrl-bg);
    padding: 100px 0;
}

.lrl-timeline {
    max-width: 700px;
    margin: 40px auto 0;
    position: relative;
}
.lrl-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--lrl-purple), var(--lrl-purple-light), var(--lrl-emerald));
    border-radius: 3px;
}

.lrl-timeline-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}
.lrl-timeline-step:last-child { margin-bottom: 0; }

.lrl-timeline-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--lrl-purple);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(98,8,188,0.3);
}
.lrl-timeline-step:nth-child(2) .lrl-timeline-num { background: var(--lrl-purple-light); }
.lrl-timeline-step:nth-child(3) .lrl-timeline-num { background: var(--lrl-blue); box-shadow: 0 4px 16px rgba(59,130,246,0.3); }
.lrl-timeline-step:nth-child(4) .lrl-timeline-num { background: var(--lrl-emerald); box-shadow: 0 4px 16px rgba(16,185,129,0.3); }

.lrl-timeline-content {
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: var(--lrl-radius);
    padding: 24px 28px;
    flex: 1;
    transition: all 0.3s;
}
.lrl-timeline-content:hover {
    box-shadow: var(--lrl-shadow-lg);
    transform: translateX(4px);
}
.lrl-timeline-content h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lrl-timeline-content h4 i {
    color: var(--lrl-purple);
    font-size: 16px;
}
.lrl-timeline-content p {
    font-size: 14px;
    color: var(--lrl-text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 575px) {
    .lrl-timeline::before { left: 20px; }
    .lrl-timeline-num { width: 40px; height: 40px; min-width: 40px; font-size: 16px; }
    .lrl-timeline-step { gap: 16px; }
}


/* ==========================================================================
   SUCCESS STORIES — Purple soft background
   ========================================================================== */
.lrl-success {
    background: var(--lrl-bg-purple);
    padding: 100px 0;
}

.lrl-success-card {
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: var(--lrl-radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: all 0.35s;
}
.lrl-success-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lrl-shadow-xl);
}

.lrl-success-featured {
    background: var(--lrl-dark);
    border-color: transparent;
    color: #fff;
}
.lrl-success-featured p { color: rgba(255,255,255,0.65); }
.lrl-success-featured .lrl-success-author strong { color: #fff; }
.lrl-success-featured .lrl-success-author span { color: rgba(255,255,255,0.45); }
.lrl-success-featured .lrl-metric-value { color: var(--lrl-purple-light); }
.lrl-success-featured .lrl-metric-label { color: rgba(255,255,255,0.45); }

.lrl-success-metric {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lrl-border);
}
.lrl-success-featured .lrl-success-metric { border-color: rgba(255,255,255,0.08); }

.lrl-metric-value {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--lrl-purple);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.lrl-metric-label {
    font-size: 13px;
    color: var(--lrl-text-muted);
}

.lrl-success-card > p {
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    color: var(--lrl-text-muted);
    margin-bottom: 24px;
}

.lrl-success-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lrl-success-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--lrl-dark);
}
.lrl-success-author span {
    font-size: 12px;
    color: var(--lrl-text-muted);
}


/* ==========================================================================
   TOOLS MARQUEE
   ========================================================================== */
.lrl-tools {
    background: var(--lrl-bg);
    padding: 60px 0;
    overflow: hidden;
}
.lrl-tools-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--lrl-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.lrl-tools-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.lrl-tools-slide {
    display: flex;
    gap: 50px;
    animation: lrlMarquee 35s linear infinite;
    width: max-content;
}
.lrl-tools-slide img {
    height: 38px;
    width: auto;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: all 0.3s;
    flex-shrink: 0;
}
.lrl-tools-slide img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}
@keyframes lrlMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ==========================================================================
   CTA — Gradient box
   ========================================================================== */
.lrl-cta {
    background: var(--lrl-bg);
    padding: 0 0 100px;
}
.lrl-cta-box {
    background: linear-gradient(135deg, var(--lrl-purple) 0%, #7c3aed 40%, var(--lrl-purple-light) 100%);
    border-radius: var(--lrl-radius-lg);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}
.lrl-cta-box::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}
.lrl-cta-box::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    bottom: -80px;
    left: 20%;
}

.lrl-cta-box h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    color: #fff;
    margin-bottom: 14px;
}
.lrl-cta-box h2 span { color: rgba(255,255,255,0.8); }
.lrl-cta-box > .row > .col-lg-7 > p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}
.lrl-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.lrl-cta-checklist {
    position: relative;
    z-index: 2;
}
.lrl-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lrl-check-item:last-child { border-bottom: none; }
.lrl-check-item i { color: rgba(255,255,255,0.6); font-size: 16px; }

@media (max-width: 767px) {
    .lrl-cta-box { padding: 40px 28px; }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.lrl-footer {
    background: var(--lrl-dark);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.lrl-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(98, 8, 188, 0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.lrl-footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.lrl-footer > .container,
.lrl-footer > .lrl-footer-bottom {
    position: relative;
    z-index: 1;
}
.lrl-footer img[alt="Logic Racks Learning"] {
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
}
.lrl-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
}

.lrl-social-links {
    display: flex;
    gap: 10px;
}
.lrl-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.lrl-social-links a:hover {
    background: var(--lrl-purple);
    border-color: var(--lrl-purple);
    color: #fff;
}

.lrl-footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.lrl-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lrl-footer-list li { margin-bottom: 10px; }
.lrl-footer-list a {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}
.lrl-footer-list a:hover { color: #fff; padding-left: 4px; }

.lrl-footer-contact > div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
}
.lrl-footer-contact i {
    color: var(--lrl-purple-light);
    font-size: 13px;
    width: 16px;
    text-align: center;
}
.lrl-footer-contact span,
.lrl-footer-contact a {
    color: rgba(255,255,255,0.45);
}
.lrl-footer-contact a:hover { color: #fff; }

.lrl-footer-bottom {
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    margin-top: 60px;
    padding: 20px 0;
}
.lrl-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lrl-footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin: 0;
}
.lrl-footer-bottom a {
    color: rgba(255,255,255,0.4);
}
.lrl-footer-bottom a:hover { color: #fff; }

@media (max-width: 767px) {
    .lrl-footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}


/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.lrl-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.lrl-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   RESPONSIVE — MOBILE NAV
   ========================================================================== */
@media (max-width: 991px) {
    .lrl-hamburger { display: flex; }

    .lrl-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        gap: 0;
        box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    }
    .lrl-nav-menu.open { right: 0; }

    .lrl-nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 16px 0 0;
    }
    .lrl-nav-list > li {
        width: 100%;
    }
    .lrl-nav-list > li > a {
        display: flex;
        width: 100%;
        padding: 13px 24px;
        font-size: 15px;
        font-weight: 600;
        color: var(--lrl-dark);
        justify-content: space-between;
        border-radius: 0;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .lrl-nav-list > li > a:hover,
    .lrl-nav-list > li > a.active {
        color: var(--lrl-purple);
        background: var(--lrl-bg-purple);
    }

    /* Mobile dropdown chevron */
    .lrl-dropdown > a i.fa-chevron-down {
        transition: transform 0.3s ease;
        font-size: 10px;
    }
    .lrl-dropdown.open > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
    .lrl-dropdown.open > a {
        color: var(--lrl-purple);
        background: var(--lrl-bg-purple);
    }

    /* Dropdown panel — hidden by default */
    .lrl-dropdown-panel {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        background: #f8f5ff !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: none;
    }
    .lrl-dropdown.open .lrl-dropdown-panel {
        display: block !important;
        padding: 12px 0 12px !important;
    }

    .lrl-dropdown-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        padding: 0 !important;
    }
    .lrl-dropdown-col {
        padding: 0 16px;
    }
    .lrl-dropdown-label {
        font-size: 10px;
        letter-spacing: 1.2px;
        margin-bottom: 4px;
        margin-top: 12px;
        padding-left: 8px;
        color: var(--lrl-purple);
    }
    .lrl-dropdown-col a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 8px;
        font-size: 14px;
        font-weight: 500;
        color: var(--lrl-text);
        border-radius: 6px;
    }
    .lrl-dropdown-col a i {
        width: 20px;
        text-align: center;
        color: var(--lrl-purple-light);
        font-size: 13px;
    }
    .lrl-dropdown-col a:hover {
        background: rgba(98, 8, 188, 0.08);
        color: var(--lrl-purple);
    }

    /* CTA at bottom */
    .lrl-nav-cta {
        margin-left: 0;
        margin-top: auto;
        padding: 16px 24px 24px;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        border-top: 1px solid var(--lrl-border);
    }
    .lrl-nav-cta .lrl-btn { width: 100%; justify-content: center; }
    .lrl-nav-cta .lrl-nav-phone {
        display: block;
        text-align: center;
        padding: 10px;
        font-size: 14px;
        color: var(--lrl-text);
    }
}

@media (max-width: 991px) {
    .lrl-hero-visual { height: 300px; margin-top: 40px; }
    .lrl-float-card { padding: 12px 16px; }
    .lrl-hero-center-icon { width: 80px; height: 80px; border-radius: 20px; }
    .lrl-hero-center-icon img { width: 50px; height: 50px; }
}

@media (max-width: 767px) {
    .lrl-hero { padding: 50px 0 60px; }
    .lrl-hero-visual { display: none; }
    .lrl-hero-btns { flex-direction: column; }
    .lrl-stats-bar { margin-top: 0; border-radius: 0; }

    .lrl-courses,
    .lrl-why,
    .lrl-journey,
    .lrl-success,
    .lrl-tools { padding: 70px 0; }
}

@media (max-width: 575px) {
    .lrl-hero-text h1 { font-size: 32px; }
}


/* ==========================================================================
   ABOUT PAGE — Page Header, Story, Mission/Vision, Why Us, Values
   ========================================================================== */

/* --- Page Header / Breadcrumb Banner --- */
.lrl-page-header {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--lrl-bg-soft) 0%, var(--lrl-bg-purple) 100%);
    overflow: hidden;
    text-align: center;
}

.lrl-page-header-shapes .lrl-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(98,8,188,0.08), rgba(168,85,247,0.05));
    top: -50px;
    right: -50px;
}

.lrl-page-header-shapes .lrl-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168,85,247,0.06), rgba(59,130,246,0.04));
    bottom: -30px;
    left: 10%;
}

.lrl-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: 15px;
    font-weight: 500;
}

.lrl-breadcrumb li a {
    color: var(--lrl-purple);
    text-decoration: none;
    transition: opacity 0.2s;
}

.lrl-breadcrumb li a:hover { opacity: 0.7; }

.lrl-breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: var(--lrl-text-muted);
}

.lrl-breadcrumb li.active {
    color: var(--lrl-text-muted);
}

.lrl-page-header-content h1 {
    font-family: 'Gilroy', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--lrl-text);
    margin-bottom: 12px;
}

.lrl-page-header-content p {
    color: var(--lrl-text-muted);
    font-size: 18px;
    margin: 0;
}


/* --- About Story Section --- */
.lrl-about-story {
    padding: 100px 0;
}

.lrl-about-img-wrapper {
    position: relative;
    display: inline-block;
}

.lrl-about-img {
    width: 100%;
    border-radius: var(--lrl-radius-lg);
    box-shadow: var(--lrl-shadow-xl);
}

.lrl-about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--lrl-purple), var(--lrl-purple-light));
    color: #fff;
    padding: 20px 28px;
    border-radius: var(--lrl-radius);
    text-align: center;
    box-shadow: 0 8px 24px rgba(98,8,188,0.3);
}

.lrl-about-img-badge strong {
    display: block;
    font-family: 'Gilroy', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.lrl-about-img-badge span {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.lrl-section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--lrl-purple);
    background: var(--lrl-bg-purple);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.lrl-section-tag i {
    margin-right: 6px;
}

.lrl-tag-light {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.lrl-about-text h2 {
    font-family: 'Gilroy', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--lrl-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.lrl-about-text p {
    color: var(--lrl-text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.lrl-about-highlights {
    display: flex;
    gap: 24px;
    margin-top: 28px;
}

.lrl-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lrl-highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--lrl-bg-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--lrl-purple);
    flex-shrink: 0;
}

.lrl-highlight-item strong {
    display: block;
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--lrl-text);
}

.lrl-highlight-item span {
    font-size: 13px;
    color: var(--lrl-text-muted);
}


/* --- Mission & Vision Cards --- */
.lrl-mission-vision {
    padding: 100px 0;
    background: var(--lrl-bg-purple);
}

.lrl-mv-card {
    background: #fff;
    border-radius: var(--lrl-radius-lg);
    padding: 40px 36px;
    height: 100%;
    box-shadow: var(--lrl-shadow);
    border: 1px solid var(--lrl-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lrl-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lrl-shadow-lg);
}

.lrl-mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.lrl-mv-mission .lrl-mv-icon {
    background: linear-gradient(135deg, var(--lrl-purple), var(--lrl-purple-light));
    color: #fff;
}

.lrl-mv-vision .lrl-mv-icon {
    background: linear-gradient(135deg, var(--lrl-emerald), #34d399);
    color: #fff;
}

.lrl-mv-card h3 {
    font-family: 'Gilroy', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--lrl-text);
    margin-bottom: 14px;
}

.lrl-mv-card p {
    color: var(--lrl-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.lrl-mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lrl-mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lrl-text);
    font-weight: 500;
    padding: 8px 0;
    border-top: 1px solid var(--lrl-border);
}

.lrl-mv-list li i {
    color: var(--lrl-emerald);
    font-size: 14px;
}


/* --- About Why Us (Dark section with numbered cards) --- */
.lrl-about-why-us {
    padding: 100px 0;
}

.lrl-why-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lrl-radius);
    padding: 36px 28px;
    height: 100%;
    transition: transform 0.3s, background 0.3s;
    overflow: hidden;
}

.lrl-why-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.07);
}

.lrl-why-card-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Gilroy', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
}

.lrl-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(98,8,188,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--lrl-purple-light);
    margin-bottom: 20px;
}

.lrl-why-card h4 {
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.lrl-why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* --- Values Section --- */
.lrl-values {
    padding: 100px 0;
}

.lrl-value-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--lrl-radius);
    border: 1px solid var(--lrl-border);
    background: #fff;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lrl-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lrl-shadow-lg);
}

.lrl-value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}

.lrl-value-card h5 {
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--lrl-text);
    margin-bottom: 10px;
}

.lrl-value-card p {
    color: var(--lrl-text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* --- Academy Stats Bar --- */
.lrl-about-stats {
    background: linear-gradient(135deg, var(--lrl-purple) 0%, var(--lrl-purple-light) 100%);
    padding: 50px 0;
}

.lrl-about-stat-item {
    color: #fff;
}

.lrl-about-stat-item i {
    font-size: 28px;
    opacity: 0.7;
    margin-bottom: 10px;
    display: block;
}

.lrl-about-stat-item strong {
    font-family: 'Gilroy', sans-serif;
    font-size: 40px;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

.lrl-about-stat-item span {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}


/* --- Learning Approach Cards --- */
.lrl-approach {
    padding: 100px 0;
    background: var(--lrl-bg-soft);
}

.lrl-approach-card {
    position: relative;
    background: #fff;
    border-radius: var(--lrl-radius-lg);
    padding: 36px 24px 28px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--lrl-border);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.lrl-approach-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lrl-shadow-xl);
}

.lrl-approach-step-num {
    position: absolute;
    top: 12px;
    left: 16px;
    font-family: 'Gilroy', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--lrl-purple-light);
    background: var(--lrl-bg-purple);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lrl-approach-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin: 0 auto 20px;
}

.lrl-approach-card h4 {
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--lrl-text);
    margin-bottom: 8px;
}

.lrl-approach-card p {
    color: var(--lrl-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


/* --- Testimonials --- */
.lrl-testimonials-section {
    padding: 100px 0;
    background: var(--lrl-bg-soft);
}

.lrl-testimonial-card {
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: var(--lrl-radius-lg);
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lrl-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lrl-shadow-lg);
}

.lrl-testimonial-featured {
    background: linear-gradient(135deg, var(--lrl-purple), var(--lrl-purple-light));
    border-color: transparent;
    color: #fff;
}

.lrl-testimonial-featured p { color: rgba(255,255,255,0.9); }
.lrl-testimonial-featured strong { color: #fff; }
.lrl-testimonial-featured span { color: rgba(255,255,255,0.7); }
.lrl-testimonial-featured .lrl-testimonial-stars i { color: #fbbf24; }

.lrl-testimonial-stars {
    margin-bottom: 16px;
}

.lrl-testimonial-stars i {
    color: var(--lrl-amber);
    font-size: 14px;
    margin-right: 2px;
}

.lrl-testimonial-card > p {
    color: var(--lrl-text-muted);
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.lrl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lrl-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lrl-bg-purple);
    color: var(--lrl-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.lrl-testimonial-featured .lrl-testimonial-avatar {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.lrl-testimonial-author strong {
    display: block;
    font-family: 'Gilroy', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--lrl-text);
}

.lrl-testimonial-author span {
    font-size: 13px;
    color: var(--lrl-text-muted);
}


/* --- Course Categories (About page dark section) --- */
.lrl-about-courses {
    padding: 100px 0;
}

.lrl-about-course-cat {
    display: block;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--lrl-radius);
    padding: 28px 24px;
    text-align: center;
    text-decoration: none;
    height: 100%;
    transition: transform 0.3s, background 0.3s;
    position: relative;
}

.lrl-about-course-cat:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.08);
}

.lrl-acc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 16px;
}

.lrl-about-course-cat h5 {
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.lrl-about-course-cat span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.lrl-acc-arrow {
    margin-top: 14px;
    color: var(--lrl-purple-light);
    font-size: 14px;
    transition: transform 0.2s;
}

.lrl-about-course-cat:hover .lrl-acc-arrow {
    transform: translateX(4px);
}


/* --- About Page Responsive --- */
@media (max-width: 991px) {
    .lrl-page-header { padding: 140px 0 60px; }
    .lrl-page-header-content h1 { font-size: 36px; }
    .lrl-about-story,
    .lrl-mission-vision,
    .lrl-about-why-us,
    .lrl-values,
    .lrl-approach,
    .lrl-testimonials-section,
    .lrl-about-courses { padding: 70px 0; }
    .lrl-about-text h2 { font-size: 30px; }
    .lrl-about-highlights { flex-direction: column; gap: 16px; }
    .lrl-about-stat-item strong { font-size: 32px; }
}

@media (max-width: 767px) {
    .lrl-page-header-content h1 { font-size: 30px; }
    .lrl-about-img-badge { right: 10px; bottom: -10px; padding: 14px 20px; }
    .lrl-about-img-badge strong { font-size: 28px; }
    .lrl-about-stats { padding: 36px 0; }
    .lrl-about-stat-item { margin-bottom: 16px; }
}

@media (max-width: 575px) {
    .lrl-page-header { padding: 120px 0 50px; }
    .lrl-page-header-content h1 { font-size: 26px; }
    .lrl-about-stat-item strong { font-size: 28px; }
}


/* ==========================================================================
   COURSES PAGE — Filter Tabs, Course Listing Cards, Enroll Banner
   ========================================================================== */

/* --- Filter Tabs --- */
.lrl-courses-listing {
    padding: 80px 0 100px;
}

.lrl-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.lrl-filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--lrl-border);
    border-radius: 100px;
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--lrl-text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.lrl-filter-btn:hover {
    border-color: var(--lrl-purple-light);
    color: var(--lrl-purple);
}

.lrl-filter-btn.active {
    background: var(--lrl-purple);
    border-color: var(--lrl-purple);
    color: #fff;
}


/* --- Course Listing Card --- */
.lrl-course-listing-card {
    border-radius: var(--lrl-radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--lrl-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lrl-course-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lrl-shadow-xl);
}

.lrl-clc-header {
    position: relative;
    padding: 28px 24px 24px;
    color: #fff;
    overflow: hidden;
}

.lrl-clc-icon-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 90px;
    opacity: 0.12;
    transform: rotate(-15deg);
}

.lrl-clc-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.lrl-clc-header h3 {
    font-family: 'Gilroy', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.lrl-clc-header p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}

.lrl-clc-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lrl-clc-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.lrl-clc-meta span {
    font-size: 13px;
    font-weight: 500;
    color: var(--lrl-text-muted);
}

.lrl-clc-meta span i {
    margin-right: 5px;
    color: var(--lrl-purple);
}

.lrl-clc-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.lrl-clc-topics li {
    font-size: 14px;
    color: var(--lrl-text);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.lrl-clc-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lrl-emerald);
    font-weight: 700;
    font-size: 13px;
}

.lrl-clc-price {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--lrl-border);
}

.lrl-clc-price-tag {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: var(--lrl-bg-purple);
    border-radius: 10px;
}

.lrl-clc-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lrl-text-muted);
    margin-bottom: 2px;
}

.lrl-clc-price-tag strong {
    font-family: 'Gilroy', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--lrl-purple);
}


/* --- Enroll Banner --- */
.lrl-enroll-banner {
    padding: 0 0 100px;
}

.lrl-enroll-box {
    background: linear-gradient(135deg, var(--lrl-purple) 0%, var(--lrl-purple-light) 100%);
    border-radius: var(--lrl-radius-lg);
    padding: 50px 48px;
    color: #fff;
}

.lrl-enroll-box h2 {
    font-family: 'Gilroy', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.lrl-enroll-box > .row > .col-lg-5 > p {
    font-size: 16px;
    opacity: 0.85;
    margin: 0;
}

.lrl-enroll-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.lrl-enroll-feat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lrl-enroll-feat > i {
    font-size: 28px;
    opacity: 0.8;
}

.lrl-enroll-feat strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.lrl-enroll-feat span {
    font-size: 13px;
    opacity: 0.75;
}


/* --- Course Listing Card — hidden state for filter --- */
.lrl-course-item.lrl-hidden {
    display: none;
}


/* --- Courses Page Responsive --- */
@media (max-width: 991px) {
    .lrl-courses-listing { padding: 60px 0 80px; }
    .lrl-enroll-box { padding: 36px 28px; }
    .lrl-enroll-box h2 { font-size: 26px; }
    .lrl-enroll-features { gap: 16px; }
}

@media (max-width: 575px) {
    .lrl-filter-tabs { gap: 6px; }
    .lrl-filter-btn { padding: 8px 16px; font-size: 12px; }
    .lrl-clc-header h3 { font-size: 20px; }
    .lrl-clc-price-tag strong { font-size: 16px; }
    .lrl-enroll-features { flex-direction: column; }
}


/* ==========================================================================
   CONTACT PAGE — Info Cards, Form, Map, Social Box
   ========================================================================== */

/* --- Contact Info Cards --- */
.lrl-contact-info {
    padding: 80px 0 0;
}

.lrl-contact-card {
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: var(--lrl-radius-lg);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lrl-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lrl-shadow-lg);
}

.lrl-contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}

.lrl-contact-card h4 {
    font-family: 'Gilroy', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--lrl-text);
    margin-bottom: 8px;
}

.lrl-contact-card p {
    color: var(--lrl-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.lrl-contact-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--lrl-purple);
    text-decoration: none;
    transition: color 0.2s;
}

.lrl-contact-link:hover { color: var(--lrl-purple-dark); }
.lrl-contact-link i { margin-left: 4px; font-size: 12px; }


/* --- Contact Form Section --- */
.lrl-contact-main {
    padding: 80px 0 100px;
}

.lrl-contact-form-wrapper h2 {
    font-family: 'Gilroy', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--lrl-text);
    margin-bottom: 8px;
}

.lrl-form-group {
    margin-bottom: 4px;
}

.lrl-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--lrl-text);
    margin-bottom: 6px;
}

.lrl-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--lrl-border);
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: var(--lrl-text);
    background: var(--lrl-bg-soft);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.lrl-form-control:focus {
    border-color: var(--lrl-purple-light);
    box-shadow: 0 0 0 3px rgba(98,8,188,0.08);
}

.lrl-form-control::placeholder {
    color: var(--lrl-text-muted);
    opacity: 0.7;
}

textarea.lrl-form-control {
    resize: vertical;
    min-height: 120px;
}

select.lrl-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236b7280'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}


/* --- Map Wrapper --- */
.lrl-map-wrapper {
    margin-bottom: 28px;
    border-radius: var(--lrl-radius-lg);
    overflow: hidden;
    box-shadow: var(--lrl-shadow);
}

.lrl-map-wrapper iframe {
    display: block;
}


/* --- Contact Social Box --- */
.lrl-contact-social-box {
    background: var(--lrl-bg-purple);
    border-radius: var(--lrl-radius-lg);
    padding: 32px 28px;
}

.lrl-contact-social-box h4 {
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--lrl-text);
    margin-bottom: 8px;
}

.lrl-contact-social-box p {
    color: var(--lrl-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.lrl-social-lg a {
    width: 44px;
    height: 44px;
    font-size: 18px;
}


/* --- Contact Page Responsive --- */
@media (max-width: 991px) {
    .lrl-contact-info { padding: 60px 0 0; }
    .lrl-contact-main { padding: 60px 0 80px; }
    .lrl-contact-form-wrapper h2 { font-size: 28px; }
}


/* ==========================================================================
   BLOG PAGE — Blog Cards
   ========================================================================== */

.lrl-blog-listing {
    padding: 80px 0 100px;
}

.lrl-blog-card {
    background: #fff;
    border-radius: var(--lrl-radius-lg);
    overflow: hidden;
    border: 1px solid var(--lrl-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lrl-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lrl-shadow-xl);
}

.lrl-blog-img-link {
    display: block;
    overflow: hidden;
}

.lrl-blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.lrl-blog-card:hover .lrl-blog-img {
    transform: scale(1.05);
}

.lrl-blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lrl-blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.lrl-blog-meta span {
    font-size: 13px;
    color: var(--lrl-text-muted);
    font-weight: 500;
}

.lrl-blog-meta span i {
    margin-right: 5px;
    color: var(--lrl-purple-light);
}

.lrl-blog-body h3 {
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.lrl-blog-body h3 a {
    color: var(--lrl-text);
    text-decoration: none;
    transition: color 0.2s;
}

.lrl-blog-body h3 a:hover {
    color: var(--lrl-purple);
}

.lrl-blog-body p {
    color: var(--lrl-text-muted);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.lrl-blog-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--lrl-purple);
    text-decoration: none;
    transition: color 0.2s;
}

.lrl-blog-read-more:hover { color: var(--lrl-purple-dark); }
.lrl-blog-read-more i { margin-left: 4px; font-size: 12px; }


/* ==========================================================================
   INDIVIDUAL COURSE PAGE — Course Detail Layout
   ========================================================================== */

.lrl-course-detail {
    padding: 80px 0 100px;
}

.lrl-course-overview h2 {
    font-family: 'Gilroy', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--lrl-text);
    margin-bottom: 16px;
}

.lrl-course-overview p {
    color: var(--lrl-text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.lrl-course-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.lrl-course-hl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--lrl-bg-purple);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lrl-text);
}

.lrl-course-hl-item i {
    color: var(--lrl-purple);
    font-size: 16px;
}

/* Curriculum list */
.lrl-curriculum {
    margin-top: 36px;
}

.lrl-curriculum h3 {
    font-family: 'Gilroy', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--lrl-text);
    margin-bottom: 20px;
}

.lrl-curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lrl-curriculum-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--lrl-border);
    font-size: 15px;
    color: var(--lrl-text);
    font-weight: 500;
}

.lrl-curriculum-list li i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--lrl-bg-purple);
    color: var(--lrl-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* Course Sidebar */
.lrl-course-sidebar {
    position: sticky;
    top: 120px;
}

.lrl-course-price-card {
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: var(--lrl-radius-lg);
    overflow: hidden;
    box-shadow: var(--lrl-shadow-lg);
}

.lrl-course-price-header {
    background: linear-gradient(135deg, var(--lrl-purple), var(--lrl-purple-light));
    padding: 28px 24px;
    color: #fff;
    text-align: center;
}

.lrl-course-price-header h3 {
    font-family: 'Gilroy', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.lrl-course-price-header p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.lrl-course-price-body {
    padding: 24px;
}

.lrl-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--lrl-border);
    font-size: 15px;
}

.lrl-price-row:last-child { border-bottom: none; }

.lrl-price-label {
    color: var(--lrl-text-muted);
    font-weight: 500;
}

.lrl-price-value {
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    color: var(--lrl-text);
}

.lrl-price-value.lrl-price-big {
    font-size: 24px;
    color: var(--lrl-purple);
}

.lrl-course-price-body .lrl-btn {
    margin-top: 20px;
}

/* Course Tools Section */
.lrl-course-tools {
    padding: 80px 0;
    background: var(--lrl-bg-purple);
}

.lrl-tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.lrl-tool-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--lrl-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lrl-tool-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--lrl-shadow);
}

.lrl-tool-badge img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.lrl-tool-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--lrl-text);
}

/* Course Detail Responsive */
@media (max-width: 991px) {
    .lrl-course-detail { padding: 60px 0 80px; }
    .lrl-course-overview h2 { font-size: 28px; }
    .lrl-course-sidebar { position: static; margin-top: 32px; }
}

@media (max-width: 575px) {
    .lrl-course-highlights { flex-direction: column; }
}


/* ==========================================================================
   UNIQUE COURSE PAGE VARIANTS — Creative Layouts
   ========================================================================== */

/* --- Course Hero Variant: Split (image left, text right) --- */
.lrl-course-hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.lrl-course-hero .container { position: relative; z-index: 1; }
.lrl-course-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.lrl-course-hero h1 {
    font-family: 'Gilroy', sans-serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
}
.lrl-course-hero p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.lrl-course-hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 28px;
}
.lrl-course-hero-stat {
    text-align: center;
}
.lrl-course-hero-stat .num {
    font-family: 'Gilroy', sans-serif;
    font-size: 28px;
    font-weight: 800;
    display: block;
}
.lrl-course-hero-stat .label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* --- Course Info Bar (icon + value strips) --- */
.lrl-course-info-bar {
    padding: 0;
    margin: -40px 0 0;
    position: relative;
    z-index: 2;
}
.lrl-course-info-strip {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}
.lrl-info-item {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-right: 1px solid var(--lrl-border);
}
.lrl-info-item:last-child { border-right: none; }
.lrl-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.lrl-info-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--lrl-text);
}
.lrl-info-item span {
    font-size: 12px;
    color: var(--lrl-text-muted);
}

/* --- What You'll Learn Grid (icon cards) --- */
.lrl-learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.lrl-learn-card {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lrl-learn-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lrl-shadow-lg);
}
.lrl-learn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.lrl-learn-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--lrl-text);
    margin-bottom: 4px;
}
.lrl-learn-card p {
    font-size: 13px;
    color: var(--lrl-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* --- Curriculum Timeline (vertical) --- */
.lrl-curriculum-timeline {
    position: relative;
    padding-left: 36px;
    margin-top: 32px;
}
.lrl-curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--lrl-border);
}
.lrl-timeline-item {
    position: relative;
    padding: 16px 0 16px 24px;
    border-bottom: none;
}
.lrl-timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid;
    background: #fff;
}
.lrl-timeline-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--lrl-text);
    margin-bottom: 4px;
}
.lrl-timeline-item p {
    font-size: 13px;
    color: var(--lrl-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- Curriculum Accordion --- */
.lrl-accordion-item {
    border: 1px solid var(--lrl-border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.lrl-accordion-item:hover { box-shadow: var(--lrl-shadow); }
.lrl-accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--lrl-text);
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
}
.lrl-accordion-header .num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
}
.lrl-accordion-header .chevron {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s;
    color: var(--lrl-text-muted);
}
.lrl-accordion-item.active .chevron { transform: rotate(180deg); }
.lrl-accordion-body {
    padding: 0 20px 16px 64px;
    font-size: 14px;
    color: var(--lrl-text-muted);
    line-height: 1.7;
    display: none;
}
.lrl-accordion-item.active .lrl-accordion-body { display: block; }

/* --- Numbered Steps (for approach/methodology) --- */
.lrl-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.lrl-step-card {
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.lrl-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lrl-shadow-lg);
}
.lrl-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 16px;
}
.lrl-step-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--lrl-text);
    margin-bottom: 8px;
}
.lrl-step-card p {
    font-size: 13px;
    color: var(--lrl-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- Career Outcomes / Why This Course --- */
.lrl-outcomes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.lrl-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--lrl-border);
}
.lrl-outcome-item i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.lrl-outcome-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--lrl-text);
    line-height: 1.5;
}

/* --- Instructor / Feature Box --- */
.lrl-feature-box {
    background: #fff;
    border: 1px solid var(--lrl-border);
    border-radius: 16px;
    padding: 28px;
    margin-top: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.lrl-feature-box-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}
.lrl-feature-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.lrl-feature-box p {
    font-size: 13px;
    color: var(--lrl-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- FAQ Section (course pages) --- */
.lrl-faq-list {
    margin-top: 24px;
}
.lrl-faq-item {
    border: 1px solid var(--lrl-border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}
.lrl-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--lrl-text);
    text-align: left;
}
.lrl-faq-question i { transition: transform 0.3s; font-size: 12px; color: var(--lrl-text-muted); }
.lrl-faq-item.active .lrl-faq-question i { transform: rotate(180deg); }
.lrl-faq-answer {
    padding: 0 20px 16px;
    font-size: 14px;
    color: var(--lrl-text-muted);
    line-height: 1.7;
    display: none;
}
.lrl-faq-item.active .lrl-faq-answer { display: block; }

/* --- Dark Banner / Promo Section --- */
.lrl-course-promo {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.lrl-course-promo .container { position: relative; z-index: 1; }
.lrl-course-promo h2 {
    font-family: 'Gilroy', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.lrl-course-promo p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}
.lrl-promo-stats {
    display: flex;
    gap: 40px;
    margin-top: 28px;
}
.lrl-promo-stat {
    text-align: center;
}
.lrl-promo-stat .num {
    font-family: 'Gilroy', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    display: block;
}
.lrl-promo-stat .label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* --- Course Page Variant Responsive --- */
@media (max-width: 991px) {
    .lrl-course-hero h1 { font-size: 34px; }
    .lrl-course-hero-stats { gap: 20px; flex-wrap: wrap; }
    .lrl-info-item { padding: 16px 18px; }
    .lrl-learn-grid { grid-template-columns: 1fr; }
    .lrl-steps-grid { grid-template-columns: 1fr 1fr; }
    .lrl-outcomes { grid-template-columns: 1fr; }
    .lrl-promo-stats { flex-wrap: wrap; gap: 24px; }
    .lrl-course-info-bar { margin: -30px 15px 0; }
    .lrl-info-strip { flex-direction: column; }
    .lrl-info-item { border-right: none; border-bottom: 1px solid var(--lrl-border); }
    .lrl-info-item:last-child { border-bottom: none; }
}
@media (max-width: 767px) {
    .lrl-course-hero { padding: 60px 0; }
    .lrl-course-hero h1 { font-size: 28px; }
    .lrl-course-hero p { font-size: 15px; }
    .lrl-course-hero-stat .num { font-size: 22px; }
    .lrl-steps-grid { grid-template-columns: 1fr; }
    .lrl-feature-box { flex-direction: column; text-align: center; }
    .lrl-course-promo h2 { font-size: 26px; }
    .lrl-promo-stats { flex-direction: column; gap: 16px; }
    .lrl-info-strip { border-radius: 12px; }
    .lrl-course-info-bar { margin: -20px 10px 0; }
}
@media (max-width: 575px) {
    .lrl-course-hero { padding: 50px 0; }
    .lrl-course-hero h1 { font-size: 24px; }
    .lrl-course-hero-stats { gap: 16px; }
    .lrl-learn-card { padding: 16px; }
    .lrl-accordion-body { padding-left: 52px; }
    .lrl-course-promo { padding: 50px 0; }
    .lrl-course-promo h2 { font-size: 22px; }
}


/* ==========================================================================
   COMPREHENSIVE MOBILE OPTIMIZATION — All Pages
   ========================================================================== */

/* ---- Tablet (max-width: 991px) ---- */
@media (max-width: 991px) {
    /* Global section padding */
    .lrl-section { padding: 70px 0; }

    /* Section headers */
    .lrl-section-header h2 { font-size: 28px; }
    .lrl-section-header p { font-size: 15px; }

    /* Buttons */
    .lrl-btn { padding: 11px 20px; font-size: 13px; }
    .lrl-btn-lg { padding: 14px 28px; font-size: 15px; }

    /* Hero section */
    .lrl-hero-text h1 { font-size: 38px; }
    .lrl-badge { font-size: 12px; }

    /* Stats bar */
    .lrl-stats-bar { padding: 24px 0; gap: 0; }

    /* Course cards on home */
    .lrl-course-card-header { padding: 18px 20px; }
    .lrl-course-card-body { padding: 20px; }

    /* Why us section home */
    .lrl-why { padding: 70px 0; }
    .lrl-why h2 { font-size: 30px; }
    .lrl-features-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Journey timeline home */
    .lrl-timeline::before { left: 24px; }
    .lrl-timeline-item { padding-left: 60px; }
    .lrl-timeline-num { left: 0; }

    /* Footer */
    .lrl-footer { padding: 60px 0 0; }
    .lrl-footer-bottom { margin-top: 40px; }

    /* Enroll banner */
    .lrl-enroll-box { padding: 36px 24px; }
    .lrl-enroll-box h2 { font-size: 24px; }
}

/* ---- Mobile (max-width: 767px) ---- */
@media (max-width: 767px) {
    /* Global */
    .lrl-section { padding: 56px 0; }
    .lrl-section-header h2 { font-size: 26px; }
    .lrl-section-tag { font-size: 12px; padding: 5px 12px; }

    /* Hero */
    .lrl-hero { padding: 40px 0 50px; }
    .lrl-hero-text h1 { font-size: 32px; line-height: 1.2; }
    .lrl-hero-text p { font-size: 15px; }
    .lrl-hero-btns { flex-direction: column; gap: 12px; }
    .lrl-hero-btns .lrl-btn { width: 100%; justify-content: center; }
    .lrl-hero-shapes { display: none; }

    /* Stats bar */
    .lrl-stats-bar { flex-wrap: wrap; justify-content: center; border-radius: 0; margin-top: 0; }
    .lrl-stat-item { width: 50%; text-align: center; padding: 16px 8px; }
    .lrl-stat-item strong { font-size: 28px; }
    .lrl-stat-item span { font-size: 12px; }

    /* Course section home */
    .lrl-course-card-tools img { width: 24px; height: 24px; }

    /* Why us home */
    .lrl-why-numbers { flex-direction: column; gap: 12px; }
    .lrl-why-desc { font-size: 14px; }
    .lrl-feature-card { padding: 20px; }
    .lrl-feature-card h4 { font-size: 16px; }

    /* Journey home */
    .lrl-timeline-item h4 { font-size: 18px; }

    /* Success section home */
    .lrl-success-card { padding: 24px 20px; }
    .lrl-success-metric { font-size: 32px; }

    /* CTA box */
    .lrl-cta-box { padding: 32px 20px; }
    .lrl-cta-box h2 { font-size: 24px; }
    .lrl-cta-box .lrl-btn { width: 100%; justify-content: center; margin: 6px 0; }

    /* Page header (inner pages) */
    .lrl-page-header { padding: 130px 0 50px; }
    .lrl-page-header-content h1 { font-size: 28px; }
    .lrl-page-header-content p { font-size: 15px; }
    .lrl-page-header-shapes { display: none; }

    /* About story */
    .lrl-about-text h2 { font-size: 26px; }
    .lrl-about-img-badge { right: 10px; bottom: -10px; padding: 14px 18px; }
    .lrl-about-img-badge strong { font-size: 26px; }

    /* About stats */
    .lrl-about-stats { padding: 32px 0; }
    .lrl-about-stat-item strong { font-size: 30px; }
    .lrl-about-stat-item span { font-size: 12px; }
    .lrl-about-stat-item i { font-size: 22px; }

    /* Approach cards */
    .lrl-approach-card h4 { font-size: 18px; }

    /* Mission/Vision */
    .lrl-mv-card { padding: 28px 22px; }
    .lrl-mv-card h3 { font-size: 22px; }

    /* Testimonials */
    .lrl-testimonial-card { padding: 24px 20px; }

    /* Course categories (about dark section) */
    .lrl-about-course-cat { padding: 22px 18px; }

    /* Courses listing */
    .lrl-courses-listing { padding: 50px 0 70px; }
    .lrl-filter-tabs { gap: 6px; }
    .lrl-filter-btn { padding: 8px 14px; font-size: 12px; }
    .lrl-clc-header { padding: 22px 20px 18px; }
    .lrl-clc-header h3 { font-size: 20px; }
    .lrl-clc-body { padding: 20px; }
    .lrl-clc-price { flex-direction: column; gap: 8px; }

    /* Contact page */
    .lrl-contact-card { padding: 28px 20px; }
    .lrl-contact-form-wrapper h2 { font-size: 26px; }
    .lrl-form-control { padding: 11px 14px; font-size: 14px; }

    /* Blog */
    .lrl-blog-img { height: 180px; }
    .lrl-blog-body h3 { font-size: 18px; }

    /* Course detail */
    .lrl-course-overview h2 { font-size: 24px; }
    .lrl-curriculum h3 { font-size: 20px; }
    .lrl-course-price-header h3 { font-size: 18px; }
    .lrl-tools-grid { gap: 10px; }
    .lrl-tool-badge { padding: 10px 14px; }
    .lrl-tool-badge img { width: 26px; height: 26px; }
    .lrl-tool-badge span { font-size: 12px; }

    /* Footer */
    .lrl-footer { padding: 50px 0 0; }
    .lrl-footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- Small Mobile (max-width: 575px) ---- */
@media (max-width: 575px) {
    /* Hero */
    .lrl-hero-text h1 { font-size: 28px; }
    .lrl-badge { font-size: 11px; padding: 6px 12px; }

    /* Page header */
    .lrl-page-header { padding: 115px 0 40px; }
    .lrl-page-header-content h1 { font-size: 24px; }
    .lrl-breadcrumb { font-size: 13px; }

    /* Stats */
    .lrl-stat-item strong { font-size: 24px; }
    .lrl-about-stat-item strong { font-size: 26px; }

    /* Section headers */
    .lrl-section-header h2 { font-size: 24px; }

    /* Course cards */
    .lrl-clc-icon-bg { font-size: 60px; }

    /* Buttons full width on small mobile */
    .lrl-cta-box .col-lg-5 .lrl-btn { width: 100%; justify-content: center; margin: 6px 0; }

    /* Approach step */
    .lrl-approach-step-num { width: 28px; height: 28px; font-size: 12px; }

    /* About highlights */
    .lrl-about-highlights { flex-direction: column; gap: 14px; }

    /* Enroll banner features */
    .lrl-enroll-features { flex-direction: column; gap: 14px; }

    /* Blog */
    .lrl-blog-listing { padding: 50px 0 70px; }
    .lrl-blog-img { height: 160px; }

    /* Contact */
    .lrl-contact-info { padding: 50px 0 0; }
    .lrl-contact-main { padding: 50px 0 70px; }

    /* Course detail */
    .lrl-course-detail { padding: 50px 0 70px; }
    .lrl-course-tools { padding: 50px 0; }
    .lrl-course-overview h2 { font-size: 22px; }
    .lrl-price-value.lrl-price-big { font-size: 20px; }
}

/* ---- Fix: overflow prevention on all pages ---- */
html, body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Fix: lrl-btn-outline-white missing ---- */
.lrl-btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.lrl-btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: #fff;
}

/* ---- Fix: lrl-btn-lg sizing ---- */
.lrl-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}
