/* Lord Buddha Academy — Design System */
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --lba-red: #ff2c2c;
    --lba-blue: #1548ff;
    --lba-dark: #110C2D;
    --lba-footer: #181818;
    --lba-text: #737477;
    --lba-heading: #30373E;
    --lba-white: #FFFFFF;
    --lba-success: #3EB75E;
    --lba-warning: #FF8F3C;
    --lba-info: #1BA2DB;
    --lba-light: #F8F9FA;
    --lba-border: #E8E8EC;
    --lba-radius: 8px;
    --lba-radius-lg: 12px;
    --lba-shadow: 0 4px 12px rgba(17, 12, 45, 0.08);
    --lba-shadow-lg: 0 8px 24px rgba(17, 12, 45, 0.12);
    --lba-font-heading: 'Hind', sans-serif;
    --lba-font-body: 'Inter', sans-serif;
    --lba-apply-url: #;
}

*, *::before, *::after { box-sizing: border-box; }

body.lba-body {
    font-family: var(--lba-font-body);
    color: var(--lba-text);
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 0;
}

body.lba-body.has-mobile-bar { padding-bottom: 64px; }

h1, h2, h3, h4, h5, h6,
.lba-h1, .lba-h2, .lba-h3, .lba-h4 {
    font-family: var(--lba-font-heading);
    color: var(--lba-heading);
    line-height: 1.25;
}

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

.lba-section { padding: 80px 0; }
.lba-section--light { background: var(--lba-light); }
.lba-section--dark { background: var(--lba-dark); color: rgba(255,255,255,0.85); }
.lba-section--dark h2, .lba-section--dark h3 { color: var(--lba-white); }

.lba-section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.lba-section-header h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.lba-section-header p { font-size: 17px; margin: 0; }

.lba-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lba-blue);
    margin-bottom: 12px;
}

/* Buttons */
.lba-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--lba-radius);
    font-family: var(--lba-font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lba-btn--primary { background: var(--lba-red); color: var(--lba-white); }
.lba-btn--primary:hover { background: #e02525; color: var(--lba-white); transform: translateY(-1px); box-shadow: var(--lba-shadow); }

.lba-btn--secondary { background: var(--lba-blue); color: var(--lba-white); }
.lba-btn--secondary:hover { background: #1240e0; color: var(--lba-white); transform: translateY(-1px); }

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

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

.lba-btn--call { background: var(--lba-success); color: var(--lba-white); }
.lba-btn--call:hover { background: #359e52; color: var(--lba-white); }

.lba-btn--sm { padding: 8px 18px; font-size: 13px; }

/* Utility Bar */
.lba-utility {
    background: var(--lba-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
}

.lba-utility__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.lba-utility__left, .lba-utility__right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lba-utility a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.lba-utility a:hover { color: var(--lba-white); }

.lba-utility__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,44,44,0.15);
    color: #ff8a8a;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.lba-utility__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--lba-red);
    border-radius: 50%;
    animation: lba-pulse 2s infinite;
}

@keyframes lba-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Header */
.lba-header {
    background: var(--lba-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(17,12,45,0.06);
    transition: box-shadow 0.2s;
}

.lba-header.is-scrolled { box-shadow: var(--lba-shadow); }

.lba-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.lba-header__logo img { height: 48px; width: auto; }

.lba-nav { display: flex; align-items: center; gap: 4px; }

.lba-nav__item { position: relative; }

.lba-nav__link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--lba-heading);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--lba-font-body);
}

.lba-nav__link:hover, .lba-nav__item.is-open > .lba-nav__link {
    color: var(--lba-blue);
    background: rgba(21,72,255,0.06);
}

.lba-nav__link i { font-size: 11px; transition: transform 0.2s; }
.lba-nav__item.is-open > .lba-nav__link i { transform: rotate(180deg); }

.lba-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--lba-white);
    border-radius: var(--lba-radius-lg);
    box-shadow: var(--lba-shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
    z-index: 100;
}

.lba-nav__item:hover .lba-dropdown,
.lba-nav__item.is-open .lba-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lba-dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--lba-heading);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.15s;
}

.lba-dropdown a:hover { background: var(--lba-light); color: var(--lba-blue); }

/* Mega Menu */
.lba-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 720px;
    max-width: 90vw;
    background: var(--lba-white);
    border-radius: var(--lba-radius-lg);
    box-shadow: var(--lba-shadow-lg);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 100;
}

