@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* ═══════════════════════════════════════════════════════════
   NETUDY — Landing Page Modernization (Perfect Pixel Edition)
   Thiết kế gọn gàng, thanh thoát và chuẩn xác theo Mockup:
   - Header không bị đè lên Hero, menu dạng pill hiện đại
   - Hero Mascot 3D Cáo đỏ tinh tế kèm hiệu ứng bồng bềnh mượt mà
   - Thẻ thống kê 3 cột thon gọn
   - Card Khóa học & Blog sắc nét, không bị tràn viền
   - Bảng giá AI 3 cột cân đối
   - Testimonial Avatar tròn 100%, không bị xé hình
   ═══════════════════════════════════════════════════════════ */

:root {
    --body-font: 'Roboto', sans-serif;
    --header-font: 'Roboto', sans-serif;
    --nt-font-primary: 'Roboto', sans-serif;
    --nt-ink: #1c1917;
    --nt-muted: #57534e;
    --nt-muted-2: #78716c;
    --nt-line: #e7e5e4;
    --nt-surface: #ffffff;
    --nt-surface-warm: #FEFAF6;
    --nt-cream: #FDF3EB;

    /* Brand tokens */
    --nt-brand: var(--brand-primary, #E87D2A);
    --nt-brand-hover: var(--brand-primary-hover, #D36E23);
    --nt-brand-light: var(--brand-primary-light, #FDF3EB);
    --nt-brand-border: var(--brand-primary-border, #F9D5BC);
    --nt-brand-dark: var(--brand-primary-dark, #B85412);
    --nt-grad: linear-gradient(135deg, var(--brand-gradient-start, #F48E3D), var(--brand-gradient-end, #E87D2A));

    --nt-radius-lg: 16px;
    --nt-radius-card: 14px;
    --nt-radius-pill: 999px;
    --nt-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
    --nt-shadow-hover: 0 10px 28px rgba(15, 23, 42, 0.09);
    --nt-shadow-lg: 0 14px 32px rgba(232, 125, 42, 0.14);
}

/* ═══════════════════════════════════════════════════════════
   HEADER & NAVBAR OVERRIDE (Căn giữa hoàn hảo & chống vỡ layout)
   ═══════════════════════════════════════════════════════════ */
.template-header.header-layout-1 {
    position: relative !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(232, 125, 42, 0.08) !important;
    z-index: 1000 !important;
}
.template-header.header-layout-1 .header-navigation {
    padding: 0 !important;
    background: #ffffff !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    transition: background 0.3s ease, box-shadow 0.3s ease !important;
}

/* Sticky Header State when scrolling down (Nền trắng phủ kín 100%, không bị trong suốt trùng chữ) */
.template-header.header-layout-1 .header-navigation.sticky-on,
.template-header .header-navigation.sticky-header.sticky-on {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #ffffff !important;
    border-bottom: 1.5px solid #F1E5D8 !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07) !important;
    z-index: 99999 !important;
    animation: stickySlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes stickySlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0.8;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.header-inner {
    min-height: 64px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}
.header-left {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}
.brand-logo {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}
.brand-logo img {
    max-height: 38px !important;
    width: auto !important;
}
.nav-menu {
    display: flex !important;
    align-items: center !important;
}
.nav-menu > ul {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    flex-wrap: nowrap !important;
}
.nav-menu > ul > li {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
}
.nav-menu > ul > li > a {
    font-size: 13px !important;
    font-weight: 600 !important;
    height: 36px !important;
    line-height: 36px !important;
    padding: 0 13px !important;
    color: var(--nt-ink) !important;
    border: none !important;
    border-radius: var(--nt-radius-pill) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    transition: all 0.2s !important;
}
.nav-menu > ul > li > a::before {
    display: none !important;
}
.nav-menu > ul > li:hover > a {
    color: var(--nt-brand) !important;
    background: rgba(232, 125, 42, 0.06) !important;
}
.nav-menu > ul > li.active > a {
    color: var(--nt-brand) !important;
    background: #FFF4EC !important;
    font-weight: 700 !important;
}

/* ═══════════════════════════════════════════════════════════
   HEADER RIGHT & SEARCHBOX (Cố định width, không làm vỡ menu)
   ═══════════════════════════════════════════════════════════ */
.header-right {
    display: flex !important;
    align-items: center !important;
}
.template-header .header-navigation .header-right .header-extra {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    flex-wrap: nowrap !important;
}
.template-header .header-navigation .header-right .header-extra > li {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    position: relative !important;
    height: 36px !important;
}
.template-header .header-navigation .header-right .header-extra > li:not(:first-child) {
    margin-inline-start: 0 !important;
}

/* Searchbox container & input */
.template-header .header-navigation .header-right .header-extra .searchbox {
    position: relative !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    width: 160px !important;
    height: 36px !important;
    flex-shrink: 0 !important;
}
.template-header .header-navigation .header-right .header-extra .searchbox .searchbox-input,
.template-header .header-navigation:not(.sticky-on) .header-right .header-extra .search-dark-color .searchbox-input {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    inset-inline-end: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 160px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 12px !important;
    border-radius: 20px !important;
    border: 1.5px solid #e2e8f0 !important;
    padding: 0 12px 0 32px !important;
    background: #f8fafc !important;
    color: var(--nt-ink) !important;
    margin: 0 !important;
    outline: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
    z-index: 1 !important;
}
.template-header .header-navigation .header-right .header-extra .searchbox .searchbox-input:focus,
.template-header .header-navigation:not(.sticky-on) .header-right .header-extra .search-dark-color .searchbox-input:focus {
    width: 160px !important; /* GIỮ NGUYÊN CHIỀU RỘNG ĐỂ KHÔNG ĐẨY MENU */
    border-color: var(--nt-brand) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(232, 125, 42, 0.12) !important;
}
.template-header .header-navigation .header-right .header-extra .searchbox .searchbox-icon,
.template-header .header-navigation:not(.sticky-on) .header-right .header-extra .search-dark-color .searchbox-icon {
    position: absolute !important;
    top: 50% !important;
    left: 10px !important;
    right: auto !important;
    inset-inline-end: auto !important;
    transform: translateY(-50%) !important;
    width: 14px !important;
    height: 14px !important;
    line-height: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #94a3b8 !important;
    pointer-events: none !important;
    z-index: 2 !important;
}
.template-header .header-navigation .header-right .header-extra .searchbox .searchbox-icon svg {
    width: 14px !important;
    height: 14px !important;
}
.template-header .header-navigation .header-right .header-extra .searchbox .searchbox-submit {
    display: none !important;
}

/* Dropdown kết quả tìm kiếm - Mặc định ẩn hoàn toàn, chỉ hiển thị khi AJAX trả về kết quả */
.template-header .header-navigation .header-right .header-extra .searchbox .quick-search-result,
.template-header .header-navigation .header-right .header-extra .search-bar .quick-search-result,
.template-header .header-navigation .header-right .header-extra .searchbox .searchbox-input:focus + .quick-search-result,
.template-header .header-navigation .header-right .header-extra .search-bar .searchbox-input:focus + .quick-search-result {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    transform: none !important;
}

/* Chỉ hiển thị khi có phần tử con kết quả bên trong */
.template-header .header-navigation .header-right .header-extra .searchbox .quick-search-result:has(*),
.template-header .header-navigation .header-right .header-extra .search-bar .quick-search-result:has(*),
.template-header .header-navigation .header-right .header-extra .searchbox .quick-search-result:has(.item-group),
.template-header .header-navigation .header-right .header-extra .searchbox .quick-search-result:has(.list-group),
.template-header .header-navigation .header-right .header-extra .searchbox .quick-search-result:has(ul),
.template-header .header-navigation .header-right .header-extra .searchbox .quick-search-result:has(a) {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    width: 320px !important;
    max-height: 380px !important;
    overflow-y: auto !important;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12) !important;
    z-index: 1100 !important;
    padding: 10px !important;
    height: auto !important;
    min-height: auto !important;
}

/* Notification, Cart, Language buttons */
.template-header .header-navigation .header-right .header-extra .notification-dropdown .notification-btn,
.template-header .header-navigation .header-right .header-extra .language-selection a,
.template-header .header-navigation .header-right .header-extra .shopping-mini-cart .cart-btn {
    width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    border-radius: 50% !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #475569 !important;
    transition: all 0.2s !important;
    position: relative !important;
}
.template-header .header-navigation .header-right .header-extra .notification-dropdown .notification-btn:hover,
.template-header .header-navigation .header-right .header-extra .language-selection a:hover,
.template-header .header-navigation .header-right .header-extra .shopping-mini-cart .cart-btn:hover {
    background: #fff !important;
    border-color: var(--nt-brand) !important;
    color: var(--nt-brand) !important;
}
.template-header .header-navigation .header-right .header-extra .user-profile-dropdown .dropdown-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--nt-ink) !important;
}
.template-header .header-navigation .header-right .header-extra .user-profile-dropdown img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}
.header-extra .template-btn {
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 16px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    border-radius: var(--nt-radius-pill) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: var(--nt-grad) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(232, 125, 42, 0.25) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}
.header-extra .template-btn:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(232, 125, 42, 0.35) !important;
    color: #fff !important;
}

/* ─── Section Heading ────────────────────────────────────────── */
.nt-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--nt-brand);
    margin-bottom: 6px;
    font-family: var(--body-font);
}
.common-heading h3 {
    font-size: 24px !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em;
    color: var(--nt-ink);
    margin-bottom: 6px !important;
}
.common-heading p {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    color: var(--nt-muted-2) !important;
    margin: 0 auto !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO & 3D MASCOT BANNER
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   HERO & TYPOGRAPHY ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */
.nt-hero {
    padding: 42px 0 0;
    background: linear-gradient(180deg, #FFF9F3 0%, #FDF3EB 100%);
    overflow: hidden;
    position: relative;
}
.nt-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: center;
    padding-bottom: 32px;
}
.nt-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Eyebrow Pill Badge */
.nt-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 10px;
    border-radius: 999px;
    background: rgba(232, 125, 42, 0.08);
    border: 1px solid rgba(232, 125, 42, 0.22);
    margin-bottom: 14px;
}
.nt-pill-icon {
    font-size: 12px;
}
.nt-pill-text {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--nt-brand-dark);
    text-transform: uppercase;
}
.nt-pill-badge {
    background: var(--nt-grad);
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    padding: 1.5px 6px;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

/* Headline Typography */
.nt-hero-title {
    margin: 0 0 14px;
}
.nt-title-sub {
    display: block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nt-brand);
    margin-bottom: 4px;
}
.nt-title-main {
    display: block;
    font-size: 32px;
    line-height: 1.22;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1c1917;
}
.nt-title-highlight {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}
.nt-title-gradient {
    background: linear-gradient(135deg, #1c1917 25%, #44403c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Hero Description */
.nt-hero-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #57534e;
    max-width: 450px;
    margin: 0 0 16px;
}
.nt-hero-desc strong {
    color: #1c1917;
    font-weight: 700;
}

/* Micro Perks in Hero (Nổi bật, nền trắng viền cam tinh tế, chữ đen đậm sắc nét) */
.nt-hero-perks {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.nt-hero-perks .nt-perk-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    background: #ffffff !important;
    padding: 5px 13px !important;
    border-radius: 999px !important;
    border: 1.5px solid #F1E5D8 !important;
    box-shadow: 0 2px 8px rgba(232, 125, 42, 0.08) !important;
    transition: all 0.25s ease !important;
}
.nt-hero-perks .nt-perk-item:hover {
    border-color: var(--nt-brand) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(232, 125, 42, 0.16) !important;
}
.nt-hero-perks .nt-perk-item svg {
    display: block !important;
    stroke: #16a34a !important;
}

/* Action Buttons */
.nt-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.nt-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: var(--nt-radius-pill);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 20px;
    font-family: var(--body-font);
    transition: all .25s ease;
    white-space: nowrap;
    text-decoration: none;
}
.nt-btn-primary {
    background: var(--nt-grad);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(232, 125, 42, .26);
}
.nt-btn-primary:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 10px 22px rgba(232, 125, 42, .34);
    color: #fff !important;
}
.nt-btn-outline {
    background: #fff;
    color: var(--nt-ink) !important;
    border: 1.5px solid #EEE2D3;
}
.nt-btn-outline:hover {
    border-color: var(--nt-brand);
    color: var(--nt-brand-dark) !important;
    box-shadow: 0 4px 12px rgba(232, 125, 42, 0.12);
}

