/* ===== FONTS ===== */
@font-face {
    font-family: "SF Pro Rounded";
    src: url("/assets/fonts/SF-Pro-Rounded-Ultralight.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Rounded";
    src: url("/assets/fonts/SF-Pro-Rounded-Thin.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Rounded";
    src: url("/assets/fonts/SF-Pro-Rounded-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Rounded";
    src: url("/assets/fonts/SF-Pro-Rounded-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Rounded";
    src: url("/assets/fonts/SF-Pro-Rounded-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Rounded";
    src: url("/assets/fonts/SF-Pro-Rounded-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Rounded";
    src: url("/assets/fonts/SF-Pro-Rounded-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Rounded";
    src: url("/assets/fonts/SF-Pro-Rounded-Heavy.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Rounded";
    src: url("/assets/fonts/SF-Pro-Rounded-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== GLOBAL STYLES ===== */
* {
    font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--lms-gray-800);
    background-color: #fff;
    font-weight: 400;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

/* Typography utilities for SF Pro Rounded */
.lms-font-thin {
    font-weight: 200;
}

.lms-font-light {
    font-weight: 300;
}

.lms-font-regular {
    font-weight: 400;
}

.lms-font-medium {
    font-weight: 500;
}

.lms-font-semibold {
    font-weight: 600;
}

.lms-font-bold {
    font-weight: 700;
}

.lms-font-heavy {
    font-weight: 800;
}

.lms-font-black {
    font-weight: 900;
}

.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    max-width: 1400px;
}

/* ===== CSS VARIABLES ===== */
:root {
    --lms-variants-color: #4a90e2;
    --lms-primary-light: #00d4ff;
    --lms-secondary-color: #1f1d44;
    --lms-tertiary-color: #400093;
    --lms-accent-color: #8b5cf6;
    --lms-success-color: #10b981;
    --lms-warning-color: #f59e0b;
    --lms-danger-color: #ef4444;
    --lms-light-color: #f8fafc;
    --lms-dark-color: #1f1d44;
    --lms-gray-100: #f3f4f6;
    --lms-gray-200: #e5e7eb;
    --lms-gray-300: #d1d5db;
    --lms-gray-400: #9ca3af;
    --lms-gray-500: #6b7280;
    --lms-gray-600: #4b5563;
    --lms-gray-700: #374151;
    --lms-gray-800: #1f1d44;
    --lms-gray-900: #111827;

    /* LMS DHV Gradients */
    --lms-gradient-primary: linear-gradient(180deg, #53fbb1 0%, #19bef8 100%);
    --lms-gradient-secondary: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);

    /* LMS DHV Border Radius */
    --lms-border-radius-sm: 4px;
    --lms-border-radius-md: 8px;
    --lms-border-radius-lg: 16px;
    --lms-border-radius-xl: 20px;
    --lms-border-radius-2xl: 25px;
    --lms-border-radius-3xl: 50px;
    --lms-border-radius-4xl: 100px;

    /* LMS DHV Shadows */
    --lms-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --lms-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lms-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --lms-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    margin-left: 0 !important;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.bg-light {
    background-color: #fff !important;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

/* ===== BUTTON COMPONENTS ===== */

/* Button Sizes */
.lms-btn-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
}

.lms-btn-md {
    padding: 0.625rem 1rem;
    font-size: 1.0625rem;
}

.lms-btn-lg {
    padding: 0.63rem 1.25rem;
    font-size: 1.58rem;
}

.lms-btn-xl {
    padding: 0.875rem 1.5rem;
    font-size: 1.3125rem;
}

/* Button Variants */
.lms-btn-primary {
    background: var(--lms-gradient-primary);
    color: #000;
}

.lms-outline-primary {
    background: linear-gradient(#fff, #fff) padding-box,
        var(--lms-gradient-primary) border-box;
    border: 1px solid transparent !important;
}

.lms-btn-secondary {
    background: var(--lms-gradient-secondary);
}

.lms-btn-tertiary {
    background: var(--lms-tertiary-color);
}

.lms-btn {
    transition: all 0.2s ease;
    line-height: normal;
    border: none;
    box-shadow: none;
}

.btn-border-light {
    border: 2px solid #fff;
}

.lms-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.lms-btn-accent {
    background: var(--lms-accent-color);
    color: white;
}

.lms-btn-accent:hover {
    background: #7c3aed;
    color: white;
}

.lms-btn-light {
    background: var(--lms-primary-light);
    color: white;
}

.lms-btn-light:hover {
    background: #00b8e6;
    color: white;
}

.lms-btn-outline {
    background: transparent;
    color: var(--lms-primary-color);
    border: 2px solid var(--lms-primary-color);
}

.lms-btn-outline:hover {
    background: var(--lms-primary-color);
    color: white;
}

.lms-btn-ghost {
    background: transparent;
    color: var(--lms-gray-600);
    border: 1px solid var(--lms-gray-300);
}

.lms-btn-ghost:hover {
    background: var(--lms-gray-100);
    color: var(--lms-gray-800);
}

.lms-btn-ouline-gradient {
    background: transparent;
    position: relative;
}

.lms-btn-ouline-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--lms-gradient-primary);
    -webkit-mask: linear-gradient(white, white) content-box,
        linear-gradient(white, white);
    mask: linear-gradient(white, white) content-box,
        linear-gradient(white, white);
    -webkit-mask-composite: xor;
}

/* ==== COLOR ===== */

.lms-dark-color {
    color: var(--lms-dark-color) !important;
}

/* ===== HEADER ===== */
.lms-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8.8px 0 rgba(0, 0, 0, 0.05);
}

.lms-header .navbar {
    padding: 1rem 0;
    box-shadow: none;
}

.lms-header .navbar-brand {
    padding: 0;
    margin: 0;
}

.lms-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lms-logo img {
    max-height: 55px;
    width: auto;
}

.lms-header .navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
    white-space: nowrap;
}

.lms-header .nav-link {
    color: var(--lms-secondary-color) !important;
    font-weight: 400;
    font-size: 19px;
    text-decoration: none;
    padding: 0.5rem !important;
    position: relative;
    transition: all 0.3s ease;
    font-variation-settings: "wght" 400;
}

.navbar-expand-lg .nav-item.active:after {
    content: none;
}

.lms-header .nav-link.active {
    text-shadow: 0 0 1px currentColor;
}

.lms-header .nav-link:hover {
    background-color: transparent;
    text-shadow: 0 0 1px currentColor;
}

.lms-header .navbar-actions a {
    min-width: 124px;
    white-space: nowrap;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-register {
    background: var(--lms-gradient-secondary);
    color: var(--lms-secondary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--lms-border-radius-xl);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: var(--lms-gradient-secondary);
    color: var(--lms-secondary-color);
    transform: translateY(-1px);
    box-shadow: var(--lms-shadow-md);
    opacity: 0.9;
}

.btn-login {
    background: var(--lms-tertiary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--lms-border-radius-xl);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31, 41, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* breadcrum */

.breadcrumbweb .breadcrumb-item a {
    font-size: 16px !important;
    font-weight: 400;
    color: var(--lms-secondary-color) !important;
    text-decoration: none !important;
}

.breadcrumbweb .breadcrumb-item + .breadcrumb-item {
    padding-left: 20px;
    align-items: end;
    display: flex;
}

.breadcrumbweb .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 20px;
    color: var(--lms-secondary-color);
    font-size: 20px;
}

.breadcrumbweb .breadcrumb-item.active {
    font-weight: 400;
    align-items: end;
    display: flex;
}

.breadcrumbweb .breadcrumb {
    align-items: end;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .lms-header .navbar-nav {
        gap: 0;
        margin: 1rem 0;
    }

    .lms-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid var(--lms-gray-200);
    }

    .lms-header .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-actions {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--lms-gray-200);
    }

    .navbar-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .navbar-actions-mobile {
        display: none;
    }
}

/* ===== BANNER ===== */

.slider-banner-home .banner-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    justify-content: center;
}

.swiper-pagination-bullet {
    background: #d3e0ff !important;
    width: 11px !important;
    height: 10px !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--lms-gradient-primary) !important;
    width: 16px !important;
    height: 16px !important;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    padding: 3rem 0 0;
}

.social-content {
    border-radius: 10px;
    background: #1c173e;
    padding: 50px;
    position: relative;
    color: white;
    z-index: 1;
}

.social-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: url(../assets/images/social-content-before.png) no-repeat center
        center;
    border-radius: 10px;
    z-index: -1;
    width: 62%;
    background-size: cover;
}

.social-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../assets/images/social-content-after.png) no-repeat center
        center;
    border-radius: 10px;
    z-index: -1;
    width: 63%;
    background-size: cover;
}

.social-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 2rem;
    max-width: 735px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    line-height: 50px;
}