.lba-nav__item--mega:hover .lba-mega,
.lba-nav__item--mega.is-open .lba-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lba-mega__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.lba-mega__item {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-radius: var(--lba-radius);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.lba-mega__item:hover { background: var(--lba-light); }

.lba-mega__icon {
    width: 44px;
    height: 44px;
    background: rgba(21,72,255,0.1);
    color: var(--lba-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.lba-mega__item h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--lba-heading);
}

.lba-mega__item p {
    font-size: 13px;
    margin: 0;
    color: var(--lba-text);
    line-height: 1.4;
}

.lba-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lba-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.lba-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lba-heading);
    transition: all 0.2s;
}

/* Hero */
.lba-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--lba-dark);
}

.lba-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lba-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,12,45,0.88) 0%, rgba(17,12,45,0.65) 100%);
}

.lba-hero__content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
    max-width: 720px;
}

.lba-hero__content h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--lba-white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.lba-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}

.lba-hero__rotating {
    font-size: 16px;
    color: var(--lba-red);
    font-weight: 600;
    margin-bottom: 32px;
    min-height: 24px;
}

.lba-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.lba-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lba-stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--lba-radius-lg);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12);
}

.lba-stat__value {
    font-family: var(--lba-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--lba-white);
    line-height: 1;
    margin-bottom: 4px;
}

.lba-stat__value span { color: #6ea0ff; }

.lba-stat__label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* Quick Facts */
.lba-quick-facts {
    background: var(--lba-light);
    padding: 32px 0;
    border-bottom: 1px solid var(--lba-border);
}

.lba-quick-facts__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.lba-quick-fact {
    text-align: center;
    padding: 8px;
}

.lba-quick-fact__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    background: var(--lba-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lba-blue);
    font-size: 20px;
    box-shadow: var(--lba-shadow);
}

.lba-quick-fact h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--lba-heading);
}

.lba-quick-fact p {
    font-size: 12px;
    margin: 0;
    color: var(--lba-text);
}

/* Cards */
.lba-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.lba-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lba-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.lba-card {
    background: var(--lba-white);
    border-radius: var(--lba-radius-lg);
    overflow: hidden;
    box-shadow: var(--lba-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.lba-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--lba-light);
}

.lba-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.lba-card:hover .lba-card__image img { transform: scale(1.05); }

.lba-card__body { padding: 24px; }

.lba-card__body h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
}

.lba-card__body p {
    font-size: 14px;
    margin: 0 0 16px;
    line-height: 1.5;
}

.lba-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--lba-blue);
    text-decoration: none;
}

.lba-card__link:hover { color: var(--lba-red); }

/* Program Card */
.lba-program-card {
    background: var(--lba-white);
    border-radius: var(--lba-radius-lg);
    padding: 28px;
    box-shadow: var(--lba-shadow);
    border: 1px solid var(--lba-border);
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.lba-program-card:hover {
    border-color: var(--lba-blue);
    box-shadow: var(--lba-shadow-lg);
    transform: translateY(-4px);
}

.lba-program-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(21,72,255,0.1);
    color: var(--lba-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.lba-program-card h3 {
    font-size: 20px;
    margin: 0 0 8px;
}

.lba-program-card p {
    font-size: 14px;
    margin: 0 0 16px;
    line-height: 1.5;
}

/* Feature Grid */
.lba-feature {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--lba-white);
    border-radius: var(--lba-radius-lg);
    border: 1px solid var(--lba-border);
    transition: all 0.2s;
    height: 100%;
}

.lba-feature:hover {
    border-color: var(--lba-blue);
    box-shadow: var(--lba-shadow);
}

.lba-feature__check {
    width: 28px;
    height: 28px;
    background: rgba(62,183,94,0.12);
    color: var(--lba-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
}

.lba-feature__text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--lba-heading);
}

.lba-feature__text b { font-weight: 600; }

/* Message Cards */
.lba-message {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.lba-message-card {
    background: var(--lba-white);
    border-radius: var(--lba-radius-lg);
    overflow: hidden;
    box-shadow: var(--lba-shadow);
    display: flex;
    flex-direction: column;
}

.lba-message-card__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.lba-message-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lba-message-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    color: var(--lba-white);
    font-size: 48px;
    text-decoration: none;
    transition: background 0.2s;
}

.lba-message-card__play:hover { background: rgba(0,0,0,0.45); color: var(--lba-white); }

.lba-message-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.lba-message-card__body h3 { font-size: 22px; margin: 0 0 4px; }
.lba-message-card__role { font-size: 14px; color: var(--lba-blue); font-weight: 500; margin-bottom: 16px; }
.lba-message-card__body p { font-size: 15px; flex: 1; margin-bottom: 20px; }

