/* ============================================
   EarnBright Frontend Styles
   Brand Colors: #11538c (Blue) | #f27405 (Orange)
   ============================================ */

/* CSS Variables - Easy to customize */
:root {
    --primary-blue: #11538c;
    --primary-orange: #f27405;
    --dark-blue: #0d3f6b;
    --light-blue: #1a6bb5;
    --dark-orange: #d96504;
    --light-orange: #ff8a1f;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   MODERN NAVIGATION WITH SCROLL ANIMATION - CAPSULE STYLE
   ============================================ */
.modern-navbar {
    background: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-wrapper {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3d6b 100%);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 16px 28px;
    box-shadow: 0 8px 32px rgba(17, 83, 140, 0.3);
    border: 1px solid rgba(17, 83, 140, 0.2);
    transition: all 0.3s ease;
}

/* Scroll Animation States */
.navbar-hidden {
    transform: translateY(-150%);
}

.navbar-visible {
    transform: translateY(0);
}

.navbar-visible .navbar-wrapper {
    box-shadow: 0 12px 40px rgba(17, 83, 140, 0.4);
}

/* Add padding to body to prevent content jump */
body {
    padding-top: 120px;
}

/* Course page specific adjustments */
.container {
    margin-top: 20px;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Desktop Content */
.navbar-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: flex-end;
}

/* Modern Brand/Logo */
.modern-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.modern-brand:hover {
    transform: scale(1.05);
}

.brand-logo {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}

/* Modern Text Logo */
.text-logo {
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-earn {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-bright {
    color: var(--primary-orange);
    text-shadow: 0 2px 8px rgba(242, 116, 5, 0.3);
}

.text-logo:hover .logo-earn {
    color: #f0f0f0;
}

.text-logo:hover .logo-bright {
    color: #ff8c1a;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    filter: brightness(1.1);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
}

.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

/* Show brand text only if logo fails to load */
.logo-image[style*="display: none"] ~ .brand-text {
    display: block;
}

/* Mobile logo size */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
        max-width: 140px;
    }
    
    .brand-logo {
        height: 35px;
    }
    
    .brand-text {
        font-size: 18px;
    }
    
    .text-logo {
        font-size: 22px;
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover span {
    background: var(--primary-orange);
}

/* Hamburger Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Menu */
.modern-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.modern-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.modern-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.modern-nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.modern-nav-link:hover::after {
    width: 60%;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-icon {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
}

.action-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.action-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.action-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

/* Modern Buttons */
.btn-modern-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
}

.btn-modern-outline:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(242, 116, 5, 0.3);
    white-space: nowrap;
}

.btn-modern-primary:hover {
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 116, 5, 0.4);
    color: white;
}

/* Mobile Menu - Full Screen Overlay */
.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a2540 100%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-wrapper.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    opacity: 0;
    transform: rotate(-90deg) scale(0);
    box-shadow: 0 4px 20px rgba(242, 116, 5, 0.4);
}

.mobile-menu-wrapper.active .mobile-menu-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transition-delay: 0.2s;
}

.mobile-menu-close i {
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    background: white;
    border-color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
}

.mobile-menu-close:hover i {
    color: var(--primary-orange);
    transform: rotate(90deg);
}

@media (max-width: 576px) {
    .mobile-menu-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .mobile-menu-close i {
        font-size: 20px;
    }
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.mobile-menu-wrapper.active .mobile-menu {
    transform: scale(1);
    opacity: 1;
}

.mobile-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    width: 100%;
    transform: translateX(-30px);
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
}

.mobile-menu-wrapper.active .mobile-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-wrapper.active .mobile-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu-wrapper.active .mobile-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu-wrapper.active .mobile-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu-wrapper.active .mobile-link:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu-wrapper.active .mobile-link:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu-wrapper.active .mobile-link:nth-child(7) { animation-delay: 0.4s; }
.mobile-menu-wrapper.active .mobile-link:nth-child(8) { animation-delay: 0.45s; }
.mobile-menu-wrapper.active .mobile-link:nth-child(9) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-link:hover,
.mobile-link:active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
    border-color: rgba(242, 116, 5, 0.5);
    box-shadow: 0 4px 20px rgba(242, 116, 5, 0.3);
}

.mobile-link i {
    font-size: 20px;
    color: var(--primary-orange);
}

/* Mobile Menu Buttons */
.mobile-menu .btn-modern-outline,
.mobile-menu .btn-modern-primary {
    margin-top: 12px;
    justify-content: center;
    font-size: 16px;
    padding: 14px 24px;
}

.mobile-menu .btn-modern-outline {
    background: transparent;
    border: 2px solid white;
}

.mobile-menu .btn-modern-outline:hover {
    background: white;
    color: var(--primary-blue);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8a1f);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2px 5px;
    box-shadow: 0 2px 8px rgba(242, 116, 5, 0.4);
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }

    .navbar-content {
        display: none;
    }

    .modern-navbar {
        padding: 12px 0;
    }

    .navbar-wrapper {
        border-radius: 30px;
        padding: 12px 20px;
    }

    body {
        padding-top: 80px;
    }
}

@media (max-width: 576px) {
    .navbar-wrapper {
        border-radius: 20px;
        padding: 10px 16px;
    }

    body {
        padding-top: 70px;
    }

    .mobile-menu-wrapper {
        width: 100%;
        right: -100%;
    }

    .brand-text {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .mobile-menu-wrapper {
        display: none !important;
    }
}

/* ============================================
   OLD NAVIGATION (DEPRECATED - REMOVE LATER)
   ============================================ */
.navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(17, 83, 140, 0.08);
    padding: 16px 0;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    color: var(--primary-orange);
    animation: pulse 2s infinite;
}

/* Logo Image - Easy to replace */
.navbar-brand img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: #475569;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(17, 83, 140, 0.05);
}

.nav-link:hover::after {
    width: 80%;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 83, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(17, 83, 140, 0.4);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.btn-orange {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 116, 5, 0.3);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(242, 116, 5, 0.4);
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    color: #fff;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-section p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    animation: fadeInUp 1s ease;
}

.hero-section .btn {
    animation: fadeInUp 1.2s ease;
}

/* Hero Image - Easy to replace */
.hero-image {
    animation: slideInRight 1s ease;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(17, 83, 140, 0.2);
}

.card-img-top {
    transition: transform 0.5s ease;
    height: 200px;
    object-fit: cover;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 24px;
}

.card-title {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   FEATURE ICONS
   ============================================ */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon.blue {
    background: linear-gradient(135deg, rgba(17, 83, 140, 0.1), rgba(17, 83, 140, 0.2));
    color: var(--primary-blue);
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(242, 116, 5, 0.1), rgba(242, 116, 5, 0.2));
    color: var(--primary-orange);
}

.feature-icon:hover {
    transform: rotate(5deg) scale(1.1);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    border-radius: 2px;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue)) !important;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: #fff;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    animation: fadeInUp 0.5s ease;
}

.alert-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.alert-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary-blue {
    color: var(--primary-blue);
}

.text-primary-orange {
    color: var(--primary-orange);
}

.bg-primary-blue {
    background-color: var(--primary-blue);
}

.bg-primary-orange {
    background-color: var(--primary-orange);
}

.gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
}

.gradient-orange {
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
}


/* ============================================
   CART BADGE
   ============================================ */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8a1f);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2px 5px;
    box-shadow: 0 2px 8px rgba(242, 116, 5, 0.4);
    animation: pulse 2s infinite;
}

#cartIcon {
    position: relative;
    font-size: 1.2rem;
}

#cartIcon:hover {
    color: var(--primary-orange);
}

/* Cart Item Styles */
.cart-item {
    transition: background-color 0.2s;
}

.cart-item:hover {
    background-color: #f8fafc;
}


/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* Hero Section */
.hero-section {
    padding: 120px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    opacity: 0.05;
    border-radius: 50%;
    animation: float 20s infinite;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), #ff8a1f);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 20px;
}