/* ═══════════════════════════════════════════════════════════
   HERO STAGE & 3D MASCOT WITH CODE DECORATIONS
   ═══════════════════════════════════════════════════════════ */
.nt-hero-visual-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.nt-hero-stage {
    position: relative;
    width: 440px;
    height: 370px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nt-stage-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 215, 170, 0.55) 0%, rgba(253, 243, 235, 0) 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 1;
}
.nt-stage-ring-outer {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1.5px dashed rgba(232, 125, 42, 0.28);
    pointer-events: none;
    z-index: 1;
}
.nt-stage-ring-inner {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1px solid rgba(232, 125, 42, 0.16);
    pointer-events: none;
    z-index: 1;
}
.nt-stage-mascot {
    position: relative;
    z-index: 2;
    width: 215px;
    height: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ntStageFloat 4s ease-in-out infinite;
}
.nt-mascot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 14px 28px rgba(232, 125, 42, 0.22));
}

/* Floating Glassmorphism Cards */
.nt-float-badge {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 13px;
    padding: 7px 11px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}
.nt-float-badge:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}
.nt-float-badge--vocab {
    top: 14px;
    left: -10px;
    min-width: 135px;
    animation: ntBadgeFloat1 5s ease-in-out infinite;
}
.nt-float-badge--audio {
    top: 18px;
    right: -8px;
    animation: ntBadgeFloat2 4.6s ease-in-out infinite 0.4s;
}
.nt-float-badge--streak {
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
    animation: ntBadgeFloat1 4.2s ease-in-out infinite 0.8s;
}
.nt-float-badge--roadmap {
    bottom: 14px;
    left: -14px;
    animation: ntBadgeFloat2 5.2s ease-in-out infinite 1.2s;
}
.nt-float-badge--score {
    bottom: 12px;
    right: -10px;
    animation: ntBadgeFloat1 4.8s ease-in-out infinite 0.6s;
}

.nt-badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}
.nt-badge-icon--orange { background: #ffedd5; color: #ea580c; }
.nt-badge-icon--green { background: #dcfce7; color: #16a34a; }
.nt-badge-icon--blue { background: #e0f2fe; color: #0284c7; }
.nt-badge-icon--fire { background: #fee2e2; font-size: 12px; }
.nt-score-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffedd5;
    color: #ea580c;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nt-badge-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--nt-ink);
    line-height: 1.2;
}
.nt-badge-sub {
    font-size: 9.5px;
    color: var(--nt-muted-2);
    line-height: 1.2;
}
.nt-badge-value {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--nt-ink);
    line-height: 1.1;
}
.nt-float-badge .nt-progress-track {
    height: 4px;
    border-radius: 4px;
    background: #f1e5d6;
    margin-top: 4px;
}
.nt-float-badge .nt-progress-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--nt-grad);
}

@keyframes ntStageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes ntBadgeFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes ntBadgeFloat2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ─── Stat strip (Counter bar) ─────────────────────────────── */
.nt-stat-strip-wrap { padding-bottom: 36px; }
.nt-stat-strip {
    background: #fff;
    border-radius: var(--nt-radius-lg);
    box-shadow: var(--nt-shadow);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.nt-stat-item {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 2px 8px;
    border-right: 1px solid #F1E5D6;
}
.nt-stat-item:last-child { border-right: none; }
.nt-stat-icon {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    background: var(--nt-brand-light);
    display: flex; align-items: center; justify-content: center;
}
.nt-stat-value { font-size: 17px; font-weight: 800; color: var(--nt-ink); line-height: 1.1; }
.nt-stat-label { font-size: 11px; color: var(--nt-muted-2); font-weight: 600; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   AI PRACTICE PRICING (Luyện Nói / Viết / Thi Thử)
   ═══════════════════════════════════════════════════════════ */
.nt-pricing-section { padding: 52px 0 48px; background: var(--nt-surface-warm); }
.nt-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
    margin-top: 6px;
}
.nt-pricing-card {
    background: #fff;
    border: 1.5px solid var(--nt-line);
    border-radius: var(--nt-radius-lg);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    transition: all .25s ease;
}
.nt-pricing-card:hover {
    box-shadow: var(--nt-shadow-hover);
    border-color: var(--nt-brand-border);
}
.nt-pricing-card--popular {
    background: linear-gradient(165deg, var(--nt-cream), #fff);
    border: 1.5px solid var(--nt-brand);
    box-shadow: var(--nt-shadow-lg);
    position: relative;
    transform: translateY(-3px);
}
.nt-pricing-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--nt-grad); color: #fff; font-size: 10px; font-weight: 700;
    padding: 3px 12px; border-radius: var(--nt-radius-pill); white-space: nowrap;
    box-shadow: 0 3px 8px rgba(232, 125, 42, 0.28);
}
.nt-pricing-name { font-size: 13.5px; font-weight: 700; color: var(--nt-ink); margin: 2px 0; }
.nt-pricing-sub { font-size: 11.5px; color: var(--nt-muted-2); margin-bottom: 12px; }
.nt-pricing-price { margin-bottom: 14px; }
.nt-pricing-price .amount { font-size: 24px; font-weight: 800; color: var(--nt-ink); }
.nt-pricing-price .unit { font-size: 11.5px; color: var(--nt-muted-2); }
.nt-pricing-save { font-size: 10.5px; color: #16A34A; font-weight: 700; margin-top: 2px; }
.nt-pricing-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; flex: 1; padding: 0; }
.nt-pricing-features li {
    list-style: none; display: flex; align-items: flex-start; gap: 6px;
    font-size: 12px; color: #44403c; line-height: 1.4;
}
.nt-pricing-features li svg { flex-shrink: 0; margin-top: 2px; color: #16A34A; width: 12px; height: 12px; }
.nt-pricing-note { text-align: center; font-size: 11px; color: #a8a29e; margin: 18px 0 0; }

/* ─── Tabs lọc kỹ năng / danh mục (Skill Tabs) ───────────── */
.pt-skill-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; justify-content: center; }
.pt-skill-tab {
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 12.5px !important;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    color: #475569 !important;
    text-decoration: none;
    transition: all 0.2s ease;
    outline: none !important;
    cursor: pointer;
}
.pt-skill-tab:hover {
    background: #f8fafc !important;
    color: var(--nt-brand) !important;
    border-color: var(--nt-brand-border) !important;
}
.pt-skill-tab.active {
    background: var(--brand-primary) !important;
    color: #fff !important;
    border-color: var(--brand-primary) !important;
    box-shadow: 0 3px 10px rgba(232, 125, 42, 0.28) !important;
}

/* ─── pt-card (Course & Blog Card - Chuẩn hóa không bị tràn ảnh) ─── */
.pt-card {
    background: #fff !important;
    border-radius: var(--nt-radius-card) !important;
    border: 1px solid #e8eaed !important;
    padding: 12px !important;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04) !important;
    transition: all 0.25s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}
.pt-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 28px rgba(232, 125, 42, 0.12) !important;
    border-color: var(--nt-brand-border) !important;
}
.pt-card-img {
    margin: 0 0 10px 0 !important; /* Xóa bỏ hoàn toàn negative margin -24px gây tràn */
    border-radius: 10px !important;
    overflow: hidden !important;
    display: block !important;
    aspect-ratio: 16 / 9 !important;
    width: 100% !important;
    height: auto !important;
    background: #f8fafc !important;
    position: relative !important;
}
.pt-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.35s ease !important;
}
.pt-card:hover .pt-card-img img {
    transform: scale(1.04) !important;
}
.pt-card-img-badges {
    position: absolute !important;
    top: 6px !important;
    left: 6px !important;
    display: flex !important;
    gap: 4px !important;
    flex-wrap: wrap !important;
    z-index: 2 !important;
}
.pt-badge {
    display: inline-block !important;
    padding: 2px 8px !important;
    border-radius: var(--nt-radius-pill) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--nt-brand) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
    text-transform: uppercase !important;
}
.pt-badge-exam {
    background: #fff !important;
    color: var(--nt-brand) !important;
}
.pt-badge-skill {
    background: #fff !important;
    color: #0284c7 !important;
}
.pt-card-body {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    padding: 0 !important;
}
.pt-card-rating {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: var(--nt-ink) !important;
    margin-bottom: 4px !important;
    min-height: 14px !important;
}
.pt-card-title {
    font-size: 13.5px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    margin: 2px 0 6px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 38px !important;
    max-height: 38px !important;
}
.pt-card-title a {
    color: var(--nt-ink) !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}
.pt-card-title a:hover {
    color: var(--nt-brand) !important;
}
.pt-card-stats {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 11px !important;
    margin-bottom: 10px !important;
    color: var(--nt-muted-2) !important;
}
.pt-stat {
    white-space: nowrap !important;
    font-size: 11px !important;
}
.pt-card-footer {
    border-top: 1px dashed #e2e8f0 !important;
    padding-top: 10px !important;
    margin-top: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
}
.pt-card-footer .price-wrap {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
}
.pt-card-footer .price-wrap .fs-5 {
    font-size: 13.5px !important;
    font-weight: 800 !important;
    color: var(--nt-brand) !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: baseline !important;
    line-height: 1.2 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.pt-card-footer .price-wrap .fs-6 {
    font-size: 10.5px !important;
    color: #94a3b8 !important;
    white-space: nowrap !important;
}
.pt-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5px 14px !important;
    min-width: auto !important;
    border-radius: var(--nt-radius-pill) !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    border: 1px solid rgba(232, 125, 42, 0.25) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}
.pt-card-btn:hover {
    background: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(232, 125, 42, 0.28) !important;
}

/* Nút xem tất cả khóa học */
.pt-start-btn {
    padding: 7px 22px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    border-radius: 24px !important;
    background: #fff !important;
    color: var(--nt-brand) !important;
    border: 1.5px solid var(--nt-brand-border) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
}
.pt-start-btn:hover {
    background: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(232, 125, 42, 0.28);
}

/* ─── Đồng bộ khoảng cách các section trang chủ ──────────── */
.top-courses-section,
.student-feedback-section,
.featured-news-section {
    padding-top: 48px !important;
    padding-bottom: 44px !important;
}
@media (max-width: 767.98px) {
    .top-courses-section,
    .student-feedback-section,
    .featured-news-section {
        padding-top: 32px !important;
        padding-bottom: 28px !important;
    }
}
.cta-section { margin-top: 10px !important; margin-bottom: 48px !important; }
@media (max-width: 767.98px) {
    .cta-section { margin-top: 6px !important; margin-bottom: 32px !important; }
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL SECTION - 2-COLUMN SPLIT LAYOUT (UI/UX Pro Max)
   ═══════════════════════════════════════════════════════════ */
.student-feedback-section.nt-split-testimonial-section,
.student-feedback-section {
    padding: 64px 0 60px !important;
    background: #ffffff !important;
    position: relative !important;
}

/* Left Column: Heading & Trust Stack */
.nt-testimonial-info {
    padding-right: 20px;
}
.nt-testimonial-info .nt-eyebrow {
    font-size: 11.5px !important;
    font-weight: 800 !important;
    color: var(--nt-brand) !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
    margin-bottom: 8px !important;
    background: #FFF4EC !important;
    padding: 4px 12px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(232, 125, 42, 0.2) !important;
}
.nt-split-heading {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    line-height: 1.3 !important;
    margin: 0 0 10px !important;
}
.nt-split-sub {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 0 24px !important;
}

/* Trust Cards Stack */
.nt-trust-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nt-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    transition: all 0.25s ease;
}
.nt-trust-item:hover {
    background: #ffffff;
    border-color: rgba(232, 125, 42, 0.35);
    box-shadow: 0 6px 18px rgba(232, 125, 42, 0.08);
    transform: translateX(4px);
}
.nt-trust-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.nt-trust-icon-box.star-bg {
    background: #FEF3C7;
    color: #D97706;
}
.nt-trust-icon-box.target-bg {
    background: #DCFCE7;
    color: #16A34A;
}
.nt-trust-icon-box.speed-bg {
    background: #EDE9FE;
    color: #7C3AED;
}
.nt-trust-text h6 {
    font-size: 13.5px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin: 0 0 2px !important;
    line-height: 1.3 !important;
}
.nt-trust-text p {
    font-size: 12px !important;
    color: #64748B !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Right Column: Testimonial Card Slider */
.nt-testimonial-slider-wrap {
    position: relative !important;
    padding-bottom: 34px !important;
}
.student-feedback-section .testimonial-items-v2 {
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    position: relative !important;
}
.student-feedback-section .testimonial-item {
    padding: 6px 4px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.nt-testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #FFFBF8 100%) !important;
    border-radius: 20px !important;
    border: 1.5px solid #F3E5D8 !important;
    padding: 28px 32px !important;
    box-shadow: 0 16px 42px rgba(232, 125, 42, 0.08) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

/* Top Card Header */
.nt-card-top-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px dashed #F1E5D8 !important;
    padding-bottom: 14px !important;
}
.nt-card-stars {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.nt-card-stars .stars-icon {
    color: #f59e0b !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
}
.nt-verified-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #16a34a !important;
    background: #f0fdf4 !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    border: 1px solid #bbf7d0 !important;
}
.nt-quote-deco svg {
    display: block !important;
}

/* Quote Text */
.nt-quote-text {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #334155 !important;
    font-style: normal !important;
    font-weight: 500 !important;
    margin: 0 !important;
    position: relative !important;
}

/* Bottom Author Bar */
.nt-card-bottom-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 14px !important;
    border-top: 1px solid #F8FAFC !important;
}
.nt-author-left {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}
.nt-author-avatar {
    width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #ffedd5 !important;
    box-shadow: 0 3px 10px rgba(232, 125, 42, 0.15) !important;
}
.nt-author-text {
    display: flex !important;
    flex-direction: column !important;
}
.nt-author-name {
    font-size: 14.5px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 0 0 2px !important;
    line-height: 1.3 !important;
}
.nt-author-role {
    font-size: 11.5px !important;
    color: #64748b !important;
    font-weight: 600 !important;
}
.nt-achievement-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--nt-brand) !important;
    background: #FFF4EC !important;
    border: 1px solid rgba(232, 125, 42, 0.2) !important;
    padding: 4px 10px !important;
    border-radius: 999px !important;
}

