/* ============================================
   TESA Premium Styles - Refined Edition
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;450;500;600;700;800;900&display=swap');

/* ============================================
   Root Variables
   ============================================ */
:root {
    --tesa-navy: #2e3b5b;
    --tesa-navy-dark: #1a2332;
    --tesa-orange: #c95606;
    --tesa-orange-dark: #cd5500;
    --tesa-orange-light: #f8e8de;
    --tesa-gray: #4a5568;
    --tesa-gray-light: #718096;
    --tesa-gray-lightest: #a0aec0;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 450;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
}

/* ============================================
   Reset & Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #4a5568;
    font-weight: var(--font-weight-regular);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 76px;
    overflow-x: hidden;
    background: #f8f9fa;
    opacity: 0;
    transition: opacity 0.3s ease;
    line-height: 1.7;
}
body.css-loaded {
    opacity: 1;
}
h1, h2, h3, h4, h5, h6 {
    color: #2e3b5b;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

h1 {
    font-weight: var(--font-weight-black);
    letter-spacing: -0.03em;
}

h2 {
    font-weight: var(--font-weight-extrabold);
    letter-spacing: -0.02em;
}

h3, h4 {
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.01em;
}

h5, h6 {
    font-weight: var(--font-weight-semibold);
}

p {
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
    color: #4a5568;
}

.lead {
    font-weight: var(--font-weight-regular);
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

small, .small {
    font-weight: var(--font-weight-regular);
    color: var(--tesa-gray-light);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-navy { color: #2e3b5b !important; }
.text-orange { color: #c95606 !important; }
.text-muted-light { color: var(--tesa-gray-lightest) !important; }
.text-gray { color: var(--tesa-gray) !important; }

.bg-navy { background-color: #2e3b5b !important; }
.bg-orange { background-color: #c95606 !important; }
.bg-orange-light { background-color: #f8e8de !important; }
.bg-light-gray { background-color: #f8f9fa !important; }
.border-orange { border-color: #c95606 !important; }

.highlight {
    background: linear-gradient(135deg, #c95606, #cd5500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-extrabold);
}

.fw-light { font-weight: var(--font-weight-light) !important; }
.fw-regular { font-weight: var(--font-weight-regular) !important; }
.fw-medium { font-weight: var(--font-weight-medium) !important; }
.fw-semibold { font-weight: var(--font-weight-semibold) !important; }
.fw-bold { font-weight: var(--font-weight-bold) !important; }
.fw-extrabold { font-weight: var(--font-weight-extrabold) !important; }
.fw-black { font-weight: var(--font-weight-black) !important; }

/* ============================================
   Animations - Subtle & Purposeful
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.04); opacity: 0.8; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.08s; }
.animate-on-scroll.delay-2 { transition-delay: 0.16s; }
.animate-on-scroll.delay-3 { transition-delay: 0.24s; }
.animate-on-scroll.delay-4 { transition-delay: 0.32s; }
.animate-on-scroll.delay-5 { transition-delay: 0.40s; }

/* ============================================
   Cards - Clean & Simple
   ============================================ */