.hero-buttons {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    color: white;
    opacity: 0.1;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(17, 83, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    animation: fadeInLeft 0.8s ease-out;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #f8fafc, #e0f2fe);
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    color: var(--primary-blue);
    opacity: 0.3;
}

.section-badge {
    display: inline-block;
    background: #fef3c7;
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
}

/* Courses Section */
.courses-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.6s ease-out;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.course-content {
    padding: 24px;
}

.course-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.course-description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-orange);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.feature-box {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.6s ease-out;
}

.feature-box:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(17, 83, 140, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    font-size: 18px;
    color: #0f172a;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.author-role {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-box .btn-light {
    background: white;
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
}

.cta-box .btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-box {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-section,
    .courses-section,
    .features-section,
    .audience-section,
    .testimonials-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .courses-section-modern,
    .features-section-modern,
    .audience-section-modern {
        padding: 50px 0;
    }
}

/* ============================================
   MODERN SECTION SEPARATORS
   ============================================ */

/* Add subtle top border to sections for separation */
/*.about-section::before,
.features-section::before,
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    border-radius: 2px;
}
*/
.courses-section::before,
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    border-radius: 2px;
}

/* Modern spacing between sections */
section + section {
    margin-top: 0;
}
/* Modern Courses Section Styles */

.courses-section-modern {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.courses-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(17, 83, 140, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.courses-section-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Header Styles */
.courses-header {
    position: relative;
    z-index: 2;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b35, #f27405);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(242, 116, 5, 0.3);
    animation: float 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.floating-badge i {
    animation: pulse 2s infinite;
}

.courses-main-title {
    font-size: 52px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, #11538c, #f27405);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.courses-subtitle {
    font-size: 19px;
    color: #64748b;
    margin-bottom: 24px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #11538c, #f27405);
    margin: 0 auto;
    border-radius: 2px;
}

/* Modern Course Card */
.modern-course-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #11538c, #f27405);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.modern-course-card:hover::before {
    transform: scaleX(1);
}

.modern-course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: #11538c;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(17, 83, 140, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.modern-course-card:hover .card-glow {
    opacity: 1;
}

/* Course Thumbnail */
.course-thumbnail {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-course-card:hover .course-img {
    transform: scale(1.1) rotate(2deg);
}

.course-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #11538c, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.course-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.placeholder-icon {
    font-size: 64px;
    color: white;
    opacity: 0.9;
    z-index: 2;
}

/* Category Pill */
.category-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #11538c;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

/* Course Overlay */
.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 83, 140, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-course-card:hover .course-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: #11538c;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.modern-course-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: #f27405;
    color: white;
    transform: translateY(-2px);
}

/* Course Body */
.course-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modern-course-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 58px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-course-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Course Meta */
.course-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.meta-item i {
    color: #f27405;
    font-size: 14px;
}

/* Course Action */
.course-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency {
    font-size: 20px;
    font-weight: 700;
    color: #f27405;
}

.amount {
    font-size: 32px;
    font-weight: 900;
    color: #f27405;
    letter-spacing: -1px;
}

.modern-buy-btn {
    background: linear-gradient(135deg, #11538c, #1e40af);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(17, 83, 140, 0.3);
}

.modern-buy-btn:hover {
    background: linear-gradient(135deg, #f27405, #ff8a1f);
    transform: translateX(4px);
    box-shadow: 0 6px 25px rgba(242, 116, 5, 0.4);
    color: white;
}

.modern-buy-btn i {
    transition: transform 0.4s ease;
}

.modern-buy-btn:hover i {
    transform: translateX(4px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 24px;
    border: 2px dashed #e2e8f0;
}

.empty-state i {
    font-size: 64px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.empty-state h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.empty-state p {
    color: #64748b;
    font-size: 16px;
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #11538c, #1e40af);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(17, 83, 140, 0.3);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    background: linear-gradient(135deg, #f27405, #ff8a1f);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(242, 116, 5, 0.4);
    color: white;
}

.view-all-btn i {
    transition: transform 0.4s ease;
}

.view-all-btn:hover i {
    transform: translateX(6px);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .courses-main-title {
        font-size: 42px;
    }
    
    .courses-section-modern {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .courses-main-title {
        font-size: 36px;
    }
    
    .modern-course-title {
        min-height: auto;
    }
    
    .course-action {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .modern-buy-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Text Visibility Fixes */

/* Hero Section - Make text more visible */
.hero-title {
    color: #0f172a !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-weight: 900 !important;
}

.hero-description {
    color: #334155 !important;
}

.feature-item {
    color: #0f172a !important;
    font-weight: 600 !important;
}

/* Section titles - Ensure visibility */
.section-title {
    color: #0f172a !important;
    font-weight: 900 !important;
}

.section-description {
    color: #475569 !important;
}

/* Course cards */
.course-title {
    color: #0f172a !important;
}

.course-description {
    color: #475569 !important;
}

/* Feature boxes */
.feature-title {
    color: #0f172a !important;
}

.feature-description {
    color: #475569 !important;
}

/* Testimonials */
.testimonial-text {
    color: #0f172a !important;
}

.author-name {
    color: #0f172a !important;
}

.author-role {
    color: #64748b !important;
}


/* ============================================
   MODERN FEATURES SECTION
   ============================================ */

.features-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #fef3e7 100%);
    position: relative;
    overflow: hidden;
}

/* Animated gradient orbs */
.features-section-modern::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(17, 83, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.features-section-modern::after {
    content: '';
    position: absolute;
    bottom: -35%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

/* Decorative geometric shapes */
.features-section-modern .container::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(242, 116, 5, 0.05), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 15s ease-in-out infinite;
    z-index: 0;
}

.features-section-modern .container::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(17, 83, 140, 0.05), transparent);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: morph 12s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg) scale(1.05);
    }
}

.features-section-modern .container {
    position: relative;
    z-index: 1;
}

/* Features Header */
.features-header {
    position: relative;
    z-index: 2;
}

.star-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
    margin-bottom: 20px;
}

.star-badge i {
    animation: pulse 2s infinite;
}

.features-main-title {
    font-size: 52px;
    font-weight: 900;
    color: #0f172a !important;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.features-subtitle {
    font-size: 19px;
    color: #64748b !important;
    margin-bottom: 24px;
}

/* Modern Feature Card */
.modern-feature-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    height: 100%;
    overflow: hidden;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 83, 140, 0.03), rgba(242, 116, 5, 0.03));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modern-feature-card[data-color="blue"]::before {
    background: linear-gradient(135deg, rgba(17, 83, 140, 0.05), rgba(30, 64, 175, 0.05));
}

.modern-feature-card[data-color="orange"]::before {
    background: linear-gradient(135deg, rgba(242, 116, 5, 0.05), rgba(255, 138, 31, 0.05));
}

.modern-feature-card:hover::before {
    opacity: 1;
}

.modern-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: #11538c;
}

.modern-feature-card[data-color="orange"]:hover {
    border-color: #f27405;
}

/* Modern Feature Icon */
.modern-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #11538c, #1e40af);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.modern-feature-card[data-color="orange"] .modern-feature-icon {
    background: linear-gradient(135deg, #f27405, #ff8a1f);
}

.modern-feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 20px;
    opacity: 0.3;
    filter: blur(20px);
    transition: all 0.5s ease;
}

.modern-feature-card:hover .modern-feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(17, 83, 140, 0.4);
}

.modern-feature-card[data-color="orange"]:hover .modern-feature-icon {
    box-shadow: 0 15px 40px rgba(242, 116, 5, 0.4);
}

.modern-feature-card:hover .modern-feature-icon::after {
    opacity: 0.5;
    filter: blur(30px);
}

/* Feature Title & Description */
.modern-feature-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a !important;
    margin-bottom: 14px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.modern-feature-desc {
    color: #64748b !important;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 992px) {
    .features-main-title {
        font-size: 42px;
    }
    
    .features-section-modern {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .features-main-title {
        font-size: 36px;
    }
    
    .modern-feature-card {
        padding: 32px 24px;
    }
    
    .feature-number {
        font-size: 36px;
        top: 20px;
        right: 20px;
    }
}


/* ============================================
   MODERN AUDIENCE SECTION
   ============================================ */

.audience-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.audience-section-modern::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(17, 83, 140, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite;
    pointer-events: none;
}

.audience-section-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite reverse;
    pointer-events: none;
}