/* Labs */
.lba-labs__slider { border-radius: var(--lba-radius-lg); overflow: hidden; }
.lba-labs__slider .slick-dots { bottom: 16px; }
.lba-labs__slider .slick-dots li button:before { color: #fff; opacity: 0.5; }
.lba-labs__slider .slick-dots li.slick-active button:before { color: #fff; opacity: 1; }
.lba-lab-slide {
    position: relative;
    min-height: 400px;
    display: flex !important;
    align-items: flex-end;
}

.lba-lab-slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lba-lab-slide__content {
    position: relative;
    z-index: 2;
    background: linear-gradient(transparent, rgba(17,12,45,0.9));
    padding: 48px 32px 32px;
    width: 100%;
    color: var(--lba-white);
}

.lba-lab-slide__content h3 { color: var(--lba-white); font-size: 28px; margin-bottom: 8px; }
.lba-lab-slide__content p { color: rgba(255,255,255,0.85); margin: 0; font-size: 15px; }

/* Events & Notices */
.lba-events-notices {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.lba-event-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--lba-white);
    border-radius: var(--lba-radius-lg);
    border: 1px solid var(--lba-border);
    margin-bottom: 12px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.lba-event-card:hover {
    border-left: 4px solid var(--lba-blue);
    box-shadow: var(--lba-shadow);
}

.lba-event-card__date {
    text-align: center;
    min-width: 56px;
    padding: 8px;
    background: rgba(21,72,255,0.08);
    border-radius: var(--lba-radius);
}

.lba-event-card__date strong {
    display: block;
    font-size: 22px;
    color: var(--lba-blue);
    line-height: 1;
}

.lba-event-card__date span { font-size: 12px; color: var(--lba-text); }

.lba-event-card h4 { font-size: 16px; margin: 0 0 6px; color: var(--lba-heading); }
.lba-event-card__meta { font-size: 13px; color: var(--lba-text); }
.lba-event-card__meta i { color: var(--lba-blue); margin-right: 4px; }

.lba-notice-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border-bottom: 1px solid var(--lba-border);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.lba-notice-item:hover { background: var(--lba-light); }

.lba-notice-item__date {
    min-width: 48px;
    text-align: center;
    background: var(--lba-red);
    color: var(--lba-white);
    border-radius: var(--lba-radius);
    padding: 8px 6px;
    flex-shrink: 0;
}

.lba-notice-item__date strong { display: block; font-size: 18px; line-height: 1; }
.lba-notice-item__date span { font-size: 11px; text-transform: uppercase; }

.lba-notice-item h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: var(--lba-heading);
    line-height: 1.4;
}

/* Admission Steps */
.lba-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.lba-step {
    text-align: center;
    position: relative;
}

.lba-step__num {
    width: 56px;
    height: 56px;
    background: var(--lba-blue);
    color: var(--lba-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lba-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.lba-step h4 { font-size: 17px; margin: 0 0 8px; }
.lba-step p { font-size: 14px; margin: 0; }

/* FAQ */
.lba-faq__item {
    border: 1px solid var(--lba-border);
    border-radius: var(--lba-radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.lba-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: var(--lba-white);
    border: none;
    cursor: pointer;
    font-family: var(--lba-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--lba-heading);
    text-align: left;
}

.lba-faq__question i { transition: transform 0.2s; color: var(--lba-blue); }
.lba-faq__item.is-open .lba-faq__question i { transform: rotate(180deg); }

.lba-faq__answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.6;
}

.lba-faq__item.is-open .lba-faq__answer { display: block; }

/* CTA Banner */
.lba-cta-banner {
    background: linear-gradient(135deg, var(--lba-blue) 0%, #0d36c4 100%);
    border-radius: var(--lba-radius-lg);
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lba-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/imgs/1.jpeg') center/cover;
    opacity: 0.12;
}

.lba-cta-banner > * { position: relative; z-index: 1; }

.lba-cta-banner h2 {
    color: var(--lba-white);
    font-size: 36px;
    margin-bottom: 12px;
}

.lba-cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 28px;
}

.lba-cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Contact Strip */
.lba-contact-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lba-contact-strip__map {
    border-radius: var(--lba-radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--lba-light);
}

.lba-contact-strip__map iframe { width: 100%; height: 100%; border: 0; }

.lba-contact-info { display: flex; flex-direction: column; gap: 16px; }

.lba-contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.lba-contact-info__icon {
    width: 44px;
    height: 44px;
    background: rgba(21,72,255,0.1);
    color: var(--lba-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lba-contact-info__item h4 { font-size: 14px; margin: 0 0 2px; color: var(--lba-text); font-weight: 500; }
.lba-contact-info__item p { font-size: 16px; margin: 0; color: var(--lba-heading); font-weight: 500; }
.lba-contact-info__item a { color: var(--lba-heading); text-decoration: none; }
.lba-contact-info__item a:hover { color: var(--lba-blue); }

/* Page Hero (inner pages) */
.lba-page-hero {
    background: linear-gradient(135deg, rgba(17,12,45,0.92), rgba(17,12,45,0.75)), url('/imgs/1.jpeg') center/cover;
    padding: 80px 0 64px;
    color: var(--lba-white);
}

.lba-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 14px;
}

.lba-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.lba-breadcrumb a:hover { color: var(--lba-white); }
.lba-breadcrumb li + li::before { content: '/'; margin-right: 8px; color: rgba(255,255,255,0.4); }

.lba-page-hero h1 {
    color: var(--lba-white);
    font-size: 42px;
    margin: 0;
}

/* Footer */
.lba-footer {
    background: var(--lba-footer);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.lba-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 48px;
}

.lba-footer h5 {
    color: var(--lba-white);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px;
}

.lba-footer__about img { height: 44px; margin-bottom: 16px; filter: brightness(100); }
.lba-footer__about p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

.lba-footer__links { list-style: none; padding: 0; margin: 0; }
.lba-footer__links li { margin-bottom: 10px; }
.lba-footer__links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
}

.lba-footer__links a:hover { color: var(--lba-red); }

.lba-footer__contact p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lba-footer__contact i { color: var(--lba-red); margin-top: 3px; }

.lba-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.lba-footer__social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lba-white);
    text-decoration: none;
    transition: all 0.2s;
}

.lba-footer__social a:hover { background: var(--lba-red); }

.lba-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
}