.card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    background: #ffffff;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.card-glass {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.card-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.card-glass-orange {
    background: #ffffff;
    border-left: 4px solid #c95606;
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.card-glass-orange:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.card-glass-navy {
    background: #ffffff;
    border-left: 4px solid #2e3b5b;
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.card-glass-navy:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* ============================================
   Button Styles - Refined
   ============================================ */
.btn-orange {
    background: linear-gradient(135deg, #c95606, #cd5500);
    border: none;
    color: #fff;
    font-weight: var(--font-weight-semibold);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 86, 6, 0.28);
    color: #fff;
}

.btn-outline-orange {
    background: transparent;
    border: 2px solid #c95606;
    color: #c95606;
    font-weight: var(--font-weight-semibold);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-outline-orange:hover {
    background: #c95606;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 86, 6, 0.18);
}

.btn-navy {
    background: #2e3b5b;
    border: none;
    color: #fff;
    font-weight: var(--font-weight-semibold);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-navy:hover {
    background: #1a2332;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(46, 59, 91, 0.28);
    color: #fff;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: var(--font-weight-semibold);
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #fff;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    gap: 0.4rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    gap: 0.6rem;
}

/* ============================================
   Navbar - Refined
   ============================================ */
.navbar-premium {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar-premium.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.navbar-premium .navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-premium .navbar-brand:hover img {
    transform: scale(1.03);
}

.navbar-premium .nav-link {
    color: #4a5568;
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.navbar-premium .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #c95606;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after {
    width: 50%;
}

.navbar-premium .nav-link:hover {
    color: #c95606;
}

.navbar-premium .dropdown-menu {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.navbar-premium .dropdown-item {
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-weight: var(--font-weight-regular);
    transition: all 0.3s ease;
}

.navbar-premium .dropdown-item:hover {
    background: rgba(201, 86, 6, 0.04);
    color: #c95606;
}

@media (max-width: 991.98px) {
    .navbar-premium .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-premium .btn-orange,
    .navbar-premium .btn-navy {
        display: flex;
        text-align: center;
        justify-content: center;
        margin-top: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar-premium .navbar-brand img {
        height: 35px !important;
    }
}

/* ============================================
   Hero Section - Refined
   ============================================ */
.hero-premium {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #2e3b5b 0%, #1a2332 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-premium .hero-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 86, 6, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-premium .hero-bg-glow-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 86, 6, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-premium h1 {
    font-size: 4.2rem;
    font-weight: var(--font-weight-black);
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-premium h1 .highlight {
    background: linear-gradient(135deg, #c95606, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-black);
}

.hero-premium .hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
    max-width: 520px;
}

.hero-premium .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 86, 6, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 86, 6, 0.12);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    color: #c95606;
    font-weight: var(--font-weight-semibold);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-premium .hero-badge i {
    animation: pulse 2s infinite;
}

.hero-premium .stat-item {
    text-align: center;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.hero-premium .stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.hero-premium .stat-item .number {
    font-size: 2rem;
    font-weight: var(--font-weight-black);
    color: #fff;
    display: block;
    letter-spacing: -0.02em;
}

.hero-premium .stat-item .label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: var(--font-weight-regular);
}

.hero-premium .hero-glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
}

.hero-premium .hero-glass-card .icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: rgba(201, 86, 6, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 86, 6, 0.08);
}

.hero-premium .hero-glass-card .icon-circle i {
    font-size: 3rem;
    color: #c95606;
}

.hero-premium .hero-glass-card h4 {
    color: #fff;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.01em;
}

.hero-premium .hero-glass-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    font-weight: var(--font-weight-regular);
}

@media (max-width: 991.98px) {
    .hero-premium h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero-premium h1 {
        font-size: 2.5rem;
    }
    
    .hero-premium .stat-item {
        padding: 0.75rem 1rem;
        flex: 1 1 100%;
    }
}

/* ============================================
   Section Headers - Refined
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .badge {
    background: rgba(201, 86, 6, 0.06);
    color: #c95606;
    font-weight: var(--font-weight-semibold);
    padding: 0.4rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: var(--font-weight-extrabold);
    color: #2e3b5b;
    margin-top: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.15rem;
    font-weight: var(--font-weight-regular);
    color: #718096;
    max-width: 600px;
    margin: 0.75rem auto 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

/* ============================================
   Service Card - Refined
   ============================================ */
.service-card-premium {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(201, 86, 6, 0.06);
    border-color: rgba(201, 86, 6, 0.06);
}

.service-card-premium .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: rgba(201, 86, 6, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card-premium:hover .icon-wrapper {
    background: rgba(201, 86, 6, 0.12);
    transform: scale(1.04);
}

.service-card-premium .icon-wrapper i {
    font-size: 2rem;
    color: #c95606;
}

.service-card-premium h4 {
    color: #2e3b5b;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.service-card-premium p {
    color: #718096;
    font-size: 0.95rem;
    font-weight: var(--font-weight-regular);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   FAQ Accordion - Refined
   ============================================ */
.faq-accordion-premium .accordion-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 0.75rem !important;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-accordion-premium .accordion-header .accordion-button {
    font-weight: var(--font-weight-semibold);
    color: #2e3b5b;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 0 !important;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.faq-accordion-premium .accordion-header .accordion-button:not(.collapsed) {
    background: rgba(201, 86, 6, 0.02);
    color: #c95606;
    box-shadow: none;
}

.faq-accordion-premium .accordion-header .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c95606'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion-premium .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* ============================================
   Footer - Refined
   ============================================ */
.footer-premium {
    background: #2e3b5b;
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-premium h5 {
    color: #fff;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.footer-premium p {
    color: rgba(255, 255, 255, 0.5);
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
}

.footer-premium ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-premium ul li {
    margin-bottom: 0.75rem;
}

.footer-premium ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-weight: var(--font-weight-regular);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-premium ul li a:hover {
    color: #c95606;
    transform: translateX(4px);
}

.footer-premium ul li i {
    color: rgba(255, 255, 255, 0.2);
    width: 20px;
}

.footer-premium .social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-premium .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #fff;
    transition: all 0.3s ease;
}

.footer-premium .social-links a:hover {
    background: rgba(201, 86, 6, 0.12);
    border-color: rgba(201, 86, 6, 0.15);
    transform: translateY(-3px);
}

.footer-premium .footer-input-group {
    display: flex;
    gap: 0.5rem;
}

.footer-premium .footer-input-group .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: var(--font-weight-regular);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    flex: 1;
}

.footer-premium .footer-input-group .form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: #c95606;
    box-shadow: 0 0 0 3px rgba(201, 86, 6, 0.06);
    outline: none;
}

.footer-premium .footer-input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: var(--font-weight-regular);
}

.footer-premium .footer-input-group .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    white-space: nowrap;
}

.footer-premium .footer-divider {
    border-color: rgba(255, 255, 255, 0.03);
    margin: 2rem 0;
}

.footer-premium .copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: var(--font-weight-regular);
    text-align: center;
}