/* Ẩn mũi tên */
.student-feedback-section .slick-arrow,
.student-feedback-section .testimonial-items-v2 .slick-arrow {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Dải Dots phân trang nằm ngay ngắn chính giữa bên dưới card */
.student-feedback-section .slider-primary.testimonial-slider .slick-dots,
.student-feedback-section .testimonial-items-v2.testimonial-slider .slick-dots {
    position: absolute !important;
    bottom: -28px !important;
    top: unset !important;
    left: 0 !important;
    right: 0 !important;
    inset: unset !important;
    inset-block-start: unset !important;
    inset-inline-start: unset !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
    z-index: 20 !important;
}

.student-feedback-section .testimonial-items-v2.testimonial-slider .slick-dots li {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
}

.student-feedback-section .testimonial-items-v2.testimonial-slider .slick-dots li button {
    font-size: 0 !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #CBD5E1 !important;
    border: none !important;
    padding: 0 !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
}

.student-feedback-section .testimonial-items-v2.testimonial-slider .slick-dots li.slick-active button {
    width: 24px !important;
    border-radius: 8px !important;
    background: var(--nt-brand) !important;
    box-shadow: 0 2px 8px rgba(232, 125, 42, 0.4) !important;
}

/* Responsive */
@media (max-width: 767.98px) {
    .nt-testimonial-card {
        padding: 24px 18px !important;
    }
    .nt-testimonial-inner {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        text-align: center !important;
    }
    .nt-author-column {
        border-right: none !important;
        border-bottom: 1px solid #F3E5D8 !important;
        padding-right: 0 !important;
        padding-bottom: 14px !important;
    }
    .nt-quote-text {
        font-size: 13.5px !important;
        text-align: center !important;
    }
    .student-feedback-section .testimonial-items-v2.testimonial-slider .slick-arrow {
        display: none !important;
    }
}

/* ─── Blog News Cards ────────────────────────────────────────── */
.blog-post-items-v3 .pt-card {
    padding: 12px !important;
}
.blog-post-items-v3 .pt-card-title {
    font-size: 13.5px !important;
    min-height: 34px;
    margin-top: 4px !important;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION PRO MAX (Rich, Vibrant & High-Converting)
   ═══════════════════════════════════════════════════════════ */
.nt-cta-section {
    padding: 30px 0 70px !important;
    background: #ffffff !important;
    position: relative !important;
}

.nt-cta-banner {
    position: relative;
    border-radius: 28px;
    background: linear-gradient(135deg, #ff9445 0%, #ff7c26 48%, #f26814 100%);
    padding: 44px 52px;
    box-shadow: 0 16px 40px rgba(242, 104, 20, 0.18), 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    color: #ffffff;
}

/* Ambient Glow & Background Patterns */
.nt-cta-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}
.nt-glow-1 {
    top: -40px;
    right: 15%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255,255,255,0) 70%);
}
.nt-glow-2 {
    bottom: -60px;
    left: -20px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 237, 213, 0.4) 0%, rgba(255,255,255,0) 70%);
}
.nt-cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.2px, transparent 1.2px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.6;
    z-index: 1;
}

.nt-cta-content {
    position: relative;
    z-index: 2;
}

/* Eyebrow Badge */
.nt-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}
.nt-cta-badge .badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
}

/* Title & Description */
.nt-cta-title {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin: 0 0 10px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.nt-cta-desc {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0 0 20px !important;
    max-width: 580px;
}

/* 3 Micro-Perks */
.nt-cta-perks {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.nt-cta-perks .nt-perk-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px) !important;
    padding: 5px 14px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, 0.38) !important;
}
.nt-cta-perks .nt-perk-item .perk-check {
    color: #bbf7d0 !important;
    font-weight: 900 !important;
}

/* Dual CTA Action Buttons */
.nt-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.nt-btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 999px;
    background: #ffffff;
    color: #ea580c !important;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}
.nt-btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    background: #FFFDFB;
    color: #c2410c !important;
}
.nt-btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    transition: all 0.25s ease;
    text-decoration: none !important;
}
.nt-btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff !important;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Social Profile Icons styling */
.footer-area .social-profile,
.footer-area-v2 .social-profile {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding-left: 0 !important;
    margin-top: 15px !important;
    list-style: none !important;
}

.footer-area .social-profile li,
.footer-area-v2 .social-profile li {
    display: inline-block !important;
}

.footer-area .social-profile li a,
.footer-area-v2 .social-profile li a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.footer-area .social-profile li a i,
.footer-area-v2 .social-profile li a i {
    color: #ffffff !important;
    font-size: 15px !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.footer-area .social-profile li a:hover,
.footer-area-v2 .social-profile li a:hover {
    background: var(--brand-primary, #e87d2a) !important;
    border-color: var(--brand-primary, #e87d2a) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 18px rgba(232, 125, 42, 0.4) !important;
}

.footer-area .social-profile li a:hover i,
.footer-area-v2 .social-profile li a:hover i {
    color: #ffffff !important;
}

/* Right Visual Stage */
.nt-cta-visual-stage {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nt-cta-mascot-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nt-cta-mascot-img {
    width: 180px;
    height: auto;
    max-height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
    animation: ntCtaFloat 4s ease-in-out infinite;
}

@keyframes ntCtaFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Floating Glass Badges */
.nt-cta-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: left;
    color: #0F172A;
    z-index: 3;
    animation: ntCtaFloat 4s ease-in-out infinite;
}
.badge-top-left {
    top: -10px;
    left: -20px;
    animation-delay: -1.5s;
}
.badge-bottom-right {
    bottom: -8px;
    right: -24px;
    animation-delay: -3s;
}
.nt-cta-float-badge .float-icon {
    font-size: 18px;
}
.nt-cta-float-badge .float-text {
    display: flex;
    flex-direction: column;
}
.nt-cta-float-badge .float-text strong {
    font-size: 11.5px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}
.nt-cta-float-badge .float-text small {
    font-size: 10px;
    color: #64748B;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991.98px) {
    .nt-cta-banner {
        padding: 36px 24px;
        text-align: center;
    }
    .nt-cta-title {
        font-size: 23px !important;
    }
    .nt-cta-desc {
        margin: 0 auto 18px !important;
    }
    .nt-cta-perks, .nt-cta-actions {
        justify-content: center;
    }
    .nt-cta-visual-stage {
        margin-top: 24px;
    }
}
@media (max-width: 575.98px) {
    .badge-top-left { left: 0; }
    .badge-bottom-right { right: 0; }
}

/* ─── Footer Area Compact Override ──────────────────────────── */
.footer-area {
    padding-top: 36px !important;
    padding-bottom: 18px !important;
}
.footer-widget .widget-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}
.footer-widget p {
    font-size: 12px !important;
    line-height: 1.6 !important;
}
.footer-widget ul li a {
    font-size: 12px !important;
    line-height: 1.8 !important;
}
.newsletter-widget .footer-subscription {
    border-radius: 30px !important;
    padding: 3px 3px 3px 14px !important;
    background: rgba(255,255,255,0.06) !important;
}
.newsletter-widget .footer-subscription input {
    font-size: 12px !important;
    height: 32px !important;
    color: #fff;
}
.newsletter-widget .footer-subscription input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-widget .footer-subscription button {
    padding: 5px 16px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    background: var(--nt-grad) !important;
    border: none !important;
}
.footer-bottom {
    padding-top: 14px !important;
    margin-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 11px !important;
}

/* ─── Footer Contact List & Social Icons Alignment Fix ─────── */
.footer-contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}
.footer-contact-list li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}
.footer-contact-list li a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
}
.footer-contact-list li a:hover {
    color: var(--nt-brand) !important;
}
.footer-contact-list .contact-icon-box {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 8px !important;
    background: rgba(232, 125, 42, 0.15) !important;
    border: 1px solid rgba(232, 125, 42, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--nt-brand) !important;
    flex-shrink: 0 !important;
}
.footer-contact-list .contact-icon-box svg {
    display: block !important;
    stroke: var(--nt-brand) !important;
}

/* Footer Social Profile Circles */
.social-profile {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 14px 0 0 0 !important;
}
.social-profile li {
    margin: 0 !important;
    padding: 0 !important;
}
.social-profile li a {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}
.social-profile li a:hover {
    background: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(232, 125, 42, 0.35) !important;
}

/* ─── Mockup Modern Blog Card & Search Design (Netudy Pro Max) ─── */
.nt-blog-search-container {
    max-width: 640px;
    margin: 0 auto 36px;
    text-align: center;
}
.nt-blog-search-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}
.nt-blog-search-wrapper .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.nt-blog-search-input {
    width: 100% !important;
    height: 50px !important;
    border-radius: 999px !important;
    border: 1.5px solid #E2E8F0 !important;
    padding: 0 42px 0 48px !important;
    font-size: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04) !important;
    color: #1E293B !important;
    outline: none !important;
    transition: all 0.25s ease !important;
}
.nt-blog-search-input:focus {
    border-color: var(--nt-brand) !important;
    box-shadow: 0 6px 22px rgba(232, 125, 42, 0.12) !important;
}
.nt-blog-search-wrapper .clear-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #94A3B8;
    cursor: pointer;
    line-height: 1;
}

/* Category Horizontal Tabs */
.nt-blog-cat-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.nt-blog-cat-tabs .cat-pill {
    border: 1px solid #E2E8F0;
    background: #ffffff;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.nt-blog-cat-tabs .cat-pill:hover,
.nt-blog-cat-tabs .cat-pill.active {
    background: #FFF4EC;
    color: var(--nt-brand);
    border-color: var(--nt-brand);
    box-shadow: 0 2px 8px rgba(232, 125, 42, 0.12);
}

/* Modern Blog Card (Matching Exact Image Mockup) */
.nt-blog-card {
    background: #ffffff !important;
    border: 1px solid #EAEAEA !important;
    border-radius: 18px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.nt-blog-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: #E2E8F0 !important;
}

/* Card Thumbnail */
.nt-blog-thumb {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    aspect-ratio: 16 / 9.8 !important;
    background: #f1f5f9 !important;
}
.nt-blog-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}
.nt-blog-card:hover .nt-blog-thumb img {
    transform: scale(1.04) !important;
}

/* Category Badge on Top-Left */
.nt-blog-cat-badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    border-radius: 999px !important;
    padding: 3.5px 11px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
    letter-spacing: -0.01em !important;
    z-index: 2 !important;
}

