/* ===== ROOT VARIABLES - WIZARD-TECH BRAND ===== */
:root {
    /* Brand Colors - Green Primary */
    --brand-gold: #22c55e;
    --brand-gold-dark: #16a34a;
    --brand-gold-light: #dcfce7;
    --brand-gold-lighter: #f0fdf4;
    
    /* Secondary Green for accents */
    --brand-gold-accent: #4ade80;
    --brand-gold-accent-dark: #16a34a;
    
    /* Cyan/Blue Colors */
    --brand-dark: #0891b2;
    --brand-dark-light: #06b6d4;
    --brand-dark-lighter: #22d3ee;
    --brand-dark-overlay: rgba(8, 145, 178, 0.95);
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-gold: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-dark: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL RESET ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-50);
    color: var(--gray-700);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

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

/* ===== TOP BAR (CYAN) ===== */
.top-bar {
    background: var(--brand-dark);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-weight: 500;
}

.top-bar-link:hover {
    color: var(--brand-dark-light);
}
i{
    color:#fff;
}
.top-bar-link i {
    font-size: 12px;
}

.social-links-top {
    display: flex;
    color:#fff;
    gap: 10px;
    padding-left: 20px;
    border-left: 1px solid rgba(34, 197, 94, 0.2);
}

.social-links-top a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    transition: var(--transition);
}

.social-links-top a:hover {
    background: var(--brand-gold);
    color: var(--brand-dark);
    transform: translateY(-2px);
}

.admin-link {
    padding: 5px 14px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    font-weight: 600;
}

.admin-link:hover {
    background: var(--brand-gold);
    color: var(--brand-dark);
}

/* ===== MAIN HEADER (CYAN/BLUE) ===== */
.main-header {
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-xl);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== LOGO (GREEN) ===== */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--brand-gold-dark);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.logo-icon i {
    font-size: 24px;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 11px;
    color: var(--brand-gold);
    font-weight: 500;
    margin-top: 2px;
}

/* ===== NAVIGATION MENU (GREEN ACCENTS) ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.nav-link i {
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-gold);
    background: rgba(34, 197, 94, 0.1);
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.compare-badge {
    position: absolute;
    top: 5px;
    right: 8px;
    background: var(--brand-gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    line-height: 1;
}

/* ===== CTA BUTTON (GREEN) ===== */
.btn-gold-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-gold);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-gold-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    background: var(--brand-gold-dark);
}