.lba-footer__bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.lba-footer__bottom a:hover { color: var(--lba-white); }

.lba-footer__bottom-links { display: flex; gap: 20px; }

/* Mobile Nav Overlay */
.lba-mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--lba-white);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.lba-mobile-nav.is-open { transform: translateX(0); }

.lba-mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lba-border);
}

.lba-mobile-nav__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--lba-heading);
}

.lba-mobile-nav__item { border-bottom: 1px solid var(--lba-border); }

.lba-mobile-nav__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--lba-heading);
    cursor: pointer;
    text-decoration: none;
    font-family: var(--lba-font-body);
}

.lba-mobile-nav__sub {
    display: none;
    padding: 0 0 12px 16px;
}

.lba-mobile-nav__item.is-open .lba-mobile-nav__sub { display: block; }

.lba-mobile-nav__sub a {
    display: block;
    padding: 10px 0;
    color: var(--lba-text);
    text-decoration: none;
    font-size: 14px;
}

.lba-mobile-nav__sub a:hover { color: var(--lba-blue); }

.lba-mobile-nav__footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--lba-border);
}

/* Mobile Sticky Bar */
.lba-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--lba-white);
    border-top: 1px solid var(--lba-border);
    padding: 8px 12px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

.lba-mobile-bar__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.lba-mobile-bar__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    color: var(--lba-heading);
    border-radius: var(--lba-radius);
    transition: background 0.15s;
}

.lba-mobile-bar__btn i { font-size: 18px; }
.lba-mobile-bar__btn--call { color: var(--lba-success); }
.lba-mobile-bar__btn--apply { color: var(--lba-red); }
.lba-mobile-bar__btn--contact { color: var(--lba-blue); }

/* Faculty Grid */
.lba-faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.lba-faculty-card {
    background: var(--lba-white);
    border-radius: var(--lba-radius-lg);
    overflow: hidden;
    box-shadow: var(--lba-shadow);
    transition: all 0.2s;
    text-align: center;
}

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

.lba-faculty-card__img {
    aspect-ratio: 1;
    overflow: hidden;
}

.lba-faculty-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.lba-faculty-card:hover .lba-faculty-card__img img { transform: scale(1.05); }

.lba-faculty-card__body { padding: 20px 16px; }

.lba-faculty-card__body h3 {
    font-size: 17px;
    margin: 0 0 4px;
}