@media (max-width: 768px) {
    .footer-premium {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-premium .footer-input-group {
        flex-direction: column;
    }
    
    .footer-premium .footer-input-group .btn {
        width: 100%;
    }
}

/* ============================================
   Newsletter - Refined
   ============================================ */
.newsletter-premium {
    background: linear-gradient(145deg, #2e3b5b 0%, #1a2332 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-premium .newsletter-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    padding: 3rem;
}

.newsletter-premium h3 {
    color: #fff;
    font-weight: var(--font-weight-bold);
    font-size: 1.75rem;
    letter-spacing: -0.02em;
}

.newsletter-premium p {
    color: rgba(255, 255, 255, 0.5);
    font-weight: var(--font-weight-regular);
    font-size: 1.05rem;
}

.newsletter-premium .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: var(--font-weight-regular);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-premium .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: var(--font-weight-regular);
}

.newsletter-premium .form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: #c95606;
    box-shadow: 0 0 0 3px rgba(201, 86, 6, 0.06);
    outline: none;
}

@media (max-width: 768px) {
    .newsletter-premium {
        padding: 3rem 0;
    }
    
    .newsletter-premium .newsletter-glass {
        padding: 1.5rem;
    }
    
    .newsletter-premium h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   Page Headers - Refined
   ============================================ */
.page-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(145deg, #2e3b5b 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    letter-spacing: -0.02em;
}

.page-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-weight: var(--font-weight-regular);
    max-width: 600px;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.4);
    font-weight: var(--font-weight-regular);
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
    font-weight: var(--font-weight-regular);
}

.page-header .breadcrumb-item a:hover {
    color: #c95606;
}

.page-header .breadcrumb-item.active {
    color: #fff;
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
}

/* ============================================
   Course Card - Refined
   ============================================ */
.course-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(201, 86, 6, 0.06);
    border-color: rgba(201, 86, 6, 0.06);
}

.course-card-featured {
    border: 2px solid #c95606;
    background: linear-gradient(to bottom, #ffffff, #fffaf5);
}

.course-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c95606, #f59e0b);
    border-radius: 0.75rem 0.75rem 0 0;
}