.social-title .highlight {
    padding: 0rem 0.7rem;
    border-radius: var(--lms-border-radius-4xl);
    background: linear-gradient(#1c173e, #1c173e) padding-box,
        var(--lms-gradient-primary) border-box;
    border: 2px solid transparent;
    margin: 0 0.2rem;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 5.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-icon-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    border-radius: var(--lms-border-radius-4xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    width: 160px;
    height: 160px;
    aspect-ratio: 1 / 1;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--lms-shadow-lg);
}

.social-label {
    color: #fff;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 7rem;
    flex-wrap: wrap;
}

.btn-feedback {
    position: relative;
}

.btn-feedback::before {
    height: 59px;
    content: "";
    position: absolute;
    top: -26px;
    right: -80px;
    bottom: 0;
    background: url(../assets/images/feedback-email.png) no-repeat center center;
    background-size: contain;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
    width: 71.757px;
}

/* ===== BANNER SECTION ===== */
.banner-section {
    background: white;
    padding: 3rem 0 0;
}

.banner-header {
    text-align: center;
    margin-bottom: 1.1rem;
}

.banner-title {
    background: var(--lms-tertiary-color);
    color: white;
    padding: 10px 30px;
    border-radius: var(--lms-border-radius-4xl);
    background: linear-gradient(
                var(--lms-tertiary-color),
                var(--lms-tertiary-color)
            )
            padding-box,
        var(--lms-gradient-primary) border-box;
    border: 4px solid transparent;
    display: inline-block;
    font-size: 30px;
}

.banner-content {
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.banner-image {
    overflow: hidden;
}

.banner-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--lms-border-radius-md);
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* ===== SEARCH SECTION ===== */
.search-section {
    background: white;
    padding: 3rem 0 0;
}

.search-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--lms-gray-800);
    line-height: 50px;
}