/* Audience Header */
.audience-header {
    position: relative;
    z-index: 2;
}

.users-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.users-badge i {
    animation: pulse 2s infinite;
}

.audience-main-title {
    font-size: 52px;
    font-weight: 900;
    color: white !important;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.highlight-text-white {
    background: linear-gradient(135deg, #60a5fa, #f27405);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audience-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 24px;
}

.title-underline-white {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #f27405);
    margin: 0 auto;
    border-radius: 2px;
}

/* Modern Audience Card - Professional v3.0 */
.modern-audience-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.modern-audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(242, 116, 5, 0.15), rgba(255, 138, 31, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modern-audience-card:hover::before {
    opacity: 1;
}

.modern-audience-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #f27405;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(242, 116, 5, 0.25);
}

/* Audience Icon Wrapper - Professional v3.0 */
.audience-icon-wrapper {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.audience-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #11538c, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(17, 83, 140, 0.3);
}

.audience-icon-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(15px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.modern-audience-card:hover .audience-icon-modern {
    background: linear-gradient(135deg, #f27405, #ff8a1f);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(242, 116, 5, 0.5);
}

.modern-audience-card:hover .audience-icon-modern::before {
    opacity: 0.5;
    filter: blur(20px);
}

/* Audience Title - Professional v3.0 */
.audience-title-modern {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.modern-audience-card:hover .audience-title-modern {
    color: #f27405;
}

/* Responsive */
@media (max-width: 992px) {
    .audience-main-title {
        font-size: 42px;
    }
    
    .audience-section-modern {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .audience-main-title {
        font-size: 36px;
    }
    
    .modern-audience-card {
        padding: 28px 16px;
    }
    
    .audience-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}


/* ============================================
   MODERN FOOTER
   ============================================ */
.modern-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    padding: 80px 0 0;
    margin-top: 100px;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* Footer Text Logo */
.footer-text-logo {
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

.footer-logo-earn {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-logo-bright {
    color: var(--primary-orange);
    text-shadow: 0 2px 8px rgba(242, 116, 5, 0.4);
}

.footer-brand .brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.footer-brand .brand-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #94a3b8;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-top: 4px;
    font-size: 14px;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    padding: 30px 0;
}

.copyright,
.made-with {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

.made-with i {
    animation: pulse 1.5s infinite;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(242, 116, 5, 0.4);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--dark-orange), var(--primary-orange));
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(242, 116, 5, 0.5);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .modern-footer {
        padding: 60px 0 0;
        margin-top: 60px;
    }

    .footer-top {
        padding-bottom: 40px;
    }

    .footer-brand .brand-text {
        font-size: 20px;
    }
    
    .footer-text-logo {
        font-size: 28px;
    }

    .footer-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 50px 0 0;
        margin-top: 50px;
    }

    .footer-top {
        padding-bottom: 30px;
    }

    .footer-top .row > div {
        margin-bottom: 30px;
    }

    .footer-top .row > div:last-child {
        margin-bottom: 0;
    }

    .footer-brand {
        justify-content: center;
        margin-bottom: 16px;
    }

    .footer-description {
        text-align: center;
        font-size: 14px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 16px;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .copyright,
    .made-with {
        text-align: center !important;
        margin-bottom: 10px;
        font-size: 13px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .modern-footer {
        padding: 40px 0 0;
        margin-top: 40px;
    }

    .footer-brand .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-brand .brand-text {
        font-size: 18px;
    }
    
    .footer-text-logo {
        font-size: 24px;
    }

    .footer-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    .copyright,
    .made-with {
        font-size: 12px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
        font-size: 16px;
    }
}


/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3d6b 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.blog-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease;
}

.blog-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

/* Blog Search */
.blog-search-form {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.blog-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-search-wrapper i {
    color: var(--primary-blue);
    margin-right: 12px;
    font-size: 18px;
}

.blog-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px;
    background: transparent;
}

.blog-search-btn {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d96304 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-search-btn:hover {
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(242, 116, 5, 0.4);
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0;
    background: #f8fafc;
}

.search-results-info {
    text-align: center;
    margin-bottom: 40px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-results-info strong {
    color: var(--primary-blue);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.blog-card-no-image {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3d6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
}

.blog-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #64748b;
}

.blog-card-meta i {
    margin-right: 6px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
    color: #d96304;
}

/* Blog Empty State */
.blog-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.blog-empty-state i {
    font-size: 80px;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.blog-empty-state h3 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 12px;
}

.blog-empty-state p {
    color: #64748b;
    font-size: 16px;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
}

/* ============================================
   BLOG POST SINGLE PAGE
   ============================================ */

.blog-post-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3d6b 100%);
    padding: 120px 0 60px;
    position: relative;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.blog-post-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-bottom: 32px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-back-link:hover {
    color: white;
    gap: 12px;
}

.blog-post-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 32px;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-post-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.blog-post-author-info {
    display: flex;
    flex-direction: column;
}

.blog-post-author-name {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.blog-post-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.blog-post-stats {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.blog-post-stats i {
    margin-right: 6px;
}

/* Featured Image */
.blog-post-featured-image {
    margin-top: -40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.blog-post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Blog Content */
.blog-post-content-wrapper {
    padding: 60px 0;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    color: #1e293b;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-post-content h2 { font-size: 32px; }
.blog-post-content h3 { font-size: 26px; }
.blog-post-content h4 { font-size: 22px; }

.blog-post-content p {
    margin-bottom: 24px;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 32px 0;
}

.blog-post-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.blog-post-content a:hover {
    color: var(--primary-orange);
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.blog-post-content li {
    margin-bottom: 12px;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--primary-orange);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #64748b;
    font-size: 20px;
}

.blog-post-content code {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    color: #e11d48;
}

.blog-post-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 32px 0;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Share Section */
.blog-post-share {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.blog-post-share h4 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 20px;
}

.blog-share-buttons {
    display: flex;
    gap: 12px;
}

.blog-share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.blog-share-twitter {
    background: #1DA1F2;
}

.blog-share-facebook {
    background: #1877F2;
}

.blog-share-linkedin {
    background: #0A66C2;
}

.blog-share-copy {
    background: #64748b;
}

.blog-share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Related Posts */
.blog-related-section {
    background: #f8fafc;
    padding: 80px 0;
}

.blog-related-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 48px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.blog-related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-related-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-related-card:hover .blog-related-image img {
    transform: scale(1.1);
}

.blog-related-content {
    padding: 24px;
}

.blog-related-date {
    font-size: 13px;
    color: #64748b;
    display: block;
    margin-bottom: 12px;
}

.blog-related-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-related-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-related-link:hover {
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 36px;
    }
    
    .blog-hero-subtitle {
        font-size: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post-title {
        font-size: 32px;
    }
    
    .blog-post-content {
        font-size: 16px;
    }
    
    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   COURSE DETAIL PAGE - MODERN DESIGN
   ============================================ */

/* Course Hero Section */
.course-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 60px 0;
    margin-top: -20px;
}

.course-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary-orange), #d96304);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.course-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 20px;
}

.course-hero-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
}

.course-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.meta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.meta-badge i {
    color: var(--primary-blue);
    font-size: 16px;
}

.course-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.course-hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange), #d96304);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

/* Course Content Section */
.course-content-section {
    padding: 60px 0;
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.content-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-card-title i {
    font-size: 22px;
    color: var(--primary-orange);
}

.content-card-body {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

/* Learning Grid */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.learning-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.learning-item:hover {
    background: #e2e8f0;
    transform: translateX(4px);
}

.learning-item i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
}

.learning-item span {
    flex: 1;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

/* Related Course Item */
.related-course-item {
    display: block;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-course-item:hover {
    background: white;
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.related-course-item h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.related-course-item .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-orange);
    margin: 0;
}

/* Modern Purchase Card */
.purchase-card-modern {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--primary-blue);
    position: sticky;
    top: 140px;
}

.price-section {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-purchase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-purchase.primary {
    background: linear-gradient(135deg, var(--primary-orange), #d96304);
    color: white;
    box-shadow: 0 4px 16px rgba(242, 116, 5, 0.3);
}

.btn-purchase.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(242, 116, 5, 0.5);
}

.btn-purchase.secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-purchase.secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-purchase.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.purchase-note {
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
}

.purchase-note.success {
    background: #d1fae5;
    color: #065f46;
}

.purchase-note.info {
    background: #dbeafe;
    color: #1e40af;
}

.includes-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid #e2e8f0;
}

.includes-section h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.includes-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-section li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #475569;
    font-weight: 500;
}

.includes-section li i {
    font-size: 18px;
    color: var(--primary-blue);
    width: 20px;
}

/* Responsive */
@media (max-width: 991px) {
    .purchase-card-modern {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
    
    .course-hero-title {
        font-size: 28px;
    }
    
    .course-hero-image img {
        height: 250px;
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
    }
}

/* Related Courses */
.related-courses-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 3px solid #e2e8f0;
}

.related-courses-section h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.related-courses-section .card {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    background: white;
}

.related-courses-section .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.related-courses-section .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.related-courses-section .text-primary {
    font-size: 20px;
    font-weight: 800;
}

.related-courses-section .btn-outline-primary {
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-courses-section .btn-outline-primary:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .sticky-top {
        position: relative !important;
        top: 0 !important;
        margin-top: 40px;
    }
    
    .course-detail-page h1 {
        font-size: 28px;
    }
    
    .course-purchase-card h3 {
        font-size: 32px;
    }
}


/* ============================================
   COURSES SLIDER (SWIPER)
   ============================================ */

.coursesSwiper {
    padding: 20px 0 60px;
    position: relative;
}

.coursesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.coursesSwiper .modern-course-card {
    width: 100%;
    height: 100%;
}

/* Swiper Navigation Buttons - Hidden */
.coursesSwiper .swiper-button-next,
.coursesSwiper .swiper-button-prev {
    display: none;
}

/* Swiper Pagination */
.coursesSwiper .swiper-pagination {
    bottom: 20px;
}

.coursesSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.coursesSwiper .swiper-pagination-bullet-active {
    background: var(--primary-orange);
    width: 32px;
    border-radius: 6px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .coursesSwiper .swiper-pagination {
        bottom: 10px;
    }
}


/* ============================================
   BLOG HOME SECTION
   ============================================ */

.blog-home-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.blog-home-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.blog-home-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(17, 83, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.blog-home-section .container {
    position: relative;
    z-index: 1;
}

.blog-home-header {
    margin-bottom: 60px;
    position: relative;
}

.blog-home-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8a1f);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.blog-home-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.blog-home-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Blog Home Card */
.blog-home-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.blog-home-card:hover::before {
    transform: scaleX(1);
}

.blog-home-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-home-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-home-card:hover .blog-home-image img {
    transform: scale(1.1);
}

.blog-home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.blog-home-no-image {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3d6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-home-icon {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
}

.blog-home-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-home-meta {
    display: none;
}

.blog-home-meta i {
    margin-right: 6px;
}

.blog-home-date,
.blog-home-author {
    display: none;
}

.blog-home-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-home-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-home-link:hover {
    gap: 12px;
    color: #d96304;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-home-section {
        padding: 60px 0;
    }
    
    .blog-home-title {
        font-size: 32px;
    }
    
    .blog-home-subtitle {
        font-size: 16px;
    }
}


/* ============================================
   COURSES INDEX PAGE - MODERN DESIGN
   ============================================ */

/* Courses Hero Section */
.courses-page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3d6b 100%);
    padding: 70px 0 50px;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

.courses-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Decorative Elements */
.courses-page-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(-20px);
    }
}

.courses-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Add decorative shapes */
.courses-hero-content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(242, 116, 5, 0.2), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    z-index: -1;
}

.courses-hero-content::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: morph 8s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

.courses-page-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease;
}

.courses-page-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

/* Search Form */
.courses-search-form {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.search-wrapper i.fa-search {
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 16px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 10px;
    background: transparent;
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d96304 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(242, 116, 5, 0.4);
}

/* Courses Grid Section */
.courses-grid-section {
    padding: 60px 0;
    background: #f8fafc;
}

.search-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-info p {
    margin: 0;
    font-size: 16px;
    color: #475569;
}

.search-info strong {
    color: var(--primary-blue);
}

.clear-search {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.clear-search:hover {
    gap: 10px;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

/* Modern Course Card */
.course-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.course-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card-modern:hover .course-card-image img {
    transform: scale(1.1);
}

.course-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3d6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-card-placeholder i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
}

.course-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary-orange), #d96304);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.course-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 83, 140, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.course-card-modern:hover .course-card-overlay {
    opacity: 1;
}

.overlay-btn {
    background: white;
    color: var(--primary-blue);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.course-card-modern:hover .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:hover {
    background: var(--primary-orange);
    color: white;
}

.course-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-card-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.course-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.course-card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.course-card-price .currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange);
}

.course-card-price .amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-orange);
}