.course-card .course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #c95606;
    color: #fff;
    font-size: 0.7rem;
    font-weight: var(--font-weight-semibold);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.course-card .course-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.course-card .course-level {
    background: rgba(46, 59, 91, 0.06);
    color: #2e3b5b;
    font-size: 0.7rem;
    font-weight: var(--font-weight-semibold);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.course-card .course-type {
    color: #718096;
    font-size: 0.8rem;
    font-weight: var(--font-weight-regular);
}

.course-card .course-type i {
    color: #c95606;
    margin-right: 0.25rem;
}

.course-card .course-title {
    color: #2e3b5b;
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.course-card .course-desc {
    color: #718096;
    font-size: 0.9rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.course-card .course-lifetime {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 59, 91, 0.04);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #2e3b5b;
    font-weight: var(--font-weight-medium);
    align-self: flex-start;
}

.course-card .course-lifetime i {
    color: #c95606;
    font-size: 1rem;
}

.course-card .course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.course-card .course-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.course-card .course-rating i {
    color: #f59e0b;
    font-size: 0.9rem;
}

.course-card .course-rating span {
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
}

.course-card .course-rating .text-muted {
    font-weight: var(--font-weight-regular);
}

.course-card .course-price .price {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    color: #2e3b5b;
}

@media (max-width: 768px) {
    .course-card .course-title {
        font-size: 1rem;
    }
}

/* ============================================
   Category Card - Refined
   ============================================ */
.category-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(201, 86, 6, 0.04);
    border-color: rgba(201, 86, 6, 0.06);
}

.category-card .category-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(201, 86, 6, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: rgba(201, 86, 6, 0.12);
    transform: scale(1.04);
}

.category-card .category-icon i {
    font-size: 1.4rem;
    color: #c95606;
}

.category-card .category-info h5 {
    color: #2e3b5b;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    margin-bottom: 0.1rem;
    letter-spacing: -0.01em;
}

.category-card .category-info p {
    font-size: 0.8rem;
    font-weight: var(--font-weight-regular);
    color: #718096;
    margin-bottom: 0;
}

/* ============================================
   Testimonial Card - Refined
   ============================================ */
.testimonial-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.testimonial-card .testimonial-rating {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.75rem;
}

.testimonial-card .testimonial-rating i {
    font-size: 0.9rem;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 0.95rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card .testimonial-author .author-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(46, 59, 91, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-card .testimonial-author .author-avatar i {
    color: #2e3b5b;
    opacity: 0.3;
}

.testimonial-card .testimonial-author h6 {
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.testimonial-card .testimonial-author .role {
    font-size: 0.8rem;
    color: #718096;
    font-weight: var(--font-weight-regular);
}

/* ============================================
   Hero Slider - Refined
   ============================================ */
.hero-slider {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    aspect-ratio: 4 / 3;
    background: #1a2332;
}

.hero-slider-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .hero-slide-image {
    transform: scale(1.04);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 35, 50, 0.2) 0%,
        rgba(26, 35, 50, 0.6) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.hero-slide-content {
    color: #fff;
    max-width: 100%;
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-slide.active .hero-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide-content .slide-tag {
    display: inline-block;
    background: rgba(201, 86, 6, 0.85);
    padding: 0.2rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.hero-slide-content h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.hero-slide-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: var(--font-weight-regular);
    margin-bottom: 0;
}

.hero-slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
    overflow: hidden;
}

.hero-slider-progress-bar {
    height: 100%;
    background: #c95606;
    width: 0%;
    transition: width 0.1s linear;
}

.hero-slider-indicators {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 10;
}

.hero-slider-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-indicators button.active {
    background: #c95606;
    border-color: #c95606;
    transform: scale(1.2);
}

.hero-slider-indicators button:hover {
    border-color: #fff;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.hero-slider:hover .hero-slider-arrow {
    opacity: 1;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-50%) scale(1.06);
}

.hero-slider-arrow.prev {
    left: 0.75rem;
}

.hero-slider-arrow.next {
    right: 0.75rem;
}

.hero-slider-arrow i {
    font-size: 1.1rem;
}

@media (max-width: 991.98px) {
    .hero-slider {
        aspect-ratio: 4 / 3;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        aspect-ratio: 16 / 10;
    }
    
    .hero-slide-content h3 {
        font-size: 1.2rem;
    }
    
    .hero-slide-content p {
        font-size: 0.85rem;
    }
    
    .hero-slider-arrow {
        width: 34px;
        height: 34px;
        opacity: 0.6;
    }
    
    .hero-slider-arrow i {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        aspect-ratio: 16 / 12;
    }
    
    .hero-slide-overlay {
        padding: 1.25rem;
    }
    
    .hero-slide-content h3 {
        font-size: 1rem;
    }
    
    .hero-slider-indicators button {
        width: 6px;
        height: 6px;
    }
}

/* ============================================
   Icon Boxes - Refined
   ============================================ */
.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-box i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
    width: auto;
    height: auto;
    flex-shrink: 0;
}

.icon-box-orange {
    background: rgba(201, 86, 6, 0.08);
    color: #c95606;
}

.icon-box-orange i {
    color: #c95606;
}

.icon-box-orange-light {
    background: rgba(201, 86, 6, 0.06);
    color: #c95606;
}

.icon-box-orange-light i {
    color: #c95606;
    font-size: 1.8rem;
}

.icon-box-navy {
    background: rgba(46, 59, 91, 0.08);
    color: #2e3b5b;
}

.icon-box-navy i {
    color: #2e3b5b;
}

.icon-box-white {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.icon-box-white i {
    color: #fff;
}

.icon-box-sm {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
}

.icon-box-sm i {
    font-size: 1rem;
}

.icon-box-lg {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
}

.icon-box-lg i {
    font-size: 1.8rem;
}

.icon-box-orange:hover {
    background: rgba(201, 86, 6, 0.15);
    transform: scale(1.04);
}

.icon-box-navy:hover {
    background: rgba(46, 59, 91, 0.15);
    transform: scale(1.04);
}

/* ============================================
   Badge Philosophy - Refined
   ============================================ */
.badge-philosophy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2e3b5b;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.badge-philosophy i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
}

.badge-philosophy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(46, 59, 91, 0.18);
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .card-glass,
    .card-glass-orange,
    .card-glass-navy,
    .service-card-premium {
        padding: 1.5rem;
    }
    
    .btn-orange,
    .btn-outline-orange,
    .btn-navy,
    .btn-glass {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.75rem;
        font-size: 1rem;
    }
    
    .icon-box {
        width: 46px;
        height: 46px;
        min-width: 46px;
        min-height: 46px;
    }
    
    .icon-box i {
        font-size: 1.2rem;
    }
    
    .icon-box-orange-light i {
        font-size: 1.4rem;
    }
    
    .badge-philosophy {
        white-space: normal;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .card-glass-navy .d-flex,
    .card-glass-orange .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .card-glass-navy .icon-box,
    .card-glass-orange .icon-box {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .card-glass-navy,
    .card-glass-orange {
        padding: 1.25rem !important;
    }
    
    .icon-box {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }
    
    .icon-box i {
        font-size: 1rem;
    }
}

/* ============================================
   Navbar - Logout Button
   ============================================ */
.btn-outline-orange.btn-sm {
    background: transparent;
    border: 2px solid #c95606;
    color: #c95606;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
}

.btn-outline-orange.btn-sm:hover {
    background: #c95606;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 86, 6, 0.2);
}

.btn-orange.btn-sm {
    background: linear-gradient(135deg, #c95606, #cd5500);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
}

.btn-orange.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201, 86, 6, 0.3);
    color: #fff;
}

@media (max-width: 991.98px) {
    .btn-outline-orange.btn-sm,
    .btn-orange.btn-sm {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 0.25rem;
    }
}

.card-glass {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

/* ============================================
   ADMIN OVERRIDES - MUST COME LAST
   ============================================ */

/* Reset body for admin pages */
body.admin-page {
    padding-top: 0 !important;
    background: #f8f9fa;
}

/* Ensure admin layout uses full height */
.admin-layout {
    display: flex !important;
    flex-direction: row !important;
    margin-top: 68px !important;
    min-height: calc(100vh - 68px) !important;
    width: 100% !important;
}

.admin-sidebar {
    width: 260px !important;
    min-height: calc(100vh - 68px) !important;
    background: #ffffff !important;
    border-right: 1px solid rgba(0,0,0,0.04) !important;
    flex-shrink: 0 !important;
    position: sticky !important;
    top: 68px !important;
    height: calc(100vh - 68px) !important;
    overflow-y: auto !important;
    display: block !important;
}

.admin-main {
    flex: 1 !important;
    background: #f8f9fa !important;
    min-height: calc(100vh - 68px) !important;
    width: calc(100% - 260px) !important;
}

/* ============================================
   DASHBOARD STYLES - ADMIN & STUDENT
   ============================================ */

/* ---------- Admin/Student Body Override ---------- */
body.admin-page,
body.student-page {
    padding-top: 0 !important;
    background: #f7f8fa;
}

/* ---------- Dashboard Header ---------- */
.dashboard-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #ffffff;
    border-bottom: 1px solid #e9edf2;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.dashboard-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dashboard-toggle-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #5a6a7a;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.dashboard-toggle-btn:hover {
    background: #f0f2f5;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.dashboard-logo img {
    height: 32px;
}

.dashboard-logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.dashboard-logo-text span {
    color: #c95606;
}

.dashboard-header-center {
    flex: 1;
    padding: 0 24px;
}

.dashboard-breadcrumb {
    color: #5a6a7a;
    font-size: 13px;
}

.dashboard-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-notif-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 18px;
    color: #5a6a7a;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
}

.dashboard-notif-btn:hover {
    background: #f0f2f5;
}

.dashboard-notif-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background: #e53e3e;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* ---------- Dashboard Dropdown ---------- */
.dashboard-dropdown {
    position: relative;
    display: inline-block;
}

.dashboard-user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 8px;
    border: none;
    background: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.dashboard-user-menu:hover {
    background: #f0f2f5;
}

.dashboard-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e3b5b, #1a2332);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.dashboard-user-name {
    font-weight: 500;
    color: #1a202c;
    font-size: 13px;
    white-space: nowrap;
}