/* Card Body */
.nt-blog-body {
    padding: 16px 18px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

/* Meta Row (Date & Tag Pills) */
.nt-blog-meta-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
    flex-wrap: wrap !important;
}
.nt-blog-date {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #15803D !important;
}
.nt-blog-tags {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-wrap: wrap !important;
}
.nt-tag-pill {
    background: #DCFCE7 !important;
    color: #166534 !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    padding: 2px 7.5px !important;
    border-radius: 999px !important;
    line-height: 1.3 !important;
}

/* Title & Excerpt */
.nt-blog-title {
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    margin: 0 0 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 42px !important;
}
.nt-blog-title a {
    color: #0F172A !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}
.nt-blog-title a:hover {
    color: var(--nt-brand) !important;
}
.nt-blog-excerpt {
    font-size: 12.5px !important;
    color: #64748B !important;
    line-height: 1.55 !important;
    margin: 0 0 14px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 38px !important;
}

/* Card Footer (Views, Likes & Share Buttons) */
.nt-blog-footer {
    margin-top: auto !important;
    padding-top: 12px !important;
    border-top: 1px solid #F1F5F9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
.nt-blog-stats {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 11.5px !important;
    color: #94A3B8 !important;
    font-weight: 600 !important;
}
.nt-blog-stats .stat-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}
.nt-blog-share {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.nt-blog-share .share-btn {
    width: 26px !important;
    height: 26px !important;
    border-radius: 50% !important;
    border: 1px solid #E2E8F0 !important;
    background: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    color: #64748B !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
    cursor: pointer !important;
}
.nt-blog-share .share-btn:hover {
    transform: translateY(-1px) !important;
    border-color: #CBD5E1 !important;
}
.nt-blog-share .share-fb {
    color: #1877F2 !important;
}
.nt-blog-share .share-fb:hover {
    background: #1877F2 !important;
    color: #ffffff !important;
    border-color: #1877F2 !important;
}
.nt-blog-share .share-zalo {
    color: #0068FF !important;
    font-weight: 800 !important;
    font-size: 8.5px !important;
}
.nt-blog-share .share-zalo:hover {
    background: #0068FF !important;
    color: #ffffff !important;
    border-color: #0068FF !important;
}
.nt-blog-share .share-copy:hover {
    background: #0F172A !important;
    color: #ffffff !important;
    border-color: #0F172A !important;
}

/* Toast alert notification */
.nt-toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0F172A;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.nt-toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Load More Button */
.blog-pagination .load_more {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #ffffff !important;
    color: var(--nt-brand) !important;
    border: 1.5px solid var(--nt-brand) !important;
    padding: 9px 28px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}
.blog-pagination .load_more:hover {
    background: var(--nt-brand) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(232, 125, 42, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* ─── Modern Course Discovery Hero & Multi-Criteria Search ─── */
.nt-course-search-hero {
    max-width: 840px;
    margin: 0 auto 30px;
    text-align: center;
}
.nt-course-search-title {
    font-size: 25px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.02em !important;
}
.nt-course-search-sub {
    font-size: 13.5px !important;
    color: #64748B !important;
    margin-bottom: 20px !important;
}

/* Big Search Bar with Button */
.nt-course-search-bar {
    position: relative;
    width: 100%;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #E2E8F0;
    border-radius: 999px;
    padding: 4px 5px 4px 48px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
}
.nt-course-search-bar:focus-within {
    border-color: var(--nt-brand);
    box-shadow: 0 8px 28px rgba(232, 125, 42, 0.14);
}
.nt-course-search-bar .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.nt-course-search-input {
    width: 100% !important;
    height: 42px !important;
    border: none !important;
    background: transparent !important;
    padding: 0 10px 0 0 !important;
    font-size: 14px !important;
    color: #0F172A !important;
    outline: none !important;
    box-shadow: none !important;
}
.nt-course-search-bar .clear-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #94A3B8;
    cursor: pointer;
    line-height: 1;
    margin-right: 8px;
}
.nt-course-search-bar .search-submit-btn {
    height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--nt-grad);
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(232, 125, 42, 0.25);
    cursor: pointer;
}
.nt-course-search-bar .search-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232, 125, 42, 0.35);
}

/* Popular Search Suggestions */
.nt-popular-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 12px;
}
.nt-popular-tags .tags-label {
    color: #64748B;
    font-weight: 700;
}
.nt-popular-tags .tag-chip {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #475569;
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.nt-popular-tags .tag-chip:hover {
    background: #FFF4EC;
    color: var(--nt-brand);
    border-color: #F9D5BC;
}

/* ─── Multi-Criteria Smart Filter Toolbar ──────────────────── */
/* ─── Multi-Criteria Smart Filter Toolbar (Sleek Pill Edition) ── */
.nt-filter-toolbar {
    background: #ffffff;
    border: 1.5px solid #F1E5D8;
    border-radius: 999px;
    padding: 8px 16px 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    margin-bottom: 28px;
}
.nt-filter-groups {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.nt-filter-item {
    position: relative;
}

/* Base Select / Nice-Select Reset & Pill Styling (Xóa hoàn toàn lỗi 2 mũi tên) */
.nt-filter-toolbar select.nt-filter-select {
    display: none !important;
}
.nt-filter-toolbar .nice-select {
    height: 36px !important;
    line-height: 34px !important;
    padding-left: 15px !important;
    padding-right: 32px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    background-color: #F8FAFC !important;
    background-image: none !important; /* Triệt tiêu background svg gây double-arrow */
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 999px !important;
    outline: none !important;
    cursor: pointer !important;
    float: none !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.nt-filter-toolbar .nice-select .current {
    color: #1E293B !important;
    font-weight: 600 !important;
    display: inline-block !important;
    max-width: 140px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}
.nt-filter-toolbar .nice-select:hover,
.nt-filter-toolbar .nice-select.open {
    border-color: var(--nt-brand) !important;
    background-color: #FFF9F5 !important;
    box-shadow: 0 3px 12px rgba(232, 125, 42, 0.12) !important;
}

/* Duy nhất 1 mũi tên Boxicon sắc nét, không bị lệch */
.nt-filter-toolbar .nice-select::after {
    content: "\ea4a" !important;
    font-family: "boxicons" !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #64748B !important;
    border: none !important; /* Xóa sạch border gây lỗi L-shape */
    position: absolute !important;
    right: 12px !important;
    top: 0 !important;
    height: 100% !important;
    width: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
    transform-origin: center center !important;
    transition: transform 0.25s ease, color 0.2s ease !important;
    pointer-events: none !important;
}
.nt-filter-toolbar .nice-select.open::after {
    transform: rotate(180deg) !important;
    color: var(--nt-brand) !important;
}

/* Dropdown Menu Popup */
.nt-filter-toolbar .nice-select .list {
    border-radius: 16px !important;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.14) !important;
    border: 1.5px solid #F1E5D8 !important;
    padding: 6px !important;
    margin-top: 8px !important;
    background: #ffffff !important;
    min-width: 190px !important;
    z-index: 100 !important;
}
.nt-filter-toolbar .nice-select .option {
    padding: 8px 14px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    border-radius: 10px !important;
    transition: all 0.15s ease !important;
    margin-bottom: 2px !important;
    min-height: auto !important;
    line-height: 1.4 !important;
}
.nt-filter-toolbar .nice-select .option:hover,
.nt-filter-toolbar .nice-select .option.focus,
.nt-filter-toolbar .nice-select .option.selected.focus,
.nt-filter-toolbar .nice-select .option.selected {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    font-weight: 700 !important;
}

/* Reset Filter Pill Button */
.nt-btn-reset-filter {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 36px;
    padding: 0 15px;
    border-radius: 999px;
    background: #FFF1F2;
    border: 1.5px solid #FECDD3;
    color: #E11D48;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.nt-btn-reset-filter:hover {
    background: #FFE4E6;
    color: #BE123C;
    border-color: #FDA4AF;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(225, 29, 72, 0.15);
}

/* Result Counter Badge */
.nt-results-badge {
    display: inline-flex;
    align-items: center;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
}
.nt-results-badge strong {
    color: var(--nt-brand);
    font-weight: 800;
    margin: 0 3px;
}

/* Load More Course Button */
.course-pagination .load_more {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #ffffff !important;
    color: var(--nt-brand) !important;
    border: 1.5px solid var(--nt-brand) !important;
    padding: 9px 28px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
}
.course-pagination .load_more:hover {
    background: var(--nt-brand) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(232, 125, 42, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* ═══════════════════════════════════════════════════════════
   COURSE DETAILS PRO MAX REDESIGN
   ═══════════════════════════════════════════════════════════ */
.nt-cd-hero {
    background: linear-gradient(135deg, #FEFAF6 0%, #FFF5ED 100%) !important;
    border-bottom: 1.5px solid #F1E5D8 !important;
    padding: 38px 0 46px !important;
}
.nt-cd-breadcrumb {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 4px 14px !important;
    background: rgba(232, 125, 42, 0.08) !important;
    border: 1px solid rgba(232, 125, 42, 0.15) !important;
    border-radius: 999px !important;
    margin-bottom: 14px !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
}
.nt-cd-breadcrumb a {
    color: #64748B !important;
    text-decoration: none !important;
}
.nt-cd-breadcrumb .active {
    color: var(--nt-brand) !important;
    font-weight: 700 !important;
}
.nt-cd-badge {
    background: #FFF4EC;
    color: var(--nt-brand);
    border: 1px solid #F9D5BC;
    font-size: 11.5px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 10px;
}
.nt-cd-title {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    line-height: 1.35 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.02em !important;
}
.nt-cd-desc {
    font-size: 14.5px !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    max-width: 90% !important;
}
.nt-cd-meta-list {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    font-size: 13px !important;
    color: #475569 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.nt-cd-meta-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 600 !important;
}
.nt-cd-meta-item .star-icon {
    color: #F59E0B;
}

/* Sticky Floating Buybox Card */
.nt-cd-sidebar-card {
    position: sticky !important;
    top: 90px !important;
    background: #ffffff !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 20px !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08) !important;
    overflow: hidden !important;
    z-index: 10 !important;
}
.nt-cd-video-preview {
    position: relative !important;
    aspect-ratio: 16 / 9.5 !important;
    background: #0F172A !important;
    overflow: hidden !important;
}
.nt-cd-video-preview img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0.9 !important;
    transition: transform 0.4s ease !important;
}
.nt-cd-sidebar-card:hover .nt-cd-video-preview img {
    transform: scale(1.03) !important;
}
.nt-cd-play-btn {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    background: rgba(232, 125, 42, 0.94) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.25) !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    z-index: 2 !important;
}
.nt-cd-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
    background: var(--nt-brand) !important;
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.35) !important;
}
.nt-cd-buybox-body {
    padding: 22px 20px !important;
}
.nt-cd-price-wrap {
    display: flex !important;
    align-items: baseline !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
}
.nt-cd-price-current {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--nt-brand) !important;
    line-height: 1 !important;
}
.nt-cd-price-old {
    font-size: 16px !important;
    color: #94A3B8 !important;
    text-decoration: line-through !important;
}
.nt-cd-price-discount {
    background: #DCFCE7 !important;
    color: #166534 !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    padding: 3px 8px !important;
    border-radius: 999px !important;
}
.nt-cd-btn-enroll {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    height: 48px !important;
    border-radius: 999px !important;
    background: var(--nt-grad) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(232, 125, 42, 0.3) !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    margin-bottom: 10px !important;
}
.nt-cd-btn-enroll:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(232, 125, 42, 0.4) !important;
    color: #ffffff !important;
}
.nt-cd-btn-secondary {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    height: 42px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    border: 1.5px solid #E2E8F0 !important;
    color: #334155 !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.nt-cd-btn-secondary:hover {
    border-color: var(--nt-brand) !important;
    color: var(--nt-brand) !important;
    background: #FFF4EC !important;
}
.nt-cd-guarantee-note {
    font-size: 11.5px !important;
    color: #64748B !important;
    text-align: center !important;
    margin: 12px 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
}
.nt-cd-perks-title {
    font-size: 13.5px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 12px !important;
    padding-top: 14px !important;
    border-top: 1px solid #F1F5F9 !important;
}
.nt-cd-perks-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 18px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}
.nt-cd-perk-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 12.5px !important;
    color: #475569 !important;
    font-weight: 600 !important;
}
.nt-cd-perk-item svg {
    color: #16a34a !important;
    flex-shrink: 0 !important;
}