/* ===== MEGA MENU (CYAN WITH GREEN ACCENTS) ===== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--gray-200);
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 20px;
    gap: 30px;
}

.mega-menu-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-column h4 i {
    color: var(--brand-gold);
    font-size: 16px;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li {
    margin-bottom: 10px;
}

.mega-menu-column ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mega-menu-column ul li a i {
    font-size: 12px;
    color: var(--gray-400);
}

.mega-menu-column ul li a:hover {
    background: var(--brand-gold-light);
    color: var(--brand-dark);
    padding-left: 16px;
}

.mega-menu-column ul li a:hover i {
    color: var(--brand-gold);
}

.mega-menu-highlight {
    background: var(--gradient-dark);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    text-align: center;
    color: var(--white);
}

.mega-menu-cta i {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--brand-gold);
}

.mega-menu-cta h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.mega-menu-cta p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.mega-menu-cta .btn-gold {
    display: inline-block;
    padding: 10px 24px;
    background: var(--brand-gold);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mega-menu-cta .btn-gold:hover {
    background: var(--brand-gold-dark);
    transform: translateY(-2px);
}

/* ===== MOBILE MENU TOGGLE (GREEN) ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-md);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--brand-gold);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover span {
    background: var(--brand-gold-dark);
}

/* ===== MOBILE MENU OVERLAY (CYAN WITH GREEN ACCENTS) ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90%;
    height: 100vh;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--gradient-dark);
    color: var(--white);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
}

.mobile-logo i {
    font-size: 24px;
    color: var(--brand-gold);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    background: rgba(34, 197, 94, 0.2);
    border: none;
    border-radius: var(--radius-md);
    color: var(--brand-gold);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(34, 197, 94, 0.3);
}

.mobile-nav {
    list-style: none;
    padding: 20px;
}

.mobile-nav > li {
    margin-bottom: 8px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: var(--brand-gold-light);
    color: var(--brand-dark);
}

.mobile-nav a i {
    font-size: 16px;
    width: 20px;
    color: var(--brand-gold);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-dropdown-toggle:hover {
    background: var(--brand-gold-light);
    color: var(--brand-dark);
}

.mobile-dropdown-toggle i.fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: var(--brand-gold);
}

.mobile-dropdown-menu.active + .mobile-dropdown-toggle i.fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-dropdown-menu.active {
    max-height: 500px;
    margin-top: 8px;
}

.mobile-dropdown-menu li {
    margin-bottom: 6px;
}

.mobile-dropdown-menu a {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--gray-500);
}

.mobile-dropdown-menu a:hover {
    background: rgba(34, 197, 94, 0.08);
    color: var(--brand-dark);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.btn-block {
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-gold);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-align: center;
    display: block;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-block:hover {
    background: var(--brand-gold-dark);
    transform: translateY(-2px);
}

.mobile-contact {
    margin-bottom: 16px;
}

.mobile-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 14px;
}

.mobile-contact p i {
    color: var(--brand-gold);
    width: 16px;
}

.mobile-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.mobile-social a {
    width: 40px;
    height: 40px;
    background: var(--brand-gold-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 16px;
    transition: var(--transition);
}

.mobile-social a:hover {
    background: var(--brand-gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== HERO SECTION (GREEN GRADIENT) ===== */
.hero {
    background: var(--gradient-gold);
    padding: 140px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("https://cdn.pixabay.com/photo/2014/05/18/19/12/campus-347285_1280.jpg");
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(8, 145, 178, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 145, 178, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--brand-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== HERO SEARCH (WHITE WITH GREEN ACCENTS) ===== */
.hero-search {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 12px;
    box-shadow: var(--shadow-2xl);
    max-width: 900px;
    margin: 0 auto 40px;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-gold);
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 14px 16px 14px 44px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-700);
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--brand-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

select.form-control {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    padding: 14px 16px;
}

.btn-search {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: var(--white);
    background: var(--gradient-dark);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--brand-dark-light);
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    opacity: 0.8;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: var(--white);
    padding: 24px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    font-size: 20px;
    color: var(--success);
}

/* ===== FEATURED COURSES ===== */
.featured-courses {
    padding: 80px 20px;
    background: var(--gray-50);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--brand-gold-light);
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== COURSE GRID (GREEN ACCENTS) ===== */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.course-card:nth-child(1) { animation-delay: 0.1s; }
.course-card:nth-child(2) { animation-delay: 0.15s; }
.course-card:nth-child(3) { animation-delay: 0.2s; }
.course-card:nth-child(4) { animation-delay: 0.25s; }
.course-card:nth-child(5) { animation-delay: 0.3s; }
.course-card:nth-child(6) { animation-delay: 0.35s; }

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

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-gold);
}

.course-image {
    background: var(--gradient-dark);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.course-image i {
    font-size: 64px;
    color: var(--brand-gold);
}

.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--brand-gold);
    border-radius: var(--radius-full);
}

.course-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-type {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-dark);
    background: var(--brand-gold-light);
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    width: fit-content;
}

.course-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.university-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.university-name i {
    color: var(--brand-gold);
    font-size: 13px;
}

.course-meta {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    margin-bottom: 16px;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}

.course-meta-item i {
    color: var(--brand-gold);
    font-size: 14px;
}

.course-footer {
    margin-top: auto;
}

.course-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.price-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
}

.course-actions {
    display: flex;
    gap: 10px;
}

.btn-primary {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--white);
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--brand-gold-dark);
}