.dashboard-user-role {
    font-size: 11px;
    color: #8a9aa8;
    font-weight: 400;
    white-space: nowrap;
}

.dashboard-chevron {
    color: #8a9aa8;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.dashboard-user-menu:hover .dashboard-chevron {
    color: #c95606;
}

.dashboard-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9edf2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    pointer-events: none;
}

.dashboard-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dashboard-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    color: #3a4a5a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.dashboard-dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #6a7a8a;
    transition: color 0.15s ease;
}

.dashboard-dropdown-item:hover {
    background: #f5f6f8;
    color: #c95606;
}
.dashboard-dropdown-item:hover i {
    color: #c95606;
}

.dashboard-dropdown-item.text-danger {
    color: #dc2626;
}
.dashboard-dropdown-item.text-danger i {
    color: #dc2626;
}
.dashboard-dropdown-item.text-danger:hover {
    background: #fef2f2;
    color: #dc2626;
}

.dashboard-dropdown-divider {
    height: 1px;
    background: #e9edf2;
    margin: 4px 12px;
}

.dashboard-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #e9edf2;
    border-top: 1px solid #e9edf2;
    transform: rotate(45deg);
    border-radius: 2px 0 0 0;
}

/* ---------- Dashboard Layout ---------- */
.dashboard-wrapper {
    display: flex;
    margin-top: 64px;
    min-height: calc(100vh - 64px);
}