.course-card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-view {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: #0d3d6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 83, 140, 0.3);
}

.btn-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-cart:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.badge-owned {
    background: #d1fae5;
    color: #065f46;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Empty State */
.empty-courses-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.empty-courses-state i {
    font-size: 80px;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.empty-courses-state h3 {
    font-size: 28px;
    color: #1e293b;
    margin-bottom: 12px;
}

.empty-courses-state p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 24px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-blue);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #0d3d6b;
    gap: 12px;
}

/* Pagination */
.courses-pagination {
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .courses-page-hero {
        padding: 60px 0 40px;
    }
    
    .courses-page-title {
        font-size: 28px;
    }
    
    .courses-page-subtitle {
        font-size: 15px;
    }
    
    .search-btn span {
        display: none;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .search-info {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .course-card-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .course-card-actions {
        width: 100%;
        justify-content: space-between;
    }
}


/* Courses Index Page - Use Home Page Card Styles */
.courses-grid:hover .modern-course-card {
    opacity: 0.5;
    filter: grayscale(30%);
}

.courses-grid:hover .modern-course-card:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.action-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.cart-icon-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.owned-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #d1fae5;
    color: #065f46;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


/* ============================================
   RELATED COURSES - MODERN DESIGN
   ============================================ */

.related-courses-modern {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.related-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.related-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), #d96304);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.related-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.related-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 4px 0 0 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-course-card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.related-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-orange);
    background: white;
}

.related-course-image {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.related-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-course-card:hover .related-course-image img {
    transform: scale(1.1);
}

.related-no-image {
    background: linear-gradient(135deg, var(--primary-blue), #0d3d6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 40px;
}

.related-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 83, 140, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.related-course-card:hover .related-overlay {
    opacity: 1;
}

.related-overlay i {
    color: white;
    font-size: 28px;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.related-course-card:hover .related-overlay i {
    transform: translateX(0);
}

.related-course-info {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-course-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.related-course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 2px solid #e2e8f0;
}

.related-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.related-price .currency {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
}

.related-price .amount {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-orange);
}

.related-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.related-course-card:hover .related-arrow {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .related-courses-modern {
        padding: 20px;
    }
    
    .related-header {
        flex-direction: row;
    }
    
    .related-title {
        font-size: 18px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .related-course-image {
        height: 160px;
    }
}



/* ============================================
   AUTH PAGES - MODERN DESIGN
   ============================================ */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 40px 20px;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    width: 100%;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Brand Side */
.auth-brand-side {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d3d6b 100%);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.auth-brand-side::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.auth-brand-side::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.auth-brand-content {
    position: relative;
    z-index: 1;
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), #d96304);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(242, 116, 5, 0.3);
}

.auth-brand-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.auth-brand-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.auth-feature i {
    font-size: 24px;
    color: var(--primary-orange);
}

.auth-feature span {
    font-size: 16px;
    font-weight: 500;
}

/* Form Side */
.auth-form-side {
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.auth-form-content {
    width: 100%;
}

.auth-form-header {
    margin-bottom: 40px;
}

.auth-form-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.auth-form-subtitle {
    font-size: 15px;
    color: #64748b;
}

.auth-form {
    width: 100%;
}

.form-group-modern {
    margin-bottom: 24px;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.form-label-modern i {
    color: var(--primary-blue);
    font-size: 16px;
}

.form-input-modern {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(17, 83, 140, 0.1);
}

.form-input-modern.is-invalid {
    border-color: #ef4444;
}

/* Password Input Wrapper with Toggle */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-input-modern {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
}

.password-toggle:hover {
    background: rgba(17, 83, 140, 0.1);
    color: var(--primary-blue);
}

.password-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

.password-toggle i {
    font-size: 16px;
    pointer-events: none;
}

.error-message {
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.error-message::before {
    content: '⚠';
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-options {
    margin-bottom: 28px;
}

.checkbox-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.checkbox-modern input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.checkbox-label {
    font-size: 14px;
    color: #475569;
}

.btn-auth-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-orange), #d96304);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(242, 116, 5, 0.3);
}

.btn-auth-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(242, 116, 5, 0.4);
}

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-divider span {
    background: white;
    padding: 0 16px;
    font-size: 14px;
    color: #64748b;
    position: relative;
}

.btn-auth-secondary {
    width: 100%;
    padding: 14px 24px;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-auth-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .auth-container {
        grid-template-columns: 1fr;
    }
    
    .auth-brand-side {
        padding: 40px 30px;
    }
    
    .auth-brand-title {
        font-size: 28px;
    }
    
    .auth-form-side {
        padding: 40px 30px;
    }
    
    .auth-form-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .auth-page {
        padding: 20px 10px;
    }
    
    .auth-brand-side,
    .auth-form-side {
        padding: 30px 20px;
    }
    
    .form-row-modern {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet & Medium Devices (992px and below) */
@media (max-width: 992px) {
    /* Container adjustments */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Typography */
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }

    /* Hero sections */
    .hero-content {
        padding: 60px 0;
    }

    /* Course cards */
    .modern-course-card {
        margin-bottom: 20px;
    }

    /* Grid layouts */
    .row.g-4 {
        gap: 20px !important;
    }

    /* CTA sections */
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    /* Stats section */
    .stats-section {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Typography */
    h1 { font-size: 28px; line-height: 1.3; }
    h2 { font-size: 24px; line-height: 1.3; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }
    p { font-size: 15px; line-height: 1.6; }

    /* Buttons */
    .btn-primary,
    .btn-outline,
    .btn-modern-primary,
    .btn-modern-outline {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Hero sections */
    .hero-section,
    .hero-content {
        padding: 50px 0 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Course cards */
    .modern-course-card {
        margin-bottom: 16px;
    }

    .course-card-image {
        height: 180px;
    }

    .course-card-title {
        font-size: 18px;
    }

    .course-card-price {
        font-size: 22px;
    }

    /* Course grid */
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Features section */
    .features-section {
        padding: 50px 0;
    }

    .feature-card {
        padding: 24px;
        text-align: center;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto 16px;
    }

    /* Stats section */
    .stats-section {
        padding: 50px 0;
    }

    .stat-card {
        padding: 24px;
        text-align: center;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* CTA section */
    .cta-section {
        padding: 50px 0;
        text-align: center;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
    }

    /* Blog cards */
    .blog-card {
        margin-bottom: 20px;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    /* Course detail page */
    .course-detail-hero {
        padding: 50px 0 40px;
    }

    .course-detail-image {
        height: 250px;
        margin-bottom: 24px;
    }

    .course-detail-title {
        font-size: 24px;
    }

    .purchase-card-modern {
        margin-top: 24px;
        position: relative !important;
        top: 0 !important;
    }

    /* Learning outcomes */
    .learning-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Related courses */
    .related-courses-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Search bar */
    .search-bar-modern {
        flex-direction: column;
        gap: 12px;
    }

    .search-bar-modern input {
        width: 100%;
    }

    .search-bar-modern button {
        width: 100%;
    }

    /* Category pills */
    .category-pills {
        flex-wrap: wrap;
        gap: 8px;
    }

    .category-pill {
        font-size: 13px;
        padding: 6px 14px;
    }

    /* Spacing utilities */
    .mb-5 { margin-bottom: 2rem !important; }
    .mb-4 { margin-bottom: 1.5rem !important; }
    .mt-5 { margin-top: 2rem !important; }
    .mt-4 { margin-top: 1.5rem !important; }
    .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
}

/* Small Mobile Devices (576px and below) */
@media (max-width: 576px) {
    /* Container */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Typography */
    h1 { font-size: 24px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }
    h4 { font-size: 16px; }
    p { font-size: 14px; }

    /* Buttons */
    .btn-primary,
    .btn-outline,
    .btn-modern-primary,
    .btn-modern-outline {
        padding: 10px 18px;
        font-size: 13px;
    }

    /* Hero sections */
    .hero-section,
    .hero-content {
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Course cards */
    .course-card-image {
        height: 160px;
    }

    .course-card-title {
        font-size: 16px;
    }

    .course-card-description {
        font-size: 13px;
    }

    .course-card-price {
        font-size: 20px;
    }

    /* Features */
    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

    /* Stats */
    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* CTA */
    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    /* Blog cards */
    .blog-card-image {
        height: 180px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-excerpt {
        font-size: 13px;
    }

    /* Course detail */
    .course-detail-image {
        height: 200px;
    }

    .course-detail-title {
        font-size: 20px;
    }

    .course-price-large {
        font-size: 32px;
    }

    /* Sections padding */
    .section {
        padding: 40px 0;
    }

    /* Grid gaps */
    .row.g-4 {
        gap: 16px !important;
    }

    .row.g-3 {
        gap: 12px !important;
    }
}

/* Extra Small Devices (480px and below) */
@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 22px; }
    h2 { font-size: 20px; }
    h3 { font-size: 17px; }
    h4 { font-size: 15px; }

    /* Hero */
    .hero-title {
        font-size: 24px;
    }

    /* Course cards */
    .course-card-image {
        height: 140px;
    }

    /* Feature icons */
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    /* Stats */
    .stat-number {
        font-size: 24px;
    }

    /* Buttons */
    .btn-primary,
    .btn-outline {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section,
    .hero-content {
        padding: 30px 0;
    }

    .auth-page {
        padding: 20px 0;
    }

    .mobile-menu-wrapper {
        padding-top: 60px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .btn-primary,
    .btn-outline,
    .modern-nav-link,
    .mobile-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Remove hover effects on touch devices */
    .modern-course-card:hover {
        transform: none;
    }

    /* Simplify animations on touch devices */
    * {
        animation-duration: 5.3s !important;
        transition-duration: 0.3s !important;
    }
}


/* ============================================
   MODERN BLOG STYLES
   ============================================ */

/* Blog Index - Hero Section */
.blog-hero-modern {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a2540 100%);
    padding: 70px 0 70px;
    position: relative;
    overflow: hidden;
    margin-top: 25px;   
}
.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-hero-content-modern {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 116, 5, 0.15);
    border: 1px solid rgba(242, 116, 5, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.blog-hero-title-modern {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.blog-hero-subtitle-modern {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.blog-search-modern {
    animation: fadeInUp 0.6s ease 0.3s both;
}

.blog-search-wrapper-modern {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.blog-search-wrapper-modern i {
    color: var(--primary-blue);
    font-size: 18px;
    margin-right: 12px;
}

.blog-search-input-modern {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-dark);
    background: transparent;
}

.blog-search-input-modern::placeholder {
    color: #94a3b8;
}

.blog-search-btn-modern {
    background: linear-gradient(135deg, var(--primary-orange), #d96304);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-search-btn-modern:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(242, 116, 5, 0.4);
}

/* Blog Posts Section */
.blog-posts-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.blog-posts-section-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.blog-posts-section-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(17, 83, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.blog-posts-section-modern .container {
    position: relative;
    z-index: 1;
}

.search-results-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.search-results-badge i {
    color: var(--primary-orange);
}

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image-modern {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-modern:hover .blog-card-image-modern img {
    transform: scale(1.1);
}

.blog-card-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.blog-card-no-image-modern {
    background: linear-gradient(135deg, var(--primary-blue), #0a2540);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-icon-modern {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
}

.blog-card-content-modern {
    padding: 28px;
}

.blog-card-meta-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #64748b;
}

.blog-card-date-modern,
.blog-card-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-date-modern i,
.blog-card-reading-time i {
    color: var(--primary-orange);
}

.blog-card-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt-modern {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.blog-card-author-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.blog-author-avatar-modern {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.blog-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(242, 116, 5, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.blog-card-modern:hover .blog-card-arrow {
    background: var(--primary-orange);
    color: white;
    transform: translateX(4px);
}

/* Empty State */
.blog-empty-state-modern {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.blog-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.blog-empty-state-modern h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.blog-empty-state-modern p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
}

/* Pagination */
.blog-pagination-modern {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* Blog Single Post */
.blog-post-modern {
    background: white;
}

.blog-post-header-modern {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a2540 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

.blog-post-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.blog-post-header-content-modern {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-back-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.blog-back-link-modern:hover {
    color: white;
    transform: translateX(-4px);
}

.blog-post-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.blog-post-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(242, 116, 5, 0.15);
    border: 1px solid rgba(242, 116, 5, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 13px;
}

.blog-post-reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.blog-post-title-modern {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 0;
}

.blog-post-meta-modern {
    display: none;
}

.blog-post-author-modern {
    display: none;
}

.blog-post-featured-image-modern {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 0 60px;
}

.blog-post-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-height: 420px;
    max-width: 700px;
    margin: 0 auto;
}

.blog-post-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.blog-post-content-wrapper-modern {
    padding: 10px 0;
}

.blog-post-layout {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content-modern {
    background: white;
}

/* ============================================
   BLOG CONTENT - BEAUTIFUL TYPOGRAPHY
   ============================================ */

.blog-content-inner {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Headings - h1 to h6 */
.blog-content-inner h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 48px 0 24px;
    line-height: 1.2;
    font-family: 'Inter', -apple-system, sans-serif;
    position: relative;
    padding-bottom: 16px;
}

.blog-content-inner h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8a1f);
    border-radius: 2px;
}

.blog-content-inner h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 44px 0 20px;
    line-height: 1.3;
    font-family: 'Inter', -apple-system, sans-serif;
    position: relative;
    padding-left: 20px;
}

.blog-content-inner h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background: linear-gradient(180deg, var(--primary-orange), #ff8a1f);
    border-radius: 3px;
}

.blog-content-inner h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 36px 0 16px;
    line-height: 1.4;
    font-family: 'Inter', -apple-system, sans-serif;
}

.blog-content-inner h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 32px 0 14px;
    line-height: 1.4;
    font-family: 'Inter', -apple-system, sans-serif;
}

.blog-content-inner h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 28px 0 12px;
    line-height: 1.5;
    font-family: 'Inter', -apple-system, sans-serif;
}

.blog-content-inner h6 {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
    margin: 24px 0 10px;
    line-height: 1.5;
    font-family: 'Inter', -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Paragraphs */
.blog-content-inner p {
    margin-bottom: 24px;
    line-height: 1.9;
    color: #475569;
}

.blog-content-inner p:first-of-type {
    font-size: 20px;
    color: #334155;
    font-weight: 400;
}

/* Links */
.blog-content-inner a {
    color: var(--primary-orange);
    text-decoration: underline;
    text-decoration-color: rgba(242, 116, 5, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.blog-content-inner a:hover {
    color: var(--dark-orange);
    text-decoration-color: var(--primary-orange);
}

/* Unordered Lists - Beautiful Bullet Points */
.blog-content-inner ul {
    margin: 28px 0;
    padding-left: 0;
    list-style: none;
}

.blog-content-inner ul li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    line-height: 1.8;
    color: #475569;
}

.blog-content-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8a1f);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(242, 116, 5, 0.3);
}

.blog-content-inner ul li::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 8px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Nested Lists */
.blog-content-inner ul ul {
    margin: 12px 0;
}

.blog-content-inner ul ul li::before {
    background: linear-gradient(135deg, var(--primary-blue), #1a6bb5);
    box-shadow: 0 2px 8px rgba(17, 83, 140, 0.3);
}

.blog-content-inner ul ul li::after {
    content: '→';
    left: 6px;
    top: 7px;
}

/* Ordered Lists - Beautiful Numbers */
.blog-content-inner ol {
    margin: 28px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: blog-counter;
}

.blog-content-inner ol li {
    position: relative;
    padding-left: 48px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #475569;
    counter-increment: blog-counter;
}

.blog-content-inner ol li::before {
    content: counter(blog-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), #1a6bb5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Inter', -apple-system, sans-serif;
    box-shadow: 0 4px 12px rgba(17, 83, 140, 0.3);
}

/* Nested Ordered Lists */
.blog-content-inner ol ol {
    margin: 12px 0;
}

.blog-content-inner ol ol li::before {
    background: linear-gradient(135deg, var(--primary-orange), #ff8a1f);
    box-shadow: 0 4px 12px rgba(242, 116, 5, 0.3);
    font-size: 14px;
    width: 28px;
    height: 28px;
}

/* Images */
.blog-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-content-inner img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Blockquotes */
.blog-content-inner blockquote {
    position: relative;
    border-left: none;
    padding: 32px 32px 32px 72px;
    margin: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 16px;
    font-style: italic;
    color: #334155;
    font-size: 20px;
    line-height: 1.7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.blog-content-inner blockquote::before {
    content: '"';
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-orange);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.blog-content-inner blockquote p {
    margin-bottom: 0;
    color: #334155;
}

/* Code Blocks */
.blog-content-inner code {
    background: #1e293b;
    color: #10b981;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

.blog-content-inner pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 32px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.blog-content-inner pre code {
    background: none;
    padding: 0;
    color: #e2e8f0;
    font-size: 14px;
}

/* Tables */
.blog-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-content-inner table thead {
    background: linear-gradient(135deg, var(--primary-blue), #1a6bb5);
    color: white;
}

.blog-content-inner table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.blog-content-inner table td {
    padding: 14px 16px;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
}

.blog-content-inner table tbody tr:hover {
    background: #f8fafc;
}

.blog-content-inner table tbody tr:last-child td {
    border-bottom: none;
}

/* Horizontal Rule */
.blog-content-inner hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    margin: 48px 0;
}

/* Strong and Emphasis */
.blog-content-inner strong {
    font-weight: 700;
    color: var(--text-dark);
}

.blog-content-inner em {
    font-style: italic;
    color: #475569;
}

/* Mark/Highlight */
.blog-content-inner mark {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Definition Lists */
.blog-content-inner dl {
    margin: 28px 0;
}

.blog-content-inner dt {
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 20px;
    font-size: 19px;
}

.blog-content-inner dd {
    margin-left: 24px;
    margin-top: 8px;
    color: #475569;
    padding-left: 20px;
    border-left: 3px solid #e2e8f0;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .blog-content-inner {
        font-size: 16px;
    }
    
    .blog-content-inner h1 {
        font-size: 32px;
        margin: 32px 0 16px;
    }
    
    .blog-content-inner h2 {
        font-size: 28px;
        margin: 28px 0 14px;
    }
    
    .blog-content-inner h3 {
        font-size: 24px;
        margin: 24px 0 12px;
    }
    
    .blog-content-inner h4 {
        font-size: 20px;
        margin: 20px 0 10px;
    }
    
    .blog-content-inner h5 {
        font-size: 18px;
    }
    
    .blog-content-inner h6 {
        font-size: 16px;
    }
    
    .blog-content-inner blockquote {
        padding: 24px 24px 24px 56px;
        font-size: 18px;
    }
    
    .blog-content-inner blockquote::before {
        font-size: 48px;
        left: 12px;
        top: 12px;
    }
    
    .blog-content-inner ul li {
        padding-left: 32px;
    }
    
    .blog-content-inner ol li {
        padding-left: 40px;
    }
}

/* Share Section */
.blog-post-share-modern {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.blog-post-share-modern h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.blog-share-buttons-modern {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-share-btn-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.blog-share-twitter-modern {
    background: #1DA1F2;
    color: white;
}

.blog-share-twitter-modern:hover {
    background: #1a8cd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.blog-share-facebook-modern {
    background: #1877F2;
    color: white;
}

.blog-share-facebook-modern:hover {
    background: #1565d8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.blog-share-linkedin-modern {
    background: #0A66C2;
    color: white;
}

.blog-share-linkedin-modern:hover {
    background: #095196;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.4);
}

.blog-share-copy-modern {
    background: #64748b;
    color: white;
}

.blog-share-copy-modern:hover {
    background: #475569;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.4);
}

/* Related Posts */
.blog-related-section-modern {
    background: #f8fafc;
    padding: 80px 0;
}

.blog-related-header {
    text-align: center;
    margin-bottom: 48px;
}

.blog-related-title-modern {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.blog-related-subtitle {
    font-size: 18px;
    color: #64748b;
}

.blog-related-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.blog-related-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog-related-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-related-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-related-image-modern {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-related-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-related-card-modern:hover .blog-related-image-modern img {
    transform: scale(1.1);
}

.blog-related-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.blog-related-no-image {
    background: linear-gradient(135deg, var(--primary-blue), #0a2540);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
}

.blog-related-content-modern {
    padding: 24px;
}

.blog-related-date-modern {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.blog-related-date-modern i {
    color: var(--primary-orange);
}

.blog-related-card-title-modern {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-related-excerpt-modern {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-related-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-related-card-modern:hover .blog-related-arrow {
    gap: 12px;
}


/* ============================================
   MODERN CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a2540 100%);
    padding: 70px 0 70px;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 116, 5, 0.15);
    border: 1px solid rgba(242, 116, 5, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Contact Content Section */
.contact-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.contact-content-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-content-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(17, 83, 140, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-content-section .container {
    position: relative;
    z-index: 1;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease;
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 16px;
    color: #64748b;
}

/* Form Styles */
.form-group-contact {
    margin-bottom: 24px;
}

.form-label-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

.form-label-contact i {
    color: var(--primary-blue);
    font-size: 14px;
}

.form-input-contact {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input-contact:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(17, 83, 140, 0.1);
}

.form-textarea-contact {
    resize: vertical;
    min-height: 150px;
}

.btn-contact-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-orange), #d96304);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(242, 116, 5, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(242, 116, 5, 0.4);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-highlight {
    background: white;
    border: 2px solid rgba(242, 116, 5, 0.2);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(17, 83, 140, 0.3);
}

.contact-info-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    gap: 12px;
    color: #d96304;
}

.contact-info-text {
    color: var(--text-dark);
    font-weight: 500;
}

/* Social Card */
.contact-social-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-top: 20px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.contact-social-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-social-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    background: rgba(17, 83, 140, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(17, 83, 140, 0.3);
}

/* ============================================
   POLICY PAGES STYLES
   ============================================ */

/* Policy Hero Section */
.policy-hero {
    background: linear-gradient(135deg, #11538c 0%, #1a6bb5 100%);
    padding: 70px 0 70px;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.policy-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.policy-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.policy-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    backdrop-filter: blur(10px);
}

.policy-icon i {
    font-size: 36px;
    color: #fff;
}

.policy-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.policy-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 24px;
}

.policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Policy Content */
.policy-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.policy-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.policy-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #11538c, #1a6bb5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.policy-card-icon i {
    font-size: 28px;
    color: #fff;
}

.policy-card-icon.warning {
    background: linear-gradient(135deg, #f27405, #ff8c1a);
}

.policy-card-icon.partial {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.policy-card-icon.success {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.policy-card-icon.info {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.policy-card-icon.sale {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.policy-card-icon.exchange {
    background: linear-gradient(135deg, #16a085, #138d75);
}

.policy-card-icon.gift {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.policy-card-icon.shipping {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.policy-card-content {
    flex: 1;
}

.policy-card-content h3 {
    color: #11538c;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.policy-card-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.policy-list li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-list li i {
    color: #e74c3c;
    font-size: 16px;
}

.policy-ordered-list {
    padding-left: 24px;
    margin: 16px 0;
}

.policy-ordered-list li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
}

.policy-alert {
    background: #fff3cd;
    border-left: 4px solid #f27405;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-alert i {
    color: #f27405;
    font-size: 20px;
}

.policy-alert.warning {
    background: #e8f4f8;
    border-left-color: #3498db;
}

.policy-alert.warning i {
    color: #3498db;
}

/* Process Steps */
.process-steps {
    margin-top: 24px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #11538c, #1a6bb5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #11538c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    margin: 0;
}

/* Contact Card */
.policy-contact-card {
    background: linear-gradient(135deg, #11538c, #1a6bb5);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: #fff;
    margin-top: 32px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-icon i {
    font-size: 36px;
    color: #fff;
}

.policy-contact-card h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.policy-contact-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 24px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #11538c;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #f27405;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Links */
.policy-card-content a {
    color: #11538c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-card-content a:hover {
    color: #f27405;
}


/* ============================= */
/* Tablet Devices (992px) */
/* ============================= */
@media (max-width: 992px) {

    .policy-title {
        font-size: 34px;
    }

    .policy-subtitle {
        font-size: 16px;
    }

    .policy-card {
        padding: 24px;
        gap: 16px;
    }

    .policy-card-content h3 {
        font-size: 22px;
    }

    .policy-contact-card {
        padding: 36px;
    }

}


/* ============================= */
/* Mobile Devices (768px) */
/* ============================= */
@media (max-width: 768px) {

    .policy-hero {
        padding: 50px 0;
    }

    .policy-title {
        font-size: 28px;
    }

    .policy-subtitle {
        font-size: 15px;
    }

    .policy-icon {
        width: 65px;
        height: 65px;
    }

    .policy-icon i {
        font-size: 28px;
    }

    .policy-card {
        flex-direction: column;
        padding: 20px;
    }

    .policy-card-icon {
        width: 50px;
        height: 50px;
    }

    .policy-card-icon i {
        font-size: 22px;
    }

    .policy-card-content h3 {
        font-size: 20px;
    }

    .policy-card-content p {
        font-size: 14px;
    }

    .process-step {
        flex-direction: column;
        gap: 10px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .policy-contact-card {
        padding: 30px 20px;
    }

    .policy-contact-card h3 {
        font-size: 22px;
    }

    .contact-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

}


/* ============================= */
/* Small Mobile (480px) */
/* ============================= */
@media (max-width: 480px) {

    .policy-title {
        font-size: 24px;
    }

    .policy-subtitle {
        font-size: 14px;
    }

    .policy-badge {
        padding: 8px 16px;
        font-size: 13px;
    }

    .policy-card {
        padding: 16px;
    }

    .policy-card-content h3 {
        font-size: 18px;
    }

    .policy-card-content p {
        font-size: 13px;
    }

    .policy-list li {
        font-size: 13px;
    }

    .policy-contact-card {
        padding: 24px 16px;
    }

    .policy-contact-card h3 {
        font-size: 20px;
    }

}




/* ============================================
   MODERN ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero-modern {
    background: linear-gradient(135deg, #11538c 0%, #0a2540 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 116, 5, 0.15);
    border: 1px solid rgba(242, 116, 5, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.text-gradient {
    background: linear-gradient(135deg, #f27405, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.about-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hero Visual */
.about-hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.visual-card {
    position: absolute;
    background: white;
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 6s ease-in-out infinite;
}

.visual-card i {
    font-size: 28px;
    color: var(--primary-orange);
}

.visual-card.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.visual-card.card-2 {
    top: 200px;
    right: 80px;
    animation-delay: 1s;
}

.visual-card.card-3 {
    bottom: 80px;
    left: 80px;
    animation-delay: 2s;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(242, 116, 5, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.visual-circle.circle-1 {
    width: 200px;
    height: 200px;
    top: 100px;
    right: 50px;
}

.visual-circle.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 100px;
    right: 150px;
    animation-delay: 1s;
}

/* Section Styles */
.about-section-modern {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(17, 83, 140, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

/* Feature Cards */
.feature-card-modern {
    background: white;
    padding: 36px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card-modern h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card-modern p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Offer Section */
.about-offer-section {
    padding: 100px 0;
    background: white;
}

.offer-content {
    padding-right: 40px;
}

.section-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 40px;
}

.offer-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.offer-item {
    display: flex;
    gap: 16px;
}

.offer-icon {
    width: 48px;
    height: 48px;
    background: rgba(242, 116, 5, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-icon i {
    color: var(--primary-orange);
    font-size: 20px;
}

.offer-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.offer-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Offer Features */
.offer-features {
    position: relative;
    height: 500px;
}

.feature-badge {
    position: absolute;
    background: white;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 5s ease-in-out infinite;
}

.feature-badge i {
    font-size: 24px;
    color: var(--primary-orange);
}

.feature-badge.badge-1 {
    top: 50px;
    left: 0;
}

.feature-badge.badge-2 {
    top: 150px;
    right: 50px;
    animation-delay: 1s;
}

.feature-badge.badge-3 {
    top: 360px;
    left: 25px;
    animation-delay: 2s;
}

.feature-badge.badge-4 {
    bottom: 50px;
    right: 0;
    animation-delay: 3s;
}

/* Purpose Section */
.about-purpose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #11538c 0%, #0a2540 100%);
    position: relative;
    overflow: hidden;
}

.about-purpose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.purpose-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.purpose-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    backdrop-filter: blur(10px);
}

.purpose-icon i {
    font-size: 48px;
    color: var(--primary-orange);
}

.purpose-card h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
}

.purpose-main {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 20px;
    line-height: 1.5;
}

.purpose-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Why Section */
.about-why-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.why-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 24px;
    height: 100%;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(17, 83, 140, 0.1);
    line-height: 1;
    flex-shrink: 0;
}

.why-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-content h3 i {
    color: var(--primary-orange);
    font-size: 20px;
}

.why-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Vision & Mission Section */
.about-vision-section {
    padding: 100px 0;
    background: white;
}

.vision-card,
.mission-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 48px 40px;
    border-radius: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(17, 83, 140, 0.05);
    border-radius: 50%;
}

.vision-icon,
.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.vision-icon i,
.mission-icon i {
    font-size: 32px;
    color: white;
}

.vision-card h3,
.mission-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.vision-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.mission-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.mission-card ul li {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-card ul li i {
    color: var(--primary-orange);
    font-size: 18px;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.cta-card-modern {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a2540 100%);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    backdrop-filter: blur(10px);
}

.cta-icon i {
    font-size: 48px;
    color: var(--primary-orange);
}

.cta-card-modern h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-card-modern p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-orange), #d96304);
    color: white;
    box-shadow: 0 8px 24px rgba(242, 116, 5, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(242, 116, 5, 0.5);
    color: white;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    color: white;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero-modern {
        padding: 100px 0 60px;
    }

    .about-hero-title {
        font-size: 42px;
    }

    .about-stats {
        gap: 24px;
    }

    .about-hero-visual {
        height: 400px;
        margin-top: 60px;
    }

    .offer-content {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .offer-features {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-text {
        font-size: 16px;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 28px;
    }

    .about-hero-visual {
        height: 350px;
    }

    .visual-card {
        animation: float 6s ease-in-out infinite;
    }

    .visual-card.card-1 {
        top: 30px;
        left: 20px;
    }

    .visual-card.card-2 {
        top: 150px;
        right: 20px;
        left: auto;
    }

    .visual-card.card-3 {
        bottom: 40px;
        left: 20px;
    }

    .visual-circle.circle-1 {
        width: 150px;
        height: 150px;
        top: 60px;
        right: 30px;
    }

    .visual-circle.circle-2 {
        width: 120px;
        height: 120px;
        bottom: 60px;
        right: 80px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-section-modern,
    .about-offer-section,
    .about-purpose-section,
    .about-why-section,
    .about-vision-section,
    .about-cta-section {
        padding: 60px 0;
    }

    .cta-card-modern {
        padding: 60px 32px;
    }

    .cta-card-modern h2 {
        font-size: 36px;
    }

    .cta-card-modern p {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-visual {
        height: 300px;
    }

    .visual-card {
        padding: 16px 20px;
        font-size: 14px;
        animation: none;
    }

    .visual-card i {
        font-size: 20px;
    }

    .visual-card.card-1 {
        top: 20px;
        left: 10px;
    }

    .visual-card.card-2 {
        top: 120px;
        right: 10px;
        left: auto;
    }

    .visual-card.card-3 {
        bottom: 20px;
        left: 10px;
    }

    .visual-circle {
        animation: none;
        opacity: 0.3;
    }

    .visual-circle.circle-1 {
        width: 120px;
        height: 120px;
        top: 40px;
        right: 20px;
    }

    .visual-circle.circle-2 {
        width: 100px;
        height: 100px;
        bottom: 40px;
        right: 60px;
    }

    .section-title {
        font-size: 28px;
    }

    .purpose-card h2 {
        font-size: 32px;
    }

    .purpose-main {
        font-size: 20px;
    }

    .purpose-sub {
        font-size: 16px;
    }
}


/* ============================================
   FORGOT PASSWORD STYLES - COMPACT DESIGN
   ============================================ */

/* Page Background */
.forgot-password-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f7 100%);
    position: relative;
}

/* Forgot Card */
.forgot-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Icon */
.forgot-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a5568, #f27405);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.forgot-icon i {
    font-size: 32px;
    color: white;
}

/* Title */
.forgot-title {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.forgot-subtitle {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Alert */
.alert-success-compact {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-success-compact i {
    color: #10b981;
}

/* Form */
.form-group-compact {
    margin-bottom: 20px;
    text-align: left;
}

.form-label-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.form-label-compact i {
    color: #11538c;
    font-size: 12px;
}

.form-input-compact {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input-compact:focus {
    outline: none;
    border-color: #11538c;
    background: white;
    box-shadow: 0 0 0 3px rgba(17, 83, 140, 0.1);
}

.form-input-compact.is-invalid {
    border-color: #ef4444;
}

/* Password Input Wrapper for Compact Forms */
.form-group-compact .password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group-compact .password-input-wrapper .form-input-compact {
    padding-right: 45px;
}

.form-group-compact .password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
}

.form-group-compact .password-toggle:hover {
    background: rgba(17, 83, 140, 0.1);
    color: #11538c;
}

.form-group-compact .password-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

.form-group-compact .password-toggle i {
    font-size: 14px;
    pointer-events: none;
}

.error-text-compact {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    text-align: left;
}

/* Submit Button */
.btn-forgot-submit {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #f27405, #ff8c1a);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(242, 116, 5, 0.3);
    margin-bottom: 20px;
}

.btn-forgot-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 116, 5, 0.4);
}

.btn-forgot-submit:active {
    transform: translateY(0);
}

/* Footer */
.forgot-footer {
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.forgot-footer-text {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.back-to-login {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #11538c;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-login:hover {
    color: #f27405;
}

/* Help Info Box */
.help-info-box {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.help-info-box i {
    color: #11538c;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.help-info-box p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Forgot Password Link on Login */
.forgot-password-link {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--primary-orange);
}

/* Responsive */
@media (max-width: 576px) {
    .forgot-card {
        padding: 32px 24px;
    }

    .forgot-title {
        font-size: 22px;
    }

    .forgot-subtitle {
        font-size: 13px;
    }

    .forgot-icon {
        width: 60px;
        height: 60px;
    }

    .forgot-icon i {
        font-size: 28px;
    }
}