/* Social Share in Card */
.nt-cd-share-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 14px !important;
    border-top: 1px solid #F1F5F9 !important;
}
.nt-cd-share-label {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #64748B !important;
}

/* Main Content Left Column */
.nt-cd-block {
    background: #ffffff !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 18px !important;
    padding: 24px 26px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02) !important;
}
.nt-cd-block-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.nt-cd-highlights-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
}
@media (max-width: 767.98px) {
    .nt-cd-highlights-grid { grid-template-columns: 1fr !important; }
}
.nt-cd-highlight-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 13px !important;
    color: #334155 !important;
    line-height: 1.5 !important;
}
.nt-cd-highlight-item svg {
    color: #16a34a !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

/* Curriculum Accordion Modern Styling */
.nt-curriculum-accordion .accordion-item {
    border: 1.5px solid #E2E8F0 !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
    overflow: hidden !important;
}
.nt-curriculum-accordion .accordion-header .accordion-button {
    background: #F8FAFC !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    padding: 14px 18px !important;
    box-shadow: none !important;
}
.nt-curriculum-accordion .accordion-header .accordion-button:not(.collapsed) {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    border-bottom: 1px solid #F9D5BC !important;
}
.nt-curriculum-lesson-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.nt-curriculum-lesson-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 18px !important;
    border-bottom: 1px solid #F1F5F9 !important;
    font-size: 13px !important;
    color: #334155 !important;
    transition: background 0.15s ease !important;
}
.nt-curriculum-lesson-item:last-child {
    border-bottom: none !important;
}
.nt-curriculum-lesson-item:hover {
    background: #FEFAF6 !important;
}
.nt-curriculum-lesson-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-weight: 600 !important;
}
.nt-curriculum-lesson-left svg {
    color: #64748B !important;
}
.nt-badge-free-lesson {
    background: #DCFCE7 !important;
    color: #166534 !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    padding: 2px 7px !important;
    border-radius: 999px !important;
}

/* Instructor Card */
.nt-instructor-card {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 16px !important;
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 14px !important;
}
.nt-instructor-avatar {
    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid var(--nt-brand) !important;
}
.nt-instructor-info h5 {
    font-size: 15.5px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 3px !important;
}
.nt-instructor-info p {
    font-size: 12.5px !important;
    color: #64748B !important;
    margin: 0 !important;
}

/* ─── Smart Curriculum Ergonomics (Xử lý khóa học 1000 bài) ── */
.nt-curriculum-toolbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid #F1F5F9 !important;
    margin-bottom: 16px !important;
}
.nt-curriculum-controls {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}
.nt-btn-curriculum-tool {
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    color: #475569 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 5px 12px !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}
.nt-btn-curriculum-tool:hover {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
}

/* Quick Search inside Curriculum */
.nt-curriculum-search-box {
    position: relative !important;
    width: 100% !important;
    margin-bottom: 14px !important;
}
.nt-curriculum-search-box input {
    width: 100% !important;
    height: 40px !important;
    border-radius: 10px !important;
    border: 1.5px solid #E2E8F0 !important;
    padding: 0 14px 0 38px !important;
    font-size: 13px !important;
    background: #F8FAFC !important;
    color: #0F172A !important;
    outline: none !important;
    transition: all 0.2s ease !important;
}
.nt-curriculum-search-box input:focus {
    border-color: var(--nt-brand) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(232, 125, 42, 0.1) !important;
}
.nt-curriculum-search-box .search-icon {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
}

/* Module Segment Tabs */
.nt-curriculum-module-tabs {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin-bottom: 14px !important;
}
.nt-curriculum-module-tabs .module-tab {
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    color: #64748B !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.nt-curriculum-module-tabs .module-tab:hover,
.nt-curriculum-module-tabs .module-tab.active {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
}

/* Show More Sections Button */
.nt-btn-show-more-curriculum {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 24px !important;
    background: #ffffff !important;
    border: 1.5px solid var(--nt-brand) !important;
    color: var(--nt-brand) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 8px rgba(232, 125, 42, 0.1) !important;
}
.nt-btn-show-more-curriculum:hover {
    background: var(--nt-brand) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px rgba(232, 125, 42, 0.25) !important;
}
.nt-btn-show-more-curriculum .chevron-icon {
    transition: transform 0.25s ease !important;
}
.nt-btn-show-more-curriculum.expanded .chevron-icon {
    transform: rotate(180deg) !important;
}

/* ═══════════════════════════════════════════════════════════
   STUDENT PROFILE & DASHBOARD PRO MAX REDESIGN
   ═══════════════════════════════════════════════════════════ */
.profile-dashboard-section {
    background: #FAFAF9 !important;
}

/* Left Sidebar Card */
.profile-sidebar {
    background: #ffffff !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05) !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
}
.profile-sidebar .profile-card {
    padding-bottom: 15px !important;
}
.profile-sidebar .profile-card .profile-cover {
    background: linear-gradient(135deg, #FFF4EC 0%, #FED7AA 100%) !important;
    height: 100px !important;
}
.profile-sidebar .profile-card .profile-info {
    text-align: center !important;
    padding: 0 15px !important;
}
.profile-sidebar .profile-card .profile-info .profile-picture {
    margin-top: -50px !important;
    margin-bottom: 8px !important;
}
.profile-sidebar .profile-card .profile-info .profile-picture img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 0 0 2px var(--nt-brand), 0 8px 24px rgba(232, 125, 42, 0.2) !important;
    object-fit: cover !important;
}
.profile-sidebar .profile-card .profile-info h3 {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 2px !important;
}
.profile-sidebar .profile-card .profile-info p {
    font-size: 12px !important;
    color: #64748B !important;
    margin-bottom: 0 !important;
}

/* Profile Menu Navigation */
.profile-menu {
    padding: 0 14px 18px !important;
}
.profile-menu ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.profile-menu ul li {
    margin-bottom: 3px !important;
}
.profile-menu ul li a {
    display: flex !important;
    align-items: center !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    border: 1px solid transparent !important;
    border-bottom: none !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}
.profile-menu ul li a svg {
    margin-inline-end: 12px !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
}
.profile-menu ul li a svg path,
.profile-menu ul li a svg g path {
    fill: #64748B !important;
    stroke: #64748B !important;
    transition: all 0.2s ease !important;
}
.profile-menu ul li a:hover,
.profile-menu ul li.active a {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    font-weight: 700 !important;
    border-color: rgba(232, 125, 42, 0.2) !important;
    transform: translateX(3px) !important;
}
.profile-menu ul li a:hover svg path,
.profile-menu ul li.active a svg path,
.profile-menu ul li a:hover svg g path,
.profile-menu ul li.active a svg g path {
    fill: var(--nt-brand) !important;
    stroke: var(--nt-brand) !important;
}

/* Dashboard Header & Stat Cards */
.dashboard-wrapper .section-title-v3 h3 {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 4px !important;
}
.dboard-icon-box {
    margin-bottom: 18px !important;
}
.dboard-icon-box a {
    text-decoration: none !important;
}
.icon-boxes-v4 .icon-box {
    background: #ffffff !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 18px !important;
    padding: 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03) !important;
    transition: all 0.25s ease !important;
}
.icon-boxes-v4 .icon-box:hover {
    transform: translateY(-3px) !important;
    border-color: var(--nt-brand) !important;
    box-shadow: 0 12px 30px rgba(232, 125, 42, 0.1) !important;
}
.icon-boxes-v4 .icon-box-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    transition: transform 0.2s ease !important;
}
.icon-boxes-v4 .icon-box-icon img {
    width: 24px !important;
    height: 24px !important;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}
.icon-boxes-v4 .icon-box-icon.box-bg-clr-1 { 
    background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%) !important; 
    box-shadow: 0 6px 14px rgba(2, 132, 199, 0.28) !important;
}
.icon-boxes-v4 .icon-box-icon.box-bg-clr-2 { 
    background: linear-gradient(135deg, #059669 0%, #34D399 100%) !important; 
    box-shadow: 0 6px 14px rgba(5, 150, 105, 0.28) !important;
}
.icon-boxes-v4 .icon-box-icon.box-bg-clr-3 { 
    background: linear-gradient(135deg, #4F46E5 0%, #818CF8 100%) !important; 
    box-shadow: 0 6px 14px rgba(79, 70, 229, 0.28) !important;
}
.icon-boxes-v4 .icon-box-icon.box-bg-clr-4 { 
    background: linear-gradient(135deg, #E11D48 0%, #FB7185 100%) !important; 
    box-shadow: 0 6px 14px rgba(225, 29, 72, 0.28) !important;
}
.icon-boxes-v4 .icon-box-icon.box-bg-clr-5 { 
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%) !important; 
    box-shadow: 0 6px 14px rgba(124, 58, 237, 0.28) !important;
}
.icon-boxes-v4 .icon-box-icon.box-bg-clr-6 { 
    background: linear-gradient(135deg, #E87D2A 0%, #FB923C 100%) !important; 
    box-shadow: 0 6px 14px rgba(232, 125, 42, 0.32) !important;
}

.icon-boxes-v4 .icon-box-content h5 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    line-height: 1.1 !important;
    margin-bottom: 3px !important;
}
.icon-boxes-v4 .icon-box-content p {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #64748B !important;
    margin-bottom: 0 !important;
}

/* Balance Box & User Intro */
.balance-box {
    background: linear-gradient(135deg, #FEFAF6 0%, #FFFFFF 100%) !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 18px !important;
    padding: 22px !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}
.balance-box .balance-box-content h6 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #64748B !important;
    margin-bottom: 6px !important;
}
.balance-box .balance-box-content h4 {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--nt-brand) !important;
    margin-bottom: 0 !important;
}

.user-intro {
    background: #ffffff !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 18px !important;
    padding: 22px !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03) !important;
}
.user-intro .user-intro-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
}
.user-intro .user-thumb img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 2px solid var(--nt-brand) !important;
    object-fit: cover !important;
}
.user-intro .user-info h4 {
    font-size: 15.5px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 2px !important;
}
.user-intro .user-info span {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 1px 8px !important;
    border-radius: 999px !important;
}
.user-intro .edit-profile {
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    color: #475569 !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}
.user-intro .edit-profile:hover {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
}
.user-intro .user-contact-info {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}
.user-intro .user-contact-info li {
    font-size: 12.5px !important;
    color: #64748B !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.user-intro .user-contact-info li a {
    color: #64748B !important;
    text-decoration: none !important;
}
.user-intro .user-contact-info li a:hover {
    color: var(--nt-brand) !important;
}
.user-intro .user-contact-info li i {
    color: var(--nt-brand) !important;
    width: 14px !important;
}

/* ═══════════════════════════════════════════════════════════
   HEADER USER PROFILE DROPDOWN BULLETPROOF FIX
   ═══════════════════════════════════════════════════════════ */
.template-header .header-right .header-extra .user-profile-dropdown,
.template-header .user-profile-dropdown,
.user-profile-dropdown {
    position: relative !important;
}

.template-header .header-right .header-extra .user-profile-dropdown .user-profile-dropdown-content,
.template-header .user-profile-dropdown .user-profile-dropdown-content,
.user-profile-dropdown-content.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    inset: 100% 0 auto auto !important;
    transform: none !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    width: 290px !important;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16) !important;
    border: 1.5px solid #F1E5D8 !important;
    background: #ffffff !important;
    z-index: 99999 !important;
    padding: 0 !important;
}

.template-header .header-right .header-extra .user-profile-dropdown .user-profile-dropdown-content.dropdown-menu.show,
.template-header .user-profile-dropdown .user-profile-dropdown-content.dropdown-menu.show,
.user-profile-dropdown-content.dropdown-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    inset: 100% 0 auto auto !important;
    transform: none !important;
}