/* ---------- Dashboard Sidebar ---------- */
.dashboard-sidebar {
    width: 240px;
    min-height: calc(100vh - 64px);
    background: #ffffff;
    border-right: 1px solid #e9edf2;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
    flex-shrink: 0;
    padding: 20px 12px;
    transition: transform 0.3s ease, margin-left 0.3s ease;
}

.dashboard-sidebar.collapsed {
    margin-left: -240px;
    width: 0;
    padding: 0;
    overflow: hidden;
    border: none;
}

.dashboard-sidebar::-webkit-scrollbar {
    width: 4px;
}
.dashboard-sidebar::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.dashboard-sidebar-nav {
    display: flex;
    flex-direction: column;
}

.dashboard-sidebar-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #8a9aa8;
    padding: 6px 12px 4px;
    margin-top: 4px;
}

.dashboard-sidebar-label:not(:first-child) {
    margin-top: 12px;
}

.dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 8px;
    color: #3a4a5a;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.15s ease;
    margin-bottom: 1px;
}

.dashboard-nav-item i {
    font-size: 17px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    color: #6a7a8a;
}

.dashboard-nav-item:hover {
    background: #f0f2f5;
    color: #c95606;
}
.dashboard-nav-item:hover i {
    color: #c95606;
}

.dashboard-nav-item.active {
    background: #fdf0ea;
    color: #c95606;
}
.dashboard-nav-item.active i {
    color: #c95606;
}