.search-container {
    margin: 0 auto 1rem;
}

.search-input-wrapper {
    position: relative;
    max-width: 678px;
    margin: 0 auto 1rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lms-gray-400);
    z-index: 2;
}

.search-subject .search-input {
    padding: 12px 16px;
    padding-left: 3rem;
    background: #fbfbfc !important;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08) !important;
    border: none;
}

.search-input::placeholder {
    color: #7f7b87;
    letter-spacing: 0.2px;
    font-size: 14px;
}

.search-hint {
    max-width: 678px;
    margin: 0 auto 1rem;
}

.search-link {
    color: #48a1ff !important;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.filter-section {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 auto 1.5rem;
}

.filter-btn {
    padding: 13px 25px;
    font-size: 17px;
    font-weight: 700;
}

.filter-icon {
    width: 18px;
    height: 18px;
    aspect-ratio: 1 / 1;
    margin-right: 7px;
}

.filter-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-tags {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-tag {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--lms-border-radius-3xl);
    background: #fafafa;
    padding: 13px 25px;
    color: var(--lms-secondary-color);
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
}

.filter-tag i {
    position: absolute;
    right: 0.6rem;
    top: 0.3rem;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-label {
    color: var(--lms-secondary-color);
    font-size: 17px;
    font-weight: 700;
}

.sort-select {
    color: #007dcd;
    font-weight: 500;
    font-size: 18px;
    border: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    padding: 0 15px;
}

.sort-select:focus,
.sort-select:focus-visible {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* ===== COURSE GRID ===== */
.course-grid {
    padding: 2rem 0;
}

/* ==== FOOTER === */
.footer {
    padding: 0;
    border: none;
}

.footer-main {
    color: white;
    padding: 3rem 0 1rem;
    border: none;
    margin-top: 20px;
    background: #1f1b4e;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 80%;
    min-width: 106px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: brightness(20);
}

.footer-brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-top: 0.5rem;
}

.footer-section-title {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    margin-bottom: 20px;
    color: white;
    display: flex;
    gap: 10px;
    align-items: start;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.footer-contact-icon {
    color: white;
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 0.5rem;
}

.footer-link {
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff !important;
}

.footer-link:hover {
    color: #93c5fd;
    text-decoration: none;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.footer-map-container {
    background: #f8f9fa;
    /* padding: 1rem; */
    border-radius: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.footer-map-content {
    text-align: center;
    color: #6c757d;
}

.footer-map-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #adb5bd;
}

.footer-map-text {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom {
    background: var(--lms-secondary-color);
    padding: 11px 0;
}

.footer-copyright {
    text-align: center;
    color: white;
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-registration {
    text-align: center;
    color: white;
    font-size: 16px;
    margin-bottom: 0;
}

/* ===== UTILITY CLASSES ===== */
.lms-text-primary {
    color: var(--lms-primary-color) !important;
}

.lms-text-secondary {
    color: var(--lms-secondary-color) !important;
}

.lms-text-accent {
    color: var(--lms-accent-color) !important;
}

.lms-text-success {
    color: var(--lms-success-color) !important;
}

.lms-text-warning {
    color: var(--lms-warning-color) !important;
}

.lms-text-danger {
    color: var(--lms-danger-color) !important;
}

.lms-bg-primary {
    background-color: var(--lms-primary-color) !important;
}

.lms-bg-secondary {
    background-color: var(--lms-secondary-color) !important;
}

.lms-bg-accent {
    background-color: var(--lms-accent-color) !important;
}

.lms-bg-light {
    background-color: var(--lms-light-color) !important;
}

.lms-rounded-sm {
    border-radius: var(--lms-border-radius-sm) !important;
}

.lms-rounded-md {
    border-radius: var(--lms-border-radius-md) !important;
}

.lms-rounded-lg {
    border-radius: var(--lms-border-radius-lg) !important;
}

.lms-rounded-xl {
    border-radius: var(--lms-border-radius-xl) !important;
}

.lms-rounded-2xl {
    border-radius: var(--lms-border-radius-2xl) !important;
}

.lms-rounded-3xl {
    border-radius: var(--lms-border-radius-3xl) !important;
}

.lms-shadow-sm {
    box-shadow: var(--lms-shadow-sm) !important;
}

.lms-shadow-md {
    box-shadow: var(--lms-shadow-md) !important;
}

.lms-shadow-lg {
    box-shadow: var(--lms-shadow-lg) !important;
}

.lms-shadow-xl {
    box-shadow: var(--lms-shadow-xl) !important;
}

/* ===== ANIMATIONS ===== */
@keyframes lms-float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lms-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes smoke {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.lms-animate-float {
    animation: lms-float 6s ease-in-out infinite;
}

.lms-animate-fade-in-up {
    animation: lms-fadeInUp 0.6s ease-out;
}

.lms-animate-slide-in-left {
    animation: lms-slideInLeft 0.6s ease-out;
}

/* phan trang */
.compact-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.compact-pagination-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.compact-pagination-item {
    margin: 0;
}

.compact-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    color: #777;
    text-decoration: none !important;
    cursor: pointer;
}

.compact-pagination-link.active,
.compact-pagination-link:hover:not(.disabled) {
    background: var(--lms-gradient-primary);
    color: var(--lms-secondary-color);
    font-weight: 700;
}

.compact-pagination-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.compact-pagination-dots {
    color: #6b7280;
    font-weight: 500;
    padding: 0 8px;
    font-size: 16px;
}

.compact-next-text {
    margin-right: 4px;
    font-size: 14px;
}

.compact-pagination-link i {
    font-size: 12px;
}

/* cart */

.line {
    border: 1px solid #d9d9d9;
    width: 100%;
    display: block;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.cart-item {
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 1px 4.5px 0 rgba(0, 0, 0, 0.11);
}

.cart-item .courses-filter__checkmark {
    background: #bebebe;
    margin-right: 20px;
}

.cart-item .cart-thumb {
    width: 82px;
    height: 82px;
    border-radius: 8px;
    object-fit: cover;
}

.payment-method-item {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0);
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    width: 86px;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    color: #00000099;
}

.payment-method-item img {
    margin-bottom: 5px;
}

.cart-summary {
    top: 100px;
    z-index: 1;
}

.voucher-apply {
    margin-bottom: 20px;
}

.voucher-apply input {
    border-radius: 5px;
    border: 1px solid transparent !important;
    background: linear-gradient(#fff, #fff) padding-box,
        var(--lms-gradient-primary) border-box !important;
    box-shadow: none !important;
    color: #777;
    padding: 6px 10px 6px 40px;
}

.applied-voucher {
    position: relative;
    background: url(../assets/images/bg-voucher.svg) no-repeat center center;
    background-size: 100% 100%;
    border-radius: 5px;
    padding: 0 12px;
}

#filterModalLabel .filter-checkbox:checked {
    background-color: var(--lms-gradient-primary) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .compact-pagination-container {
        padding: 6px 12px;
    }

    .compact-pagination-link {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .compact-next-text {
        display: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .lms-section {
        padding: 2rem 0;
    }

    .lms-section-lg {
        padding: 3rem 0;
    }

    .lms-section-title h2 {
        font-size: 2rem;
    }

    .lms-btn-xl {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .lms-course-image {
        height: 150px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .social-icon {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .banner-content {
        flex-direction: column;
        gap: 1rem;
    }

    .banner-image {
        flex: none;
        width: 100%;
    }

    .banner-sidebar {
        flex: none;
        width: 100%;
    }

    .filter-section {
        flex-direction: row;
        margin-bottom: 20px !important;
        align-items: flex-start;
    }

    .footer-logo {
        width: 50%;
        min-width: auto;
        margin-bottom: 0rem;
    }

    .footer-main {
            padding: 2rem 0 1rem;
    }
}

@media (max-width: 576px) {
    .lms-section-title h2 {
        font-size: 1.75rem;
    }

    .lms-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .lms-course-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-social {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section-title {
        font-size: 1rem;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-map-container {
        height: 100px;
    }

    .footer-map-icon {
        font-size: 1.5rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }
}