/* Profile Info Header in Dropdown */
.user-profile-dropdown-content .profile-info {
    background: linear-gradient(135deg, #FFF4EC 0%, #FED7AA 100%) !important;
    padding: 16px 18px !important;
    border-bottom: 1px solid #F1E5D8 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
}
.user-profile-dropdown-content .profile-info .profile-picture {
    margin: 0 !important;
    min-width: 44px !important;
}
.user-profile-dropdown-content .profile-info .profile-picture img {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 2px solid var(--nt-brand) !important;
    object-fit: cover !important;
    box-shadow: 0 4px 10px rgba(232, 125, 42, 0.2) !important;
    margin: 0 !important;
}
.user-profile-dropdown-content .profile-info .profile-info-content {
    text-align: start !important;
}
.user-profile-dropdown-content .profile-info .profile-info-content h3 {
    font-size: 14.5px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
}
.user-profile-dropdown-content .profile-info .profile-info-content p {
    font-size: 11.5px !important;
    color: #64748B !important;
    margin-bottom: 0 !important;
}

/* Profile Menu list inside Dropdown */
.user-profile-dropdown-content .profile-menu {
    padding: 8px !important;
    margin: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}
.user-profile-dropdown-content .profile-menu ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}
.user-profile-dropdown-content .profile-menu ul li {
    margin-bottom: 2px !important;
}
.user-profile-dropdown-content .profile-menu ul li a {
    padding: 8px 12px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: all 0.15s ease !important;
    border: none !important;
}
.user-profile-dropdown-content .profile-menu ul li a:hover,
.user-profile-dropdown-content .profile-menu ul li.active a {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    font-weight: 700 !important;
    transform: none !important;
}
.user-profile-dropdown-content .profile-menu ul li a svg {
    width: 15px !important;
    height: 15px !important;
    margin-right: 8px !important;
    flex-shrink: 0 !important;
}

/* ═══════════════════════════════════════════════════════════
   ATTENDANCE & LEARNING ASSESSMENT PRO MAX REDESIGN
   ═══════════════════════════════════════════════════════════ */
.my-attendance-wrapper {
    background: transparent !important;
}

.nt-att-header-card {
    background: #ffffff !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 18px !important;
    padding: 20px 24px !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03) !important;
    margin-bottom: 20px !important;
}

.nt-att-title-group {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
}

.nt-att-btn-back {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 14px !important;
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 999px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #475569 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}
.nt-att-btn-back:hover {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
    transform: translateX(-2px) !important;
}

.nt-att-select-box {
    position: relative !important;
}
.nt-att-select-box .nice-select {
    height: 46px !important;
    line-height: 44px !important;
    border-radius: 12px !important;
    border: 1.5px solid #F1E5D8 !important;
    background: #FEFAF6 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    padding-left: 16px !important;
    transition: all 0.2s ease !important;
}
.nt-att-select-box .nice-select:hover,
.nt-att-select-box .nice-select:focus,
.nt-att-select-box .nice-select.open {
    border-color: var(--nt-brand) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(232, 125, 42, 0.12) !important;
}
.nt-att-select-box .nice-select .list {
    border-radius: 14px !important;
    border: 1.5px solid #F1E5D8 !important;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08) !important;
    padding: 6px !important;
}
.nt-att-select-box .nice-select .option {
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 13.5px !important;
}
.nt-att-select-box .nice-select .option.selected,
.nt-att-select-box .nice-select .option:hover {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    font-weight: 700 !important;
}

/* 5 Stat Cards */
.nt-att-stat-card {
    background: #ffffff !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 18px !important;
    padding: 18px !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.25s ease !important;
}
.nt-att-stat-card:hover {
    transform: translateY(-3px) !important;
    border-color: var(--nt-brand) !important;
    box-shadow: 0 12px 30px rgba(232, 125, 42, 0.1) !important;
}

.nt-att-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
}

.nt-att-card-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
}
.nt-att-card-icon--blue {
    background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%) !important;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25) !important;
}
.nt-att-card-icon--amber {
    background: linear-gradient(135deg, #D97706 0%, #FBBF24 100%) !important;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.25) !important;
}
.nt-att-card-icon--teal {
    background: linear-gradient(135deg, #0D9488 0%, #2DD4BF 100%) !important;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.25) !important;
}
.nt-att-card-icon--purple {
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%) !important;
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.25) !important;
}
.nt-att-card-icon--orange {
    background: linear-gradient(135deg, #E87D2A 0%, #FB923C 100%) !important;
    box-shadow: 0 4px 10px rgba(232, 125, 42, 0.28) !important;
}

.nt-att-card-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #64748B !important;
    margin: 0 !important;
}

.nt-att-card-value {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    line-height: 1.1 !important;
    margin: 4px 0 8px !important;
}

.nt-att-comment-text {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #334155 !important;
    background: #F8FAFC !important;
    border-radius: 10px !important;
    padding: 10px 12px !important;
    border: 1px dashed #E2E8F0 !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    min-height: 58px !important;
    display: flex !important;
    align-items: center !important;
    white-space: pre-wrap !important;
    word-break: break-word !important;
}

/* Detail Table */
.nt-att-table-card {
    background: #ffffff !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 18px !important;
    padding: 24px !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03) !important;
    margin-top: 24px !important;
}
.nt-att-table-title {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.nt-att-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100% !important;
    min-width: 950px !important;
}
.nt-att-table thead th {
    background: #FFF4EC !important;
    color: #0F172A !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 14px 16px !important;
    border: none !important;
    white-space: nowrap !important;
}
.nt-att-table thead th:first-child {
    border-top-left-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
}
.nt-att-table thead th:last-child {
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}
.nt-att-table tbody td {
    padding: 14px 16px !important;
    font-size: 13px !important;
    color: #475569 !important;
    border-bottom: 1px solid #F1F5F9 !important;
    vertical-align: top !important;
}
.nt-att-table tbody tr:hover td {
    background: #FEFAF6 !important;
}

.nt-att-comment-box {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #334155 !important;
    background: #F8FAFC !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    border: 1px solid #E2E8F0 !important;
    white-space: pre-wrap !important;
    word-break: break-word !important;
    min-width: 150px !important;
}

/* Badge styles */
.nt-badge-pill {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    padding: 3px 10px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}
.nt-badge-present { background: #DCFCE7 !important; color: #15803D !important; border: 1px solid #BBF7D0 !important; }
.nt-badge-late { background: #FEF3C7 !important; color: #B45309 !important; border: 1px solid #FDE68A !important; }
.nt-badge-excused { background: #E0F2FE !important; color: #0369A1 !important; border: 1px solid #BAE6FD !important; }
.nt-badge-absent { background: #FEE2E2 !important; color: #B91C1C !important; border: 1px solid #FECACA !important; }

/* Truncate button style */
.nt-btn-view-detail {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    border: 1px solid rgba(232, 125, 42, 0.25) !important;
    padding: 2px 8px !important;
    border-radius: 6px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    text-decoration: none !important;
}
.nt-btn-view-detail:hover {
    background: var(--nt-brand) !important;
    color: #ffffff !important;
}

/* Empty State */
.nt-att-empty-state {
    text-align: center !important;
    padding: 45px 20px !important;
}
.nt-att-empty-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    margin-bottom: 14px !important;
}
.nt-att-empty-state h5 {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 6px !important;
}
.nt-att-empty-state p {
    font-size: 13px !important;
    color: #64748B !important;
    max-width: 420px !important;
    margin: 0 auto !important;
}

/* ═══════════════════════════════════════════════════════════
   MY SCHEDULE PRO MAX REDESIGN
   ═══════════════════════════════════════════════════════════ */
.my-schedule-wrapper {
    background: transparent !important;
}

.nt-sch-header-card {
    background: #ffffff !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 18px !important;
    padding: 20px 24px !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03) !important;
    margin-bottom: 20px !important;
}

.nt-sch-title-group {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
}

.nt-sch-btn-back {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 14px !important;
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 999px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #475569 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}
.nt-sch-btn-back:hover {
    background: #FFF4EC !important;
    color: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
    transform: translateX(-2px) !important;
}

.nt-sch-calendar-card {
    background: #ffffff !important;
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 18px !important;
    padding: 24px !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03) !important;
}

/* FullCalendar Customization */
.fc {
    background: #ffffff !important;
    font-family: inherit !important;
}
.fc .fc-header-toolbar {
    padding: 0 0 16px 0 !important;
    margin-bottom: 16px !important;
    border-bottom: 1px solid #F1F5F9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}
.fc .fc-toolbar-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    letter-spacing: -0.01em !important;
    text-transform: capitalize !important;
}

/* Calendar Navigation Buttons */
.fc .fc-button-primary {
    background: #FFF4EC !important;
    border: 1.5px solid #F1E5D8 !important;
    color: var(--nt-brand) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 7px 14px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}
.fc .fc-button-primary:hover {
    background: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}
.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary.fc-button-active {
    background: var(--nt-brand) !important;
    border-color: var(--nt-brand) !important;
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(232, 125, 42, 0.25) !important;
}
.fc .fc-today-button {
    background: #ffffff !important;
    border: 1.5px solid var(--nt-brand) !important;
    color: var(--nt-brand) !important;
    border-radius: 999px !important;
    padding: 6px 16px !important;
    font-weight: 700 !important;
}
.fc .fc-today-button:hover {
    background: var(--nt-brand) !important;
    color: #ffffff !important;
}

/* Header Cells (Thứ 2, Thứ 3...) */
.fc-theme-standard th {
    background: #FFF4EC !important;
    border-color: #F1E5D8 !important;
}
.fc-col-header-cell-cushion {
    color: #0F172A !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 10px 0 !important;
    text-decoration: none !important;
}

/* Day Numbers & Cells */
.fc-theme-standard td {
    border-color: #F1F5F9 !important;
}
.fc-daygrid-day-number {
    color: #475569 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 6px 8px !important;
    text-decoration: none !important;
}
.fc-day-today {
    background: rgba(232, 125, 42, 0.04) !important;
}
.fc-day-today .fc-daygrid-day-number {
    background: var(--nt-brand) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    width: 26px !important;
    height: 26px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 4px !important;
    font-weight: 700 !important;
}

/* Event styles */
.fc-event {
    cursor: pointer !important;
    padding: 5px 8px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border: 1px solid transparent !important;
    border-left: 3.5px solid currentColor !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
    margin-bottom: 3px !important;
    transition: all 0.15s ease !important;
}
.fc-event:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.1) !important;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .nt-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .nt-hero-desc { max-width: none; margin-left: auto; margin-right: auto; }
    .nt-hero-actions { justify-content: center; }
    .nt-hero-stage { width: 380px; height: 330px; margin-top: 10px; }
    .nt-stage-mascot { width: 180px; height: 180px; }
    .nt-stage-ring-outer { width: 270px; height: 270px; }
    .nt-stage-ring-inner { width: 200px; height: 200px; }
    .nt-pricing-grid { grid-template-columns: 1fr; }
    .nt-pricing-card--popular { transform: none; order: -1; }
}

@media (max-width: 767.98px) {
    .nt-hero { padding-top: 24px; }
    .nt-hero-brand { font-size: 24px; }
    .nt-hero-title { font-size: 19px; }
    .nt-hero-actions { flex-direction: column; align-items: stretch; }
    .nt-btn { justify-content: center; width: 100%; }
    .nt-stat-strip { grid-template-columns: 1fr; padding: 4px 10px; }
    .nt-stat-item { border-right: none; border-bottom: 1px solid #F1E5D6; justify-content: flex-start; padding: 8px 4px; }
    .nt-stat-item:last-child { border-bottom: none; }
    .nt-hero-stage { width: 100%; height: auto; display: flex; flex-direction: column; align-items: center; }
    .nt-stage-ring-outer, .nt-stage-ring-inner, .nt-stage-glow { display: none; }
    .nt-stage-mascot { width: 150px; height: 150px; margin-bottom: 8px; }
    .nt-float-badge { position: static !important; transform: none !important; margin: 4px; animation: none !important; }
    .student-feedback-section .testimonial-items-v2 { padding: 18px 16px !important; }
}

/* ═══════════════════════════════════════════════════════════
   NETUDY HELP & SUPPORT SUITE (Pro Max Edition)
   - Trung tâm trợ giúp & FAQ câu hỏi thường gặp
   - Gửi yêu cầu hỗ trợ (Create Ticket)
   - Quản lý danh sách vé (Ticket List)
   - Chi tiết & Trao đổi phản hồi (Ticket Show / Chat)
   ═══════════════════════════════════════════════════════════ */

.nt-sup-section {
    padding: 36px 0 70px 0;
    background: #FAF8F5;
    min-height: calc(100vh - 200px);
}

/* Hero Header Card */
.nt-sup-hero-card {
    background: linear-gradient(135deg, #FFF9F4 0%, #FFFFFF 60%, #FFF4EB 100%);
    border: 1.5px solid #F1E5D8;
    border-radius: 24px;
    padding: 36px 36px 32px 36px;
    box-shadow: 0 10px 30px rgba(232, 125, 42, 0.05);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.nt-sup-hero-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 125, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.nt-sup-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #FFF0E4;
    border: 1px solid #F9D5BC;
    border-radius: 999px;
    color: var(--nt-brand);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}
.nt-sup-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 8px;
    line-height: 1.3;
}
.nt-sup-hero-desc {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 24px;
    max-width: 680px;
    line-height: 1.6;
}

/* Search Box in Hero */
.nt-sup-search-wrapper {
    position: relative;
    max-width: 600px;
    margin-bottom: 24px;
}
.nt-sup-search-input {
    width: 100%;
    height: 52px;
    padding: 12px 20px 12px 48px;
    background: #FFFFFF;
    border: 1.5px solid #E2D8CF;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #1E293B;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: all 0.2s ease;
}
.nt-sup-search-input:focus {
    outline: none;
    border-color: var(--nt-brand);
    box-shadow: 0 0 0 4px rgba(232, 125, 42, 0.12);
}
.nt-sup-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 17px;
    pointer-events: none;
}