.dashboard-nav-divider {
    height: 1px;
    background: #e9edf2;
    margin: 8px 12px;
}

/* ---------- Dashboard Main ---------- */
.dashboard-main {
    flex: 1;
    padding: 24px;
    min-height: calc(100vh - 64px);
    background: #f7f8fa;
    transition: margin-left 0.3s ease;
}

/* ---------- Dashboard Page Header ---------- */
.dashboard-page-header {
    margin-bottom: 24px;
}

.dashboard-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 4px 0;
}

.dashboard-page-sub {
    color: #5a6a7a;
    font-size: 14px;
    margin: 0;
}

/* ---------- Dashboard Stats ---------- */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.dashboard-stat-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 20px;
    border: 1px solid #e9edf2;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: box-shadow 0.2s;
}

.dashboard-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.dashboard-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.dashboard-stat-icon.orange { background: #fdf0ea; color: #c95606; }
.dashboard-stat-icon.blue { background: #ebf4ff; color: #3b82f6; }
.dashboard-stat-icon.green { background: #ecfdf5; color: #22c55e; }
.dashboard-stat-icon.purple { background: #f5f3ff; color: #8b5cf6; }

.dashboard-stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    display: block;
    line-height: 1.2;
}

.dashboard-stat-label {
    font-size: 12px;
    color: #5a6a7a;
}

/* ---------- Dashboard Cards ---------- */
.dashboard-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e9edf2;
    overflow: hidden;
}

.dashboard-card-header {
    padding: 14px 18px;
    border-bottom: 1px solid #e9edf2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-card-title i {
    color: #c95606;
}

.dashboard-card-body {
    padding: 18px;
}

.dashboard-card-footer {
    padding: 12px 18px;
    border-top: 1px solid #e9edf2;
    display: flex;
    justify-content: center;
}

/* ---------- Dashboard Tables ---------- */
.dashboard-table-wrap {
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.dashboard-table th {
    text-align: left;
    padding: 8px 10px;
    font-weight: 600;
    color: #5a6a7a;
    border-bottom: 2px solid #e9edf2;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #e9edf2;
    color: #1a202c;
    vertical-align: middle;
}

.dashboard-table tr:hover td {
    background: #fafbfc;
}

.dashboard-table .empty-row td {
    text-align: center;
    color: #8a9aa8;
    padding: 40px 0;
}

/* ---------- Dashboard Badges ---------- */
.dashboard-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.dashboard-badge.published { background: #ecfdf5; color: #22c55e; }
.dashboard-badge.draft { background: #fef3c7; color: #d97706; }
.dashboard-badge.featured { background: #fdf0ea; color: #c95606; }
.dashboard-badge.active { background: #ecfdf5; color: #22c55e; }
.dashboard-badge.inactive { background: #fee2e2; color: #dc2626; }
.dashboard-badge.pending { background: #fef3c7; color: #d97706; }
.dashboard-badge.completed { background: #ecfdf5; color: #22c55e; }

/* ---------- Dashboard Actions ---------- */
.dashboard-actions {
    display: flex;
    gap: 4px;
}

.dashboard-action-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: none;
    background: none;
    color: #5a6a7a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    text-decoration: none;
    font-size: 14px;
}

.dashboard-action-btn:hover {
    background: #f0f2f5;
}

.dashboard-action-btn.edit:hover { color: #3b82f6; background: #ebf4ff; }
.dashboard-action-btn.view:hover { color: #22c55e; background: #ecfdf5; }
.dashboard-action-btn.delete:hover { color: #dc2626; background: #fee2e2; }

/* ---------- Dashboard User Cell ---------- */
.dashboard-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2e3b5b, #1a2332);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.dashboard-user-avatar-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-user-name {
    font-weight: 600;
    color: #2e3b5b;
    font-size: 14px;
}

.dashboard-user-email {
    font-size: 12px;
    color: #718096;
}

/* ---------- Dashboard Grid ---------- */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ---------- Dashboard Form Elements ---------- */
.dashboard-form-group {
    margin-bottom: 16px;
}

.dashboard-form-group:last-child {
    margin-bottom: 0;
}

.dashboard-form-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #1a202c;
    margin-bottom: 4px;
}

.dashboard-form-control {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #e9edf2;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.15s ease;
    background: #fff;
    color: #1a202c;
}

.dashboard-form-control:focus {
    outline: none;
    border-color: #c95606;
    box-shadow: 0 0 0 3px rgba(201,86,6,0.08);
}

.dashboard-form-control.is-error {
    border-color: #dc2626;
}

.dashboard-form-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
}

.dashboard-form-help {
    font-size: 12px;
    color: #8a9aa8;
    margin-top: 4px;
}

.dashboard-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dashboard-form-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.dashboard-form-switch input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c95606;
    cursor: pointer;
    flex-shrink: 0;
}

.dashboard-form-switch label {
    font-weight: 500;
    color: #1a202c;
    font-size: 13px;
    cursor: pointer;
}

/* ---------- Dashboard Buttons ---------- */
.dashboard-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: #c95606;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dashboard-btn-primary:hover {
    background: #b04a05;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,86,6,0.3);
}

.dashboard-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: #f0f2f5;
    color: #3a4a5a;
    border: 1px solid #e9edf2;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dashboard-btn-secondary:hover {
    background: #e5e7eb;
    color: #1a202c;
}

/* ---------- Student Bottom Navigation ---------- */
.student-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e9edf2;
    display: none;
    z-index: 99;
    padding: 6px 0;
}

@media (max-width: 767px) {
    .student-bottom-nav {
        display: flex;
    }
}

.student-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.student-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 12px;
    color: #8a9aa8;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    transition: color 0.2s;
    border: none;
    background: none;
    cursor: pointer;
}

.student-bottom-item i {
    font-size: 20px;
}

.student-bottom-item:hover,
.student-bottom-item.active {
    color: #c95606;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 0 16px;
    }
    
    .dashboard-breadcrumb {
        display: none;
    }
    
    .dashboard-sidebar {
        position: fixed;
        top: 64px;
        left: 0;
        bottom: 0;
        z-index: 999;
        width: 280px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.06);
        margin-left: 0 !important;
        transition: transform 0.3s ease;
    }
    
    .dashboard-sidebar.collapsed {
        transform: translateX(-100%);
        width: 280px;
        padding: 16px 12px;
        margin-left: 0 !important;
        border: none;
    }
    
    .dashboard-main {
        padding: 16px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .dashboard-user-name,
    .dashboard-user-role {
        display: none;
    }
}

@media (max-width: 480px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stat-card {
        padding: 14px 16px;
    }
    
    .dashboard-card-body {
        padding: 14px;
    }
}
/* Add to app.css or dashboard CSS */
.wishlist-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    color: #c95606;
}

.wishlist-btn.active {
    color: #dc2626;
}

.wishlist-btn.active:hover {
    color: #dc2626;
}