.btn-secondary {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

/* ===== VIEW ALL BUTTON ===== */
.view-all-container {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: var(--white);
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--brand-gold-dark);
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 80px 20px;
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.category-card:hover {
    background: var(--white);
    border-color: var(--brand-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-icon i {
    font-size: 32px;
    color: var(--white);
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.category-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.category-count {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-dark);
    background: var(--brand-gold-light);
    border-radius: var(--radius-full);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    padding: 80px 20px;
    background: var(--gray-50);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-choose-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.why-choose-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-gold-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-icon {
    background: var(--gradient-gold);
}

.why-choose-icon i {
    font-size: 28px;
    color: var(--brand-dark);
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-icon i {
    color: var(--white);
}

.why-choose-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.why-choose-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 20px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-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='%2322c55e' 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;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: var(--white);
    background: var(--brand-gold);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--brand-gold-dark);
}

.btn-cta-secondary {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--brand-dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 20px;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-gold);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating i {
    font-size: 16px;
    color: var(--brand-gold);
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-300);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--gray-600);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--brand-gold-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
}

/* ===== NEWSLETTER SECTION (GREEN) ===== */
.newsletter-section {
    background: var(--gradient-gold);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(8,145,178,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    flex: 1;
}

.newsletter-icon {
    font-size: 48px;
    opacity: 0.9;
}

.newsletter-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.newsletter-text p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 8px 8px 8px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.newsletter-input-group i {
    color: var(--brand-gold);
    font-size: 16px;
    margin-right: 12px;
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--brand-dark);
    background: transparent;
    padding: 12px 0;
}

.newsletter-input-group input::placeholder {
    color: var(--gray-400);
}

.newsletter-input-group .btn-gold {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-dark);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-input-group .btn-gold:hover {
    background: var(--brand-dark-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
}

/* ===== MAIN FOOTER (CYAN WITH GREEN ACCENTS) ===== */
.main-footer {
    background: var(--brand-dark);
    color: #cbd5e1;
}

.footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    animation: fadeInUp 0.6s ease;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.footer-logo span {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-stats {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.footer-stat {
    display: flex;
    flex-direction: column;
}

.footer-stat strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 4px;
}

.footer-stat span {
    font-size: 12px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 4px 0;
}

.footer-links a i {
    font-size: 12px;
    color: #64748b;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-gold);
    padding-left: 8px;
}

.footer-links a:hover i {
    color: var(--brand-gold);
}

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

.footer-contact li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact i {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-contact p {
    font-size: 14px;
    color: var(--white);
    margin: 0;
    line-height: 1.6;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--brand-gold);
}

/* ===== FOOTER PARTNERS ===== */
.footer-partners {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.partners-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-item {
    padding: 12px 24px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-md);
    /*color: #94a3b8;*/
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.partner-item:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    color: var(--brand-gold);
    transform: translateY(-2px);
}
/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-copyright p {
    font-size: 14px;
    color: var(--white);
    margin: 0;
}

.footer-copyright strong {
    color: var(--brand-gold);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--brand-gold);
}

.footer-legal .separator {
    color: #475569;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--brand-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== MODAL STYLES (GREEN ACCENTS) ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 500px;
    max-height: 90vh;
    box-shadow: var(--shadow-2xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 5px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--gradient-dark);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    color: var(--brand-gold);
}

.modal-close {
    width: 36px;
    height: 36px;
    background: rgba(34, 197, 94, 0.2);
    border: none;
    border-radius: var(--radius-md);
    color: var(--brand-gold);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(34, 197, 94, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
}

.modal-body p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--brand-gold);
    margin-right: 6px;
}

.form-group .required {
    color: var(--error);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--brand-gold);
}

.checkbox-group label {
    font-size: 13px;
    color: var(--gray-600);
    cursor: pointer;
    margin: 0;
}

.checkbox-group label a {
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: none;
}

.checkbox-group label a:hover {
    color: var(--brand-gold);
}

.modal-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cancel {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
}