/* Quick Contact Strip Cards */
.nt-sup-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}
.nt-sup-quick-card {
    background: #FFFFFF;
    border: 1.5px solid #F1E5D8;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nt-sup-quick-card:hover {
    border-color: var(--nt-brand);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 125, 42, 0.1);
}
.nt-sup-quick-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFFFFF;
}
.nt-sup-icon-orange {
    background: linear-gradient(135deg, #FB923C, #EA580C);
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.25);
}
.nt-sup-icon-blue {
    background: linear-gradient(135deg, #38BDF8, #0284C7);
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}
.nt-sup-icon-emerald {
    background: linear-gradient(135deg, #34D399, #059669);
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.25);
}
.nt-sup-quick-content h6 {
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 2px;
}
.nt-sup-quick-content p {
    font-size: 13px;
    color: #64748B;
    margin: 0;
    font-weight: 500;
}

/* FAQ Main Section Card */
.nt-sup-faq-container {
    background: #FFFFFF;
    border: 1.5px solid #F1E5D8;
    border-radius: 22px;
    padding: 32px 36px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
    margin-bottom: 32px;
}
.nt-sup-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.nt-sup-heading-title {
    font-size: 20px;
    font-weight: 800;
    color: #1E293B;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nt-sup-heading-count {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 4px 12px;
    border-radius: 999px;
}

/* Custom Netudy FAQ Accordion */
.nt-sup-accordion-item {
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 14px !important;
    margin-bottom: 12px !important;
    background: #FFFFFF !important;
    overflow: hidden !important;
    transition: all 0.2s ease !important;
}
.nt-sup-accordion-item:hover {
    border-color: #E87D2A !important;
    box-shadow: 0 4px 14px rgba(232, 125, 42, 0.08) !important;
}
.nt-sup-accordion-item.is-open {
    border-color: #E87D2A !important;
    background: #FFFDFB !important;
}
.nt-sup-accordion-button {
    width: 100% !important;
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    text-align: left !important;
    cursor: pointer !important;
    gap: 14px !important;
}
.nt-sup-accordion-left {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex: 1 !important;
}
.nt-sup-faq-num {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #FFF0E4, #FFE3D0) !important;
    color: var(--nt-brand) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #F9D5BC !important;
    transition: all 0.2s ease !important;
}
.nt-sup-accordion-item.is-open .nt-sup-faq-num {
    background: var(--nt-brand) !important;
    color: #FFFFFF !important;
    border-color: var(--nt-brand) !important;
}
.nt-sup-faq-question {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1E293B !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}
.nt-sup-faq-chevron {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-radius: 50% !important;
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #64748B !important;
    font-size: 12px !important;
    transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease !important;
}
.nt-sup-accordion-item.is-open .nt-sup-faq-chevron {
    transform: rotate(180deg) !important;
    background: #FFF0E4 !important;
    color: var(--nt-brand) !important;
    border-color: #F9D5BC !important;
}
.nt-sup-accordion-body {
    padding: 0 24px 20px 66px !important;
    font-size: 14.5px !important;
    line-height: 1.7 !important;
    color: #475569 !important;
}
.nt-sup-accordion-body p {
    margin: 0 0 10px 0 !important;
}
.nt-sup-accordion-body p:last-child {
    margin-bottom: 0 !important;
}

/* Support CTA Banner Card */
.nt-sup-cta-banner {
    background: linear-gradient(135deg, #FFF6EF 0%, #FFECE0 100%);
    border: 1.5px solid #F9D5BC;
    border-radius: 22px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(232, 125, 42, 0.08);
}
.nt-sup-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nt-sup-cta-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #FB923C, #EA580C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.3);
}
.nt-sup-cta-info h4 {
    font-size: 19px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 4px;
}
.nt-sup-cta-info p {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}
.nt-sup-cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Common Support Buttons */
.nt-sup-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #F48E3D 0%, #E87D2A 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 14.5px;
    border-radius: 999px;
    border: none;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(232, 125, 42, 0.28);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.nt-sup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 125, 42, 0.38);
    color: #FFFFFF !important;
}
.nt-sup-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    background: #FFFFFF;
    color: var(--nt-brand) !important;
    font-weight: 700;
    font-size: 14.5px;
    border-radius: 999px;
    border: 1.5px solid #F9D5BC;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.nt-sup-btn-outline:hover {
    background: #FFF0E4;
    border-color: var(--nt-brand);
    color: var(--nt-brand-hover) !important;
    transform: translateY(-2px);
}

/* Hidden state for loading button */
.loading_button.d-none,
.nt-sup-btn-primary.loading_button.d-none,
.nt-sup-btn-outline.loading_button.d-none {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════════
   FORM CREATE & REPLY TICKET STYLING
   ═══════════════════════════════════════════════════════════ */
.nt-sup-form-card {
    background: #FFFFFF;
    border: 1.5px solid #F1E5D8;
    border-radius: 22px;
    padding: 32px 36px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
    margin-bottom: 24px;
}
.nt-sup-form-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid #F8EDE3;
}
.nt-sup-form-title {
    font-size: 20px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nt-sup-form-desc {
    font-size: 13.5px;
    color: #64748B;
    margin: 0;
}
.nt-sup-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nt-sup-label .required-mark {
    color: #EF4444;
    font-weight: 800;
}
.nt-sup-input, 
.nt-sup-form-card .form-control {
    width: 100%;
    height: 48px;
    border: 1.5px solid #E2D8CF;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    color: #1E293B;
    background: #FFFFFF;
    transition: all 0.2s ease;
}
.nt-sup-input:focus,
.nt-sup-form-card .form-control:focus {
    border-color: var(--nt-brand) !important;
    box-shadow: 0 0 0 3.5px rgba(232, 125, 42, 0.12) !important;
    outline: none !important;
}

/* Custom Select Styling */
.nt-sup-select,
.nt-sup-form-card select.form-control,
.nt-sup-form-card select {
    width: 100% !important;
    height: 48px !important;
    border: 1.5px solid #E2D8CF !important;
    border-radius: 12px !important;
    padding: 10px 40px 10px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1E293B !important;
    background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") no-repeat right 16px center / 16px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.nt-sup-select:focus,
.nt-sup-form-card select.form-control:focus,
.nt-sup-form-card select:focus {
    border-color: var(--nt-brand) !important;
    box-shadow: 0 0 0 3.5px rgba(232, 125, 42, 0.12) !important;
    outline: none !important;
}

/* Select2 Container Overrides for Netudy */
.nt-sup-form-card .select2-container,
.select2-container--default.nt-sup-select2-container {
    width: 100% !important;
    display: block !important;
}
.nt-sup-form-card .select2-container--default .select2-selection--single {
    height: 48px !important;
    border: 1.5px solid #E2D8CF !important;
    border-radius: 12px !important;
    background: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 16px !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}
.nt-sup-form-card .select2-container--default.select2-container--open .select2-selection--single,
.nt-sup-form-card .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--nt-brand) !important;
    box-shadow: 0 0 0 3.5px rgba(232, 125, 42, 0.12) !important;
}
.nt-sup-form-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1E293B !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    line-height: 46px !important;
    display: flex !important;
    align-items: center !important;
}
.nt-sup-form-card .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 14px !important;
    top: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.nt-sup-form-card .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #64748B transparent transparent transparent !important;
    border-width: 6px 5px 0 5px !important;
    margin-top: 0 !important;
}
.nt-sup-form-card .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #64748B transparent !important;
    border-width: 0 5px 6px 5px !important;
}
.select2-dropdown {
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
    overflow: hidden !important;
    padding: 6px !important;
    background: #FFFFFF !important;
    z-index: 99999 !important;
}
.select2-container--default .select2-results__option {
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    margin-bottom: 2px !important;
    transition: all 0.15s ease !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted {
    background: #FFF0E4 !important;
    color: var(--nt-brand) !important;
}
.select2-container--default .select2-results__option[aria-selected=true] {
    background: var(--nt-brand) !important;
    color: #FFFFFF !important;
}

.nt-sup-textarea,
.nt-sup-form-card textarea.form-control {
    height: 140px !important;
    resize: vertical;
    padding: 14px 16px !important;
}

/* Drag & Drop File Upload Box */
.nt-sup-file-dropzone {
    border: 2px dashed #E2D8CF;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    background: #FAFAFA;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
.nt-sup-file-dropzone:hover {
    border-color: var(--nt-brand);
    background: #FFF9F5;
}
.nt-sup-file-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #FFF0E4;
    color: var(--nt-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
}
.nt-sup-file-text {
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 4px;
}
.nt-sup-file-subtext {
    font-size: 12.5px;
    color: #94A3B8;
    margin: 0;
}
.nt-sup-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.nt-sup-file-preview-name {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--nt-brand);
    display: none;
}

/* Sidecards */
.nt-sup-sidecard {
    background: #FFFFFF;
    border: 1.5px solid #F1E5D8;
    border-radius: 20px;
    padding: 24px 26px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
    margin-bottom: 20px;
}
.nt-sup-sidecard-title {
    font-size: 16px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F8EDE3;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nt-sup-step-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}
.nt-sup-step-item:last-child {
    margin-bottom: 0;
}
.nt-sup-step-num {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #FFF0E4;
    color: var(--nt-brand);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nt-sup-step-content h6 {
    font-size: 13.5px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 2px;
}
.nt-sup-step-content p {
    font-size: 12.5px;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   TICKET LIST TABLE STYLING
   ═══════════════════════════════════════════════════════════ */
.nt-sup-table-card {
    background: #FFFFFF;
    border: 1.5px solid #F1E5D8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}
.nt-sup-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}
.nt-sup-table thead th {
    background: #FAF5F0;
    color: #64748B;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px;
    border-bottom: 1.5px solid #F1E5D8;
    border-top: none;
}
.nt-sup-table tbody td {
    padding: 16px 18px;
    vertical-align: middle;
    border-bottom: 1px solid #F5EDE4;
    font-size: 14px;
    color: #334155;
}
.nt-sup-table tbody tr:last-child td {
    border-bottom: none;
}
.nt-sup-table tbody tr:hover {
    background: #FFFDFB;
}

/* Status & Priority Pill Badges */
.nt-sup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.nt-sup-badge-open {
    background: #FFF4EC;
    color: #EA580C;
    border: 1px solid #FDBA74;
}
.nt-sup-badge-answered {
    background: #F0FDF4;
    color: #16A34A;
    border: 1px solid #86EFAC;
}
.nt-sup-badge-pending {
    background: #FEFCE8;
    color: #CA8A04;
    border: 1px solid #FDE047;
}
.nt-sup-badge-close {
    background: #F1F5F9;
    color: #64748B;
    border: 1px solid #CBD5E1;
}
.nt-sup-badge-hold {
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #93C5FD;
}

/* Priority Badges */
.nt-sup-prio-high {
    color: #DC2626;
    font-weight: 700;
}
.nt-sup-prio-medium {
    color: #D97706;
    font-weight: 700;
}
.nt-sup-prio-low {
    color: #16A34A;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   TICKET SHOW / CONVERSATION THREAD
   ═══════════════════════════════════════════════════════════ */
.nt-sup-chat-thread {
    margin-bottom: 24px;
}
.nt-sup-msg-box {
    margin-bottom: 18px;
    display: flex;
    gap: 14px;
}
.nt-sup-msg-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #FFF0E4;
    border: 1.5px solid #F9D5BC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--nt-brand);
    font-size: 15px;
}
.nt-sup-msg-avatar-admin {
    background: #DCFCE7;
    border-color: #86EFAC;
    color: #16A34A;
}
.nt-sup-msg-content {
    flex: 1;
}
.nt-sup-msg-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.nt-sup-msg-author {
    font-size: 14px;
    font-weight: 800;
    color: #1E293B;
}
.nt-sup-msg-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}
.nt-sup-msg-time {
    font-size: 12px;
    color: #94A3B8;
}
.nt-sup-msg-bubble {
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 14.5px;
    line-height: 1.6;
    border: 1.5px solid transparent;
}
.nt-sup-bubble-student {
    background: #FFF9F4;
    border-color: #F8EDE3;
    color: #334155;
    border-top-left-radius: 4px;
}
.nt-sup-bubble-admin {
    background: #F0FDF4;
    border-color: #DCFCE7;
    color: #166534;
    border-top-left-radius: 4px;
}
.nt-sup-attachment-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    text-decoration: none !important;
    margin-top: 8px;
    transition: all 0.2s ease;
}
.nt-sup-attachment-card:hover {
    border-color: var(--nt-brand);
    color: var(--nt-brand);
    background: #FFF9F5;
}

@media (max-width: 991.98px) {
    .nt-sup-quick-grid { grid-template-columns: 1fr; }
    .nt-sup-cta-banner { flex-direction: column; text-align: center; }
    .nt-sup-cta-left { flex-direction: column; }
    .nt-sup-cta-actions { justify-content: center; }
}

@media (max-width: 767.98px) {
    .nt-sup-hero-card { padding: 24px 20px; }
    .nt-sup-hero-title { font-size: 22px; }
    .nt-sup-faq-container { padding: 20px 16px; }
    .nt-sup-accordion-body { padding: 0 16px 16px 16px !important; }
    .nt-sup-form-card { padding: 24px 18px; }
}

/* ═══════════════════════════════════════════════════════════
   NETUDY PRO MAX AUTH SUITE (LOGIN & SIGN UP)
   ═══════════════════════════════════════════════════════════ */
.nt-auth-section,
.nt-auth-card,
.nt-auth-card input,
.nt-auth-card button,
.nt-auth-card select,
.nt-auth-card textarea,
.nt-auth-input,
.nt-auth-label,
.nt-auth-submit-btn,
.nt-auth-form-title,
.nt-auth-form-subtitle,
.nt-auth-brand-title,
.nt-auth-brand-desc,
.nt-auth-feature-item,
.nt-auth-phone-input {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.nt-auth-section {
    padding: 60px 0 80px;
    background: radial-gradient(circle at 10% 20%, rgba(232, 125, 42, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(232, 125, 42, 0.06) 0%, transparent 40%),
                #FAF9F6;
    min-height: 82vh;
    display: flex;
    align-items: center;
}
.nt-auth-card {
    background: #FFFFFF;
    border: 1.5px solid #F1E5D8;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    margin: 0 auto;
}
.nt-auth-card .user-form-container,
.nt-auth-card form,
.nt-auth-form-side form {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.nt-auth-brand-side {
    background: linear-gradient(145deg, #FFF7F0 0%, #FFEBD9 100%);
    padding: 48px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-right: 1.5px solid #F8EDE3;
}
.nt-auth-brand-header .nt-auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #FFFFFF;
    border: 1px solid #FAD5BC;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--nt-brand);
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(232, 125, 42, 0.1);
}
.nt-auth-brand-title {
    font-size: 25px;
    font-weight: 800;
    color: #1E293B;
    line-height: 1.35;
    margin-bottom: 12px;
}
.nt-auth-brand-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
}
.nt-auth-mascot-wrapper {
    text-align: center;
    margin: 10px 0 25px;
}
.nt-auth-mascot-img {
    max-height: 190px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(232, 125, 42, 0.2));
    animation: ntFloat 4s ease-in-out infinite;
}
.nt-auth-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nt-auth-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
}
.nt-auth-feature-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 9px;
    background: #FFFFFF;
    color: var(--nt-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(232, 125, 42, 0.14);
}

.nt-auth-form-side {
    padding: 48px 44px;
}
.nt-auth-form-header {
    margin-bottom: 28px;
}
.nt-auth-form-title {
    font-size: 23px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 6px;
}
.nt-auth-form-subtitle {
    font-size: 13.5px;
    color: #64748B;
    margin: 0;
}
.nt-auth-form-subtitle a {
    color: var(--nt-brand);
    font-weight: 700;
    text-decoration: none;
}
.nt-auth-form-subtitle a:hover {
    text-decoration: underline;
}

.nt-auth-input-group {
    position: relative;
    margin-bottom: 18px;
}
.nt-auth-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}
.nt-auth-label .required {
    color: #EF4444;
}
.nt-auth-input-box {
    position: relative;
    display: flex;
    align-items: center;
}
.nt-auth-input-icon {
    position: absolute;
    left: 16px;
    color: #94A3B8;
    font-size: 14px;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 2;
}
.nt-auth-input {
    width: 100%;
    height: 48px;
    border: 1.5px solid #E2D8CF;
    border-radius: 12px;
    padding: 10px 16px 10px 44px;
    font-size: 14px;
    font-weight: 500;
    color: #1E293B;
    background: #FFFFFF;
    transition: all 0.2s ease;
}
.nt-auth-input.no-icon {
    padding-left: 16px;
}
.nt-auth-input:focus {
    border-color: var(--nt-brand) !important;
    box-shadow: 0 0 0 3.5px rgba(232, 125, 42, 0.12) !important;
    outline: none !important;
}
.nt-auth-input:focus ~ .nt-auth-input-icon,
.nt-auth-input-box:focus-within .nt-auth-input-icon {
    color: var(--nt-brand);
}
.nt-auth-input::placeholder,
.nt-auth-phone-input::placeholder {
    color: #94A3B8 !important;
    font-weight: 400 !important;
    font-size: 13.5px !important;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.nt-auth-pwd-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    cursor: pointer;
    padding: 6px;
    font-size: 14px;
    z-index: 2;
    transition: color 0.2s ease;
}
.nt-auth-pwd-toggle:hover {
    color: var(--nt-brand);
}