.lba-faculty-card__role {
    font-size: 13px;
    color: var(--lba-blue);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.lba-faculty-card__email {
    font-size: 12px;
    color: var(--lba-text);
    text-decoration: none;
}

.lba-faculty-card__email:hover { color: var(--lba-blue); }

/* Content Page */
.lba-content { max-width: 800px; }
.lba-content h2 { font-size: 28px; margin: 32px 0 16px; }
.lba-content h3 { font-size: 22px; margin: 24px 0 12px; }
.lba-content p { margin-bottom: 16px; }
.lba-content ul { margin-bottom: 16px; padding-left: 20px; }
.lba-content li { margin-bottom: 8px; }

.lba-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lba-two-col--reverse .lba-two-col__image { order: -1; }

.lba-two-col__image img {
    width: 100%;
    border-radius: var(--lba-radius-lg);
    box-shadow: var(--lba-shadow);
}

/* Fee Table */
.lba-table-wrap { overflow-x: auto; margin: 24px 0; }

.lba-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.lba-table thead { background: var(--lba-dark); color: var(--lba-white); }

.lba-table th, .lba-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--lba-border);
}

.lba-table tbody tr:nth-child(even) { background: var(--lba-light); }

.lba-table .lba-table__total {
    background: rgba(21,72,255,0.08);
    font-weight: 600;
}

.lba-table .lba-table__total td:last-child { color: var(--lba-blue); font-weight: 700; }

/* Form */
.lba-form__group { margin-bottom: 20px; }

.lba-form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--lba-heading);
    margin-bottom: 6px;
}

.lba-form__input,
.lba-form__select,
.lba-form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--lba-border);
    border-radius: var(--lba-radius);
    font-family: var(--lba-font-body);
    font-size: 15px;
    transition: border-color 0.2s;
}

.lba-form__input:focus,
.lba-form__select:focus,
.lba-form__textarea:focus {
    outline: none;
    border-color: var(--lba-blue);
    box-shadow: 0 0 0 3px rgba(21,72,255,0.1);
}

.lba-form__textarea { min-height: 120px; resize: vertical; }

/* Gallery */
.lba-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lba-gallery__item {
    aspect-ratio: 4/3;
    border-radius: var(--lba-radius-lg);
    overflow: hidden;
    position: relative;
}

.lba-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.lba-gallery__item:hover img { transform: scale(1.08); }

/* Hide old theme header/footer when LBA design active */
body.lba-body .rts-footer,
body.lba-body .rts-footer-copy-right,
body.lba-body #rt-header,
body.lba-body .header-one,
body.lba-body #side-bar,
body.lba-body .progress-wrap { display: none !important; }

/* Responsive */
@media (max-width: 1024px) {
    .lba-nav, .lba-utility__right .lba-utility__location { display: none; }
    .lba-hamburger { display: flex; }
    .lba-hero__content h1 { font-size: 40px; }
    .lba-hero__stats { grid-template-columns: repeat(2, 1fr); }
    .lba-quick-facts__grid { grid-template-columns: repeat(3, 1fr); }
    .lba-grid-4, .lba-faculty-grid { grid-template-columns: repeat(2, 1fr); }
    .lba-footer__grid { grid-template-columns: repeat(2, 1fr); }
    .lba-events-notices { grid-template-columns: 1fr; }
    .lba-steps { grid-template-columns: repeat(2, 1fr); }
    .lba-message { grid-template-columns: 1fr; }
    .lba-contact-strip { grid-template-columns: 1fr; }
    .lba-mega { display: none; }
}

@media (max-width: 768px) {
    .lba-section { padding: 56px 0; }
    .lba-hero { min-height: auto; }
    .lba-hero__content { padding: 80px 0 60px; }
    .lba-hero__content h1 { font-size: 32px; }
    .lba-section-header h2 { font-size: 28px; }
    .lba-grid-2, .lba-grid-3, .lba-grid-4,
    .lba-two-col, .lba-faculty-grid,
    .lba-gallery, .lba-mega__grid { grid-template-columns: 1fr; }
    .lba-quick-facts__grid { grid-template-columns: repeat(2, 1fr); }
    .lba-steps { grid-template-columns: 1fr; }
    .lba-cta-banner { padding: 40px 24px; }
    .lba-cta-banner h2 { font-size: 26px; }
    .lba-page-hero h1 { font-size: 30px; }
    .lba-footer__grid { grid-template-columns: 1fr; }
    .lba-mobile-bar { display: block; }
    body.lba-body { padding-bottom: 64px; }
    .lba-header__actions .lba-btn--secondary { display: none; }
    .lba-utility__left { gap: 12px; }
}