.btn-submit {
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--white);
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-submit:hover {
    background: var(--brand-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ===== ALERT MESSAGES ===== */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert i {
    font-size: 18px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-info {
    background: var(--brand-gold-light);
    color: var(--brand-dark);
    border: 1px solid var(--brand-gold);
}

/* ===== LOADING SPINNER (GREEN) ===== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    border-top-color: var(--brand-gold);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.loading-overlay .loading-spinner {
    width: 60px;
    height: 60px;
    border-width: 5px;
}

.loading-overlay p {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

/* ===== BADGES (GREEN) ===== */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    line-height: 1;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-error {
    background: #fee2e2;
    color: #991b1b;
}

.badge-info {
    background: var(--brand-gold-light);
    color: var(--brand-dark);
}

.badge-primary {
    background: var(--brand-gold-light);
    color: var(--brand-dark);
}

/* ===== TOOLTIPS ===== */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    padding: 8px 12px;
    background: var(--gray-900);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    z-index: 1000;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--gray-900);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ===== BREADCRUMBS (GREEN) ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--brand-gold);
}

.breadcrumb .separator {
    color: var(--gray-400);
    font-size: 12px;
}

.breadcrumb .active {
    color: var(--brand-dark);
    font-weight: 600;
}

/* ===== PAGINATION (GREEN) ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
}

.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--brand-gold-light);
    border-color: var(--brand-gold);
    color: var(--brand-dark);
}

.pagination .active {
    background: var(--gradient-gold);
    border-color: var(--brand-gold);
    color: var(--white);
}

.pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== TABS (GREEN) ===== */
.tabs-container {
    margin-bottom: 32px;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 24px;
}

.tab-button {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: var(--gray-600);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: -2px;
}

.tab-button:hover {
    color: var(--brand-dark);
    background: var(--brand-gold-light);
}

.tab-button.active {
    color: var(--brand-dark);
    border-bottom-color: var(--brand-gold);
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ACCORDION (GREEN) ===== */
.accordion {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-header.active {
    background: var(--brand-gold-light);
    color: var(--brand-dark);
}

.accordion-icon {
    font-size: 18px;
    color: var(--brand-gold);
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

.accordion-body {
    padding: 20px 24px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== CARDS (GREEN) ===== */
.info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-gold);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-gold-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--brand-dark);
}

.info-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
}

.info-card-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-menu {
        width: 700px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-header {
        position: sticky;
        top: 0;
    }
    
    .navbar {
        padding: 12px 20px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon i {
        font-size: 20px;
    }
    
    .logo-title {
        font-size: 16px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .btn-gold-header {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-search {
        padding: 8px;
    }
    
    .search-form {
        gap: 8px;
    }
    
    .form-control {
        padding: 12px 14px 12px 40px;
        font-size: 14px;
    }
    
    .btn-search {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .hero-stat-number {
        font-size: 32px;
    }
    
    .hero-stat-label {
        font-size: 13px;
    }
    
    .trust-container {
        gap: 30px;
    }
    
    .trust-item {
        font-size: 13px;
    }
    
    .featured-courses,
    .categories-section,
    .why-choose-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .course-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .category-card {
        padding: 24px 20px;
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
    }
    
    .category-icon i {
        font-size: 28px;
    }
    
    .category-card h3 {
        font-size: 16px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text h3 {
        font-size: 24px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }
    
    .newsletter-input-group input {
        padding: 12px 16px;
    }
    
    .newsletter-input-group .btn-gold {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-stats {
        justify-content: space-around;
    }
    
    .partners-slider {
        gap: 16px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .pagination {
        gap: 6px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-number {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 14px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .top-bar,
    .main-header,
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .back-to-top,
    .newsletter-section,
    .footer-social,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .course-card,
    .category-card,
    .why-choose-card,
    .testimonial-card {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 40px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.text-brand { color: var(--brand-dark); }
.text-gold { color: var(--brand-gold); }
.text-gray { color: var(--gray-600); }
.text-white { color: var(--white); }

.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }
.bg-brand { background: var(--brand-dark); }
.bg-gold { background: var(--brand-gold); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-sm { font-size: 13px; }
.text-base { font-size: 15px; }
.text-lg { font-size: 17px; }
.text-xl { font-size: 20px; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--brand-gold);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== END OF STYLES ===== */