.nt-auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    font-size: 13.5px;
}
.nt-auth-remember,
.nt-auth-checkbox-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    cursor: pointer !important;
    user-select: none !important;
    margin: 0 !important;
    position: relative !important;
}

.nt-auth-remember input[type="checkbox"],
.nt-auth-checkbox-label input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

.nt-auth-custom-checkbox {
    width: 19px !important;
    height: 19px !important;
    min-width: 19px !important;
    border: 1.8px solid #CBD5E1 !important;
    border-radius: 6px !important;
    background: #FFFFFF !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04) !important;
    box-sizing: border-box !important;
}

.nt-auth-custom-checkbox svg {
    width: 11px !important;
    height: 11px !important;
    stroke: #FFFFFF !important;
    stroke-width: 2.4 !important;
    transform: scale(0) !important;
    transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    opacity: 0 !important;
    display: block !important;
}

.nt-auth-remember input[type="checkbox"]:checked ~ .nt-auth-custom-checkbox,
.nt-auth-checkbox-label input[type="checkbox"]:checked ~ .nt-auth-custom-checkbox {
    background: linear-gradient(135deg, #F48E3D 0%, #E87D2A 100%) !important;
    border-color: #E87D2A !important;
    box-shadow: 0 3px 8px rgba(232, 125, 42, 0.32) !important;
}

.nt-auth-remember input[type="checkbox"]:checked ~ .nt-auth-custom-checkbox svg,
.nt-auth-checkbox-label input[type="checkbox"]:checked ~ .nt-auth-custom-checkbox svg {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.nt-auth-remember:hover .nt-auth-custom-checkbox,
.nt-auth-checkbox-label:hover .nt-auth-custom-checkbox {
    border-color: var(--nt-brand) !important;
    box-shadow: 0 0 0 3px rgba(232, 125, 42, 0.12) !important;
}

.nt-auth-checkbox-text {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    line-height: 1.4 !important;
    transition: color 0.15s ease !important;
}
.nt-auth-remember:hover .nt-auth-checkbox-text,
.nt-auth-checkbox-label:hover .nt-auth-checkbox-text {
    color: #1E293B !important;
}

.nt-auth-forgot-link {
    color: var(--nt-brand);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.15s ease;
}
.nt-auth-forgot-link:hover {
    color: var(--nt-brand-hover);
    text-decoration: underline;
}

.nt-auth-submit-btn {
    width: 100%;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, #F48E3D 0%, #E87D2A 100%);
    color: #FFFFFF !important;
    font-size: 15px;
    font-weight: 700;
    border: none;
    box-shadow: 0 6px 18px rgba(232, 125, 42, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 12px;
}
.nt-auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(232, 125, 42, 0.42);
    color: #FFFFFF !important;
}

/* Phone Field Container */
.nt-auth-phone-field.phone-field {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    border: 1.5px solid #E2D8CF !important;
    border-radius: 12px !important;
    background: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}
.nt-auth-phone-field.phone-field:focus-within {
    border-color: var(--nt-brand) !important;
    box-shadow: 0 0 0 3.5px rgba(232, 125, 42, 0.12) !important;
}

.nt-auth-flag-dropdown {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}

.nt-auth-flag-btn {
    height: 100% !important;
    max-height: 45px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 14px !important;
    background: transparent !important;
    border: none !important;
    border-right: 1px solid #E2D8CF !important;
    color: #1E293B !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    border-radius: 10px 0 0 10px !important;
    transition: background 0.15s ease !important;
}
.nt-auth-flag-btn:hover,
.nt-auth-flag-btn:focus,
.nt-auth-flag-btn[aria-expanded="true"] {
    background: #FFF7F0 !important;
    color: var(--nt-brand) !important;
    border-right-color: #E2D8CF !important;
}
.nt-auth-flag-btn::after {
    margin-left: 4px !important;
    border-top-color: #64748B !important;
}

.nt-auth-country-dropdown {
    border: 1.5px solid #F1E5D8 !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12) !important;
    padding: 0 !important;
    min-width: 290px !important;
    background: #FFFFFF !important;
    z-index: 99999 !important;
    margin-top: 6px !important;
}
.nt-auth-country-dropdown .dropdown-item {
    transition: background 0.15s ease !important;
    padding: 8px 14px !important;
}
.nt-auth-country-dropdown .dropdown-item:hover {
    background: #FFF0E4 !important;
    color: var(--nt-brand) !important;
}

.nt-auth-phone-input-wrap {
    flex: 1 1 auto !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: transparent !important;
}

.nt-auth-phone-input {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #1E293B !important;
    margin: 0 !important;
}

.nt-auth-divider {
    display: flex;
    align-items: center;
    margin: 20px 0 16px;
    color: #94A3B8;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nt-auth-divider::before,
.nt-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E2D8CF;
}
.nt-auth-divider span {
    padding: 0 14px;
}

.nt-auth-footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 13.5px;
    color: #64748B;
}
.nt-auth-footer-text a {
    color: var(--nt-brand);
    font-weight: 700;
    text-decoration: none;
}
.nt-auth-footer-text a:hover {
    text-decoration: underline;
}

.nt-auth-demo-box {
    margin-top: 18px;
    padding: 12px 14px;
    background: #F8FAFC;
    border-radius: 14px;
    border: 1px dashed #CBD5E1;
}
.nt-auth-demo-title {
    font-size: 11.5px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.nt-auth-demo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.nt-auth-demo-btn {
    padding: 5px 10px;
    font-size: 11.5px;
    font-weight: 700;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    color: #334155;
    text-decoration: none;
    transition: all 0.15s ease;
}
.nt-auth-demo-btn:hover {
    background: #FFF0E4;
    border-color: var(--nt-brand);
    color: var(--nt-brand);
}

@media (max-width: 991.98px) {
    .nt-auth-brand-side {
        display: none;
    }
    .nt-auth-form-side {
        padding: 36px 24px;
    }
}
@media (max-width: 575.98px) {
    .nt-auth-form-side {
        padding: 28px 18px;
    }
}

